*{
    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%;
}
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}
.mt60{
    margin-top: 60px;
}
.mt80{
    margin-top: 80px;
}
.up10{
    margin-top: -10px;
}
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_img{
    background-image: url("../img/i1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 650px;
    position: relative;
}


.header_name{
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.header_name_title{
    position: relative;
    font-family: 'A La Russ';
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 115px;
    line-height: 115px;
}
.header_name_title::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    width: 280px;
    height: 1px;
    background-color: #f7d513;
}

.header_name_subtitle {
    position: relative;
    font-family: 'A La Russ';
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 74px;
    line-height: 74px;
}


.divider_header_container{
    position: relative;
    margin-top: -130px;
}
img.divider_header{
    position: relative;
    z-index: 2;
    width: 100%;
}
img.divider_header_nolight {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    z-index: 1;
}
img.divider_header_light {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    z-index: 1;
    animation: fade 3s infinite;
}

.header_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header_title h1{
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    text-transform: uppercase;
}


.phone{
    text-align: right;
    padding-left: 80px;
    padding-right: 15px;
    position: relative;
}
.phone_number a{
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}
.phone_descr{
    margin-top: 8px;
    font-size: 14px;
}
.phone_img_container{
    position: absolute;
    left: -5px;
    top: -13px;
}
img.phone_nolight {
    position: absolute;
    left: -10px;
    top: -30px;
    width: 130px;
}
img.phone_light {
    position: absolute;
    left: -10px;
    top: -30px;
    width: 130px;
    z-index: 1;
    animation: fade 3s infinite;
}
img.phone_bg{
    position: relative;
    z-index: 2;
    width: 92px;
}
img.phone_item{
    width: 75px;
    position: absolute;
    left: 4px;
    top: 0;
    animation: movePhone 4s infinite;
    z-index: 3;
}
@keyframes movePhone{
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
}

.messenger{
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.messenger a{
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
    animation: pulse 3s infinite;
}
.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%);
}
.video iframe{
    border: 2px solid #f9b200;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
    width: 100%;
    height: 280px;
    background-color: #000;
}




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;
    top: -34px;
    left: 9px;
    width: 348px;
}
img.d_light {
    position: absolute;
    top: -34px;
    left: 9px;
    z-index: 1;
    width: 348px;
    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: #fff;
    padding: 115px 0 145px 0;
    text-shadow: none;
    position: relative;
}
section.offer::before {
    content: "";
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    height: 259px;
    background-image: url(../img/offer_top.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}
img.offer_tarot {
    position: absolute;
    top: -83px;
    left: 95px;
    width: 170px;
    z-index: 2;
    transform-origin: 0 100%;
    animation: rotateTarot 3s infinite alternate;
}
@keyframes rotateTarot {
    0% {
        transform: rotate(-25deg);
    }
    100% {
        transform: rotate(-35deg);
    }
}
img.offer_top_nolight{
    position: absolute;
    top: -165px;
    left: 0;
    width: 100%;
}
img.offer_top_light{
    position: absolute;
    top: -165px;
    left: 0;
    width: 100%;
    z-index: 1;
    animation: fade 3s infinite;
}
section.offer::after {
    content: "";
    position: absolute;
    bottom: -52px;
    left: 0;
    width: 100%;
    height: 257px;
    background-image: url(../img/offer_bottom.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}
img.offer_bottom_nolight {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -70px;
}
img.offer_bottom_light {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    bottom: -70px;
    animation: fade 3s infinite;
}
.offer_title{
    margin-top: 20px;
}
.offer_title h2{
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    text-transform: uppercase;
}
.offer_descr{
    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(37,3,54);
background: linear-gradient(0deg, rgba(37,3,54,1) 0%, rgba(129,19,181,1) 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: 70px;
}
.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: 30px;
}
.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: 70px;
    position: absolute;
    right: 15px;
    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;
}




.fast_contact{
    position: fixed;
    z-index: 3;
    right: 20px;
    bottom: 20px;
}
.fast_contact a{
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url("../img/me.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 6px #000;
    border: 1px solid #f9b200;
}
.fast_contact a span{
    position: absolute;
    left: 4px;
    bottom: 2px;
    width: 8px;
    height: 8px;
}
.fast_contact a span.online::before, .fast_contact a span.online::after {
    width: 8px;
    height: 8px;
}
.fast_contact_popup {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    top: -54px;
    right: 27px;
    width: max-content;
    text-align: left;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #fff;
    color: #000;
    padding: 8px 12px;
    font-size: 13px;
    box-shadow: 0 0 5px 0px rgb(0 0 0 / 50%);
    text-shadow: none;
}





.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.gif");
    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;
}
.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;
}



button.menu_open{
    position: fixed;
    z-index: 6;
    left: 0;
    top: 30%;
    background-color: #fff;
    color: #000;
    font-family: 'Gilroy';
    font-size: 11px;
    font-weight: 600;
    font-style: normal;
    text-transform: lowercase;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 8px 6px 6px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
button.menu_open::before{
    content: "1";
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 18px;
    height: 18px;
    background: rgb(37,3,54);
background: linear-gradient(0deg, rgba(37,3,54,1) 0%, rgba(129,19,181,1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
button.menu_open.hidden-before::before {
    display: none;
}
.menu_open_img img{
    width: 30px;
    height: 30px;
}
.menu_container{
    text-align: left;
}
.menu_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_header_title h4{
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}
.menu_header_close{
    display: flex;
    align-items: center;
}
.menu_header_close button{
    width: 24px;
    height: 24px;
    background-image: url("../img/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    animation: pulse 3s infinite;
}
.menu_description {
    margin-top: 10px;
    font-size: 13px;
    width: 220px;
}
.menu_notification{
    margin-top: 20px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 8px 12px;
    margin-right: 15px;
    font-size: 14px;
    position: relative;
    text-shadow: none;
}
.menu_notification::after {
    content: "";
    position: absolute;
    right: -9px;
    bottom: -8px;
    width: 24px;
    height: 24px;
    background-image: url(../img/notification.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.menu_nav{
    margin-top: 30px;
}
.menu_nav nav ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.menu_nav nav ul li a{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.menu_nav nav ul li a::before{
    content: "";
    width: 4px;
    height: 4px;
    background-color: #f9b200;
    border-radius: 50%;
}
.menu_nav nav ul li ul {
    padding-left: 20px;
    margin: 8px 0 4px 0;
}
.menu_nav nav ul li ul li a{
    font-size: 14px;
}
.menu_divider{
    margin-top: 30px;
    width: 220px;
    height: 1px;
    background-color: rgb(255 255 255 / 30%);
}
.menu_user{
    margin-top: 15px;
    display: flex;
    gap: 15px;
}
.menu_user_img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url("../img/me.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 6px #000;
    border: 1px solid #f9b200;
}
.menu_user_container{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.menu_user_online{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.menu_user_online span.online{
    width: 6px;
    height: 6px;
    position: relative;
}
.menu_contact{
    margin-top: 12px;
}
.menu_contact a{
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu_contact a img{
    width: 20px;
    height: 20px;
}







.counter {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 0 20px 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0 #000;
}
img.counter_left{
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    z-index: 1;
}
img.counter_right{
    position: absolute;
    right: 0;
    top: 0;
    width: 62px;
    z-index: 1;
}

img.counter_circle_nolight{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -106px;
    width: 260px;
    z-index: 5;
    animation: rotate 10s linear infinite;
}
img.counter_circle_light{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -106px;
    width: 260px;
    z-index: 6;
    animation: rotate 10s linear infinite, fade 4s infinite;
}
@keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }
.video_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2);
}
.counter_container {
    width: 208px;
    height: 126px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background-image: url(../img/counter_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 18px;
}
.counter_number {
    font-size: 52px;
    line-height: 54px;
    font-weight: 800;
    text-align: center;
}
.counter_descr {
    margin-top: 30px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}



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: 420px) {
    img.offer_top_nolight {
        top: -155px;
    }
    img.offer_top_light {
        top: -155px;
    }
    img.offer_bottom_nolight {
        bottom: -50px;
    }
    img.offer_bottom_light {
        bottom: -50px;
    }
}
@media screen and (max-width: 410px) {
    .phone_img img {
        width: 70px;
    }
    .phone_number a {
        font-size: 34px;
    }
    .phone_descr {
        margin-top: 4px;
        font-size: 14px;
    }
    img.divider_header_nolight {
        bottom: -30px;
    }
    img.divider_header_light {
        bottom: -30px;
    }
    img.d_nolight {
        top: -27px;
        left: 9px;
        width: 330px;
    }
    img.d_light {
        top: -27px;
        left: 9px;
        width: 330px;
    }
}

@media screen and (max-width: 400px) {
    img.divider_header_nolight {
        bottom: -40px;
    }
    img.divider_header_light {
        bottom: -40px;
    }
    .phone_number a {
        font-size: 33px;
    }
    img.d_nolight {
        width: 320px;
    }
    img.d_light {
        width: 320px;
    }
}

@media screen and (max-width: 390px) {
    .phone_number a {
        font-size: 32px;
    }
    .phone_descr {
        margin-top: 4px;
        font-size: 13px;
    }
    img.divider_header_nolight {
        bottom: -35px;
        width: 296px;
    }
    img.divider_header_light {
        bottom: -35px;
        width: 296px;
    }
    img.d_nolight {
        width: 312px;
    }
    img.d_light {
        width: 312px;
    }
    img.offer_top_nolight {
        top: -145px;
    }
    img.offer_top_light {
        top: -145px;
    }
}
@media screen and (max-width: 380px) {
    .phone_number a {
        font-size: 31px;
    }
    .phone_descr {
        margin-top: 4px;
        font-size: 12px;
    }
    img.offer_bottom_nolight {
        bottom: -40px;
    }
    img.offer_bottom_light {
        bottom: -40px;
    }
}
@media screen and (max-width: 375px) {
    img.d_nolight {
        width: 305px;
    }
    img.d_light {
        width: 305px;
    }
}
@media screen and (max-width: 370px) {
    .phone_img img {
        width: 65px;
    }
    .phone_number a {
        font-size: 30px;
    }
    .phone_descr {
        margin-top: 4px;
        font-size: 12px;
    }
    a.btn_default span {
        font-size: 22px;
    }
    img.divider_header_nolight {
        bottom: -35px;
        width: 285px;
    }
    img.divider_header_light {
        bottom: -35px;
        width: 285px;
    }
}
@media screen and (max-width: 365px) {
    img.d_nolight {
        width: 295px;
    }
    img.d_light {
        width: 295px;
    }
}
@media screen and (max-width: 360px) {
    .phone_number a {
        font-size: 29px;
    }
    a.btn_default {
        width: 100%;
    }
    .header_name_title {
        font-size: 105px;
        line-height: 105px;
    }
    .header_name_subtitle {
        font-size: 70px;
        line-height: 70px;
    }
    img.divider_header_nolight {
        bottom: -40px;
    }
    img.divider_header_light {
        bottom: -40px;
    }
    img.offer_bottom_nolight {
        bottom: -30px;
    }
    img.offer_bottom_light {
        bottom: -30px;
    }
}
@media screen and (max-width: 355px) {
    img.d_nolight {
        width: 288px;
    }
    img.d_light {
        width: 288px;
    }
}
@media screen and (max-width: 350px) {
    .phone_img_container{
        display: none;
    }
    .phone {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
    }
    .messenger {
        gap: 10px;
        justify-content: center;
    }
    .messenger a {
        padding: 4px 14px;
    }
    .offer_title h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .phone_img img {
        width: 60px;
    }
    .phone_number a {
        font-size: 34px;
    }
    .phone_descr {
        margin-top: 2px;
        font-size: 12px;
    }
    a.btn_default span {
        font-size: 21px;
    }
}
@media screen and (max-width: 345px) {
    img.d_nolight {
        width: 280px;
    }
    img.d_light {
        width: 280px;
    }
}
@media screen and (max-width: 340px) {
    .offer_title h2 {
        font-size: 26px;
        line-height: 30px;
    }
    a.btn_default span {
        font-size: 20px;
    }
    img.divider_header_nolight {
        width: 270px;
    }
    img.divider_header_light {
        width: 270px;
    }
}
@media screen and (max-width: 330px) {
    .messenger {
        gap: 5px;
    }
    .phone_number a {
        font-size: 32px;
    }
    img.d_nolight {
        width: 270px;
    }
    img.d_light {
        width: 270px;
    }
}