*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #000;
    color: #fff;
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 18px;
    text-shadow: 1px 1px 1px #000;
}
p{
    font-size: 18px;
    line-height: 20px;
}
.container{
    padding: 0 10px;
}
.mobile{
    width: 430px;
    margin: 0 auto;
    background-color: #270d02;
    color: #fff;
    background-image: url("../img/bg.png");
    background-size: auto;
    background-repeat: repeat-y;
    background-position: center;
    position: relative;
}
.gold{
    color: #ffeb00;
    text-shadow: none;
    background-image: url("../img/gold.webp");
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.gold_logo{
    color: #ffeb00;
    text-shadow: none;
    background-image: url("../img/gold_logo.png");
    background-repeat: repeat;
    background-position: 0 -45px;
    background-size: contain;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.w100{
    width: 100%;
}
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
a{
    text-decoration: none;
}

section.header_top{
    position: relative;
    z-index: 1;
}
.header_top_container{
    height: 72px;
    display: flex;
    gap: 10px;
}
.header_top_logo {
    font-weight: 800;
    font-size: 48px;
    text-transform: uppercase;
    width: 165px;
    position: relative;
    display: flex;
    align-items: center;
}
.header_top_logo::after {
    content: "";
    position: absolute;
    right: 6px;
    top: -15px;
    width: 85px;
    height: 85px;
    background-image: url(../img/header_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.header_top_descr{
    font-size: 12px;
    display: flex;
    align-items: center;
    flex-grow: 1;
}
ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.header_top_menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header_top_menu button{
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    background-image: url("../img/menu3.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.header_top_menu span{
    font-size: 12px;
    text-transform: lowercase;
    opacity: .4;
}



img.header_img{
    margin-top: -40px;
}

section.header_btm{
    margin-top: -60px;
}
.header_btm_title{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.header_btm_title h1{
    font-size: 30px;
    line-height: 32px;
    font-weight: 800;
    text-transform: uppercase;
}
.header_btm_title h4{
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    text-transform: uppercase;
}
.header_btm_title h5{
    font-size: 20px;
    line-height: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.devider{
    width: 100%;
    height: 58px;
    background-image: url("../img/devider.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}

section.header_mid{
    position: relative;
}
.tv{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: 10px;
    bottom: 100px;
    color: #fff;
    width: 160px;
}
.tv_descr{
    font-size: 12px;
    line-height: 14px;
}
.tv_items{
    display: flex;
    align-items: center;
    gap: 15px;
}
.tv img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}




.marquee-container{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 50px;
    color: #270d02;
    text-shadow: none;
}
.marquee{
    display: flex;
    position: absolute;
    animation: marquee 30s linear infinite;
}
.marquee-item{
    padding: 0 20px;
    height: 40px;
    width: max-content;
    line-height: 50px;
    display: inline-flex;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    
}
@keyframes marquee{
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}




.contact{
    position: relative;
    overflow: hidden;
}
.contact::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -15px;
    width: 100px;
    height: 100px;
    background-image: url(../img/fly.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: right bottom;
    animation: circle-motion 3s ease-in-out infinite;
}
.phone{
    display: flex;
    gap: 20px;
    padding: 0 10px;
}
.phone_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #e2a827;
    border-radius: 100%;
}
.phone_img img{
    width: 36px;
}
.phone_number{
    color: #fff;
}
.phone_number a{
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.phone_callback a{
    color: #fff;
    font-size: 16px;
    font-style: italic;
    border-bottom: 1px dashed #fff;
}
.messenger{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 10px 0 10px;
}
.messenger_descr{
    width: 130px;
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
}
.messenger_items{
    display: flex;
    gap: 20px;
    align-items: center;
}
.messenger_items a{
    background-color: #4b1e0a;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
    transition: transform 0.5s ease;
    animation: pulseAnimation 3s infinite;
}
@keyframes pulseAnimation {
    0% {
      transform: scale(.9);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(.9);
    }
}
a.whatsapp{
    background: rgb(1,59,4);
    background: linear-gradient(0deg, rgba(1,59,4,1) 0%, rgba(0,209,21,1) 100%);
}
a.telegram{
    background: rgb(0,30,78);
    background: linear-gradient(0deg, rgba(0,30,78,1) 0%, rgba(0,140,230,1) 100%);
}
a.viber{
    background: rgb(46,0,78);
    background: linear-gradient(0deg, rgba(46,0,78,1) 0%, rgba(135,0,230,1) 100%);
}
.messenger_items a img{
    width: 24px;
    height: 24px;
}





section.list{
    overflow: hidden;
}
.section_name h3{
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.list_item{
    display: flex;
    gap: 20px;
}
.list_item_img{
    display: flex;
    align-items: center;
}
.list_item_img img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid #e2a827;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.list_item_title h4{
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.list_item_descr{
    font-size: 14px;
}



section.service{
    overflow: hidden;
}
.service_item_title h2{
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.service_item_img{
    margin-top: -15px;
    height: 360px;
    padding: 50px 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.service_img_1{
    background-image: url("../img/s1.png");
}
.service_img_2{
    background-image: url("../img/s2.png");
}
.service_img_3{
    background-image: url("../img/s3.png");
}
.service_img_4{
    background-image: url("../img/s4.png");
}
.service_img_5{
    background-image: url("../img/s5.png");
}
.service_img_6{
    background-image: url("../img/s6.png");
}
.service_item_list ul{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.service_item_list ul li a{
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
.service_item_list ul li a::before{
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #e2a827;
}
.service_item_btn{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.service_item_btn a{
    width: max-content;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.service_item_descr{
    font-style: italic;
    font-size: 16px;
    padding: 0 10px;
}
.service_item_descr_flower{
    position: relative;
}
.service_item_descr_flower::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -90px;
    width: 180px;
    height: 105px;
    rotate: 25deg;
    background-image: url(../img/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: right bottom;
    animation: circle-motion 2s ease-in-out infinite;
}
@keyframes circle-motion {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(-5deg);
    }
}






.work_item{
    display: flex;
    gap: 20px;
}
.work_item_img{
    position: relative;
}


.work_item_img span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background-color: #e2a827;
    color: #4b1e0a;
    font-size: 16px;
    font-weight: 800;
    z-index: 1;
    right: 4px;
    top: 4px;
}
.work_item_img span::before, .work_item_img span::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(226, 168, 39, 0.5);
    animation: rippleEffect 3s infinite ease-out;
    z-index: -1;
}
.work_item_img span::before {
    width: 100%;
    height: 100%;
    transform: scale(1);
    animation-delay: -0.5s;
}
.work_item_img span::after{
    width: 100%;
    height: 100%;
    transform: scale(0);
}
@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.work_item_img{
    display: flex;
    align-items: center;
}
.work_item_img img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid #e2a827;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.work_item_img_arrow::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -23px;
    width: 20px;
    height: 20px;
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: smoothMove 1s infinite ease-in-out;
}
@keyframes smoothMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(4px);
    }
}
.work_item_title h4{
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.work_item_descr{
    font-size: 14px;
    font-style: italic;
}








.video_item{
    position: relative;
}
.video_item::before {
    content: "";
    position: absolute;
    top: -30px;
    rotate: 35deg;
    right: -10px;
    width: 180px;
    height: 105px;
    background-image: url(../img/flower.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: right bottom;
    animation: circle-motion 2s ease-in-out infinite;
}
iframe{
    border-radius: 10px;
    border: 2px solid #e2a827;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}







section.counter{
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.counter_one{
    background-image: url("../img/c1.png");
}
section.counter_two{
    background-image: url("../img/c2.png");
}
.counter_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.counter_item_number{
    font-size: 44px;
    font-weight: 800;
    background-image: url("../img/bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.counter_item_container{
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    color: #4b1e0a;
    text-align: center;
    text-shadow: none;
    position: relative;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.counter_item_container::before{
    content: "";
    position: absolute;
    left: 80px;
    top: -90px;
    width: 100px;
    height: 100px;
    background-image: url("../img/flower.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    rotate: 55deg;
}
.counter_item_container::after{
    content: "";
    position: absolute;
    right: 80px;
    top: -90px;
    width: 100px;
    height: 100px;
    background-image: url("../img/flower_right.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    rotate: -55deg;
}
.conunter_item_title{
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.counter_item_descr{
    font-size: 16px;
    font-style: italic;
}






section.about{
    overflow: hidden;
}
.about_user{
    display: flex;
    gap: 20px;
    background-color: #fff;
    color: #4b1e0a;
    border-radius: 10px;
    padding: 10px;
    text-shadow: none;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.about_user_img{
    display: flex;
    align-items: center;
    position: relative;
}
.about_user_img::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #009e0d;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes pulse{
    0% {
        box-shadow: 0 0 0 0 rgba(69, 187, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(69, 187, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(69, 187, 0, 0);
    }
}
.about_user_img img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid #e2a827;
}
.about_user_container{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.about_user_title{
    font-size: 16px;
    font-weight: 800;
}
.about_user_title span{
    font-style: italic;
    color: #009e0d;
}
.about_user_descr{
    font-size: 14px;
    font-style: italic;
}

.about_item{
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    color: #4b1e0a;
    font-size: 14px;
    text-shadow: none;
    font-style: italic;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.about_item_img{
    display: flex;
    align-items: center;
}
.about_item_img img{
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 1px solid #e2a827;
}







.recent_slick{
    margin-top: 20px;
}
.recent_item{
    background-color: #fff;
    color: #4b1e0a;
    text-shadow: none;
    border-radius: 10px;
    padding: 20px 20px 10px 20px;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.recent_item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 95px;
    width: 130px;
    height: 75px;
    background-image: url(../img/flower_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    rotate: -140deg;
}
.recent_item_descr{
    font-size: 16px;
    font-style: italic;
    position: relative;
}
.recent_item_descr::before{
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    background-image: url("../img/quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
}
.recent_item_descr::after{
    content: "";
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    background-image: url("../img/quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    rotate: -180deg;
    margin-left: 5px;
}
.recent_item_container{
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.recent_item_container::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-image: url("../img/slide.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: slideLeftRight 2s ease-in-out infinite;
}
@keyframes slideLeftRight {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(4px);
    }
}
.recent_item_img{
    display: flex;
    align-items: center;
}
.recent_item_img img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #e2a827;
}
.recent_item_user{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.recent_item_user_name{
    font-size: 16px;
    font-weight: 600;
}
.recent_item_user_city{
    font-size: 12px;
    font-style: italic;
}
.recent_btn{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}
.recent_btn_item a {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: max-content;
    padding: 8px 16px;
    text-shadow: none;
    font-size: 16px;
    font-weight: 600;
    color: #4b1e0a;
    position: relative;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.recent_btn_item a::before{
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url("../img/rating.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.recent_btn_descr{
    font-size: 12px;
    font-style: italic;
    opacity: .6;
}
.recent_rating_descr strong{
    font-weight: 600;
    color: #e2a827;
}








section.lost{
    position: relative;
}
section.lost::before{
    content: "";
    position: absolute;
    right: 0;
    top: -30px;
    width: 180px;
    height: 140px;
    background-image: url(../img/lost.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.lost_title{
    width: 230px;
}
.lost_title h3{
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
form input, form textarea, form button{
    font-family: 'Gilroy';
    font-size: 18px;
    outline: none;
    border-radius: 10px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
form input, form textarea{
    border: 1px solid #e2a827;
    background-color: rgb(0 0 0 / 50%);
    color: #fff;
}
form input{
    width: 340px;
    height: 42px;
    padding: 0 20px;
}
form textarea{
    min-width: 340px;
    max-width: 340px;
    min-height: 120px;
    max-height: 120px;
    padding: 20px;
}
form input.form_phone{
    background-image: url("../img/pad.svg");
    background-position: 10px center;
    background-size: 22px;
    background-repeat: no-repeat;
    padding: 0 20px 0 45px;
}
form button{
    width: max-content;
    padding: 0 20px;
    height: 42px;
    background-color: #fff;
    color: #4b1e0a;
    border: none;
    font-weight: 600;
    cursor: pointer;
}












.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;
}



section.informer{
    box-shadow: 0px 0px 20px 0px #ffae0f;
}
.informer_item {
    background-color: #2f1305;
    padding: 40px 20px;
    color: #fff;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}
.informer_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(30 11 2 / 74%);
    z-index: 1;
}
.informer_item::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    width: 85px;
    height: 210px;
    background-image: url(../img/cross.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
    transform-origin: right top;
    animation: crossmotion 2s ease-in-out infinite;
}
@keyframes crossmotion {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(3deg);
    }
}
.informer_item_wrapper{
    position: relative;
    z-index: 3;
}
.informer_item_title{
    font-weight: 800;
    font-size: 26px;
    line-height: 28px;
    text-transform: uppercase;
}
.informer_item_descr{
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
}
.informer_item_btn{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.informer_item_btn a{
    padding: 8px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
video.video_background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




a.modal_close{
    position: absolute;
    right: 10px;
    top: 20px;
    width: 30px;
    height: 30px;
    background-image: url("../img/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.modal_container{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal_title h3 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
.modal_devider{
    margin: 20px 0;
    width: 280px;
    height: 1px;
    background-color: #fff;
    opacity: .2;
}
.modal_user{
    display: flex;
    gap: 20px;
}
.modal_user_img{
    display: flex;
    align-items: center;
    position: relative;
}
.modal_user_img img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #e2a827;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.modal_user_img::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 8px;
    height: 8px;
    background-color: #009e0d;
    border-radius: 50%;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
.modal_user_container{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.modal_user_title{
    font-size: 16px;
    font-weight: 600;
}
.modal_user_title span{
    color: #009e0d;
    font-style: italic;
}
.modal_user_descr{
    font-size: 14px;
}
.modal_messenger{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal_messenger a{
    width: max-content;
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.modal_messenger a img{
    width: 18px;
}


.menu_container {
    padding: 10px 10px 20px 10px;
    color: #fff;
    text-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu_header{
    display: flex;
    justify-content: space-between;
}
.menu_title{
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 800;
}
.menu_close button{
    width: 25px;
    height: 25px;
    background-image: url("../img/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
}
.menu_descr{
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
}
.menu_nav{
    margin-top: 20px;
}
.menu_nav nav ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.menu_nav nav ul li a{
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.menu_nav nav ul li a::before{
    content: "";
    width: 5px;
    height: 5px;
    background-color: #e2a827;
    border-radius: 50%;
}
.menu_contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.menu_contact_descr{
    font-size: 14px;
}
.menu_contact_phone a{
    font-weight: 800;
    font-size: 28px;
}
.menu_contact_messenger{
    display: flex;
    gap: 20px;
}
.menu_contact_messenger a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_contact_messenger a img{
    width: 20px;
}


.help{
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #e2a827;
    background-image: url("../img/me.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}
.help::after{
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 8px;
    height: 8px;
    background-color: #009e0d;
    border-radius: 50%;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
.help_descr{
    position: absolute;
    left: -195px;
    top: -50px;
    background-color: #fff;
    border-radius: 10px;
    padding: 8px 16px;
    color: #4b1e0a;
    font-size: 13px;
    text-shadow: none;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0s linear 0.5s, transform 0.5s;
}
.help_descr.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
.help_descr.show {
    display: block;
    animation: fadeIn 1s forwards;
}
.help_descr.hide {
    animation: fadeOut 1s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}


footer{
    margin-top: 40px;
    display: flex;
    align-items: center;
    height: 24px;
    background-color: #fff;
    text-shadow: none;
}
footer a{
    color: #4b1e0a;
    font-size: 12px;
}


section.notify{
    height: 100vh;
    display: flex;
    align-items: center;
}
.notify_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.notify_title h1{
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}
.notify_btn{
    margin-top: 10px;
}
.notify_btn a{
    background-color: #fff;
    color: #4b1e0a;
    padding: 8px 16px;
    font-size: 16px;
    text-shadow: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
}








@media screen and (max-width: 430px) {
    .mobile{
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .phone_number a {
        font-size: 33px;
    }
    .contact::after {
        bottom: 0px;
        width: 80px;
        height: 80px;
    }
    .header_top_logo {
        width: 162px;
    }
    .header_top_container {
        gap: 5px;
    }
}
@media screen and (max-width: 390px) {
    .phone_number a {
        font-size: 32px;
    }
    .contact::after {
        bottom: 10px;
        width: 75px;
        height: 75px;
    }
}
@media screen and (max-width: 380px) {
    .phone_number a {
        font-size: 31px;
    }
    .counter_item_container {
        width: 320px;
    }
    .header_top_logo {
        width: 150px;
    }
    .header_top_logo::after {
        width: 65px;
        height: 85px;
    }
}
@media screen and (max-width: 370px) {
    .header_top_logo::after{
        display: none;
    }
    .header_top_logo {
        width: max-content;
    }
    .header_top_container {
        gap: 15px;
    }
    form input{
        width: 100%;
    }
}