@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Century Gothic';
    src: url('/wp-content/themes/alfa/fonts/CenturyGothic/centurygothic.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Century Gothic';
    src: url('/wp-content/themes/alfa/fonts/CenturyGothic/centurygothic_bold.ttf');
    font-weight: 600;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic';
}
html, body{
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
.background{
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.7;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
}
.wrapper{
    width: 1750px;
    margin: 0 auto;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.header-mobile{
    display: none;
    justify-content: space-between;
    align-items: center;
}
.xmark{
    display: none;
}
.burger{
    cursor: pointer;
}
.burger span{
    width: 30px;
    display: block;
    height: 3px;
    margin-bottom: 3px;
    background: #000;
}
.burger span:nth-child(2){
    width: 22px;
}
.burger span:nth-child(3){
    width: 26px;
}
.logo img{
    width: 80px;
}
.geolocation a{
    color: #000;
}
.geolocation a path{
    fill: #000;
}
.search{
    display: flex;
    align-items: center;
    position: relative;
}
.search img{
    width: 22px;
}
input, textarea{
    background: none;
}
.search input{
    outline: none;
    border: none;
    font-size: 16px;
    padding-left: 20px;
}
.results-list{
    position: absolute;
    top: 120%;
    left: 0;
    width: 40vw;
    border: 1px solid #000;
    background: #FFF;
    padding: 10px;
    display: none;
    z-index: 10;
}
.results-list.active{
    display: block;
}
.results-list a{
    display: block;
    padding: 5px;
}
.results-list a:hover{
    background: #EEE;
}
nav ul{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.menu-item{
    position: relative;
}
.sub-menu{
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
}
.menu-item-has-children:hover .sub-menu{
    opacity: 1;
    pointer-events: all;
}
.menu-item-has-children > a{
    pointer-events: none;
    cursor: default;
}
ul.sub-menu{
    display: block;
    width: 300px;
    background: #FFF;
    border: 1px solid #000;
    padding: 10px;
}
ul.sub-menu li{
    padding: 5px;
}
ul.sub-menu li:hover{
    background: #EEE;
}
.socials{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.socials img{
    width: 28px;
}
header{
    border-bottom: 2px solid #CCC;
    background: #FFF;
}
.main-container{
    margin-top: 20px;
    height: 80vh;
    border-radius: 100px;
    position: relative;
    margin-bottom: 150px;
}
/* .main-container::after{
    content: '';
    background: linear-gradient(to top, #000, transparent);
    width: 100%;
    height: 50%;
    pointer-events: none;
    left: 0;
    bottom: 0;
    position: absolute;
    display: block;
    border-radius: 100px;
} */
 
.prev{
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    cursor: pointer;
}
.next{
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.slide-background{
    opacity: 0;
    pointer-events: none;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 100px;
    position: absolute;
    z-index: -1;
    transition-duration: 0.4s;
    filter: brightness(0.6);
}
h1{
    font-size: 128px;
    color: #FFF;
    padding-top: 100px;
    text-align: center;
}
h1 span{
    display: none;
    max-width: 80%;
    margin: 0 auto;
}
h1 span.active{
    display: block;
}
.pseudo-slider_item{
    opacity: 0;
    pointer-events: none;
    background: #FFF;
    border-radius: 64px;
    max-width: 50%;
    padding: 30px;
    line-height: 150%;
    font-size: 18px;
    position: absolute;
    bottom: 100px;
    left: 0;
    transition-duration: 0.4s;
}
.pseudo-slider_item{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/* .pseudo-slider_item.second-slide{
    left: 50%;
    transform: translateX(-50%);
}
.pseudo-slider_item.second-slide::before{
    display: none;
}
.pseudo-slider_item.third-slide{
    left: auto;
    transform: none;
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.pseudo-slider_item.third-slide::after{
    content: url('../img/pseudo-before.png');
    position: absolute;
    right: -4px;
    top: -100px;
    transform: rotate(270deg);
    pointer-events: none;
}
.pseudo-slider_item.third-slide::before{
    display: none;
} */
.pseudo-slider_item::before{
    content: url('../img/pseudo-before.png');
    position: absolute;
    left: 0;
    top: -99px;
    pointer-events: none;
}
.slide-background.active, .pseudo-slider_item.active{
    opacity: 1;
    pointer-events: all;
}
.main-container-bottom{
    background: #FFF;
    width: 400px;
    position: absolute;
    bottom: -1px;
    padding: 50px;
    height: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.4s;
    border-bottom-left-radius: 100px;
}
.main-container-bottom[data-slide="1"]{
    left: 0;
}
/* .main-container-bottom[data-slide="2"]{
    left: 50%;
    transform: translateX(-50%);
}
.main-container-bottom[data-slide="3"]{
    left: auto;
    right: 0;
    transform: none;
}*/
.main-container-bottom::after{
    content: url('../img/pseudo-after.png');
    position: absolute;
    right: -99px;
    bottom: -4px;
}
/*
.main-container-bottom[data-slide="2"]::before{
    content: url('../img/pseudo-after.png');
    position: absolute;
    left: -100px;
    transform: rotate(180deg);
    bottom: 0;
}
.main-container-bottom[data-slide="2"]::after{
    content: url('../img/pseudo-after.png');
    position: absolute;
    right: -100px;
    bottom: -4px;
}
.main-container-bottom[data-slide="3"]::before{
    content: url('../img/pseudo-after.png');
    position: absolute;
    left: -100px;
    transform: rotate(180deg);
    bottom: 0;
}
.main-container-bottom[data-slide="3"]::after{
    display: none;
} */
a.button{
    background: #000;
    color: #FFF;
    text-align: center;
    padding: 15px 50px;
    border-radius: 32px;
}
.button{
    background: #000;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    color: #FFF;
    display: inline-block;
    cursor: pointer;
}
.catalog-header{
    margin-top: 50px;
    height: 300px;
    overflow: hidden;
    border-radius: 64px;
    position: relative;
}
.catalog-header img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: sepia(0.5) brightness(0.9);
}
.catalog-header h2{
    position: absolute;
    right: 100px;
    bottom: 30px;
}
h2{
    font-size: 80px;
    font-weight: 400;
    color: #FFF;
}
h2.black{
    color: black;
}
.catalog-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 50px;
    row-gap: 50px;
    column-gap: 5%;
    padding-bottom: 50px;
}
.catalog_item{
    width: 30%;
    display: block;
    transition-duration: 0.4s;
    padding: 20px;
}
.article{
    font-size: 14px;
    color: #777;
    font-weight: 600;
}
.catalog_item img{
    border-radius: 16px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition-duration: 0.4s;
}
.catalog_item:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.catalog_item:hover .catalog-button{
    border-radius: 0;
}
.catalog_item:hover img{
    border-radius: 0;
}
.category-name{
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}
.item-data{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-data p span{
    font-weight: 700;
}
.item-data p{
    font-size: 18px;
    font-weight: 600;
    width: 50%;
}
.in-stock{
    color: rgb(10, 196, 10);
    margin-top: 10px;
    display: block;
    font-weight: 600;
}
.to-order{
    color: red;
    margin-top: 10px;
    display: block;
    font-weight: 600;  
}
.catalog-button{
    border-radius: 16px;
    padding: 15px;
    border: 2px solid #000;
    display: inline-block;
    margin-top: 20px;
    transition-duration: 0.4s;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.item-data .catalog-button{
    width: 50%;
    margin-top: 0;
}
.catalog-button:hover{
    background: #000;
    color: #FFF;
}
.news-slider{
    overflow-x: clip;
    position: relative;
    margin-top: 100px;
}
.news-slider .news-slider_prev img{
    transform: rotate(180deg);
}
.news-slider .news-slider_prev{
    position: absolute;
    top: -50px;
    right: 50px;
    cursor: pointer;
    z-index: 2;
}
.news-slider .news-slider_next{
    position: absolute;
    top: -50px;
    right: 0;
    cursor: pointer;
    z-index: 2;
}
.news-wrapper{
    display: flex;
    padding-bottom: 100px;
}
.news-container h2{
    color: #000;
    text-align: center;
}
.news-wrapper{
    height: 40vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-left{
    height: 100%;
    width: 45%;
}
.news-left img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 32px;
    border-top-right-radius: 96px;
    border-bottom-left-radius: 128px;
    border-bottom-right-radius: 32px;
}
.news-right{
    width: 45%;
}
.news-right p{
    font-size: 18px;
}
.news-right b{
    font-size: 22px;
}
.news-supheader{
    font-weight: 600;
    font-size: 16px;
}
.news-header{
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}
.news-description{
    font-size: 18px;
}
.more{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 30px;
    color: rgb(10, 196, 10);
}
.benefits-container h2{
    color: #000;
    text-align: center;
}
.benefits-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.benefits_item{
    text-align: center;
}
.benefits_item p{
    margin-top: 20px;
}
footer{
    border-top: 2px solid #CCC;
}
.footer-logo{
    width: 200px;
    margin-bottom: 20px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.footer-left{
    width: 30%;
}
.contact-data{
    width: 400px;
}
.footer-list p{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
}
.footer-list li{
    margin: 10px 0;
}
.footer-right{
    width: 70%;
    display: flex;
    justify-content: flex-end;
}
.footer-menus{
    display: flex;
    column-gap: 50px;
    margin-right: 100px;
}
.footer-menus ul{
    list-style: disc;
}
.footer-menus ul li a{
    font-weight: 700;
}
.footer-items{
    width: 50%;
}
.footer-contact_item{
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    column-gap: 5px;
}
.footer-contact_item img{
    width: 20px;
    height: 20px;
}
.footer-contact_item span{
    font-weight: 700;
}
.footer-container .socials{
    margin-top: 30px;
}
.pt{
    margin-top: 50px;
}
.modal{
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #FFF;
    padding: 20px;
    opacity: 0;
    top: 0;
    pointer-events: none;
    transition-duration: 0.4s;
    z-index: 1000;
    border-radius: 16px;
}
.modal.active{
    pointer-events: all;
    top: 50%;
    opacity: 1;
}
.modal input{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(10, 196, 10);
    outline: none;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px 20px;
}
.modal input[type="submit"]{
    background: rgb(10, 196, 10);
    border: none;
    width: 70%;
    min-width: 250px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 24px;
    color: #FFF;
    cursor: pointer;
    font-weight: 600;
}
.modal-overlay{
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.4s;
    position: fixed;
}
.modal-overlay.active{
    opacity: 1;
    pointer-events: all;
}
.modal-open{
    cursor: pointer;
}
.modal-xmark{
    width: 20px;
    display: block;
    margin-left: auto;
    cursor: pointer;
}

/* Отзывы */

.reviews-wrapper{
    margin-top: 50px;
}
.reviews{
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
}
.reviews__item{
    border: 2px solid #000;
    padding: 20px;
    border-radius: 32px;
    margin-bottom: 40px;
    width: 30%;
}
.reviews__item-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review-author{
    font-size: 18px;
    font-weight: 700;
}
.review-date{
    font-weight: 300;
    margin-top: 10px;
}
.stars{
    margin-top: 10px;
}
.stars svg{
    width: 15px;
    height: 15px;
}
.stars svg.filled path{
    fill: yellow;
}
.review-photo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
}
.review-content{
    margin-top: 30px;
}
.reviews-form{
    margin-bottom: 50px;
    margin-left: 0 !important;
}
.reviews-form input, .reviews-form textarea{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(10, 196, 10);
    outline: none;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px 20px;
}
.reviews-form input[type="submit"]{
    background: rgb(10, 196, 10);
    border: none;
    width: 70%;
    min-width: 250px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 24px;
    color: #FFF;
    cursor: pointer;
    font-weight: 600;
}

/* Страница новости */

#single-news{
    overflow: hidden;
}
.single-main_container{
    width: 100vw;
    height: 91vh;
    overflow: hidden;
}
.single-thumbnail{
    width: 100%;
    height: 100%;
    max-width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.single-thumbnail img{
    width: 100%;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.single-content_container{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.content p{
    margin: 10px 0;
}
.content strong{
    font-size: 20px;
}
.content strong{
    font-size: 16px;
    font-style: italic;
}
.single-title h1{
    font-size: 80px;
    max-width: 80%;
    margin: 0 auto;
}

/* Карточка товара */

.single-product-data{
    width: 100%;
}
.spd-top{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.single-product-attributes{
    display: flex;
    justify-content: space-between;
}
.price-row{
    display: flex;
    column-gap: 50px;
    align-items: center;
}
.sum span{
    color: red;
    font-weight: 700;
    font-size: 22px;
}
.product-amount{
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    margin: 20px 0;
    display: flex;
    align-items: flex-end;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.minus{
    margin-left: 15px;
}
.minus:hover{
    color: red;
}
.minus, .plus{
    height: 30px;
    width: 30px;
    border: 1px solid #EEE;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.plus:hover{
    color: rgb(10, 196, 10);
}
.amount{
    background: #EEE;
    border: 1px solid #EEE;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    outline: none;
    text-align: center;
}
.spd-questions{
    margin-top: 20px;
}
.spd-questions p{
    font-size: 14px;
}
.chars{
    margin: 15px 0;
}
p.char{
    font-size: 16px;
    margin: 2px 0;
}
.char span{
    color: #777;
}
.warning p{
    color: #777;
    font-size: 14px;
}
.warning span{
    color: red;
    opacity: 0.9;
    text-transform: uppercase;
}
.single-product-data .catalog-button{
    width: 50%;
}
.tabs{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 50px;
}
.tabs div{
    padding: 10px 20px;
    background: #FFF;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 12px;
}
.tabs div.active, .tabs div:hover{
    background: #000;
    color: #FFF;
}
.tabs-block{
    display: none;
    padding: 30px;
    border: 1px solid #000;
    border-radius: 16px;
}
.tabs-block.active{
    display: block;
}
.tabs-block a{
	color: #0645AD;
}
.docs{
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
}
.docs.active{
    display: flex;
}
.docs__item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.docs__item img{
    display: block;
    margin-bottom: 20px;
}
/* table{
    border-collapse: collapse;
    width: 1200px;
    margin: 0 auto;
}
table, th, td{
    border: 1px solid #000;
}
td{
    padding: 10px;
    background: #FAFAFA;
    text-align: center;
} */


/* Как купить */

.htb-container{
    padding-bottom: 50px;
}
.text-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footnote{
    padding-left: 50px;
    font-weight: 600;
    border-left: 3px solid #000;
    width: 400px;
    font-style: italic;
    margin: 50px 0;
}
.text-top img{
    border-radius: 16px;
    width: 400px;
    height: 200px;
    object-fit: cover;
}
.footnote.white{
    border-left: 3px solid #FFF;
    color: #FFF;
}

/* Попап */

.popup{
    position: fixed;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 450px;
    padding: 20px;
    padding-top: 50px;
    background: #FFF;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
    z-index: 1000;
}
.popup.active{
    opacity: 1;
    pointer-events: all;
    top: 50%;
}
.input-row{
    position: relative;
}
.input-row img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.textarea-row img{
    top: 11px;
    transform: none;
}
.popup input, .popup textarea{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(10, 196, 10);
    outline: none;
    padding: 10px;
    padding-left: 30px;
    font-size: 18px;
    margin-bottom: 15px;
}
.popup input[type="submit"]{
    background: #000;
    color: #FFF;
    cursor: pointer;
    border-radius: 8px;
    background: rgb(10, 196, 10);
}
.popup-xmark{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
h3{
    font-size: 24px;
    margin-bottom: 20px;
}
#popup-thanks{
    padding-top: 20px;
}
.popup-button{
    width: 100%;
    margin-top: 20px;
    background: rgb(10, 196, 10);
}
.overlay{
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.4s;
    position: fixed;
}
.overlay.active{
    opacity: 1;
    pointer-events: all;
}

/* Страница контактов */

.contacts-wrapper{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}
.contacts-wrapper-left, .contacts-wrapper-right{
    width: 50%;
}
.contacts-tabs{
    display: flex;
    font-size: 28px;
    font-weight: 600;
}
.contacts-tab{
    padding: 0 5px;
    padding-bottom: 10px;
    border-bottom: 5px solid #CCC;
    cursor: pointer;
}
.contacts-tab.active{
    border-color: rgb(24, 197, 24);
}
.contact-item:not(:first-child){
    margin-top: 20px;
}
.contact-item strong{
    display: block;
    margin-bottom: 10px;
}
a.open-map{
    color: rgb(24, 197, 24);
    font-weight: 600;
    display: block;
    margin-top: 10px;
}
a.open-map:hover{
    text-decoration: underline;
}
.contacts-left-block{
    display: none;
    padding: 30px 0;
}
.contacts-left-block.active{
    display: block;
}
.contacts-right-block{
    display: none;
}
.contacts-right-block.active{
    display: block;
}
.contacts-form{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 30px;
    max-width: 500px;
    margin-left: auto;
}
.contacts-form h3{
    font-size: 24px;
    margin-bottom: 20px;
}
.contacts-form input, .contacts-form textarea{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(10, 196, 10);
    outline: none;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px 20px;
}
.contacts-form input[type="submit"]{
    background: rgb(10, 196, 10);
    border: none;
    width: 70%;
    min-width: 250px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 24px;
    color: #FFF;
    cursor: pointer;
    font-weight: 600;
}
.file-upload-wrapper{
    display: flex;
    column-gap: 50px;
    align-items: center;
}
.custom-file-button {
  padding: 8px 16px;
  background-color: rgb(10, 196, 10);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.file-name {
  margin-left: 10px;
  font-style: italic;
}

/* Прочие стили */

.aifs{
    align-items: flex-start;
}
.breadcrumbs{
    padding: 10px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #CCC;
    border-top: 2px solid #CCC;
}
.breadcrumbs ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}
.breadcrumbs ul li a{
    color: #CCC;
}
.breadcrumbs ul li a:hover{
    color: #000;
}
.breadcrumbs ul li strong{
    font-weight: 400;
}
.arrow-up{
    position: fixed;
    bottom: -100vh;
    transition-duration: 0.4s;
    right: 30px;
    z-index: 100000;
    cursor: pointer;
}
.arrow-up.active{
    bottom: 30px;
}
.map-overlay{
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
}
.map-overlay.active{
    opacity: 1;
    pointer-events: all;
}
.map{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
    z-index: 1001;
    text-align: right;
    width: 50vw;
}
.map.active{
    opacity: 1;
    pointer-events: all;
}
.map-xmark{
    cursor: pointer;
}
.footer-subtext{
    margin: 20px auto;
    font-size: 14px;
    color: #CCC;
    border-top: 1px solid #CCC;
    font-weight: 400;
    padding-top: 20px;
    text-align: center;
}

@media(max-width: 1800px){
    .wrapper{
        width: 1300px;
    }
}
@media(max-width: 1600px){
    .pseudo-slider_item{
        transform: scale(1.01);
        font-size: 14px;
    }
    .wrapper{
        width: 1200px;
    }
    h1{
        font-size: 76px;
        padding-top: 100px;
    }
    h2{
        font-size: 60px;
    }
    .reviews-right p{
        font-size: 40px;
    }
    .single-title h1{
        font-size: 56px;
    }
    .news-header{
        font-size: 32px;
    }
    .news-description{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* Установите желаемое количество строк */
        overflow: hidden;
    }
    .region{
        font-size: 14px;
    }
    .search input{
        width: 100px;
    }
    .item-data .catalog-button{
        width: 40%;
        padding: 10px;
        font-size: 16px;
    }
}
@media(max-width: 1368px){
    .single-content_container{
        width: 100%;
        margin-top: -70px;
    }
    .single-main_container{
        height: 98vh;
    }
}
@media(max-width: 1200px){
    .wrapper{
        width: 880px;
    }
    .header-container{
        position: fixed;
        background: #FFF;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        top: -100vh;
        left: 0;
        flex-direction: column;
        padding: 30px;
        row-gap: 20px;
        transition-duration: 0.4s;
    }
    .header-container.active{
        top: 0;
    }
    nav ul{
        flex-direction: column;
    }
    nav ul li{
        margin-bottom: 10px;
    }
    .header-mobile{
        display: flex;
    }
    .xmark{
        display: block;
        position: absolute;
        top: 15px;
        right: 30px;
        cursor: pointer;
    }
    .pseudo-slider_item{
        font-size: 12px;
        padding: 20px;
        bottom: 0;
        border-radius: 16px;
    }
    .main-container-bottom{
        height: 50px;
        padding: 20px;
        width: auto;
        background: transparent;
        bottom: -50px;
    }
    .main-container-bottom::after, .main-container-bottom::before{
        display: none !important;
    }
    a.button{
        font-size: 12px;
        padding: 10px 30px;
    }
    .footer-right{
        width: 40%;
    }
    .reviews-right{
        display: none;
    }
    .reviews{
        width: 100%;
    }
    .contacts-wrapper{
        flex-direction: column;
    }
}
@media(max-width: 1024px){
    .sub-menu{
        position: static;
        opacity: 1;
    }
    .menu-item{
        text-align: center;
    }
    ul.sub-menu{
        border: none;
        border-bottom: 2px solid #000;
        border-top: 2px solid #000;
        margin-top: 10px;
    }
    .sub-menu li{
        text-align: right;
    }
    .wrapper{
        width: 540px;
    }
    h1{
        font-size: 64px;
        padding-top: 50px;
    }
    .main-container{
        height: auto;
    }
    .slide-background{
        border-radius: 32px;
    }
    .pseudo-slider_item{
        max-width: 100%;
    }
    .pseudo-slider_item.second-slide{
        transform: none;
    }
    .pseudo-slider_item.active{
        position: static;
    }
    .catalog_item{
        width: 100%;
    }
    .catalog-button{
        padding: 10px 50px;
        font-size: 12px;
    }
    .news-wrapper{
        flex-direction: column;
        height: auto;
        row-gap: 30px;
        margin-top: 30px;
    }
    .news-right, .news-left{
        width: 100%;
    }
    .more{
        justify-content: center;
    }
    .benefits-wrapper{
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 20px;
    }
    .benefits_item{
        text-align: center;
        width: 50%;
    }
    .footer-container{
        flex-direction: column;
        row-gap: 30px;
    }
    .footer-left{
        width: 100%;
    }
    .footer-right{
        width: 100%;
        flex-direction: column;
    }
    .search{
        flex-direction: column;
        row-gap: 20px;
    }
    .results-list{
        position: static;
        width: 100%;
    }
    .contact-data{
        width: 100%;
    }
    .geolocation{
        right: 50%;
        transform: translateX(50%);
        top: 120px;
    }
    .pseudo-slider_item::before{
        display: none;
    }
    .region{
        z-index: 1000;
    }
    .pop-up.city-confirm{
        z-index: 1001;
        left: 50% !important;
        transform: translateX(-50%);
    }
    .reviews-wrapper{
        display: block;
    }
    .reviews{
        width: 100%;
    }
    .reviews__item{
        width: 100%;
    }
    .reviews:nth-child(2){
        margin-top: 0;
    }
    .footer-menus{
        margin-right: 20px;
        margin-left: 20px;
    }
    .footer-items{
        width: 100%;
        margin-top: 30px;
    }
    .footer-container{
        padding-bottom: 0;
    }
    .contacts-wrapper-left, .contacts-wrapper-right{
        width: 100%;
    }
    .text-top{
        flex-direction: column;
    }
    .text-top img{
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }
    .footnote{
        width: 100%;
        margin: 30px 0;
    }
    .footer-subtext{
        max-width: 100%;
    }
    .docs{
        row-gap: 20px;
    }
    .docs__item{
        width: 100%;
    }
    .item-data{
        flex-direction: column;
        row-gap: 15px;
        margin-top: 15px;
        align-items: flex-start;
    }
    .item-data p{
        width: 100%;
    }
}
@media(max-width: 678px){
    .wrapper{
        width: 90vw;
    }
    h1{
        font-size: 40px;
    }
    h2{
        letter-spacing: 6px;
    }
    .pseudo-slider_item{
        background: none;
        color: #FFF;
    }
    .main-container{
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .main-container::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 32px;
        z-index: -1;
    }
    .pseudo-slider_item.third-slide::after, .pseudo-slider_item.first-slide::before{
        display: none;
    }
    .slide-background{
        height: 100%;
    }
    h2{
        font-size: 32px;
    }
    .news-wrapper{
        row-gap: 0;
    }
    .news-header{
        font-size: 22px;
    }
    .news-description{
        font-size: 14px;
    }
    .catalog-header h2{
        right: 50%;
        transform: translateX(50%);
    }
    .review-content{
        font-size: 14px;
    }
    .review-photo{
        width: 100px;
        height: 100px;
    }
    .single-title h1{
        font-size: 32px;
    }
    .tabs{
        flex-direction: column;
        row-gap: 10px;
    }
    .tabs div{
        width: 100%;
        text-align: center;
    }
    .breadcrumbs{
        max-width: 100%;
    }
    .footer-left{
        flex-direction: column;
    }
    .footer-logo{
        width: 100px;
    }
    .popup{
        width: 90%;
    }
    .price-row{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .arrow-up{
        width: 40px;
        right: 10px;
    }
    .arrow-up.active{
        bottom: 10px;
    }
    .contacts-tab{
        font-size: 16px;
        width: 50%;
        text-align: center;
    }
    .file-upload-wrapper{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
    }
    .contacts-form input[type="submit"]{
        width: 100%;
    }
    .map{
        width: 90vw;
    }
    .modal{
        width: 90%;
    }
    .background{
        max-width: 200vw;
        width: 200vw;
        left: -100vw;
        top: -10vh;
        height: 110vh;
    }
}