@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    list-style: none;
    text-decoration: none;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

body::-webkit-scrollbar{
    /* width: 0px; */
}


:root{
    /* Color Themes */

    --gray-gradient: --2, linear-gradient(180deg, #EAEAEA 0%, #D0D0D0 100%);
    --gray:#787878;
    --red:#D20401;
    --white:#fff;

    --gray-1: #7E7E7E;
    --gray-2: #5E5E5E;
}


/* Display */
h1{
    font-family: "Inter";
    font-style: normal;
    font-size: 42px;
    font-weight: 900;
}
h2, .h2{
    font-family: "Inter";
    font-style: normal;
    font-size: 36px;
    font-weight: 700;
}
@media(max-width:768px){
    h1{
        font-size: 28px;
    }
    h2, .h2{
        font-size: 26px;
    }
}


/* Text */
.medium_32{
    font-family: 'Inter';
    font-style: normal;
    font-size: 32px;
    font-weight: 500;
}
.medium_24{
    font-family: 'Inter';
    font-style: normal;
    font-size: 24px;
    font-weight: 500;
}
.medium_18{
    font-family: 'Inter';
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
}
.regular_26{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}
.regular_18{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}
.regular_16{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}
.regular_12{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
}

.semibold_24{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
}
.regular_20{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
}
.medium_20-italic{
    font-family: 'Inter';
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
}
@media(max-width:768px){
    .semibold_24{
        font-size: 22px;
    }
    .regular_20{
        font-size: 18px;
    }
    .medium_20-italic{
        font-size: 18px;
    }
}


.center-alignment{
    padding-left: calc(50% - 600px);
    padding-right: calc(50% - 600px);
}
@media(max-width:1280px){
    .center-alignment{
        padding-left: 80px;
        padding-right: 80px;
    }
}
@media(max-width:768px) and (min-width:320px){
    .center-alignment{
        padding-left: 16px;
        padding-right: 16px;
    }
}




/* Header */
.header{
    color: var(--green--secondary-400);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #C6C6C6 -3.3%, rgba(234, 234, 234, 0.00) 100%);
    padding-top: 24px;
    padding-bottom: 24px;
}
.header__navigation{
    display: flex;
    gap:24px;
}
.header__navigation a{
    color:var(--gray);
}
.header__navigation a:hover{
    text-decoration: underline;
}
.header__menu{
    transition: opacity .15s ease;
}
.menu-trigger{
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
@media(max-width:1024px){
    .header__navigation{
        display: none;
    }
}
@media(max-width:768px){

}


.menu{
    padding-top: 48px;
    padding-bottom: 48px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    width: 100%;
    transition: top .1s ease;
}
.menu__navigation{
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--gray);
}
.menu__navigation a{
    color:var(--gray);
}
.menu__navigation a:hover{
    text-decoration: underline;
}
@media(min-width:1024px){
    .menu, .menu-trigger{
        display: none;
    }
}
@media(max-width:1024px){
    .menu, .menu-trigger{
        display: flex;
    }
}


/* promo */
.promo{
    padding-top: 130px;
    padding-bottom: 100px;
    display: flex;
    background-image: url("img/background_promo.png");
    background-size:cover;
    background-position: center;
}

.promo__info{
    width: 40%;
    display: flex;
    gap: 16px;
    flex-direction: column;
    color:var(--white);
}
.promo__links{
    display: flex;
    gap: 16px;
}
.promo__link{
    padding: 10px 30px;
    background: var(--red);
    color: var(--white);
    border-radius: 12px;
    border:var(--red) 2px solid;
}
.promo__link:nth-child(2){
    background: none;
    color:var(--red);
}

@media(max-width:1024px){
    .promo__info{
        width: 60%;
        text-align: start;
    }
}
@media(max-width:768px){
    .promo__info{
        width: 100%;
    }
    .promo__info img{
        width: 60%;
    }
    .promo{
        padding-top: 44px;
        padding-bottom: 380px;
        background-image: url("img/background_promo-mobile.png");
        
    }
    .promo__links{
        align-self: center;
        gap: 10px;
    }
    .promo__link{
        padding: 8px 18px;
        font-size: 16px;
    }
}



/* info */
.info{
    padding-top: 120px;
    padding-bottom: 110px;
    display: flex;
    position: relative;
    color: var(--gray);
    gap: 100px;
}
.info__text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info__text h2{
    margin-bottom: 32px;
}
.background__info{
    position: absolute;
    right: 0;
    bottom: 0;
}
@media(max-width:1280px){
    .info{
        gap: 64px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media(max-width:1024px){
    .info{
        gap: 20px;
        flex-direction: column;
    }
    .info img{
        order:1;
        margin: 0 64px;
    }
    .info__text{
        order: 0;
    }
    .info__text h2{
        margin-bottom: 20px;
    }
    .background__info{
        display: none;
    }
}
@media(max-width:768px){
    .info img{
        margin: 0;
    }
}




/* product*/
.product{
    padding-top: 80px;
    padding-bottom: 70px;
    background: linear-gradient(90deg, #D42D27 0.17%, #D2A6A4 99.78%);
    color: var(--white);
}
.product h2{
    text-align: center;
    padding-bottom: 32px;
}
.product__blocks{
    display: flex;
    gap: 80px;
}
.product__block{
    width: 50%;
}
.product__block:nth-child(1){
    padding-top: 38px;
    padding-left: 88px;
    display: flex;
    flex-direction: column;
}
.product__block p.medium_24{
    margin-bottom: 30px;
}
.product__list{
    margin-bottom: 60px;
}
.product__list li{
    list-style:disc;
    margin-left: 21px;
}
.product__img{
    width: 80%;
    margin-bottom: 60px;
}
.product__block p.regular_12{
    margin-bottom: auto;
}


@media(max-width:1024px){
    .product h2{
        padding-bottom: 26px;
    }
    .product{
        padding-top: 64px;
        padding-bottom: 50px;
    }
    .product__blocks{
        flex-direction: column;
        gap: 40px;
    }
    .product__block{
        width: 100%;
    }
    .product__block:nth-child(1){
        padding: 0;
        order:0;
    }
    .product__block:nth-child(2){
        order:1;
    }
    .product__list{
        margin-bottom: 0;
    }
    .product__img{
        width: 80%;
        align-self: center;
        margin: 0;
    }
}
@media(max-width:768px){
    .product__blocks{
        gap: 30px;
    }
    .product__img{
        width: 80%;
    }
    .product__block p.medium_24{
        margin-bottom: 15px;
    }
}



/* product-info */
.product-info{
    padding-top: 85px;
    padding-bottom: 80px;
    color: var(--gray);
}
.product-info h2{
    text-align: center;
    padding-bottom: 80px;
}
.product-info__blocks{
    display: flex;
    gap: 70px;
}
img.product-info__block{
    width: 40%;
}
.product-info__block{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}
.product-info__block p.regular_12{
    align-self: flex-end;
}
.product-info__list{
    display: flex;
    gap: 37px;
    flex-direction: column;
    padding-right: 80px;
}
.product-info__item{
    display: flex;
}
.p-i_item__block{
    padding: 30px 24px;
    background: var(--2, linear-gradient(180deg, #EAEAEA 0%, #D0D0D0 100%));
    border-radius: 12px;
    color: var(--gray);
}
@media(max-width:1280px){
    .product-info h2{
        padding-bottom: 38px;
    }
    .product-info__blocks{
        gap: 50px;
        flex-direction: column;
    }
    img.product-info__block{
        width: 70%;
        align-self: center;
    }
    .product-info__block{
        width: 100%;
    }
    .product-info__list{
        gap: 30px;
    }
    .product-info__block p.regular_12{
        margin-top: 40px;
        align-self: flex-start;
    }
}
@media(max-width:768px){
    img.product-info__block{
        width: 100%;
    }
    .product-info__list{
        padding: 0;
    }
    .product-info h2{
        text-align: left;
    }
}
@media(max-width:768px){
    .product-info__item img{
        display: none;
    }
   
} 


/* advantages */
.advantages {
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
    background: linear-gradient(270deg, #D40D06 -13.21%, #D19B99 86.61%, #D3CDCC 133.98%);
    color: var(--white);
}
.advantages__blocks {
    display: flex;
    gap: 50px;
}
.advantages__block {
    width: 50%;
    z-index: 2;
}
.advantages__block-text {
    width: calc(50% - (36px * 2));
    padding: 48px 36px;
    border-radius: 64px;
    background: #C88886;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
}
.advantages__block h2{
    margin-bottom: 40px;
}
.advantages__block_paragraph:nth-child(3){
    margin: 20px 0;
}
.advantages__text{
    margin-top: 70px;
    margin-right: 35px;
    display: flex;
    gap: 6px;
    flex-direction: column;
}
.advantages__block-img{
    position: relative;
}
.advantages__block-img img{
    /* position: absolute; */
    width: 65%;
}
.advantages__img-1{
    position: absolute;
    top:0;
    right: 0;
}
.advantages__img-2{
    position: absolute;
    top: 30%;
    left:-25px;
}
.advantages__img-3{
    position: absolute;
    bottom: 0;
    right: 10px;
}
.background__advantages{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
@media(max-width:1024px){
    .advantages__blocks{
        flex-direction: column;
    }
    .advantages__block{
        width: calc(100% - (36px * 2));
    }
    .advantages__block-img{
        display: flex;
        flex-direction: column;
    }
    .advantages__block-img img{
        /* position: relative; */
        width: 80%;
    }
    .advantages__img-1{
        align-self: center;
        position: relative;
        align-self: flex-start;
        margin-bottom: 60px;
        order: 2;
    }
    .advantages__img-2{
        align-self: center;
        position: relative;
        order: 1;
    }
    .advantages__img-3{
        align-self: flex-end;
        position: absolute;
        right: -30px;
        bottom: 0;
    }
    .background__advantages{
        position: absolute;
        left: 0;
        bottom: 50%;
    }
}
@media(max-width:768px){

}




/* how-it-works__img-block */
.how-it-works{
    padding-top: 90px;
    padding-bottom: 40px;
    color: var(--gray);
}
.how-it-works h2{
    padding-bottom: 62px;
    text-align: center;
}
.how-it-works__block{
    position: relative;
}
.how-it-works__img-block{
    border-radius: 64px;
    background: linear-gradient(291deg, rgba(210, 25, 11, 0.67) 2.96%, rgba(210, 143, 140, 0.02) 82.62%);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.09);
    margin: 0 170px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}
.how-it-works__img-block img:nth-child(1){
    width: 80%;
}
.how-it-works__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 200px;
    row-gap: 110px;
    position: absolute;
    top: 25%;
}
.how-it-works__item{
    padding: 30px 24px;
    background: var(--2, linear-gradient(180deg, #EAEAEA 0%, #D0D0D0 100%));
    border-radius: 12px;
    color: var(--gray);
    position: relative;
}
.how-it-works__number{
    position: absolute;
}
.how-it-works__item:nth-child(2n+1) .how-it-works__number{
    bottom:-20px;
    right: -35px;
}
.how-it-works__item:nth-child(2n+2) .how-it-works__number{
    bottom:-20px;
    left: -35px;
}
@media(max-width:1280px){
    .how-it-works__item:nth-child(2n+1) .how-it-works__number{
        left: -26px;
    }
    .how-it-works__item:nth-child(2n+2) .how-it-works__number{
        left: -26px;
    }
    .how-it-works__item .how-it-works__number{
        top:-20px;
        right: 0;
        bottom: 0;
    }
    .how-it-works__list{
        position: relative;
        grid-template-columns: 1fr;
        row-gap: 56px;
        margin: 45px 128px 0 128px;
    }
}
@media(max-width:1024px){
    .how-it-works__img-block{
        margin: 0;
    }
    .how-it-works__list{
        position: relative;
        grid-template-columns: 1fr;
        row-gap: 56px;
        margin: 45px 30px 0;
    }
}
@media(max-width:768px){
    .how-it-works__list{
        row-gap: 30px;
    }
    .how-it-works h2{
        text-align: left;
    }
}



.buy-options{
    color:var(--gray);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
    margin: 0 100px;
}
.buy-options__img{
    width: 70%;
}
.buy-options__background-block{
    display: flex;
    padding-top:40px;
    align-items: center;
    justify-content: space-between;
}

.buy-options__lists{
    display: flex;
    gap:24px;
    flex-direction: row;
}
.buy-options__list{
    display: flex;
    flex-direction: column;
    gap:24px;
}
.buy-options__item{
    display: flex;
    flex-direction: column;
    gap:8px;
}
.buy-options__text{
    display: flex;
    justify-content: center;
}
.buy-options__block{
    /* box-shadow: inset 0 0 0 1px #bbbbbb; */
    border: 1px #bbb solid;
    border-radius: 12px;
    height: 100px;
    width: 235px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    overflow: hidden;
}
.buy-options__block img{
    width: 70%;
}
.buy-options__info{
    padding-top:72px;
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.buy-options__info h3{
    color:var(--white);
    padding: 0;
    text-align: center;
}
.buy-options__info span{
    color:var(--white);
    text-align: center;
    justify-content: center;
    display: flex;
}
.buy-options__contact{
    justify-content: center;
    display: flex;
    gap:40px;
}
.buy-options__contact-card{
    display: flex;
    gap: 8px;
    align-self: center;
    color:var(--white)
}
.buy-options__medicine-img{
    width: 40%;
    min-width: 200px;
    display: flex;
}
@media(max-width:1024px){
    .buy-options{
        margin: 0;
    }
    .buy-options__background-img_2{
        width: 50%;
    }
    .buy-options__background-block{
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }
    .buy-options__lists{
        width: 100%;
    }
    .buy-options__list{
        width: 100%;
    }
    .buy-options__block{
        width: 100%;
    }
    .buy-options__block img{
        width: 60%;
    }
}
@media(max-width:768px){
    
    .buy-options{
        padding-bottom: 80px;
    }
    .buy-options__info{
        gap: 16px;
    }
    .buy-options__contact{
        /* flex-direction: column; */
        gap: 8px;
    }
}



/* footer */
footer{
    background: var(--white);
}
.questions{
    background: #ededed;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
    color:var(--gray);
}
.questions h2{
    margin-bottom: 20px;
}
.questions__contacts{
    margin-top: 60px;
    display: flex;
    gap:80px;
    justify-content: center;
}
.questions__contacts a{
    display: flex;
    justify-items: center;
    gap: 16px;
    color: var(--gray);
}
.questions__contacts a:hover{
    text-decoration: underline;
}
@media (max-width:768px){
    .questions{
        padding-top: 57px;
        padding-bottom: 57px;
    }
    .questions h2{
        margin-bottom: 16px;
    }
    .questions__contacts{
        margin-top: 16px;
    }
    .questions{
        text-align: start;
    }
    .questions__contacts{
        flex-direction: column;
        gap: 16px;
    }
}

.footer__warnings{
    padding-top: 110px;
    padding-bottom: 50px;
    color: #8F8F8F;
}
.footer__warning{
    padding-bottom: 60px;
}
@media (max-width:768px){
    .footer__warnings{
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .footer__warning{
        padding-bottom: 16px;
    }
}

.footer__disclaimer{
    color: #B0B0B0;
    text-align: center;
    font-family: Inter;
    font-size: 104px;
    font-style: normal;
    font-weight: 200;
    line-height: 115.523%; /* 120.144px */
    text-transform: uppercase;
    width: calc(100% - 60px);
    padding-left: 30px;
    padding-right: 30px;
}

.footer__level-media{
    padding: 9px 0;
    text-align: center;
    background: #C81E13;
    color: var(--white);
}
@media (max-width:1280px){
    .footer__disclaimer{
        font-size: 80px;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width:768px){
    .footer__disclaimer{
        font-size: 50px;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
    @media (max-width:420px){
        .footer__disclaimer{
            font-size: 40px;
        }
    }
    @media (max-width:360px){
        .footer__disclaimer{
            font-size: 30px;
        }
    }
}




/* instruction */

.instruction__head{
    padding-top: 80px;
    padding-bottom: 100px;
    color:var(--gray-1);
}
.instruction__header{
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.instruction__blocks{
    display: flex;
    gap: 100px;
}
.instruction__block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.instruction__text{
    color: var(--gray-2);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.instruction__text h2{
    max-width: 50%;
}
.instruction__text p{
    width: calc(100% - 100px);
}
.instruction__text:nth-last-of-type(1){
    margin-bottom: 100px;
}
@media (max-width:1024px){
    .instruction__head{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .instruction__header{
        margin-bottom: 20px;
        flex-direction: column;
    }
    .instruction__header h1{
        order: 2;
        align-self: start;
    }
    .instruction__header img{
        align-self: center;
    }
    .instruction__blocks{
        flex-direction: column;
        gap: 10px;
    }
    .instruction__text h2{
        max-width: 100%;
    }
    .instruction__text:nth-last-of-type(1){
        margin-bottom: 80px;
    }
}
@media(max-width:768px){
    .instruction__head{
        padding-top: 20px;
    }
    .instruction__text p{
        width: 100%;
    }
}