.footer {
    padding-top: 100px;
}

.footer_content {
    background: #fff;
    padding: 40px 0px;
    width: 100%;
    min-height: 0;
}

.footer_logo_block {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.footer_logo_block img {
    width: 60%;
    max-width: 100%;
    height: auto;
}

.footer_block {
    background: #F2F4FF;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

.footer_menu {}

.footer_menu_title {
    color: var(--theme-base-color);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
}

.footer_menu a {
    color: #bebebe;
    text-decoration: none;
    font-size: 14px;
    display: block;
    line-height: 18px;
    padding-bottom: 14px;
}

.footer_menu a:hover {}

.footer_phone,
.footer_mail,
.footer_adress,
.footer_work_time {
    color: var(--theme-base-color);
    font-size: 14px;
    padding-bottom: 15px;
    line-height: 18px;
}

.footer_phone a,
.footer_mail a,
.footer_adress a,
.footer_work_time a {
    text-decoration: none;
    color: var(--theme-base-color);
}

.footer_phone a:hover,
.footer_mail a:hover,
.footer_adress a:hover,
.footer_work_time a:hover {}

.footer_label {
    font-size: 11px;
    color: #5b6274;
}

.footer_block_height {
    height: calc(100% - 20px);
}

.footer_block_social {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.footer_title_social {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.footer_social {}

.footer_bottom_bar {}

.footer_copyright {}

.footer_politic_confidencial {
    display: flex;
    gap: 20px;
    justify-content: start;
    transition: 0.3s;
}

.footer_politic_confidencial a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer_logo_block {
        margin-bottom: 25px;
    }

    .footer_logo_block img {
        width: 100%;
    }

    .footer_politic_confidencial {
        flex-direction: column;
        gap: 6px;
        padding-top: 25px;
    }
}

.footer_bottom_bar,
.footer_bottom_bar a {
    color: #636363;
    text-decoration: none;
    font-size: 14px;
}








.popup_feedback {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 1000;
    background: #00000057;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
}

.popup_feedback.active {
    display: flex;
}

.popup_feedback .popup_close {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme-base-color);
    border-radius: 30px;
    color: var(--theme-base-color);
    cursor: pointer;
}

.popup_feedback .popup_close:hover {
    background: #d9defb;
}

.popup_feedback .popup_close:after {
    content: "";
    transform: rotate(45deg);
    position: absolute;
    top: 18px;
    left: 10px;
    width: 19px;
    height: 2px;
    background: var(--theme-base-color);
}

.popup_feedback .popup_close:before {
    content: "";
    transform: rotate(-45deg);
    position: absolute;
    top: 18px;
    left: 10px;
    width: 19px;
    height: 2px;
    background: var(--theme-base-color);
}

.popup_feedback .area {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    text-align: left;
    max-width: 420px;
    position: relative;
}

.popup_feedback .content,
.popup_feedback .content-background {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.popup_feedback .content-background {
    background: #f2f4ff;
    padding: 15px;
    border-radius: 20px;
}

.popup_feedback .title {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-base-color);
    line-height: 28px;
    padding-right: 40px;
}

.popup_feedback .input_block {}

.popup_feedback .label {
    font-size: 14px;
    color: var(--theme-base-color);
    padding-left: 5px;
    text-align: left;
    padding-bottom: 5px;
}

.popup_feedback .input_text {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
}

.popup_feedback .input_block_agree {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.capthca_block {
    display: flex;
    gap: 20px;
}

.capthca_block_img {}

.capthca_block_img img {
    height: 45px;
    border-radius: 25px;
}

.capthca_block_input .error {
    box-shadow: 0px 0px 13px #ff0000;
    border: solid #fea3a3 1px;
}

.capthca_block_input input {}







/* WHATSAPP VIDGET */
.adns_whatsapp_vidget {
    position: fixed;
    bottom: 49px;
    z-index: 9;
    right: 49px;
    width: 70px;
    height: 70px;
    background: #2ed9503b;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adns_whatsapp_vidget>a {
    position: relative;
    z-index: 10;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.adns_whatsapp_vidget img {
    width: 58px;
    height: 58px;
}

.adns_whatsapp_vidget_wave {
    width: 50px;
    position: absolute;
    height: 50px;
    border: solid #2ed950 2px;
    border-radius: 100%;
    animation: ripple 1.5s linear infinite;
}

.adns_whatsapp_vidget.inst {
    bottom: 140px;
    background: #d92ea93b;
}

.adns_whatsapp_vidget_wave.inst {
    border: solid #ed1c7a 2px;
}

@keyframes ripple {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .b24-widget-button-position-bottom-right {
        right: 20px !important;
        bottom: 80px !important;
    }

    .adns_whatsapp_vidget {
        bottom: 18px;
        right: 18px;
    }

    .adns_whatsapp_vidget.inst {
        bottom: 100px;
    }
}
