#call:hover #inner_call {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: green;
            position: absolute;
        }

        .stereo {
            width: 50px;
            height: 50px;
            position: fixed;
            right: 50px;
            bottom: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .fixed {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgb(47, 167, 47);
            transition: all 0.2s ease;
            position: absolute;
        }

        .fixed-low {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgb(155, 228, 155);
            position: absolute;
            transition: all 0.2s ease;
            z-index: -100;
        }

        .stereo:hover .fixed {
            transform: scale(1.1);
        }

        .stereo:hover .fixed-low {
            transform: scale(1.4);
        }




.request-order-outside {
            width: 100vw;
            height: 100vh;
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 99;
            /* display: none; */
            transform: scale(0);
            transition: all 0.2s ease;
        }

        .request-order {
            position: fixed;
            width: 600px;
            background-color: #eee;
            left: 50%;
            transform: translate(-50%, -50%);
            top: 50%;
            z-index: 100;
            box-shadow: 0px 0px 8px 2px #999;
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            border-radius: 6px;
        }

        .request-order input {
            width: 100%;
            padding: 10px;
            box-shadow: 0px 0px 6px 0px #aaa;
            border: none;
            outline: none;
            transition: all 0.2s ease;
            border-radius: 8px;
        }

        .request-order input:hover {
            transform: scale(1.02);
        }

        .request-order button {
            border: none;
            outline: none;
            background-color: #253264ff;
            color: #fff;
            font-size: 500;
            padding: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-radius: 8px;
        }

        .request-order button:hover {
            background-color: #3b4a88ff;
            transform: scale(1.02);
        }

        .request-order p {
            font-size: 14px;
            color: #888;
        }

        .request-order .close {
            font-size: 700;
            font-size: 24px;
            position: absolute;
            top: 14px;
            right: 14px;
            cursor: pointer;
            user-select: none;
        }

@media (max-width: 700px) {
    .request-order {
        width: 80%;
    }
}