:root{
    --main-font: 'Poppins', sans-serif;
    --black: #000000;
    --main-color: #AEAEAE;
    --hover-main-color: #ffffff;
    --border-radius: 5px
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: optional
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: optional
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: optional
}


#wpadminbar{
    display: none
}
html{
    margin-top: 0!important
}
/* common styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
html{
    font-size: 10px;
    overflow: hidden
}
body{
    font-size: 1.6rem;
    font-family: var(--main-font);
    font-weight: 400;
    line-height: 1.4;
    color: var(--main-color);
    background-color: var(--black);
    max-width: 100vw;
    overflow: hidden
}
::-webkit-scrollbar {
    width: 0
}
::-webkit-scrollbar-track {
    background: var(--black)
}
::-webkit-scrollbar-thumb {
    background: var(--main-color)
}
address{
    font-style: normal
}
.container{
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto
}
section.popup-section .container{
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}
a:not(.btn){
    text-decoration: none;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
a:not(.btn):hover{
    color: var(--hover-main-color);
    -webkit-text-fill-color: var(--hover-main-color)
}
.content a{
    color: var(--hover-main-color)
}
h1{
    font-size: 4rem;
    color: var(--hover-main-color)
}

h2{
    font-size: 3.2rem;
    color: var(--hover-main-color);
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

h3{
    font-size: 2.6rem;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
h4, .accordion-item-header-title{
    font-size: 2.2rem;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
h4:not(:first-child){
    margin-top: 15px
}

ul li{
    list-style: none;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
ul li:not(nav ul li){
    padding-left: 25px;
    position: relative
}
ul li:not(nav ul li):before{
    content: '➣';
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
ul li:not(nav ul li):not(:first-child), ol li:not(:first-child){
    margin-top: 10px
}
.price ul li:not(nav ul li):before{
    top: 7px
}
ol{
    counter-reset: item
}
ol li{
    list-style: none;
    padding-left: 27px;
    position: relative;
    counter-increment: item;
    background: linear-gradient(180.00deg, rgb(255, 255, 255), rgb(174, 174, 174));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
ol li:before{
    content: counter(item)'.';
    color: var(--main-color);
    position: absolute;
    left: 0;
    font-weight: 600
}
strong{
    color: var(--hover-main-color)
}

/* end of common styles */



/* common class styles */

/* buttons */
.btn, [type="submit"]{
    padding: 0 30px;
    height: 45px;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transition: 0.3s
}
.btn:hover{
    border-color: var(--hover-main-color);
    color: var(--hover-main-color);
    transition: 0.3s
}
.black-btn{
    color: var(--black);
    border-color: var(--black)
}


/* end of buttons */
.grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 75px
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}



.none{
    display: none!important
}
.opacity{
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: 0.3s
}



.img-container{
    display: flex;
    justify-content: center;
    align-items: center
}
.img-container img{
    object-fit: cover;
    width: 100%;
    height: 100%
}

/* end of common class styles */


/* social */
.social-icons{
    display: flex;
    align-items: center;
    gap: 10px
}
.social-icons a{
    width: 30px!important;
    height: 30px
}

/* end of social */


/* header */
.logo{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3
}
.logo img{
    height: 70px
}
.menu-open{
    position: absolute;
    top: 40.5px;
    right: 20px;
    z-index: 3;
    width: 33px;
    animation: opacity 2.5s ease-out infinite
}

@keyframes opacity{
    0%{
        opacity: 1
    }

    100%{
        opacity: 0.4
    }
}

.social{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 39px;
    right: 80px;
    z-index: 3
}
.main-menu + .social .tg img{
    width: 25px
}
.social a{
    display: flex
}
.main-menu .social .map img{
    border-radius: 0;
    margin-top: -5px
}
.tel{
    padding-left: 30px;
    position: relative;
    transition: 0.3s;
    font-weight: 600
}
.tel:before{
    content: "";
    background: url('../img/icons/tel-gray.svg') no-repeat;
    background-size: 19px;
    display: inline-block;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    top: 3px;
    transition: 0.3s

}
.tel:hover{
    color: var(--hover-main-color);
    transition: 0.3s
}
.tel:hover:before{
    background: url('../img/icons/tel-white.svg') no-repeat;
    background-size: 19px;
    transition: 0.3s
}
.social img{
    border-radius: 50%;
    transition: 0.3s
}
.social img:not(.map img, .tik-tok img):hover{
    box-shadow: 0 0 10px 1.5px rgba(174, 174, 174, 0.5);
    transition: 0.3s
}
/*.tg img, .i img{*/
/*    height: 18px;*/
/*    position: absolute;*/
/*    top: 4px;*/
/*    transition: 0.3s*/
/*}*/
/*.tg img:last-child, .i img:last-child{*/
/*    opacity: 0*/
/*}*/
/*.tg:hover img:first-child, .i:hover img:first-child{*/
/*    opacity: 0;*/
/*    transition: 0.3s*/
/*}*/
/*.tg:hover img:last-child, .i:hover img:last-child{*/
/*    opacity: 1;*/
/*    transition: 0.3s*/
/*}*/
.menu-open img{
    position: absolute;
    transition: 0.3s;
    cursor: pointer
}

.main-menu .social{
    bottom: 60px;
    top: auto;
    left: 30px;
    z-index: 4
}
.main-menu .social img{
    width: 35px;
    height: 35px;
    top: 0
}
/*.menu-open img:last-child{*/
/*    opacity: 0*/
/*}*/
/*.menu-open:hover img:first-child{*/
/*    opacity: 0;*/
/*    transition: 0.3s*/
/*}*/
/*.menu-open:hover img:last-child{*/
/*    opacity: 1;*/
/*    transition: 0.3s*/
/*}*/
.main-menu{
    position: fixed;
    right: 0;
    top: 0;
    height: 100dvh;
    box-shadow: 0 0 10px 1.5px rgba(174, 174, 174, 0.5);
    /*border-left: 1px solid var(--main-color)*/
    z-index: 5;
    transform: translateX(calc(100% + 60px));
    transition: 0.3s
}
.main-menu.open{
    transform: translateX(0);
    transition: 0.3s
}
.main-menu nav{
    width: 100%;
    max-width: 70vw;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px 50px 30px 30px;
    background: var(--black);
    position: relative;
    z-index: 4
}
.main-menu ul li a{
    /*text-transform: uppercase;*/
    display: inline-block;
    padding: 10px 0;
    line-height: 1.6;
    transition: 0.3s
}
.main-menu ul li:hover a{
    color: var(--hover-main-color);
    transition: 0.3s
}
.menu-close{
    background: var(--black);
    width: 51px;
    height: 50px;
    border-radius: 0 0 0 5px;
    position: absolute;
    top: 0;
    left: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 5px;
    box-shadow: 0 0 10px 1.5px rgba(174, 174, 174, 0.5);
    z-index: 3;
    cursor: pointer
}
.menu-close img{
    transform: rotate(-90deg)
}
.top-banner{
   border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    position: fixed;
    top: 100px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    /*display: none*/
}
.cost .top-banner{
    top: 0;
    border: none
}
.top-banner p{
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--hover-main-color);
    white-space: nowrap
}
.infinite-slider {
    display: flex;
    overflow: hidden;
    user-select: none;
    /*gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);*/
    gap:0
}

.infinite-slider__items {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);*/
    gap: 0;
    min-width: 100%;
    animation: scroll-x 30s linear infinite;
}
.infinite-slider__items img{
    max-height: 40px;
    border-radius: 5px;
    filter: grayscale(100%)
}

@media (prefers-reduced-motion: reduce) {
    .infinite-slider__items {
        animation-play-state: paused;
    }
}

/* .infinite-slider--reverse .infinite-slider__items {
    animation-direction: reverse;
    animation-delay: -3s;
} */

@keyframes  scroll-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14)));
    }
}


.top-banner p span{
    display: inline-block;
    margin: 0 15px
}

/* end of header */

select, input{
    background: none;
    outline: none;
    border: 1px solid #ffffff20;
    border-radius: 5px;
    height: 45px;
    width: 100%;
    color: var(--main-color);
    padding: 0 20px;
    cursor: pointer
}
select::-webkit-scrollbar{
    width: 0
}
select:hover, input:hover, select:focus, input:focus{
    border: 1px solid var(--hover-main-color);
    color: var(--hover-main-color)
}
select{
    appearance: none
}
select > option{
    background: var(--black)
}
select > option:hover{
    background: var(--black)
}
.select{
    position: relative;
    display: block
}
.select:after{
    content: url("../img/icons/arrow-down-white.svg");
    position: absolute;
    right: 20px;
    top: 11px;
    pointer-events: none;
    transition: 0.3s
}
.select:hover:after{
    transform: rotate(-180deg);
    transition: 0.3s
}
.time-1 .select:after, .time-2 .select:after{
    top: 8px
}

[type="date"]::-webkit-calendar-picker-indicator {
    color: var(--hover-main-color);
    cursor: pointer;
    /*pointer-events: none*/
}
input[type="date"]{
    color-scheme: dark
}
.wpcf7 form.sent .wpcf7-response-output, .wpcf7 form .wpcf7-response-output {
    border-color: var(--hover-main-color)!important;
    border-radius: var(--border-radius);
    padding: 10px 30px;
    margin: 0;
    width: fit-content
}

/* footer */
.footer{
    display: none
}
/* end of footer */