body._lock{
    overflow: hidden;
}
html{
    scroll-behavior: smooth;
}
body {
    color: #292929;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    min-width: 350px;
}
.wrapper{
    min-height: 100%;
    overflow: hidden;
}


._container{
    max-width: 1149px;
	margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
}
.header{
    height: 100vh;
    background: url(images/header-bg.png) center/cover no-repeat;

}
@media(max-width: 700px) {
    .header{
        height: 100vw;    
    }
}
.header__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 64px;
}
.header__top{
    display: flex;
    justify-content: space-between;
}
.header__logo {
    width: 191px;
    height: 29.39px;
    /*transform: translate(0px, -400%);
    transition: all 0.3s ease 0.8s;*/
}
/*.header__logo._active {
    transform: translate(0px, 0px);
}*/
@media(max-width: 500px) {
    .header__logo {
        width: 114.6px;
        height: 17.634px;
    }
}
.header__burger {
    width: 24px;
    height: 24px;
    /*transform: translate(0px, -400%);
    transition: all 0.3s ease 0.4s;*/
}
/*.header__burger._active {
    transform: translate(0px, 0px);
}*/
.header__bottom {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.header__sound {
    width: 64px;
    height: auto;
}

.title {
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -1.5px;
    font-weight: 700;
    height: fit-content;
}
/*._title_normal{
    opacity: 1;
}*/


.title__h1{
    opacity: 0;
    transition: all 0.8s ease 0s;
}
.title__h1:first-child{
    transform: translate(-100%, 0px);
}
.title__h1:last-child{
    transform: translate(100%, 0px);
}
.title__h1._active{
    transform: translate(0px, 0px);
    opacity: 1;
}

@media(max-width: 500px) {
    .header__container{
        padding-bottom: 27px;
        padding-top: 24px;
    }
    .header__sound {
        width: 40px;
    }
    .title {
        font-size: 34px;
    }
}

.menu{
    position: fixed;
    z-index: 1;
    overflow: auto;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #e5e5e5;
    transform: translateX(-100%);
    transition: 500ms;
}
.menu:target{
    transform: translateX(-0);
}
.menu__container{
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
}
@media(max-width: 500px) {
.menu__container {
    padding-top: 24px;
    }
}
.nav {
    font-weight: bold;
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media(max-width: 500px) {
    .nav{
        font-size: 20px;
    }
}
.header__close {
    width: 24px;
    height: 24px;
}

.main{
    padding-top: 120px;
    background-color: #fff;
}
@media(max-width: 500px) {
    .main{
        padding-top: 80px;
    }
    .product__img {
        width: 80%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}
.recommended {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}
.product__description {
    font-weight: 700;
    line-height: 137.5%;
    letter-spacing: 0px;
    font-size: 16px;
    margin-top: 32px;
}
.product__characteristic {
    font-weight: 400;
    margin-top: 8px;
}
.product__price {
    margin-top: 12px;
}
.wrapper__product {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6.176%;
    row-gap: 40px;

}
.product {
    min-width: 0;
}


.product__img3 {
    transform: translate(0px , 40%);
    transition: all 0.4s ease 0s;
    opacity: 0;
}
.product__img2 {
    transform: translate(0px , 40%);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}
.product__img1{
    transform: translate(0px , 40%);
    transition: all 0.4s ease 0.4s;
    opacity: 0;
}
.product__img1._active {
    transform: translate(0px , 0px);
    opacity: 1;
}
.product__img2._active {
    transform: translate(0px , 0px);
    opacity: 1;
}
.product__img3._active {
    transform: translate(0px , 0px);
    opacity: 1;
}
.product__price{
    opacity: 0;
    transition: all 0.4s ease 0.8s;
    transform: translate(0px, -100%);
}
.product__characteristic{
    opacity: 0;
    transition: all 0.4s ease 0.6s;
    transform: translate(0px, -100%);
}
.product__name{
    opacity: 0;
    transition: all 0.4s ease 0.4s;
    transform: translate(0px, 100%);
}

.product__price._active{
    opacity: 1;
    transform: translate(0px, 0px);
}
.product__characteristic._active{
    opacity: 1;
    transform: translate(0px, 0px);

}
.product__name._active{
    opacity: 1;
    transform: translate(0px, 0px);
}



.categories {
    margin-top: 120px;
}
._title-center{
    text-align: center;
}
.box-images {
    margin-top: 70px;
}
@media(max-width: 500px) {
    .categories {
        margin-top: 100px;
    }
    .box-images {
        margin-top: 50px;
    }
}

.box-images__img img{
    transform: translate(0px, 50%);
    opacity: 0;
    transition: all 0.4s ease 0s;
}
.box-images__img img:first-child{
    transition: all 0.4s ease 0.2s;}
.box-images__img img:last-child{
    transition: all 0.4s ease 0s;}

.box-images__img img._active{
    transform: translate(0px, 0px);
    opacity: 1;
}

.box-images__img {
    display: flex;
    gap: 12px;
}
.box-images__left {
    width: calc(65.882% - 6px);
}
.box-images__right {
    width: calc(34.118% - 6px);
}
.box-images__text {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    color: #292929;
    line-height: 140%;
    font-weight: 700;
    font-size: 24px;
    transform: translate(-100%, 0px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    overflow: hidden;
}
.box-images__text._active{
    transform: translate(0px, 0px);
    opacity: 1;

}

._reverse .box-images__left{
    width: calc(34.118% - 6px);
}
._reverse .box-images__right{
    width: calc(65.882% - 6px);
}

.how-to-buy {
    margin-top: 120px;
    padding-bottom: 120px;
    display: flex;
    width: 100%;
}

._title-active{
    width: 50%;
}
.how-to-buy__content {
    line-height: 140%;
    width: 50%;
}
.how-to-buy__benefits {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 50%;
}

@media(max-width: 900px) {
    .how-to-buy {
        margin-top: 100px;
        padding-bottom: 100px;
        flex-direction: column;
        gap: 40px;
    }
    ._title-active {
        width: 100%;
    }
    .how-to-buy__content {
        width: 100%;
    }
    .how-to-buy__benefits {
        gap: 12px;
        width: 100%;
    }

}
.footer{
    background: url(images/footer_bg.png) center/cover no-repeat;
    height: 460px;
    position: sticky;
    bottom: 0;
    z-index: -1;
}
@media(max-width: 900px) {
    .footer{
        height: 300px;
    }
}
