body {
    margin: 0;
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/static/img/pc.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
}

.pc {
    height: 100vh;
}

.mobile {
    display: none;
}

.menu-link {
    display: none;
}

.btn_1 {
    border: none;
    color: #fff;
    background: #da905e;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    padding: 14px 25px 14px 25px;
    font-weight: 600;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#formModal .form-group {
    padding-inline: 2rem;
}

#modalBtn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    height: 150px;
    width: 65px;
    background-color: #978667;
    border: 1px solid #b4a382;
    border-right: none;
}

#modalBtn span {
    white-space: nowrap;
    transform: rotate(90deg);
    color: #fff;
    font-weight: 600;
}

.form-check-label {
    font-size: 13px;
}

.form-btn {
    position: absolute;
    left: 50%;
    top: 80.5%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.form-btn img {
    width: 350px;
    transition: .4s ease-in-out;
}

.form-btn:hover img {
    transform: scale(1.06);
}
.form-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}


@media screen and (max-width: 700px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    body {
        background-image: url("/static/img/mobile.webp");
        overflow: unset !important;
    }
}

@media screen and (min-width: 700px) {
    .mobile-only {
        display: none !important;
    }

    .contact-panel {
        display: none;
    }

    .mobile-form-toggle {
        display: none;
    }
}


@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .form-btn {
        top: 76.5%;
    }

    .form-btn img {
        width: 320px;
    }

}

@media screen and (max-width: 700px) {
    .pc-only {
        display: none !important;
    }


    a {
        text-decoration: none
    }

    #modalBtn {
        top: 20%;
        width: 45px;
    }

    .form-btn {
        top: 77.5%;
        display: none;
    }
    .form-btn img {
        width: 250px;
    }


}