*{
    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{
    width: 321px;
    height: 118px;
    background-image: url("../img/btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    padding-top: 28px;
    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;
}
.container{
    padding: 0 15px;
}
.w100{
    width: 100%;
}
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.up90{
    margin-top: -90px;
}
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: -25px;
    left: 0;
    width: 100%;
    height: 36px;
    background-image: url("../img/border.png");
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
}
.border_bottom::after{
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 36px;
    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: inline-block;
    width: 321px;
    height: 118px;
    background-image: url("../img/btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 61px;
}
a.btn_default span{
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    background-position: top;
}











.header_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header_name {
    font-family: 'Good Vibes Pro';
    font-size: 75px;
    line-height: 115px;
    position: relative;
    width: max-content;
    margin: 0 auto;
    z-index: 2;
}
.header_name::before {
    content: "";
    position: absolute;
    top: -35px;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url(../img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.header_subname{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.header_subname h2{
    font-size: 20px;
    font-weight: normal;
}
.tv{
    display: flex;
    gap: 40px;
    justify-content: center;
}
.tv img{
    width: 70px;
    animation: pulse 4s infinite;
}
.header_title h1{
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    text-transform: uppercase;
}
.phone a{
    color: #fff;
    font-size: 38px;
    font-weight: 800;
}
.messenger{
    display: flex;
    justify-content: center;
    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%);
}






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: 40px;
}
.divider_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.divider_item_img img{
    width: 300px;
}
.divider_item_title h2{
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
    text-transform: uppercase;
}





section.offer{
    background-color: #fff;
    background-image: url("../img/bg_offer.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #4b1e08;
    padding: 90px 0 80px 0;
    text-shadow: none;
    position: relative;
}
section.offer::before {
    content: "";
    position: absolute;
    top: -85px;
    left: 0;
    width: 100%;
    height: 197px;
    background-image: url("../img/offer_top.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
section.offer::after {
    content: "";
    position: absolute;
    bottom: -81px;
    left: 0;
    width: 100%;
    height: 183px;
    background-image: url(../img/offer_bottom.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.offer_container{
    display: flex;
    align-items: center;
    gap: 20px;
}
.offer_title{
    text-align: right;
}
.offer_title h2{
    font-size: 30px;
    line-height: 34px;
    font-weight: 800;
    text-transform: uppercase;
}
.offer_timer {
    width: 150px;
    font-size: 24px;
    font-weight: 800;
    background-color: #b81717;
    padding: 8px 10px;
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.time_separator{
    font-size: 10px;
    font-weight: normal;
}
.offer_descr{
    font-weight: 500;
}
.offer_tag{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.offer_tag span{
    background-color: #b81717;
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 14px;
}
form.form_offer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
form.form_offer input{
    width: 280px;
    background-image: url("../img/bg_other.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #b81717;
    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-color: #b81717;
    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: 80px;
}
.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;
    position: relative;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 50%);
}
.service_item_tag{
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.service_item_tag div{
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 80%);
    text-shadow: none;
}
.service_item_tag div.service_tag{
    background-color: #b81717;
}
.service_item_tag div.service_timer{
    background-color: #fff;
    color: #000;
    width: 64px;
}
.service_item img{
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.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 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_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: 50px;
}




.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 #da1c1c;
    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 #da1c1c;
    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: 3;
    left: 0;
    top: 15%;
    background-color: #fff;
    color: #4b1e08;
    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-color: #b81717;
    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 #da1c1c;
    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: 10px 100px 20px 15px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 0px 10px 0 #000;
}
.video_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.counter_container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.counter_before, .counter_after {
    font-size: 18px;
}
.counter_number {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}
.counter_descr {
    margin-top: 5px;
    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) {
    .header_name {
        font-size: 72px;
    }
}
@media screen and (max-width: 408px) {
    .header_name {
        font-size: 70px;
    }
}
@media screen and (max-width: 395px) {
    .header_name {
        font-size: 68px;
    }
}
@media screen and (max-width: 383px) {
    .header_name {
        font-size: 65px;
    }
}
@media screen and (max-width: 367px) {
    .header_name {
        font-size: 63px;
    }
}
@media screen and (max-width: 360px) {
    .phone a {
        font-size: 36px;
    }
    a.btn_default {
        width: 100%;
    }
}
@media screen and (max-width: 357px) {
    .header_name {
        font-size: 61px;
    }
}
@media screen and (max-width: 350px) {
    .offer_title h2 {
        font-size: 28px;
        line-height: 32px;
    }
}
@media screen and (max-width: 345px) {
    .header_name {
        font-size: 59px;
    }
}
@media screen and (max-width: 340px) {
    .phone a {
        font-size: 34px;
    }
    .offer_title h2 {
        font-size: 26px;
        line-height: 30px;
    }
    a.btn_default {
        padding-top: 60px;
    }
}
@media screen and (max-width: 336px) {
    .header_name {
        font-size: 57px;
    }
}
@media screen and (max-width: 326px) {
    .header_name {
        font-size: 56px;
    }
}
