*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Gilroy';
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 1px #000;
}
form *{
    font-family: 'Gilroy';
    outline: none;
}
form textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 100px;
    min-height: 100px;
}
button{
    cursor: pointer;
}
form.form_default{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
form.form_default input{
    width: 280px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #f9b200;
    background-color: rgb(0 0 0 / 40%);
    color: #fff;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
form.form_default button{
    display: flex;
    justify-content: center;
    padding-top: 26px;
    width: 100%;
    height: 82px;
    background-image: url("../img/btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    animation: pulse 3s infinite;
}
form.form_default button span{
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.mobile{
    width: 430px;
    margin: 0 auto;
    background-image: url("../img/bg.png");
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center;
    overflow-x: hidden;
}
.container{
    padding: 0 15px;
}
.w100{
    width: 100%;
}
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}
.mt60{
    margin-top: 60px;
}
.mt70{
    margin-top: 70px;
}
.mt80{
    margin-top: 80px;
}
.mt90{
    margin-top: 90px;
}
.mt100{
    margin-top: 100px;
}
.up10{
    margin-top: -10px;
}
.up80{
    margin-top: -80px;
}
span.online{
    border-radius: 50%;
    background-color: #07d300;
}
span.online::before, span.online::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: rgba(7, 211, 0, 0.75);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    animation: online 1.5s infinite ease-out;
}
span.online::after {
    animation-delay: 0.75s;
}
@keyframes online {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.75;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}
@keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(.9);
    }
}
.gold{
    background: url("../img/gold.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-shadow: none;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-filter: drop-shadow(1px 1px #000);
    filter: drop-shadow(1px 1px #000);
}
.border_top, .border_bottom{
    position: relative;
}
.border_top::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 49px;
    background-image: url(../img/border.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}
.border_bottom::after{
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 49px;
    background-image: url(../img/border.png);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}
::-webkit-input-placeholder {
    color: #afafaf;
}
::-moz-placeholder {
    color: #afafaf;
}
:-ms-input-placeholder {
    color: #afafaf;
}
:-moz-placeholder {
    color: #afafaf;
}
a.btn_default {
    display: flex;
    justify-content: center;
    padding-top: 26px;
    width: 100%;
    height: 82px;
    background-image: url(../img/btn.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}
a.btn_default span{
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
    background-position: top;
}
@keyframes moveUpDown{
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
}
@keyframes fade {
    0%, 100% { 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
}
.header_name{
    position: relative;
    z-index: 1;
    font-family: 'A La Russ';
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}
.header_name_title{
    font-size: 116px;
    line-height: 116px;
}
.divider_header_container{
    position: relative;
    z-index: 1;
    margin-top: -90px;
}
img.divider_header{
    width: 100%;
    position: relative;
    z-index: 2;
}
header{
    position: relative;
}
.header_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header_title h1{
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    text-transform: uppercase;
}
.header_gif {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}
.header_gif_item{
    position: relative;
}
.header_gif_item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: -20px;
    width: 125px;
    height: 111px;
    background-image: url(../img/circle_light.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.header_gif_item img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.phone_number a{
    color: #fff;
    font-size: 38px;
    font-weight: 800;
}
.phone_descr{
    font-size: 14px;
}
.header_review{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.header_review_item{
    border-radius: 20px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%),
        radial-gradient(circle at 0% 0%, rgba(255,170,0,0.12) 0%, rgba(255,170,0,0) 48%),
        radial-gradient(circle at 100% 100%, rgba(180,0,0,0.20) 0%, rgba(180,0,0,0) 54%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,210,120,0.20);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 0 18px rgba(255,180,0,0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    position: relative;
}
.header_review_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header_review_item_title{
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.header_review_item_descr{
    font-size: 10px;
}
.header_review_item_stars{
    display: flex;
    gap: 4px;
}
.header_review_item_stars span{
    width: 10px;
    height: 10px;
    background-image: url("../img/star.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.header_review_item_count{
    font-size: 10px;
    opacity: .6;
}
img.header_yandex_img{
    position: absolute;
    width: 50px;
    right: -10px;
    top: -15px;
}
img.header_otzovik_img{
    position: absolute;
    width: 44px;
    right: -5px;
    top: -15px;
}
.messenger{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
    position: relative;
}
.messenger_img{
    position: absolute;
    right: -15px;
    bottom: -100px;
    width: 240px;
    pointer-events: none;
}
.messenger a{
    position: relative;
    z-index: 10;
    width: max-content;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
.messenger a.whatsapp{
    background: rgb(0,87,7);
    background: linear-gradient(0deg, rgba(0,87,7,1) 0%, rgba(0,164,13,1) 100%);
}
.messenger a.telegram{
    background: rgb(0,61,128);
    background: linear-gradient(0deg, rgba(0,61,128,1) 0%, rgba(0,103,217,1) 100%);
}
.messenger a.max{
    background: #8400d1;
	background: linear-gradient(0deg, rgba(132, 0, 209, 1) 0%, rgba(102, 125, 255, 1) 100%);
}
section.divider{
    padding: 40px 0;
}
.divider_title h3{
    font-size: 28px;
    line-height: 32px;
    font-weight: 800;
    text-transform: uppercase;
}
.divider_items{
    margin-top: 40px;
}
.divider_items{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.divider_item{
    display: flex;
    flex-direction: column;
}
.divider_item_img{
    position: relative;
}
.divider_item_img img.divider_item_img_main{
    width: 100%;
    position: relative;
    z-index: 2;
}
img.d_nolight {
    position: absolute;
    left: 0;
    top: -58px;
    z-index: 1;
    width: 100%;
}
img.d_light {
    position: absolute;
    left: 0;
    top: -58px;
    z-index: 1;
    width: 100%;
    animation: fade 3s infinite;
}
.divider_item_title{
    position: relative;
    z-index: 2;
    margin-top: 10px;
}
.divider_item_title h2{
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.divider_item_descr{
    margin-top: 10px;
    position: relative;
    z-index: 2;
}
section.offer {
    background-color: #fff;
    background-image: url(../img/bg_offer.png);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center;
    color: #340000;
    padding: 180px 0 140px 0;
    text-shadow: none;
    position: relative;
}
section.offer::before {
    content: "";
    position: absolute;
    top: -178px;
    left: 0;
    width: 100%;
    height: 390px;
    background-image: url(../img/offer_top.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
section.offer::after {
    content: "";
    position: absolute;
    bottom: -145px;
    left: 0;
    width: 100%;
    height: 276px;
    background-image: url(../img/offer_bottom.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}
.offer_title{
    margin-top: 20px;
}
.offer_title h2{
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    text-transform: uppercase;
}
.offer_descr{
    color: #fff;
    font-weight: 500;
}
form.form_offer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}
form.form_offer input{
    width: 280px;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #f9b200;
    text-align: center;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
    font-size: 18px;
}
form.form_offer button{
    width: max-content;
    background: rgb(56,5,5);
    background: linear-gradient(0deg, rgb(72 6 6) 0%, rgb(205 20 20) 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
    animation: pulse 3s infinite;
    font-size: 18px;
    font-weight: normal;
    position: relative;
    z-index: 1;
}
section.service{
    padding-top: 130px;
}
.section_title h3{
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    font-weight: 800;
}
.section_descr{
    margin-top: 20px;
}
.service_items{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(0 0 0 / 60%);
    border-radius: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
.service_item_img{
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service_item_img_1{
    background-image: url("../img/s1.jpg");
}
.service_item_img_2{
    background-image: url("../img/s2.jpg");
}
.service_item_img_3{
    background-image: url("../img/s3.jpg");
}
.service_item_img_4{
    background-image: url("../img/s4.jpg");
}
.service_item_img_5{
    background-image: url("../img/s5.jpg");
}
.service_item_img_6{
    background-image: url("../img/s6.jpg");
}
.service_item_img_7{
    background-image: url("../img/s7.jpg");
}
.service_item_img_8{
    background-image: url("../img/s8.jpg");
}
.service_item_img_9{
    background-image: url("../img/s9.jpg");
}
.service_item_img_10{
    background-image: url("../img/s10.jpg");
}
.service_item_img_11{
    background-image: url("../img/s11.jpg");
}
img.service_amulet{
    width: 68px;
    position: absolute;
    right: 22px;
    top: -5px;
    animation: smoothSwing 3s infinite ease-in-out;
    transform-origin: top center;
}
@keyframes smoothSwing {
    0%, 100% {
        transform: rotate(-4deg);
    }
    
    50% {
        transform: rotate(4deg);
    }
}
.service_item_title, .service_item_list{
    padding: 0 15px;
}
.service_item_title h2{
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 800;
}
.service_item_list{
    position: relative;
    z-index: 1;
}
.service_item_list ul{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.service_item_list ul li a{
    color: #fff;
}
section.connections{
    padding: 40px 0;
}
.connections_title h3{
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    text-transform: uppercase;
}
section.review{
    padding-top: 60px;
}
.review_rating_container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.review_rating_stars{
    display: flex;
    gap: 5px;
}
.review_rating_stars span{
    width: 18px;
    height: 18px;
    background-image: url("../img/star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.review_rating_title{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
}
.review_rating_descr b{
    color: #f9b200;
}
.review_items{
    margin-top: 40px;
}
.review_item{
    margin: 0 15px;
}
.review_item_header{
    display: flex;
    align-items: center;
    gap: 20px;
}
.review_item_header_img{
    display: flex;
    align-items: center;
}
.review_item_header_img img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 6px #000;
}
.review_item_header_container{
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.review_item_header_name{
    font-weight: 600;
    font-size: 18px;
}
.review_item_header_city{
    font-size: 14px;
    opacity: .6;
}
button.review_item_next{
    margin-left: auto;
    width: 36px;
    height: 36px;
    background-image: url("../img/flick.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    animation: rotate-animation 2s infinite alternate;
}
@keyframes rotate-animation {
    from {
      transform: rotate(0deg) translateX(0px);
    }
    to {
      transform: rotate(-20deg) translateX(-10px);
    }
}
.review_item_descr{
    background-color: #fff;
    color: #000;
    text-shadow: none;
    border-radius: 20px;
    padding: 15px 20px;
    margin-top: 20px;
    text-align: left;
}
section.about{
    padding-top: 60px;
}
footer{
    padding-top: 60px;
}
.modal_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal_header_title h3{
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.modal_header_close{
    display: flex;
}
a.modal_close{
    width: 26px;
    height: 26px;
    background-image: url("../img/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 3s infinite;
}
.modal_user{
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}
.modal_user_img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url("../img/me.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 6px #000;
    border: 1px solid #f9b200;
}
.modal_user_container{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.modal_user_online{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.modal_user_online span{
    position: relative;
    width: 6px;
    height: 6px;
    background-color: #07d300;
}
.modal_descr{
    text-align: left;
}
.modal_container .messenger{
    justify-content: flex-start;
    padding-left: 0;
}
.modal_container .messenger a{
    animation: none;
}
.modal_user_star{
    display: flex;
    gap: 5px;
}
.modal_user_star span{
    width: 10px;
    height: 10px;
    background-image: url("../img/star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.modal_user_review{
    margin-top: 2px;
    font-size: 12px;
}
form.form_review{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
form.form_review *{
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
form.form_review input, form.form_review textarea{
    background-color: rgb(0 0 0 / 40%);
    color: #fff;
    border: 2px solid #f9b200;
}
form.form_review button{
    background-color: #fff;
    color: #4b1e08;
    width: max-content;
    border: none;
    font-weight: 500;
}
.header_review_item {
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%), radial-gradient(circle at 0% 0%, rgba(255, 170, 0, 0.12) 0%, rgba(255, 170, 0, 0) 48%), radial-gradient(circle at 100% 100%, rgba(180, 0, 0, 0.20) 0%, rgba(180, 0, 0, 0) 54%), rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 210, 120, 0.20);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10), inset 0 0 18px rgba(255, 180, 0, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    position: relative;
}
.fast_messenger{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.035) 100%), rgba(24,0,0,0.72);
    border: 1px solid rgba(249,178,0,0.28);
    box-shadow: 0 14px 34px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 0 18px rgba(255,178,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.fast_messenger::before{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.045);
    pointer-events: none;
}
.fast_messenger::after{
    content: "";
    position: absolute;
    right: -18px;
    top: -22px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,145,0,0.28) 0%, rgba(255,145,0,0) 70%);
    pointer-events: none;
}
.fast_messenger_item{
    position: relative;
    overflow: hidden;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid rgba(255,213,91,0.32);
    box-shadow: 0 8px 18px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -8px 14px rgba(0,0,0,0.18);
    text-shadow: 0 1px 1px rgba(0,0,0,0.65);
}
.fast_messenger_item::before{
    content: "";
    position: absolute;
    left: -70%;
    top: -90%;
    width: 50%;
    height: 240%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: rotate(24deg);
    animation: fastMessengerShine 4.5s ease-in-out infinite;
}
.fast_messenger_item img{
    position: relative;
    z-index: 1;
    width: 22px;
}
.fast_messenger_whatsapp{
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.22) 0%, transparent 42%), linear-gradient(180deg, rgba(0,190,15,1) 0%, rgba(0,87,7,1) 100%);
}
.fast_messenger_telegram{
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.22) 0%, transparent 42%), linear-gradient(180deg, rgba(0,125,235,1) 0%, rgba(0,61,128,1) 100%);
}
.fast_messenger_max{
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.22) 0%, transparent 42%), linear-gradient(180deg, rgba(120,140,255,1) 0%, rgba(132,0,209,1) 100%);
}
.fast_messenger_item:active{
    transform: scale(.94);
}
@keyframes fastMessengerShine{
    0%, 58%{
        left: -70%;
        opacity: 0;
    }
    68%{
        opacity: 1;
    }
    100%{
        left: 130%;
        opacity: 0;
    }
}
.fixed_online_card{
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 100;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 270px;
    padding: 10px 15px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.035) 100%), rgba(24,0,0,0.72);
    border: 1px solid rgba(249,178,0,0.28);
    box-shadow: 0 14px 34px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 0 18px rgba(255,178,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    cursor: pointer;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fixed_online_card::before{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    border: 1px solid rgba(255,255,255,0.045);
    pointer-events: none;
}
.fixed_online_card::after{
    content: "";
    position: absolute;
    right: -22px;
    top: -26px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,145,0,0.28) 0%, rgba(255,145,0,0) 70%);
    pointer-events: none;
}
.fixed_online_card:hover{
    transform: translateY(-2px);
    border-color: rgba(249,178,0,0.42);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,145,0,0.16), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 18px rgba(255,178,0,0.05);
}
.fixed_online_card:active{
    transform: scale(.97);
}
.fixed_online_card:focus{
    outline: none;
}
.fixed_online_card:focus-visible{
    border-color: rgba(249,178,0,0.55);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 2px rgba(249,178,0,0.22), 0 0 20px rgba(255,145,0,0.18), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 18px rgba(255,178,0,0.05);
}
.fixed_online_avatar{
    position: relative;
    z-index: 1;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(180deg, #fff2a4 0%, #ffc229 32%, #ff9500 70%, #9d3d00 100%);
    box-shadow: 0 0 18px rgba(255,145,0,0.32);
}
.fixed_online_avatar img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}
.fixed_online_dot{
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #07d300;
    box-shadow: 0 0 10px rgba(7,211,0,0.95);
}
.fixed_online_dot::before,
.fixed_online_dot::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(7,211,0,0.55);
    transform: translate(-50%,-50%) scale(1);
    opacity: 0;
    animation: fixedOnlineDotPulse 1.6s ease-out infinite;
}
.fixed_online_dot::after{
    animation-delay: .8s;
}
.fixed_online_info{
    position: relative;
    z-index: 1;
    text-align: left;
}
.fixed_online_name{
    font-size: 16px;
    line-height: 18px;
    font-weight: 800;
    text-transform: uppercase;
    background-position: top;
}
.fixed_online_text{
    margin-top: 3px;
    color: rgba(255,255,255,0.84);
    font-size: 10px;
    line-height: 12px;
}
@keyframes fixedOnlineDotPulse{
    0%{
        opacity: .8;
        transform: translate(-50%,-50%) scale(1);
    }
    100%{
        opacity: 0;
        transform: translate(-50%,-50%) scale(3.4);
    }
}
.fixed_online_card,
.fast_messenger{
    transition: transform .55s cubic-bezier(.22,.9,.28,1), opacity .35s ease, visibility .35s ease;
    will-change: transform, opacity;
}
.fixed_online_card.is_hidden_by_section{
    transform: translateX(calc(-100% - 40px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.fast_messenger.is_hidden_by_section{
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.counter{
    border-radius: 20px;
    padding: 20px;
    background-image: url("../img/counter_bg1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(255, 210, 120, 0.20);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10), inset 0 0 18px rgba(255, 180, 0, 0.03);
    text-align: left;
    position: relative;
    background-color: #000;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 8px;
}
.counter_container{
    text-transform: uppercase;
    font-weight: 800;
    position: absolute;
    left: 30px;
    top: 10px;
    width: 180px;
    text-align: center;
    z-index: 1;
}
.counter_title{
    font-size: 20px;
}
.counter_number{
    font-size: 80px;
    line-height: 80px;
}
.counter_descr{
    font-size: 20px;
}
img.counter_textile{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 275px;
    pointer-events: none;
    user-select: none;
}
img.counter_candle{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    pointer-events: none;
    user-select: none;
}
section.form_notification{
    height: 100vh;
    display: flex;
    align-items: center;
}
.form_notification_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.form_notification_title h1{
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
}
.form_notification_btn a{
    display: block;
    border-radius: 20px;
    text-shadow: none;
    background-color: #fff;
    color: #4b1e08;
    width: max-content;
    border: none;
    font-weight: 500;
    padding: 8px 20px;
    font-size: 16px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
    animation: pulse 3s infinite;
}
.firefly {
    position: fixed;
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background: rgb(255, 191, 0);
    box-shadow: 0 0 5px 2px rgb(255, 204, 0);
    opacity: 0;
}
@media screen and (max-width: 430px) {
    .mobile{
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    .header_name_title {
        font-size: 110px;
        line-height: 110px;
    }
}
@media screen and (max-width: 380px) {
    .header_name_title {
        font-size: 104px;
        line-height: 104px;
    }
}
@media screen and (max-width: 370px) {
    a.btn_default span {
        font-size: 22px;
    }
    .phone_number a {
        font-size: 36px;
    }
}
@media screen and (max-width: 360px) {
    a.btn_default {
        width: 100%;
    }
}
@media screen and (max-width: 350px) {
    .offer_title h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .phone {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }
    .phone_number a {
        font-size: 33px;
    }
    .messenger{
        justify-content: space-between;
    }
    .phone::after {
        display: none;
    }
    a.btn_default span {
        font-size: 21px;
    }
    .header_name_title {
        font-size: 100px;
        line-height: 100px;
    }
}
@media screen and (max-width: 340px) {
    .offer_title h2 {
        font-size: 26px;
        line-height: 30px;
    }
    a.btn_default span {
        font-size: 20px;
    }
    .header_gif{
        margin-top: 35px;
    }
    .phone_number a {
        font-size: 31px;
    }
}
@media screen and (max-width: 330px) {
    .header_name_title {
        font-size: 96px;
        line-height: 96px;
    }
}