.contact-us {
    background-color: #5B97DC;
}

.contact-us__cnt {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;

@media (min-width:1300px) {
    max-height: 500px;
}
}

@media (min-width:1300px) {
    .contact-us__cnt {
        max-height: 500px;
    }
}

.contact-us__image {
    /* transform: translate(00px, 100px); */
    display:flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.contact-us__image img {
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1699.9px) {
    .contact-us__image img {
        max-width: 600px;
    }
}

@media (max-width: 1259.9px) {
    .contact-us__image {
        display: none;
    }
}

.contact-us__content {
    padding: 60px 120px 70px 20px;
    color: #fff;
}

.contact-us__title {
    font-size: 40px;
    font-weight: bold;
    line-height: 52px;
    margin-bottom: 16px;
}

.contact-us__sub-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 47px;

}

.contact-us__form {
    width: 100%;
}

.contact-us__form input {
    width: 100%;
    padding: 23px 40px;
    height: 100%;
    border-radius: 15px 0px 0px 15px;
    border: none;
}

.contact-us__request-email {
    display: flex;
    margin-bottom: 24px;
}
/* .contact-us__sent {
   padding: 0px 51px;
   border: none;
   font-size: 28px;
   line-height: 35px;
   font-weight: bold;
   color: #fff;
   background-color: #F13E22;
   transition: all 0.3s ease 0s;
   border-radius: 0px 15px 15px 0px;
} */

@media (max-width:760px){
    .contact-us__sent {
        padding: 0px 51px;
        border: none;
        font-size: 28px;
        line-height: 35px;
        font-weight: bold;
        color: #fff;
        background-color: #F13E22;
        transition: all 0.3s ease 0s;
        border-radius: 0px 15px 15px 0px;
    }
}


@media (min-width:760px){
    .contact-us__sent {
        padding: 0px 25px;
        border: none;
        font-size: 18px;
        line-height: 24px;
        font-weight: bold;
        color: #fff;
        background-color: #F13E22;
        transition: all 0.3s ease 0s;
        border-radius: 0px 15px 15px 0px;
    }
}

.contact-us__sent:hover {
    background-color: #f00909;
}

.contact-us__acsept-data {
    display: flex;
}

.checkbox-btn {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 16px;
}

/* Hide the browser's default checkbox */
.checkbox-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-btn label {
    cursor: pointer;
    font-size: 14px;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    border-radius: 5px;
    border: 7px solid #fff;
}

.checkbox-btn input:checked~.checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 3px;
    top: -2px;
    width: 9px;
    height: 15px;
    border: 2.5px solid #5B97DC;
    z-index: 2;
    border-width: 0 3.5px 3.5px 0;
    transition: .3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Show the checkmark when checked */
.checkbox-btn input:checked~.checkmark:after {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 759.9px) {
    .contact-us__request-email {
        flex-direction: column;
    }

    input.contact-us__email {
        border-radius: 15px;
        margin-bottom: 10px;
    }

    .contact-us__sent {
        border-radius: 15px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .contact-us__content {
        padding: 30px 40px 60px 10px;
    }

    .contact-us__title {
        padding-right: 30px;
    }

    .contact-us__sub-title {
        padding-right: 30px;
    }
}

.popap-form {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
}

.popap-form__body {
    display: flex;
    width: 100vw;
    background-color: #fff;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
}

.popap-form__content input.contact-us__email {
    border: 1px solid #ccc;
}

.popap-form__content .contact-us__acsept-data input {
    width: 15px;
    height: 15px;
    margin-right: 16px;
}

.popap-form__image img {
    /* width: 100%; */
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
}
/* .popap-form__image  {
   background-image: url('./pc-img.jpg');
   background-size: 100%;
} */
@media (min-width:900px){
    .popap-form__image {
        min-width: 400px;
    }
}
@media (max-width: 930px){
    .popap-form__image{
        max-height: 350px;
    }
    .popap-form__image img{
        object-fit: cover;
        width: 100%;
    }
}
@media (max-width: 600px){
    .popap-form__image{
        max-height: 300px;
    }
}

.popap-form__title {
    font-size: 40px;
    font-weight: bold;
    line-height: 52px;
    margin-bottom: 16px;
    width: 100%;
    background-color: #5B97DC;
    color: #fff;
    border-radius: 0px 15px 0px 0px;
    padding: 20px 80px 20px 40px;
}
@media screen and (max-width: 500px) {
    .popap-form__title {
        font-size: 20px;
        font-weight: bold;
        line-height: 22px;
        margin-bottom: 16px;
        width: 100%;
        background-color: #5B97DC;
        color: #fff;
        border-radius: 0px 15px 0px 0px;
        padding: 20px 50px 20px 40px;
    }
}

.popap-form__text {
    color: #000;
    font-size: 18px;
    line-height: 26px;
    padding-right: 30px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.popap-form__text a {
    font-weight: 600;
    color: #000;
}

.popap-form__lis {
    list-style-type: none;
}
.popap-form__lis li{
    font-size:18px;
}
ul li {
    padding-left: 20px;
    /* Задаємо відступ для зображення */
    position: relative;
}

ul li:before {
    content: "";
    /* Додаємо позначку зображенням */
    display: inline-block;
    width: 16px;
    /* Розмір зображення */
    height: 16px;
    background-image: url('/styles/benefit.png');
    /* Шлях до вашого зображення */
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.popap-form .contact-us__form {
    padding-right: 30px;
    padding-left: 30px;
}

.popap-form__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
@media (max-width: 930px){
    .popap-form__body{
        flex-direction: column;
        max-width: calc(100vw - 80px);
    }
    .popap-form__image {
        max-height: 200px;
    }
    .popap-form__image img{
        border-radius: 15px 15px 0px 0px;
    }
    .popap-form .contact-us__email{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .popap-form__title{
        border-radius: 0%;
        text-align: center;
        font-size:18px;
        line-height: 20px;
        padding-top:10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .contact-us__sent {
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .popap-form__lis{
        padding-left: 64px;
    }
    .popap-form__lis li{
        font-size: 16px;
        margin-bottom: 2px;
    }
    .popap-form__text{
        text-align: center;
        font-size: 16px;
        margin-bottom: 10px;
        line-height:22px;
    }
    button.contact-us__sent{
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .contact-us__request-email{
        margin-bottom: 10px;
    }
}
@media (max-width: 500px){
    .popap-form__lis{
        padding-left: 64px;
        padding-right: 20px;
    }
    .popap-form .contact-us__email{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .popap-form__body{
        flex-direction: column;
        max-width: calc(100vw - 40px);
    }
    .contact-us__sent{
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .popap-form__text{
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.popup{
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0s;
    transform: scale(0.6);
}
.popup.open{
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.lock {
    overflow: hidden;
}
.popup-thaks__body{
    display: flex;
    width: 100vw;
    background-color: #fff;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    flex-direction: column;
}
.popup-thaks{
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
}
.popup-thaks__title{
    font-size: 40px;
    font-weight: bold;
    line-height: 52px;
    margin-bottom: 16px;
    width: 100%;
    background-color: #5B97DC;
    color: #fff;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 15px 15px 0px 0px;
}
.popup-thaks__text{
    padding: 15px 40px 22px;
    text-align: center;
    font-size: 28px;
    line-height: 40px;
}
@media (max-width: 749.9px){
    .popup-thaks__body{
        max-width: calc(100vw - 40px);
    }
}
@media (max-width:500px){
    .popup-thaks__body{
        max-width: calc(100vw - 20px);
    }
    .popup-thaks__title{
        font-size: 20px;
        line-height: 32px;
    }
    .popup-thaks__text{
        font-size: 16px;
        line-height: 18px;
    }
    .popap-form__close{
        top: 10px;
        right: 10px;
    }
}
.wiget{
    position: fixed;
    z-index: 3;
    cursor: pointer;
}

@media (min-width: 759px){
    .wiget{
        right: 30px;
        bottom: 40px;
    }
}
.wiget img{
    width: 100px;
    height: 100px;
    cursor: pointer;
}
@media (max-width: 759px){
    .wiget{
        left: 10px;
        top: 100px;
    }
}
.hide{
    display: none !important;
}
.alredy{
    color: #eca1a1;
    margin-bottom: 10px;
    display: block;
}

.hidden {
    display: none;
}

img.close-wiget{
    width: 25px;
    height: 25px;
    transform: translate(-15px,-50px) scale(0);
    transition: all 0.3s ease 0s;
}
.wiget:hover img.close-wiget{
    transform: translate(-15px,-50px) scale(1);
}
@media (max-width: 759px){
    .wiget{
        left: 10px;
        top: 100px;
    }
    img.close-wiget{
        transform: translate(-15px,-50px) scale(1);
    }
}
@media screen and (max-width: 500px) {
    .contact-us__title{
        font-size:20px;
        line-height: 32px;
    }
    .contact-us__sub-title{
        font-size: 16px;
        line-height: 18px;
    }
}
@media (min-width:930px){
    .popap-form__body{
        top: 10px;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        position: sticky;
    }
}
@media (max-width: 930px){
    .popap-form__image {
        max-height: 250px;
    }
}
@media (min-width:500px){
    .popap-form__body{
        top: 10px;
        margin-top: 60px !important;
        position: sticky;
    }

}

#popup-subscription-form{
    z-index: 10000000 !important;
}
.popap-form .contact-us__email{
    padding-right: 5px;
    padding-left: 10px;
}
