*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
}
a{
    text-decoration: none;
}
button, input, textarea, select {
    font: inherit;
    outline: none;
}
::-webkit-input-placeholder{
  color: #9c9c9c;
}
::-moz-placeholder{
  color: #9c9c9c;
}
:-ms-input-placeholder{
  color: #9c9c9c;
}
:-moz-placeholder{
  color: #9c9c9c;
}
.gold{
    color: #f5ad00;
    text-shadow: 1px 1px 0 #000;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)){
    .gold{
        text-shadow: none;
        background-image: url("../img/gold_bg.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mt15{
    margin-top: 15px;
}
.mt20{
    margin-top: 20px;
}
.mt25{
    margin-top: 25px;
}
.mt30{
    margin-top: 30px;
}
.mt35{
    margin-top: 35px;
}
.mt40{
    margin-top: 40px;
}
.mt45{
    margin-top: 45px;
}
.mt50{
    margin-top: 50px;
}
.mt55{
    margin-top: 55px;
}
.mt60{
    margin-top: 60px;
}
.mt65{
    margin-top: 65px;
}
.mt70{
    margin-top: 70px;
}
.mt75{
    margin-top: 75px;
}
.mt80{
    margin-top: 80px;
}
.mt85{
    margin-top: 85px;
}
.mt90{
    margin-top: 90px;
}
.mt95{
    margin-top: 95px;
}
.mt100{
    margin-top: 100px;
}
.w100{
    width: 100%;
}
.mobile{
    max-width: 430px;
    margin: 0 auto;
    background-color: #1b0202;
    background-image: url(../img/bg.png);
    background-size: auto;
    background-repeat: repeat-y;
    background-position: center;
    overflow-x: hidden;
}
.text_default{
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
.container{
    padding: 0 15px;
}
header{
    text-align: center;
}
.header_name{
    font-family: 'Thaloria';
    font-size: 150px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    margin-top: -140px;
    position: relative;
    z-index: 1;
}
.line{
    width: 340px;
    margin: 0 auto;
}
.header_title h1{
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.header_descr{
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.phone{
    font-size: 34px;
    font-weight: 800;
}
.messenger{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
}
.messenger a{
    padding: 0 20px;
    min-height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    will-change: transform;
    animation: messenger_btn 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.messenger a.callback, .modal_btn a.callback{
    background-color: #ffa600;
    background-image: linear-gradient(0deg, #b45a00 0%, #ffa600 100%);
    box-shadow: 0 8px 20px rgba(255, 166, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.messenger a.whatsapp, .modal_btn a.whatsapp, .fixed_messenger a.whatsapp{
    background-color: #00aa2a;
    background-image: linear-gradient(0deg, #004210 0%, #00aa2a 100%);
    box-shadow: 0 8px 20px rgba(0, 170, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.messenger a.telegram, .modal_btn a.telegram, .fixed_messenger a.telegram{
    background-color: #0092ff;
    background-image: linear-gradient(0deg, #004274 0%, #0092ff 100%);
    box-shadow: 0 8px 20px rgba(0, 146, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.messenger a.max, .modal_btn a.max, .fixed_messenger a.max{
    background-color: #667dff;
    background-image: linear-gradient(0deg, #8400d1 0%, #667dff 100%);
    box-shadow: 0 8px 20px rgba(132, 0, 209, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.messenger a::before, .modal_btn a::before{
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.messenger a.callback::before, .modal_btn a.callback::before{
    width: 14px;
    height: 14px;
    background-image: url("../img/phone.svg");
}
.messenger a.whatsapp::before, .modal_btn a.whatsapp::before{
    width: 16px;
    height: 16px;
    background-image: url("../img/whatsapp.svg");
}
.messenger a.telegram::before, .modal_btn a.telegram::before{
    width: 16px;
    height: 16px;
    background-image: url("../img/telegram.svg");
}
.messenger a.max::before, .modal_btn a.max::before{
    width: 16px;
    height: 16px;
    background-image: url("../img/max.svg");
}
.messenger a:nth-of-type(1){
    animation-delay: 0s;
}
.messenger a:nth-of-type(2){
    animation-delay: 1s;
}
.messenger a:nth-of-type(3){
    animation-delay: 2s;
}
.messenger a:nth-of-type(4){
    animation-delay: 3s;
}
@keyframes messenger_btn{
    0%{
        transform: scale(1);
    }
    12%{
        transform: scale(1.04);
    }
    24%{
        transform: scale(1);
    }
    100%{
        transform: scale(1);
    }
}
.delay-link.is-locked {
    pointer-events: none;
    cursor: default;
}
img.header_phone{
    position: absolute;
    width: 130px;
    top: 0;
    right: 20px;
    animation: header_phone 4.8s ease-in-out infinite;
    will-change: transform;
    z-index: 1;
}
@keyframes header_phone{
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-15px);
    }
    100% {
        transform: translateX(0);
    }
}
.message_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.message{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(255, 166, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    text-align: left;
}
.message_glow{
    position: absolute;
    top: -50px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 190, 70, 0.18) 0%, rgba(255, 166, 0, 0.08) 45%, rgba(255, 166, 0, 0) 75%);
    pointer-events: none;
    z-index: 0;
}
.message_img, .message_container{
    position: relative;
    z-index: 1;
}
.message_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 166, 0, 0.9) 0%, rgba(226, 160, 40, 0.35) 100%);
    box-shadow: 0 8px 18px rgba(255, 166, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.message_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.badge{
    width: max-content;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #7c5101;
    background: rgba(255, 190, 70, 0.1);
    border: 1px solid rgba(255, 166, 0, 0.16);
}
.message_title{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b0202;
}
.online{
    position: relative;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #14c85a;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.online::before,
.online::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 176, 81, 0.55);
    transform: translate(-50%, -50%) scale(1);
    animation: online 2s infinite ease-out;
}
.online::after{
    animation-delay: 1s;
}
@keyframes online{
    0%{
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    70%{
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
    }
    100%{
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
    }
}
.message_text{
    font-size: 10px;
    color: #1b0202;
}
section.ornament{
    position: relative;
    padding: 20px 0;
}
section.ornament::before,
section.ornament::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("../img/border.svg");
    background-repeat: repeat-x;
    background-size: auto 100%;
    pointer-events: none;
}
section.ornament::before{
    top: -40px;
}
section.ornament::after{
    bottom: -40px;
}
.section_title{
    text-align: center;
}
.section_title h2{
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.section_line{
    width: 340px;
    margin: 20px auto 0 auto;
}
section.counter{
    text-align: center;
}
.counter_container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.counter_item{
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), inset 0 0 20px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(5px);
    background-color: #1b0202;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.counter_item_wide{
    grid-column: 1 / -1;
}
.counter_item_1 {
    background-image: url(../img/counters_item_1.png);
}
.counter_item_2 {
    background-image: url(../img/counters_item_2.png);
}
.counter_item_3 {
    background-image: url(../img/counters_item_3.png);
}
.counter_item_badge {
    width: max-content;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 166, 0, 0.12);
    margin: 0 auto 10px auto;
}
.counter_item_number{
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 2px;
}
.counter_item_subnumber{
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}
.counter_item_text{
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
}
.notice{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(255, 166, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.notice_glow {
    z-index: 0;
    position: absolute;
    top: -50px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 190, 70, 0.18) 0%, rgba(255, 166, 0, 0.08) 45%, rgba(255, 166, 0, 0) 75%);
    pointer-events: none;
}
.notice_header{
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}
.notice_img {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 166, 0, 0.9) 0%, rgba(226, 160, 40, 0.35) 100%);
    box-shadow: 0 8px 18px rgba(255, 166, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.notice_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.notice_container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notice_title{
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1b0202;
    padding-left: 4px;
}
.notice_message{
    position: relative;
    text-align: left;
    background: #fff;
    color: #1b0202;
    padding: 15px 15px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.notice_message::before{
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
    border-top-left-radius: 3px;
}
.notice_header,
.notice_message{
    position: relative;
    z-index: 1;
}
section.service{
    padding-top: 60px;
}
.service_item{
    position: relative;
}
img.service_item_three{
    position: absolute;
    right: -50px;
    bottom: 30px;
    width: 170px;
    transform-origin: right bottom;
    animation: service_item_three 4.2s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}
@keyframes service_item_three{
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(6deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.service_item_header{
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    min-height: 260px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.service_item_overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 7, 3, 0.28) 0%, rgba(16, 7, 3, 0.62) 55%, rgba(10, 4, 2, 0.82) 100%);
    z-index: 1;
}
.service_item_img_1{
    background-image: url("../img/service_item_img_1.png");
}
.service_item_img_2{
    background-image: url("../img/service_item_img_2.png");
}
.service_item_img_3{
    background-image: url("../img/service_item_img_3.png");
}
.service_item_img_4{
    background-image: url("../img/service_item_img_4.png");
}
.service_item_img_5{
    background-image: url("../img/service_item_img_5.png");
}
.service_item_img_6{
    background-image: url("../img/service_item_img_6.png");
}
.service_item_img_7{
    background-image: url("../img/service_item_img_7.png");
}
.service_item_img_8{
    background-image: url("../img/service_item_img_8.png");
}
.service_item_img_9{
    background-image: url("../img/service_item_img_9.png");
}
.service_item_badge {
    position: relative;
    z-index: 2;
    width: max-content;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 166, 0, 0.16);
    backdrop-filter: blur(4px);
}
.service_item_title h3{
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}
.service_item_badge, .service_item_title{
    position: relative;
    z-index: 2;
}
.service_item_main{
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 0 18px rgba(255, 166, 0, 0.04);
}
.service_item_descr{
    font-size: 14px;
    line-height: 20px;
}
.service_item_list ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.service_item_list ul li{
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}
.service_item_list ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 166, 0, 1) 0%, rgba(180, 90, 0, 1) 100%);
    box-shadow: 0 0 12px rgba(255, 166, 0, 0.3);
}
.offer_container{
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    padding: 24px 18px 24px 110px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
}
.offer_phone_wrap{
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.offer_phone{
    width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
    transform-origin: center;
    animation: offer_phone 4.5s ease-in-out infinite;
}
@keyframes offer_phone {
    0%{
        transform: rotate(0deg);
    }
    25%{
        transform: translateY(-6px) rotate(-2deg);
    }
    50%{
        transform: rotate(0deg);
    }
    75%{
        transform: translateY(-4px) rotate(2deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.offer_badge{
    width: max-content;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 166, 0, 0.16);
}
.offer_title h3{
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.offer_descr{
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.85);
}
.offer form{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
input, button, textarea{
    border-radius: 999px;
}
.offer form input{
    text-align: center;
    width: 100%;
    max-width: 240px;
    border: 1px solid rgba(245, 173, 0, 0.5);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 18px rgba(0, 0, 0, 0.18);
    padding: 14px 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.offer form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 26px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(0deg, rgba(180, 90, 0, 1) 0%, rgba(255, 166, 0, 1) 100%);
    box-shadow: 0 10px 24px rgba(255, 166, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    cursor: pointer;
}
.offer form button::after{
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/arrow_right.svg") center / contain no-repeat;
    animation: arrow_right_anim 2s ease-in-out infinite;
}
.offer_feature{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.offer_feature_item{
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 166, 0, 0.12);
}
section.review{
    padding-top: 60px;
}
.review_add{
    position: relative;
    overflow: hidden;
    padding: 30px 20px 20px 20px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    background-image: url("../img/review_add.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), inset 0 0 22px rgba(255, 166, 0, 0.04);
}
.review_add_glow{
    position: absolute;
    top: -65px;
    right: -30px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 166, 0, 0.22) 0%, rgba(255, 166, 0, 0.08) 45%, rgba(255, 166, 0, 0) 75%);
    pointer-events: none;
}
.review_add_descr{
    font-size: 14px;
    line-height: 22px;
}
.review_swiper{
    padding: 0 15px;
}
.review_swiper .swiper-wrapper{
    align-items: stretch;
}
.review_swiper .swiper-slide{
    display: flex;
    align-items: stretch;
    height: auto;
}
.review_first{
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26), inset 0 0 24px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
}
.review_first_title h3{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
}
.review_first_title h3 img{
    width: 20px;
    height: auto;
    margin-left: 4px;
    display: inline-block;
    vertical-align: -3px;
    animation: review_arrow 2.8s ease-in-out infinite;
    will-change: transform;
}
@keyframes review_arrow{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(6px);
    }
    100%{
        transform: translateX(0);
    }
}
.review_first_descr{
    font-size: 12px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}
.review_first_icons{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review_first_item{
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 166, 0, 0.14);
    display: flex;
    gap: 10px;
}
.review_first_item_icon{
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}
.review_first_item_icon img{
    width: 42px;
    max-height: 36px;
    object-fit: contain;
}
.review_first_item_wrapper{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.review_first_item_title{
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.review_first_item_rating{
    display: flex;
    gap: 4px;
    margin-top: -1px;
}
.review_first_item_rating span{
    width: 10px;
    height: 10px;
    background-image: url(../img/star.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.review_first_item_count{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.review_item{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 15px;
    background: #fff;
    color: #1b0202;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.review_item_user{
    display: flex;
    gap: 15px;
    align-items: center;
}
.review_item_user_avatar{
    display: flex;
    align-items: center;
}
.review_item_user_avatar img{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}
.review_item_user_wrapper{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.review_item_user_name{
    font-size: 13px;
    font-weight: 700;
}
.review_item_user_city{
    font-size: 11px;
    color: rgba(27, 2, 2, 0.68);
}
.review_item_descr{
    font-size: 12px;
    line-height: 18px;
    color: rgba(27, 2, 2, 0.9);
    flex: 1;
}
.review_item_rating{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.review_item_rating_title{
    font-size: 12px;
    font-weight: 600;
}
.review_item_rating_stars{
    display: flex;
    gap: 4px;
    margin-top: -2px;
}
.review_item_rating_stars span{
    width: 13px;
    height: 13px;
    background-image: url("../img/star.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.review_last{
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at top center, rgba(255, 166, 0, 0.18) 0%, rgba(255, 166, 0, 0.03) 35%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 166, 0, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 24px rgba(255, 166, 0, 0.04);
}
.review_last_title h3{
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
}
.review_last_descr{
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.85);
}
.steps_container {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.steps_item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 16px;
    border-radius: 20px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 0 20px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
}
.steps_item:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 55px;
    top: calc(100% + 6px);
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255, 166, 0, 0.55) 0%, rgba(255, 166, 0, 0.05) 100%);
    border-radius: 10px;
    pointer-events: none;
}
.steps_item_img{
    position: relative;
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 166, 0, 0.16), 0 10px 22px rgba(0, 0, 0, 0.3), 0 0 22px rgba(255, 166, 0, 0.12);
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.steps_item_img_1{
    background-image: url("../img/counters_item_1.png");
}
.steps_item_img_2{
    background-image: url("../img/counters_item_2.png");
}
.steps_item_img_3{
    background-image: url("../img/counters_item_3.png");
}
.steps_item:not(:last-child) .steps_item_img::after{
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(0);
    width: 22px;
    height: 22px;
    background-image: url("../img/arrow_down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: steps_item_arrow 2.2s ease-in-out infinite;
    will-change: transform;
    z-index: 3;
}
@keyframes steps_item_arrow{
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}
.steps_item_container{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.steps_item_badge{
    width: max-content;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 166, 0, 0.12);
}
.steps_item_title{
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.steps_item_descr{
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.85);
}
section.about{
    padding-top: 60px;
}
.about_wrapper{
    padding: 24px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
}
.about_header{
    display: flex;
    align-items: center;
    gap: 15px;
}
.about_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(180deg, rgba(255, 166, 0, 0.8) 0%, rgba(255, 166, 0, 0.25) 100%);
    box-shadow: 0 8px 20px rgba(255, 166, 0, 0.15);
}
.about_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.about_container{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.about_badge{
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 166, 0, 0.16);
}
.about_title{
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}
.about_descr{
    font-size: 10px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.85);
}
.about_main{
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.88);
}
.about_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.about_gallery img{
    width: 100%;
    border: 1px solid rgba(255, 166, 0, 0.14);
    border-radius: 20px;
}
.about_help{
    position: relative;
    padding: 24px 18px;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(255, 166, 0, 0.18) 0%, rgba(255, 166, 0, 0.03) 35%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 166, 0, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 24px rgba(255, 166, 0, 0.04);
}
.about_bottom{
    padding: 24px 18px;
    border-radius: 20px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(255, 166, 0, 0.18) 0%, rgba(255, 166, 0, 0.03) 35%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 166, 0, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 24px rgba(255, 166, 0, 0.04);
}
.about_help_title{
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}
.about_help_descr{
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}
.about_swiper{
    padding: 0 15px;
}
.about_swiper .swiper-wrapper{
    align-items: stretch;
}
.about_swiper .swiper-slide{
    display: flex;
    align-items: stretch;
    height: auto;
}
.about_first{
    padding: 24px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.about_first_title h3{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
}
.about_first_title h3 img{
    width: 20px;
    height: auto;
    margin-left: 6px;
    display: inline-block;
    vertical-align: -3px;
    animation: arrow_right_anim 2.6s ease-in-out infinite;
    will-change: transform;
}
.about_first_descr{
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.85);
}
.about_first_message{
    background: #fff;
    color: #1b0202;
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 18px;
    position: relative;
}
.about_first_message::before{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
}
.about_first_user{
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 12px;
}
.about_first_user_img{
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(180deg,rgba(255, 166, 0, 0.8) 0%,rgba(255, 166, 0, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about_first_user_img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.about_first_user_wrapper{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.about_first_user_descr{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}
.about_first_user_title{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.about_item{
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 166, 0, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.about_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.faq_wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq_item{
    border-radius: 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 166, 0, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.faq_item.active{
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 166, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 166, 0, 0.08);
}
.faq_question{
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}
.faq_question span{
    display: block;
    flex: 1 1 auto;
}
.faq_question img{
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    transition: transform 0.35s ease;
}
.faq_item.active .faq_question img{
    transform: rotate(180deg);
}
.faq_answer{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}
.faq_item.active .faq_answer{
    grid-template-rows: 1fr;
}
.faq_answer_inner{
    overflow: hidden;
    padding-top: 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    transition: padding-top 0.4s ease;
}
.faq_item.active .faq_answer_inner{
    padding-top: 12px;
}
.faq_help{
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(255, 166, 0, 0.18) 0%, rgba(255, 166, 0, 0.03) 35%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 166, 0, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 0 25px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq_help_subtitle{
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.9;
}
.faq_help_title h3{
    position: relative;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}
.faq_help_descr{
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}
section.contacts{
    padding-top: 60px;
}
.contacts_container{
    text-align: center;
    padding: 26px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(255, 166, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(255, 166, 0, 0.04);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts_badge{
    width: max-content;
    margin: 0 auto;
    padding: 7px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 166, 0, 0.16);
    box-shadow: inset 0 0 12px rgba(255, 166, 0, 0.04);
}
.contacts_title h3{
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}
.contacts_descr{
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}
.contacts_descr span{
    font-weight: 600;
}
.contacts_wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
a.contacts_item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 166, 0, 0.14);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    text-align: left;
}
a.contacts_item::after{
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url(../img/arrow_right.svg) center / contain no-repeat;
    animation: contacts_arrow 2.2s ease-in-out infinite;
}
@keyframes contacts_arrow {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-4px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}
.contacts_item_img{
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.telegram_bg{
    background-color: #0092ff;
    background-image: linear-gradient(0deg, #004274 0%, #0092ff 100%);
    box-shadow: 0 4px 10px rgba(0, 146, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.whatsapp_bg{
    background-color: #00aa2a;
    background-image: linear-gradient(0deg, #004210 0%, #00aa2a 100%);
    box-shadow: 0 4px 10px rgba(0, 170, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.max_bg{
    background-color: #667dff;
    background-image: linear-gradient(0deg, #8400d1 0%, #667dff 100%);
    box-shadow: 0 4px 10px rgba(132, 0, 209, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.phone_bg{
    background-color: #ffa600;
    background-image: linear-gradient(0deg, #b45a00 0%, #ffa600 100%);
    box-shadow: 0 4px 10px rgba(255, 166, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.contacts_item_img img{
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.contacts_item_container{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contacts_item_title{
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.contact_item_descr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}
a.default_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(0deg, rgba(180, 90, 0, 1) 0%, rgba(255, 166, 0, 1) 100%);
    box-shadow: 0 10px 24px rgba(255, 166, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
a.default_btn::after{
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/arrow_right.svg") center / contain no-repeat;
    animation: arrow_right_anim 2s ease-in-out infinite;
}
@keyframes arrow_right_anim{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(6px);
    }
    100%{
        transform: translateX(0);
    }
}
footer{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}
footer a{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.modal_header{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}
.modal_header_title h3{
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.modal_header_close{
    display: flex;
    align-items: center;
}
.modal_header_close button{
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    outline: none;
    background-color: transparent;
    background-image: url('../img/close.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.modal_main{
    font-size: 14px;
    line-height: 20px;
}
.modal_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
.modal_btn a{
    padding: 0 20px;
    min-height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.modal_btn button.close{
    padding: 0 20px;
    min-height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    outline: none;
    cursor: pointer;
    background-color: #c74848;
    background-image: linear-gradient(0deg, #6e1414 0%, #c74848 100%);
    box-shadow: 0 8px 20px rgba(199, 72, 72, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.modal_form input, .modal_form textarea{
    text-align: left;
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(245, 173, 0, 0.5);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 18px rgba(0, 0, 0, 0.18);
    padding: 14px 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.modal_form textarea{
    resize: none;
    min-height: 80px;
    border-radius: 30px;
}
.modal_form button.send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(0deg, rgba(180, 90, 0, 1) 0%, rgba(255, 166, 0, 1) 100%);
    box-shadow: 0 10px 24px rgba(255, 166, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    cursor: pointer;
}
#modal_contact .messenger{
    padding-left: 0;
}
#modal_contact .messenger img.header_phone{
    top: -8px;
    right: 0px;
}
.review_message{
    margin-top: 15px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.4;
    display: none;
    text-align: left;
}
.review_message.error{
    display: block;
    color: #ff6666;
}
.review_message.success{
    display: block;
    color: #98ff6f;
}
section.info{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info_btn{ 
    display: flex;
    justify-content: center;
}
.fixed_messenger{
    position: fixed;
    z-index: 100;
    right: 15px;
    bottom: 15px;
    display: flex;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        visibility 0.45s ease;
    pointer-events: none;
}
.fixed_messenger a{
    background-color: #1b0202;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    position: relative;
    will-change: transform;
    animation: messengerPulse 3.6s ease-in-out infinite;
}
.fixed_messenger a img{
    margin-top: -11px;
    width: 24px;
}
.fixed_messenger a span{
    position: absolute;
    font-size: 7px;
    bottom: 6px;
}
.fixed_messenger a:nth-child(1){
    animation-delay: 0s;
}
.fixed_messenger a:nth-child(2){
    animation-delay: 1.2s;
}
.fixed_messenger a:nth-child(3){
    animation-delay: 2.4s;
}
@keyframes messengerPulse{
    0%{
        transform: scale(1);
    }
    8%{
        transform: scale(1.08);
    }
    16%{
        transform: scale(1);
    }
    100%{
        transform: scale(1);
    }
}
.fixed_online{
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    background-color: #fff;
    width: 265px;
    border-radius: 20px;
    color: #000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        visibility 0.45s ease;
    pointer-events: none;
}
.fixed_online_img{
    display: flex;
    align-items: center;
    flex: 0 0 50px;
}
.fixed_online_img img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.fixed_online_container{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fixed_online_title{
    font-size: 12px;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #1b0202;
}
.fixed_online_descr{
    font-size: 10px;
    line-height: 14px;
}
.fixed_online.is-visible,
.fixed_messenger.is-visible{
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    pointer-events: auto;
}
@media (max-width: 415px) {
    .offer_phone_wrap {
        left: -100px;
    }
    .offer_container {
        padding: 24px 18px 24px 100px;
    }
}
@media (max-width: 405px) {
    .offer_container {
        padding: 24px 18px 24px 90px;
    }
}
@media (max-width: 400px) {
    img.header_phone {
        right: 0;
    }
}
@media (max-width: 395px) {
    .offer_phone_wrap {
        left: -110px;
    }
    .offer_container {
        padding: 24px 18px 24px 80px;
    }
    .offer_feature_item {
        padding: 6px 8px;
    }
}
@media (max-width: 390px) {
    .section_title h2 {
        font-size: 29px;
    }
}
@media (max-width: 380px) {
    .offer_phone_wrap {
        left: -115px;
    }
    .offer_feature {
        gap: 6px;
    }
    .line,.section_line {
        max-width: 90%;
    }
    .phone {
        font-size: 33px;
    }
    .section_title h2 {
        font-size: 28px;
    }
    .notice_title {
        font-size: 12px;
    }
}
@media (max-width: 375px) {
    .offer_container {
        padding: 24px 18px 24px 70px;
    }
    .offer_feature_item {
        font-size: 9px;
    }
    .header_name {
        font-size: 140px;
    }
}
@media (max-width: 370px) {
    .phone {
        font-size: 32px;
    }
    .message {
        gap: 10px;
    }
    .section_title h2 {
        font-size: 27px;
    }
    .counter_container {
        grid-template-columns: repeat(1, 1fr);
    }
    .notice_title {
        font-size: 11px;
    }
}
@media (max-width: 365px) {
    .offer_container {
        padding: 24px 18px 24px 60px;
    }
}
@media (max-width: 360px) {
    .phone {
        font-size: 31px;
    }
    .message{
        flex-wrap: wrap;
        justify-content: center;
    }
    .message_container{
        align-items: center;
    }
    .message_text {
        text-align: center;
    }
    .section_title h2 {
        font-size: 26px;
    }
}
@media (max-width: 355px) {
    .offer_container {
        padding: 24px 18px 24px 70px;
    }
}
@media (max-width: 350px) {
    .phone {
        font-size: 30px;
    }
    .section_title h2 {
        font-size: 25px;
    }
    .notice_title {
        font-size: 10px;
    }
}
@media (max-width: 345px) {
    .offer_phone_wrap {
        left: -120px;
    }
    .offer_container {
        padding: 24px 18px 24px 60px;
    }
    .header_title h1 {
        font-size: 28px;
    }
}
@media (max-width: 340px) {
    .phone {
        font-size: 29px;
    }
}
@media (max-width: 335px) {
    .header_name {
        font-size: 130px;
    }
}