*,
*::before,
*::after{
    box-sizing: border-box;
}
:root {
    --orange: #FF9600;;
    --text-dark: #171717;
    --white: #fff;
    --green: #008000;
    --red: #FF0000;
    --blue: #2563EB;
    --green-white: #DCE666;
    --purple: #2A3987;
    --pink: #FFDDCA;
    --brown: #C14602;
    --blue-white: #EFF2FF;
    --dark-grey: #1F2937;
    --grey: #374151;
    --logo: #E5EF6A;
}
body,html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.wow{
    visibility: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Montserrat", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}
section{
    padding: 80px 0;
}
body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.3;
    color: #0E0E0E;
    font-size: 20px;
}

.container{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
    
}
.logo{
    font-size: 22px;
    color: var(--logo);
    text-transform: uppercase;
    font-weight: 700;
}

.header{
    background-color: #171717;
    padding: 20px 0;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-benefits{
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-delivery{
    display: flex;
    align-items: center;
    color: #fff;
    gap: 8px;
}
.header-anonim{
    display: flex;
    align-items: center;
    color: var(--orange);
    gap: 8px;
}
/* END HEADER */





 /* START BLOCK1 MAIN */
.main{
    position: relative;
    padding-top: 100px;
    background: rgba(42, 57, 135, 1);
}

.main::before{
    content: "";
    z-index: 2;
    position: absolute;
    background: #643685;
    background: radial-gradient(circle, rgba(100, 54, 133, 1) 0%, rgba(42, 57, 135, 1) 95%);
    height: 100%;
    width: 80%;
    top: 0;
    left: 0;
}
                                   
.main > *{
    position: relative;
    z-index: 2;
}
.main-inner{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: 
        "top img"
        "bottom img";
    gap: 40px;
    align-items: center; 
    position: relative;
}
.main-top{
    grid-area: top;
    color: var(--white);
    border-bottom: 3px solid var(--green-white);
    padding-bottom: 5px;
}
.inovation{
    color: var(--text-dark);
    padding:10px;
    background-color:var(--green-white) ;
    border-radius: 15px;
    max-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}
.title{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}
.title>span{
    color: var(--green-white);
}

.undertitle>span{
    font-weight: 700;
}
.list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}
.list-item{
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    gap: 15px;
    align-items: center;
}
.list-item::before{
    content: "";
    background: url(../img/galka.svg);
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
}
.main-img {
    grid-area: img;
}
.button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    height: 100px;
    border-radius: 60px;
    font-family: "Montserrat", sans-serif;
    background-color: var(--orange);
    color: #fff;
    font-weight: 700;
    padding: 10px 20px 10px 10px;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: ease-in-out 0.25s;
    text-align: center;
}
.button:hover{
    background-color: #c57606;
}
.main-img{
    position: relative;
}
.main-img-decor{
    background-color: var(--green-white);
    border-radius: 50%;
    width: 170px;
    height: 170px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--text-dark);
    position: absolute;
    flex-direction: column;
    top: -80px;
    right: 50px;
}
.main-img-decor>span{
    font-size: 42px;
}
.payment{
    display: flex;
    gap: 15px;
    align-items: center;
    max-width:250px ;
    position: absolute;
    bottom: 30px;
    left: 550px;
    color: var(--white);
}                            
/* END BLOCK1 MAIN */

/* START SECTION 2 SHAME */
.shame .title{
    text-align: center;
    margin-bottom: 70px;
}
.shame .title>span{
    color: var(--brown);
}
.shame-img{
    max-width: 700px;
    width: 100%;
}
.shame-inner{
    display: flex;
    gap: 50px;
    align-items: center;

}
.shame-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    
}
.shame-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--brown);
}
.shame-content{
    background-color: var(--pink);
    padding: 30px 20px 30px 30px;
    border-left: 8px solid var(--brown);
}
.shame-content>p>span{
    font-weight: 700;
}
/* END SECTION 2 SHAME */

/* START SECTION 3 UROLOGIST */
.urologist{
    background-color: var(--blue-white);
    text-align: center;
}
.urologist .container .undertitle{
    margin-bottom: 100px;
}
.urologist-inner{
    display: flex;
    justify-content: space-between;
}
.urologist-item{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    background-color: var(--white);
    border-bottom: 8px solid var(--purple);
    max-width: 445px;
    padding: 40px 25px;
}
.urologist-item>p>span{
    font-weight: 700;
}

.urologist-item-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* END SECTION 3 UROLOGIST */



/* START SECTION 4 NATURE */


.nature{
    background: url(../img/nature-bg.png) calc(50% - 850px) calc(50% - 500px) no-repeat,
    url(../img/nature-bg2.png) calc(50% + 800px) calc(50% + 500px) no-repeat;
}
.nature .container .title{
    text-align: center;
    margin-bottom: 80px;
}
.nature-inner{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 100px; 
    align-items: center;
}
.nature-item{
    display: flex;
    max-width: 555px;
    color: var(--white);
    justify-content: space-between;
}
.nature-item:first-of-type{
    background-color: var(--green);
    grid-area: 1 / 1 / 2 / 3;
}
.nature-item-img{
    min-width: 180px;
    flex-shrink: 0;
}
.nature-item-img>img{
    width: 100%;
    display: block;
    height: 100%;
}
.nature-item-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.nature-item-content>p>span{
    font-weight: 700;
    font-size: 22px;
}
.nature-item:nth-child(2){
    background-color: var(--orange);
    grid-area: 2 / 1 / 3 / 3;
}
.nature-item:nth-child(3){
    background-color: var(--red);
    grid-area: 1 / 4 / 2 / 6;
}
.nature-item:nth-child(4){
    background-color: var(--blue);
    grid-area: 2 / 4 / 3 / 6;
}
.nature-prod{
    grid-area: 1 / 3 / 3 / 4;
}

/* END SECTION 4 NATURE */


/* START SECTION 5 WHY */
.why{
    background-color: var(--blue-white);
}
.why h1{
    text-align: center;
}
.table-best{
    width: 1180px;
    margin: 0 auto;
}
.table{
    width: 100%;
    text-align: center;
    background-color: var(--white);
    z-index: 3;
    position: relative;
}
.table th:first-child{
    padding: 30px 10px;
    background-color: var(--dark-grey);
    color: var(--white);
}
.table th:nth-child(2){
    padding: 30px 10px;
    background-color: var(--grey);
    color: var(--white);
}
.table th:last-of-type{
    padding: 30px 10px;
    background-color: var(--blue);
    color: var(--white);
}
.table td{
    padding: 20px 10px;
}
.table tr td:first-of-type{
    font-weight: 700;
}
.table tr td:nth-child(2){
    color: var(--brown);
}
.table tr td:last-of-type{
    color: var(--green);
    font-weight: 700;
}
.table tr:nth-child(2n){
    background-color: #FAFAFA;
}
.table-oveflow{
    position: relative;
}
.table-choice{
    width: 30%;
    margin: 0 0 0 auto;
}
.right-choice{
    width: 250px;
    margin: 0 auto;
    display: block;
    padding: 15px 15px;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0 0 35px 35px;
    background-color: var(--orange);
    font-size: 18px;
    z-index: 1;
}

/* END SECTION 5 WHY */




/* START SECTION 6 REVIEWS */
.reviews h1{
    text-align: center;
}
.review-inner{
    display: flex;
    justify-content: space-between;
}
.reviews-item{
    max-width: 460px;
    border-radius: 25px;
    border: 2px solid var(--blue);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 40px;
    background-color: var(--blue-white);
}
.reviews-content{
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
}
.reviews-content>img{
    border-radius: 50%;
}
.reviews-name{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* END SECTION 6 REVIEWS */


/* START FOOTER  */

.footer{
    /* background: rgba(42, 57, 135, 1); */
    position: relative;
}
.footer::before{
    content: "";
    position: absolute;
    z-index: 1;
    background: radial-gradient(circle, rgba(100, 54, 133, 1) 0%, rgba(42, 57, 135, 1) 95%);
    
    width: 100%;
    top: 0;
    bottom: 22%; /* оставляет 20% высоты снизу */
    left: 0;
}
.footer > *{
    position: relative;
    z-index: 2;
}
.footer-inner{
    display: flex;
    gap: 50px;
    align-items: center;
}
.footer-undertitle{
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}
.footer-left{
    max-width: 700px;
    color: var(--white);
    align-items: center;
    display: flex;
    flex-direction: column;
}
.footer-left>h1{
    margin-bottom: 20px;
}
.timer-box{
    border-radius: 45px;
    max-width: 620px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--white);
    border: 1px solid var(--blue);
    margin-bottom: 40px;
    text-align: center;
}
.timer-text{
    color: var(--text-dark);
    font-weight: 700;
}
.timer{
    color: var(--orange);
    font-size: 50px;
    font-weight: 700;
}
.timer>span{
    position: relative;
}
.timer>span:after{
    content: ":";
    font-size: 40px;
    color: var(--orange);
    display: inline-block;
    margin-top: 15px;
    align-items: center;
    position: absolute;
    top: -15px;
}
.timer>span:last-of-type::after{
    display: none;
}
.footer-left .main-img .main-img-decor{
    top: 90px;
    right: -20px;
}
.order-form{
    background-color: var(--blue-white);
    border-radius: 25px;
    text-align: center;
    padding: 50px 30px;
}
.order-title{
    font-size: 30px;
    margin-bottom: 25px;
}
.price-block{
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}
.price-old{
    font-size: 24px;
    position: relative;
}
.price-old::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #0E0E0E;
    transform: rotate(-15deg);
}
.price-new{
    font-size: 48px;
    color: var(--green);
    font-weight: 700;
}
.order-form .undertitle{
    margin-bottom: 25px;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
}
.form-input{
    outline: none;
    border: none;
    border-radius: 45px;
    max-width: 500px;
    width: 100%;
    height: 100px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    margin: 0 auto;
    font-size: 22px;
}
.form-input::placeholder{
    color: var(--text-dark);
    font-size: 22px;
}
.form>button{
    margin: 0 auto;
}

.order-form .payment{
    position: static;
    max-width: 100%;
    color: var(--text-dark);
    justify-content: center;
    margin-bottom: 30px;
    font-size: 16px;
}
.discount-time{
    font-size: 16px;
    color: var(--grey);
}
/* END FOOTER */


.cpu{
padding: 10px 0;
text-align: center;
}
.cpu img{
display:block;
margin: 0 auto;
width: auto;
}
.cpu a{
display: inline-block;
margin: 5px;
color: #333;
font-size: 14px;
}





@media(max-width: 1499px){
    .container{
        max-width: 1200px;
        padding: 0 10px;
    }
    .title{
        font-size: 40px;
    }
     .shame-right{
        gap: 25px;
    }
    .shame-content{
        gap: 10px;
    }
    .urologist-inner{
        justify-content: center;
        gap: 20px;
    }
    .nature-inner{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        align-items: center;
    }
    .nature-item:first-of-type{
        grid-area: 1 / 2 / 2 / 4;
    }
    .nature-item:nth-child(2){
        grid-area: 2 / 2 / 3 / 4;
    }
    .nature-item:nth-child(3){
        grid-area: 3 / 2 / 4 / 4;
    }
    .nature-item:nth-child(4){
        grid-area: 4 / 2 / 5 / 4;
    }
    .nature-prod{
        grid-area: 1 / 1 / 5 / 2;
    }
    .review-inner{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media(max-width: 1199px){
    .container{
        max-width: 1024px;
        padding: 0 10px;
    }
    .main-inner{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .title{
        margin-bottom: 30px;
    }
    .list{
        margin-bottom: 30px;
    }
    .list-item{
        font-size: 20px;
    }
    .main-img-decor{
        width: 150px;
        height: 150px;
    }
    .main-img-decor > p > span{
        font-size: 36px;
    }
    .main-top{
        margin-bottom: 15px;
    }
    .table-oveflow{
        overflow-x:scroll;
    }
    .footer-left{
        max-width: 450px;
    }
    .button{
        font-size: 20px;
    }
    .price-old{
        font-size: 22px;
    }
    .price-new{
        font-size: 38px;
    }
   

}

@media(max-width: 1023px){
    body{
        font-size: 17px;
    }
    .container{
        max-width: 768px;
        padding: 0 10px;
    }
    .main-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "top"
            "img"
            "bottom";
        text-align: center;
    }

    .main-img {
        justify-self: center;
        max-width: 60%;
    }
    .main-top{
        margin-bottom: 35px;
    }
    .main-img-decor{
        width: 100px;
        height: 100px;
        top: -35px;
    }
    .main-img-decor>p{
        display: none;
    }
    .main-img-decor>span{
        font-size: 32px;
    }
    .main-bottom{
        margin: 0 auto;
    }
    .payment{
        left: 50%;
        translate: calc(-50%);
        width: 100%;
        font-size: 14px;
        bottom: -56px;
        max-width: 305px;
    }
    .inovation{
        margin: 0 auto 15px;
    }
    .undertitle{
        padding: 0 25px;
    }
    .main::before{
        width: 100%;
    }
    .header-delivery{
        display: none;
    }
    .shame-inner{
        flex-direction: column;
        gap: 30px;
    }
    .urologist-inner{
        flex-wrap: wrap;

    }
    .urologist-item{
        max-width: 300px;
    }
    .urologist .container .undertitle{
        margin-bottom: 40px;
    }
    .nature-inner{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(1, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .nature-item{
        max-width: 100%;
    }
    .nature-item:first-of-type{
        grid-area: 1 / 1 / 2 / 2;
    }
    .nature-item:nth-child(2){
        grid-area: 2 / 1 / 3 / 2;
    }
    .nature-item:nth-child(3){
        grid-area: 3 / 1 / 4 / 2;
    }
    .nature-item:nth-child(4){
        grid-area: 4 / 1 / 5 / 2;
    }
    .nature-prod{
         grid-area: 5 / 1 / 6 / 2;
         margin: 30px auto 0;
    }
    .reviews-item{
        max-width: 355px;
    }
    .footer::before{
        width: 100%;
    }
    .footer-inner{
        flex-direction: column;
        gap: 30px;
    }
    .footer-left{
        max-width: 700px;
    }
    .order-form .payment{
        translate: none;
    }
    .footer::before{
        bottom: 0;
    }
    .timer{
        font-size: 38px;
    }
    .timer > span::after{
        top: -10px;
        font-size: 28px;
        right: -9px;
    }
    .footer-undertitle{
        font-size: 26px;
    }
    .table-best{
        max-width: 900px;
    }
    .right-choice{
        max-width: 200px;
        font-size: 14px;
    }

}
@media(max-width: 749px){
     .reviews-item{
        max-width: 100%;
    }
}
@media(max-width: 667px){
    .main-img-decor{
        width: 70px;
        height: 70px;
    }
    .main-img-decor>span{
        font-size: 22px;
    }
    .list-item{
        text-align: start;
    }
    .title{
        font-size: 35px;
    }
    .urologist-item{
        padding: 20px;
    }
    .nature-prod{
        max-width: 225px;
    }
    .order-form{
        padding: 30px 20px;
    }
    .nature .container .title{
        margin-bottom: 40px;
    }
    .shame .title{
        margin-bottom: 40px;
    }
    
    
}

@media(max-width: 480px){
    section{
        padding: 40px 0 ;
    }
    .main{
        padding: 40px 0 80px;
    }
    .header-anonim{
        font-size: 16px;
    }
    .button{
        padding: 10px 20px;
        font-size: 17px;
        height: 80px;
    }
    .nature-item{
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
    }
    .nature-item-content{
        order: 2;
    }
    .nature-item-img > img{
        box-shadow: 0 0 20px var(--dark-grey);
        border-radius: 5px;
    }
    .nature-prod{
        max-width: 180px;
    }
    .form{
        padding: 0;
    }
    .title{
        font-size: 30px;
    }
    .timer-box{
        padding: 15px 20px;
    }
    .footer-left > h1{
        font-size: 28px;
    }
   
    .urologist-item{
        max-width: 100%;
    }
    .form-input{
        height: 80px;
    }
    .form-input::placeholder{
        font-size: 18px;
    }
    
}


