:root {
	--white: #fff;
	--black: #333;
	--line-graybg: #cdcdcd;
	--gray-check-line: #ddd;
	--line-whitebg: #f0f0f0;
	--graybg: #efeeee;
    --font-family: "Montserrat", sans-serif;
    --second-family: "ShellyAllegroC", sans-serif;
    --third-family: "Commissioner", sans-serif;
}
@media (min-width: 1400px) {
    .container{
        max-width: 1424px;
    }
}
body{
    background: var(--graybg);
}
header{
    padding-top: 15px;
    margin-bottom: 50px;
}
.header-column{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    padding: 16px 0 32px;
    /* border-bottom: 1px solid var(--line-graybg); */
}
.header-item{
    font-weight: 500;
    font-size: 19px;
    color: var(--black);
}
.header-item:hover .header-item__link{
    text-decoration: underline;
    color: var(--black);
}
.header-logo{
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(3px);
}
.header-column--left{
    justify-content: flex-start;
}
.header-column--left .header-item{
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-column--left  .header-item__icon{
    display: flex;
    align-items: center;
}
.header-column--left{
    justify-content: flex-start;
}
.header-column--right{
    justify-content: flex-end;
}
main{
    background: var(--graybg);
}
.first_screen__title{
    font-weight: 600;
    font-size: 57px;
    line-height: 107%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin-bottom: 0;
}
.first_screen__subtitle{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 50px;
    color: var(--black);
    line-height: 1.2;
}
.default-text{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--black);
}
.default-text--first_screen{
    margin-bottom: 35px;
}
.default-button{
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    background: var(--black);
    max-width: 320px;
    width: 100%;
    padding: 24px;
    display: block;
    border: 1px solid var(--black)
}
.default-button:hover{
    background: transparent;
    color: var(--black);
}
.default-button--first_screen{
    margin: 0 auto 15px auto;
}
.first_screen__image{
    text-align: center;
}
.first_screen__image img{
    max-width: 100%;
    height: auto;
    /* object-fit: cover; */
}
.marquee{
    padding: 22px 0;
    background-color: var(--white);
}
.marquee span{
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--black);
    margin-right: 82px;
    position: relative;
}
.reviews-image img{
    max-width: 100%;
    object-fit: cover;
}
.marquee span::after{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--black);
    position: absolute;
    right: -32px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.default_section{
    padding: 90px 0;
}
.section-title{
    font-weight: 600;
    font-size: 48px;
    line-height: 107%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin: 0 auto 50px;
}
.section-title--information{
    max-width: 1162px;
}
.information__cards{
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    height: 100%;

}
.information__card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 calc(50% - 25px / 2);
    background-color: var(--white);
    flex-direction: column;
    padding: 47px;
}
.information__card--slide{
    position: relative;
    overflow: hidden;
}
.information__card--slide::before{
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--graybg);
    position: absolute;
    transition: 1s top ease ;
}
.information__card--slide.show::before{
    top: 100%;
}
.information__card--slide--white::before{
     background-color: var(--white);
}
.information__card--dark{
    background-color: var(--black);
}
.information__card--image {
    padding: 0;
}
.information__card--image img{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 4;
}
.information__card-title{
    font-weight: 500;
    font-size: 45px;
    line-height: 135%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 0;
}
.information__card-description{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 0;
}
.information__card--dark .information__card-title{
    color: var(--white);
}
.information__card--dark .information__card-description{
    color: var(--white);
}

.information__advantages{
    padding: 50px;
    background: var(--white);
    height: 100%;
}
.information__advantages-title{
    font-weight: 600;
    font-size: 32px;
    line-height: 112%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 60px;
}
.information__advantages-list{
    display: flex;
    flex-direction: column;
}
.information-row{
    gap: 20px 0;
}
.information-row > div{
    height: auto;
    
}
.information__advantages-list__item:first-child{
    padding-top: 0;
}
.information__advantages-list__item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.information__advantages-list__item{
    display: flex;
    align-items: center;
    gap: 27px;
    padding: 35px 0;
    border-bottom: 1px solid var(--line-whitebg);
}
.information__advantages-list__item-value{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.information__advantages-list__item-value__title{
    font-weight: 500;
    font-size: 24px;
    line-height: 112%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
}
.information__advantages-list__item-value__description{
    font-weight: 400;
    font-size: 17px;
    line-height: 125%;
    letter-spacing: -0.01em;
    color: var(--black);
}
.information__advantages-list__item:last-child .information__advantages-list__item-value__description{
    max-width: 458px;   
}
.colection{
    background-color: var(--white);
}
.colection-list{
    display: flex;
    flex-direction: column;
}
.colection .colection-list__item{
    cursor: pointer;
}
.colection-list__item:first-child{
    border-top: 1px solid var(--line-whitebg);
}

.colection-list__item{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line-whitebg);
}
.colection-list__item-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-check-line);
    font-weight: 500;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    min-width: 80px;
}

.colection-list__item-title{
    font-weight: 500;
    font-size: 23px;
    line-height: 112%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
}
.colection-list__item.active .colection-list__item-title{
    font-weight: 600;
    text-decoration: underline;
}
.colection-list__item.active .colection-list__item-icon{
    background-color: var(--black);
     color: var(--white);
}
.colection__slider-container{
    position: relative;
}
.colection__slider-nav{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 22px;
    bottom: 30px;
    right: 30px;
}
.colection__slider-item img{
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio:  4 / 4;
}
.colection__slider-nav__item{
    cursor: pointer;
}
.colection__slider-nav__item:hover svg rect{
    fill: transparent;
    stroke: #333;
}
.colection__slider-nav__item:hover svg path{
    stroke: #333;
}
.colection-list__item-description{
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 0;
}
.default-button--price-list{
    margin: 40px auto 0 auto;
}
.reviews-info{
    padding: 140px 50px 50px;
    background: var(--graybg);
    height: 100%;
}
.reviews-info-content{
    display: flex;
    flex-direction: column;
    max-width: 460px;
    margin: auto;
    align-items: center;
    height: 100%;
}
.reviews-info-text{
    font-weight: 400;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 50px;
}
.reviews-info-text strong{
    font-weight: 500;
}
.reviews{
    background-color: var(--white);
    padding-top: 0;
}
.reviews-info-rating{
    padding-top:41px;
    border-top:  1px solid var(--line-graybg);
    display: flex;
    align-items: center;
    max-width: max-content;
    margin: 0 auto;
}
.reviews-info-rating-number{
    font-weight: 500;
    font-size: 38px;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-right: 5px;
}
.reviews-info-rating-icon{
    margin-right: 15px;
}
.reviews-info-rating-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 115%;
    color: var(--black);
}
.reviews-info-wb{
     margin-top: auto;
}
.production-item--video{
    position: relative;
}
.production-item--video__icon{
    position: absolute;
    inset: 0 0 0 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.production-item img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.production-row{
    gap: 20px 0;
}
.section-title--production{
    margin-bottom: 36px;
}
.about {
    background-color: var(--white);
}
.row--about{
    gap: 20px 0;
}
.colection__slider-item--about img{
    aspect-ratio: 0;
    height: 100%;
}
.colection__slider-container,.colection__slider-item--about{
    height: 100%;
}
.colection .colection__slider-container{
    height: auto;
    position: sticky;
    top: 10px;
}
.section-title--delivery{
    margin-bottom: 40px;
}
.delivery_items{
    padding: 90px;
    background: var(--white);  
    height: 100%; 
}
.delivery_items-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    height: 100%;
    text-align: center;
    justify-content: center;
    position: relative;
}
.delivery_items-content::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--line-whitebg);
    inset: 0;
    margin: auto;
}
.delivery_item-icon{
    margin-bottom: 17px;
}
.delivery_item-title{
    font-weight: 500;
    font-size: 24px;
    line-height: 112%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin-bottom: 12px;
}
.delivery_item-text{
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 0;
}
.colection-list__item__mb-slider-container{
    display: none;
    height: 0;
    /* opacity: 0; */
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}
footer{
    background: var(--black);
    padding: 90px 0 36px 0;
}

.section-title--footer{
    color: var(--white);
}
.contact-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 40px;
}
.contact-item{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 1 29%;
   position: relative;
}
.contact-item:not(:last-child)::before{
    content: '';
    right: 0;
    width: 1px;
    height: 35px;
    position: absolute;
    background-color:rgba(255, 255, 255, 0.25);
    margin: auto;
    top: 0;
    bottom: 0;

}
.contact-item__icon svg{
    min-width: 64px;
}
.contact-item__text{
    display: flex;
    flex-direction: column;
}

.contact-item__name{
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
}
.contact-item__value{
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}
.contact-item__value:hover{
    text-decoration: underline;
    color: var(--white);
}
.contact-item__links .header-item{
    color: var(--white);
}

.contact-item__links .header-item:hover .header-item__link{
    text-decoration: underline;
     color: var(--white);
}
.contact-item__links .header-column{
    border:none;
    padding: 0;
}
.contact-reqizit{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 41px;
}
.contact-reqizit__item{
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}
.contact-reqizit__item--first{
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}
.contact-reqizit__item span{
    font-weight: 400;
    font-size: 19px;
    color: var(--white);
}
.contact-reqizit__item--first span{
    padding-left: 20px;
}
.contact-image{
    margin-bottom: 36px;
}
.contact-image img{
    max-width: 100%;
}
.footer-links{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}
.footer-links p{
    font-weight: 400;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 0;
}
.footer-links div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-links a{
    font-weight: 400;
    font-size: 15px;
    text-align: right;
    color: var(--white);
}
.footer-links a:hover{
    text-decoration: underline;
}
.footer-links > a:last-child{
    text-align: right;
}
.delivery-image{
    top: 10px;
    position: sticky;
    
}
.delivery-image img{
    max-width: 100%;
    width: 100%;
    height:auto;
}
.row--reviews,.row--delivery{
    gap: 20px 0;
}
.colection__slider-item--about__card{
    background: var(--black);
    padding: 20px 25px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 318px;
}
.colection__slider-item--about__card p{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0;

}
.colection__slider-item--about{
    position: relative;
}
.header-column--line{
    position: relative;
    overflow: hidden;
}
.header-column--line::before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background-color: var(--line-graybg);
    
    transition: 1s left ease ;
}
.header-column--line--left::before{
    left: -100%;
}
.header-column--line--right::before{
    left: 100%;
}
.header-column--line.show::before{
    left: 0;
}
.section-title--about.section-title{
    margin-bottom: 20px;
}
.section-title--about + p{
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    max-width: 640px;
    margin: 0 auto 40px;
}
.fade-block{
    opacity: 0;
    transform: translateY(40%);
    transition: 1s all ease;
}
.fade-block.show{
    opacity: 1;
    transform: translateY(0%);
}
.modal-wrapper{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(000, 000, 000, 0.5);
    z-index: 5;
}
.modal-content{
    max-width: 690px;
    max-height: 100vh;
    overflow: auto;
}
.modal-content-top{
    padding: 45px 55px 35px 45px;
}
.modal-title{
    font-weight: 600;
    font-size: 38px;
    line-height: 105%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin-bottom: 18px;
}
.modal-subtitle{
    font-weight: 400;
    font-size: 17px;
    line-height: 125%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
    margin-bottom: 15px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.modal-wrapper--form .modal-subtitle{
    font-size: 16px;
    margin-bottom: 20px;
}
.start-pop-up__btn{
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    position: relative;
}
.start-pop-up__btn:hover .start-pop-up__btn-icon circle:nth-child(1) {
    stroke: #333333;
}

.start-pop-up__btn:hover .start-pop-up__btn-icon circle:nth-child(2) {
    fill: #333333;
}

.start-pop-up__btn:hover .start-pop-up__btn-icon path {
    stroke: var(--white);
}

.start-pop-up__btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.start-pop-up__bottom{
    background: var(--black);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}
.start-pop-up__bottom-title{
    font-weight: 500;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}
.start-pop-up__bottom-text{
    font-weight: 400;
    font-size: 17px;
    text-align: center;
    color: var(--white);
}
.start-pop-up__bottom-text span{
    font-weight: 500;
    text-transform: uppercase;
    color: #ef1d1d;   
}
.start-pop-up__bottom{
    padding: 40px;
    background: var(--black);
}
.start-pop-up__btn-text{
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    color: var(--black);
}
.line-right--start_pop-up::before{
    content: '';
    right: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    width: 1px;
    height: 25px;
    background:  var(--line-whitebg);
}
.modal-content--form{
    padding: 45px;
}

.modal-form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.modal-form__item{
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1 1 100%;
}
.modal-form__item--split{
    flex: 1 0 calc(50% - 10px);
}
.modal-form__item span{
    font-weight: 400;
    font-size: 14px;
    line-height: 107%;
    letter-spacing: -0.01em;
    color: #9e9e9e;
}

.modal-form__item input, .modal-form__item textarea{
    font-weight: 400;
    font-size: 16px;
    line-height: 107%;
    letter-spacing: -0.01em;
    color: var(--black);
    border: 1px solid var(--line-whitebg);
    background: transparent;
    padding: 21px 25px;
}
.modal-form__item input::placeholder{
    color: #828282;
}
.modal-form__access-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}
.modal-form__access-btn span{
    font-weight: 400;
    font-size: 15px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #828282;
    max-width: 414px;
  
}
.modal-form__access-btn span a{
    text-decoration: underline;
    color: #828282;
}
.modal-form__access-btn span::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    border: 1px solid var(--black);
}
.modal-form__access-btn input:checked + span::before{
    background: var(--black);
}
.modal-form__access-btn input:checked + span::after{
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(/images/check.svg);
    left: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    margin: auto;
}
.modal-form__access-btn input{
    width: 22px;
    height: 22px;
    opacity: 0;
    z-index: -1;
    min-width: 22px;
}
.default-button--modal{
    margin-top: 7px;
    margin-left: auto;
    margin-right: auto;
}
.modal-close{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.modal-wrapper--form{
    display: none;
}
.modal-wrapper--form.open{
    display: flex;
}
.modal-content__info{
    padding: 55px 65px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.modal-content__info:before{
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    margin: auto;
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}
.modal-content__info::after{
    content: '';
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    margin: auto;
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}
.modal-content__info-title{
    font-weight: 400;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--white);
    margin-bottom: 22px;
}
.modal-content__info-price{
    font-weight: 500;
    font-size: 46px;
    line-height: 105%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin-bottom: 3px;
}
.modal-content__info-price-old{
    font-weight: 600;
    font-size: 31px;
    line-height: 105%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    position: relative;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
}
.modal-content__info-price-old::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ef1d1d;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.modal-content--banner{
    display: flex;
    flex-direction: row;
    
}
.modal-wrapper--banner{
    display: none;
}
.modal-wrapper--banner.open{
    display: flex;
}
.modal-content--form--success{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    margin:30px 40px;
}
.modal-content--form--success-icon{
    margin-bottom: 20px;
}
.modal-content--form-title{
    font-weight: 600;
    font-size: 38px;
    line-height: 105%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    margin-bottom: 15px;
}
.modal-content--form-subtitle{
    font-weight: 400;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--black);
}
@media(max-width: 1399px){
    .header-item__link{
        font-size: 17px;
    }
    .header-item__icon svg{
        /* width: 14px; */
        height: 14px;
    }
    .header-column--right .header-item__icon svg{
        width: 12px;
        height: 12px;
    }
    .first_screen__title{
        font-size: 49px;
    }
    .first_screen__subtitle{
        font-size: 46px;
    }
    .section-title{
        font-size: 46px;
    }
    .information__cards{
        height: auto;
        position: sticky;
        top: 10px;
    }
    .reviews-info-text{
        font-size: 24px;
    }
    .colection__slider-item--about{
        height: auto;
        top: 10px;
        position: sticky;
    }
    .contact-item__name{
        font-size: 16px;
    }
    .contact-item__value{
        font-size: 18px;
    }
    .contact-reqizit__item{
        font-size: 16px;
    }
    .contact-reqizit__item--first{
        font-size: 18px;
    }
    .contact-reqizit__item span{
        font-size: 18px;
    }
}
@media(max-width:1199px){
     .colection__slider-item--about{
        position: sticky;
        top: 10px;
        height: auto;
     }
    .colection__slider-item--about img{
        height: auto;
    }
    .contact-list{
        flex-wrap: wrap;
        /* gap: 40px 0; */
    }
    .contact-item{
        flex: 0 1 calc(50% - 20px);
    }
    .header-column{
        gap: 15px;
    }
    .header-item__link{
        font-size: 14px;
    }
    .first_screen__title{
        max-width: 745px;
        margin-left: auto;
        margin-right: auto;
    }
    .first_screen__subtitle{
        font-size: 43px;
        margin-bottom: 10px;
    }
    .reviews-info-text{
        font-size: 21px;
        margin-bottom: 35px;
    }
    .reviews-info{
        padding: 80px 50px;
        height: auto;
        position: sticky;
        top: 10px;
    }
    .reviews-info-wb{
        margin-top: 110px;
    }
    .contact-item{
        justify-content: center;
    }
    .contact-item:first-child::after{
        content: '';
        left: 0;
        width: 1px;
        height: 35px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.25);
        margin: auto;
        top: 0;
        bottom: 0;
    }
    .contact-item__links{
        padding-top: 40px;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        width: 100%;
    }
    .contact-item__links .header-column--right{
        justify-content: flex-start;
    }
    .header-column{
        gap: 25px;
    }
    .header-item__link{
        font-size: 15px;
    }
    .header-logo img{
        max-width: 100%;
    }
    .reviews-info{
        padding: 65px 50px 55px 50px;
    }
    .reviews-info-rating{
        padding-top: 30px;
    }
    .default-text--first_screen{
        font-size: 15px;
    }
    .section-title{
        font-size: 41px;
    }
    .reviews-image img{
        max-height: 542px;
    }
}

@media(min-width:991px) and (max-width:1199px){
    .contact-item__links .header-column{
        justify-content: center;
        gap:50px
    }
}
@media(max-width:991px){
    .first_screen__image img{
        height: auto;
    }
    .section-title{
        font-size: 39px;
    }
    .header-logo{
        transform: translate(0);
        display: block;
    }

    .header-item__link{
        font-size: 18px;
    }
    .header-column--left,.header-column--right{
        justify-content: center;
        text-align: center;
    }
    .header-column{
        padding-bottom: 16px;
        justify-content: space-between;
    }
    .header-column--left{
        border-top: 1px solid var(--line-graybg);
    }
    .header-logo{
        margin-bottom: 15px;
    }
   .colection  .colection-list__item{
        flex-wrap: wrap;
    }
    .colection-list__item__mb-slider-container{
        display:block;
        position: relative;
        /* height: 0; */
    }
    
    .colection-list__item__mb-slider-container.active{
        /* display: block; */
        /* height: 100%; */
        height: 95vw;
        height: 696px;
        opacity: 1;
        width: 100% !important;
        position: relative;
    }
    .contact-reqizit__item--first span{
        padding-left: 0;
    }
    .footer-links{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links a{
        text-align: left;
    }
    .footer-links div{
        gap: 20px;
        align-items: flex-start;
    }
    .reviews-info{
        padding: 60px 50px 50px;
    }
    .reviews-image img {
        max-height: 100%;
    }
    .colection-list__item.active .colection-list__item-value{
        margin-bottom: 0;
    }
    .colection-list__item-value{
        margin-bottom: -25px;
    }
}
@media(max-width:767px){
    .colection-list__item__mb-slider-container.active{
        height: 466px;
    }
    .first_screen__title{
        font-size: 46px;
    }
    .first_screen__subtitle{
        font-size: 41px;
    }
   
    .default-text{
        font-size: 14px;
    }
    .default-text--first_screen{
        font-size: 16px;
    }
    .section-title{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .information__card-title{
        font-size: 28px;
        margin-bottom: 0;
    }
    .information__card-description{
        font-size: 14px;
    }
    .colection-list__item-title{
        font-size: 20px;
    }
    .colection-list__item-description{
        font-size: 14px;
    }
    .contact-item{
        flex: 1 1 100%;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
    .contact-item:not(:last-child)::before{
        content: none;
    }
    .contact-reqizit{
        flex-direction: column;
        align-items: flex-start;
    }
    .first_screen__image img{
        height: auto;
    }
    .information__advantages-list__item{
        flex-direction: column;
        align-items: flex-start;
    }
    .information__advantages-title{
        font-size: 23px;
        margin-bottom: 36px;
    }
    .information__advantages{
        padding: 40px;
    }
    .information__advantages-list__item-value__title{
        font-weight: 500;
        font-size: 20px;
        line-height: 112%;
    }
    .information__advantages-list__item-value__description{
        font-size: 14px;
    }
    .colection-list__item-icon{
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .information__advantages-list__item-icon svg{
        width: 60px;
        height: 60px;
    }
    .colection-list{
        padding: 0 25px;
    }
    .reviews-image img{
        height: auto;
    }
    .default_section.reviews{
        padding-top: 0;
    }

    .contact-item:first-child::after{
        content: none;
    }
    .contact-item__links{
        border: none;
        padding: 0;
        margin: 0;
    }
    .contact-list{
        gap: 30px 0;
        padding-bottom: 30px;
    }
    .contact-item__links .header-column--right{
        justify-content: center;
        gap: 30px;
    }
    .information__advantages-list__item{
        gap: 17px;
    }
    .contact-item{
        flex: 0 1 calc(50% - 20px);
    }
    .contact-item__icon svg{
        width: 50px;
        min-width: 50px;
    }
    .contact-item__links .header-item__link{
        font-size: 17px;
    }
    .section-title--about + p{
        font-size: 15px;
    }
    .start-pop-up__btns{
        flex-wrap: wrap;
        gap: 15px 50px;
    }
    .line-right--start_pop-up::before{
        right: -25px;
    }
    .modal-content-top{
        padding: 30px;
    }
    .modal-content{
        /* padding: 30px 10px;    */
    }
    .start-pop-up__bottom{
        padding: 30px;
    }
    .modal-title{
        font-weight: 600;
        font-size: 32px;
        line-height: 105%;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        text-align: center;
        color: var(--black);
        margin-bottom: 17px;
    }
    .modal-subtitle{
        max-width: 380px;
        margin-bottom: 15px;
        font-weight: 400;
        /* font-size: 15px; */
        line-height: 125%;
        letter-spacing: -0.01em;
        text-align: center;
        color: var(--black);
    }
    .modal-content--form{
        padding: 45px;
    }
    .modal-content--banner{
        padding: 0;
    }
    .modal-content__image{
        display: none;
    }
    .modal-content__info:before, .modal-content__info::after{
        content: none;
    }
    .modal-wrapper--banner .modal-close path{
        stroke: white;
    }
    .modal-wrapper--banner .modal-close{
        z-index: 2;
    }
    .modal-content__info{
        width: 100%;
    }
    
}
@media(max-width:605px){
    .line-right--start_pop-up::before{
        content: none;
    }
}
@media(max-width:576px){
    .modal-content--form--success{
        margin: auto;
    }
    .modal-content--form--success-icon{
        margin-bottom: 30px;
    }
    .modal-content--form-title{
        margin-bottom: 22px;
    }
     .colection-list__item__mb-slider-container.active{
        height: 95vw;
        margin-top: 10px;
    }
 .header-item__icon svg{
        width: 15px;
        height: 14px;
    }
    .header-item__link{
        font-weight: 500;
        font-size: 14px;
    }
   .header-column--right .header-item__icon svg{
        width: 11px;
        height: 11px;
    }
    .default_section{
        padding: 70px 0;
    }
    .reviews-info-text{
        font-size: 18px;
        margin-bottom: 35px;
    }
    .reviews-info{
        padding-top: 50px;
    }
    .colection-list__item{
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-reqizit__item--first{
       flex-direction: column;
        display: flex;
        gap: 15px;
    }
    .contact-item__links{
        width: 100%;
    }
    .information__card{
        padding: 33px 15px;
    }
    
    .information__card--image{
        padding: 0;
    }
    .information__card--image img{
        /* width: 100%; */
        height: 100%;
    }
    .reviews-info{
        min-height: 420px;
        padding: 50px 30px;
    }
    .reviews-info-rating-text{
        font-weight: 400;
        font-size: 15px;
    }
    .reviews-info-rating-number{
        font-size: 29px;
    }
    .reviews-info-rating-icon svg{
        width: 26px;
        height: 26px;
    }
    .colection__slider-item--about__card{
        right: 20px;
        bottom: 20px;
        max-width: 300px;
    }
    .colection__slider-item--about__card p{
        font-weight: 400;
        font-size: 14px;
    }
    .delivery_items{
        padding: 50px 30px;
    }
    .delivery_item-text{
        font-size: 14px;
    }
    .footer-links a,.footer-links p{
        font-size: 13px;
    }
    .header-logo img{
        max-width: 109px;
        height: auto;
    }
    .header-column--left{
        padding-top: 22px;
    }
    .first_screen__title{
        font-size: 30px;
    }
    .first_screen__subtitle{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .default-text--first_screen{
        font-size: 14px;
        margin-bottom: 33px;
    }
    .marquee{
        padding: 20px 0;
    }
    .marquee span{
        font-size: 15px;
    }
    .section-title{
        font-size: 26px;
    }
    .information__advantages{
        padding: 36px 25px;
    }
    .information__advantages-list__item-icon svg{
        width: 65px;
        height: 65px;
    }
    .information__advantages-list__item{
        gap: 15px;
    }
    .colection-list{
        padding: 0;
    }
    .colection-list__item{
        padding: 30px 0;
        gap: 15px;
    }
    .colection__slider-nav__item svg{
        max-width: 45px;
        max-height: 45px;
    }
    .colection__slider-nav{
        bottom: 20px;
        right: 20px;
    }
    .colection-list__item-icon, .colection-list__item-value{
        margin: 0 25px;
    }
    .default-button--price-list{
        margin-top: 25px;
    }
    .reviews-info-rating{
        padding-top: 35px;
    }
    .reviews-info-wb__image img{
        max-width: 158px;
    }
    .reviews-info-wb{
        margin-top: 96px;
    }
    .reviews-info{
        padding: 50px 30px 35px ;
    }
    .production-item--video__icon svg{
        max-width: 85px;
    }
    .section-title--about + p{
        margin-bottom: 30px;
        font-size: 15px;
        max-width: 290px;
    }
    .section-title--colection{
        margin-bottom: 40px;
    }
    .delivery_item-icon svg{
        max-width: 65px;
    }
    .delivery_item-title{
        font-size: 20px;
        margin-bottom: 8px;
    }
    .delivery_items-content::after{
        width: 73%;
    }
    .contact-item{
        flex: 1 1 100%;
        justify-content: flex-start;
    }
    .contact-item__icon svg{
        width: 54px;
        height: 54px;
    }
    .contact-item__name{
        font-size: 15px;
    }
    .contact-item__value{
        font-size: 18px;
    }
    .contact-item{
        gap: 15px;
    }
    .contact-item__links .header-item__link{
        font-size: 14px;
    }
    .contact-reqizit__item--first,.contact-reqizit__item span{
        font-size: 16px;
    }
    .contact-reqizit__item--first{
        gap: 17px;
    }
    .contact-reqizit{
        gap: 12px;
    }
    .contact-reqizit__item{
        font-size: 14px;
    }
    .contact-item__links .header-column--right{
        justify-content: space-between;
    }
    .colection-list__item-icon{
        font-size: 18px;
    }
    .section-title--footer{
        margin-bottom: 40px;
    }
    .start-pop-up__bottom-title{
        font-size: 20px;
    }
    .start-pop-up__bottom-text{
        font-size: 15px;
    }
    .modal-form__item--split{
        flex: 1 1 100%;
    }
    .modal-wrapper{
        align-items: flex-start;
    }
    .modal-content{
        overflow: auto;
        height: 100%;
    }
    .modal-content--banner, .start-pop-up .modal-content{
        height: auto;
    }
    .modal-wrapper--banner,.start-pop-up{
        align-items: center;
    }
    .modal-content--form{
        padding: 30px;
    }
    .modal-content--form-title{
        font-size: 35px;
    }
    .modal-content--form-subtitle{
        font-size: 16px;
    }
    .modal-content__info-price-old{
        font-size: 20px;
    }
}