.top-content-block{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-image: url(../img/top-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.get-call-block{
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.get-call-block img{
    align-self: center;
    height: 25px;
    opacity: 0.5;
    margin-right: 12px;
}


.get-call-block .get-call{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.get-call-block .get-call a{
    text-decoration: none;
    color: #fff;
    margin: 0;
    font-size: 1.2em;
}

.get-call-block .get-call p{
    text-decoration: none;
    color: #868686;
    margin: 0;
    font-size: 0.8em;
    transition: 0.3s;
    cursor: pointer;
}


.get-call-block .get-call p:hover{
    color: gold;
}



.welcome-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1{
    font-weight: 100;
    font-size: 3em;
    margin: 10px 0;
}

.welcome-content p{
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-size: 1.5em;
}

.products-content-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}


.products-content-block h2{
    margin: 0 0 0 0;
    text-align: center;
}

.products-content-block h3{
    font-size: 1.5em;
    text-align: center;
    z-index: 2;
}

.inner-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1140px;
    margin: 0 auto;
}

h2{
    font-size: 3em;
}

.products{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products-block{
    display: flex;
    flex-direction: column;
    border: 1px solid #cacaca;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-block-items{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.products-block-1{
    width: 100%;
}

.products-block-2{
    width: 33%;
}

html .products-block-2 h2{
    font-size: 1.3em;
    padding: 0 1em;
}

.products-block-3{
    width: 65%;
}

.product{
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 40px 30px 60px 30px;
    box-sizing: border-box;
    position: relative;
}

.product-discount-label{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    top: 40px;
    right: 60px;
    color: rgb(220, 0, 0);
    z-index: 9;
    border: 2px solid rgb(220, 0, 0);
    border-radius: 50%;
    padding: 8px 4px;
    letter-spacing: 1px;
}

.old-price{
    text-decoration: line-through;
}

.new-price{
    font-weight: 900;
    color: rgb(220, 0, 0);
}

.product-cup{
    width: 20%;
}


.products-block-2 .product{
    width: 50%;
    padding: 40px 10px 60px 10px;
}

.products-block-3 .product{
    width: 33%;
}

.product-image{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}


.product-image img{
    width: 100%;
    align-self: center;
}

.product-cup .product-image img{
    transition: 0.3s;
}

.product-cup .product-image img:hover{
    transform: scale(1.2);
}

.product-image .main-product-image{
    position: absolute;
    transition: 0.3s;
}

.product-image .main-product-image:hover{
    opacity: 0;
}

.product-title{
    font-size: 1.3em;
    font-weight: 900;
    margin: 0;
    margin-bottom: 10px;
}

.product-description{
    font-size: 1em;
    font-weight: 100;
    margin: 0;
    color: #888787;
    line-height: 1;
    margin-bottom: 10px;
}

.product-options{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 80px;
    box-sizing: border-box;
}

.product-buy-btn{
    text-align: center;
    padding: 6px 25px;
    border: 1px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.product-buy-btn:hover{
    background-color: #000;
    color: #fff;
}

.product-price{
    font-size: 1.3em;
    font-weight: 900;
    white-space: nowrap;
    display: none;
}

.cups{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.cup{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cup img{
    align-self: center;
    width: 80%;
    transition: 0.3s;
    z-index: 1;
}

.cup img:hover{
    transform: scale(1.3);
    z-index: 0;
}

.cup p{
    text-align: center;
    font-size: 1.2em;
    padding: 0 10%;
    z-index: 2;
}

.benefits-content-block{
    width: 100%;
    background-image: url(../img/benefits-bg.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.benefits-content-block h2{
    margin: 60px 0 30px 0;
}

.benefits-label{
    margin: 0 0 80px 0;
}

.benefits-wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.benefits-row{
    display: flex;
    width: 100%;
}

.benefits-item{
    display: flex;
    flex-direction: column;
    width: 50%;
    box-sizing: border-box;
    padding: 0 20px;
}

.benefits-title{
    margin: 20px 0;
    letter-spacing: 1px;
}

.benefits-text{
    margin: 0 0 40px 0;
    letter-spacing: 1px;
    line-height: 1.5;
}


.steps-content-block{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.steps-wrap{
    display: flex;
    width: 80%;
    justify-content: space-between;
    flex-wrap: wrap;
}


.steps-content-block h3{
    font-size: 1.3em;
    text-align: center;
    margin: 60px 0 50px 0;
    font-weight: 100;
}

.steps{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.step{
    display: flex;
    flex-direction: column;
    width: 20%;
}

.step img{
    align-self: center;
    width: 64px;
    margin: 0 0 20px 0;
}

.step p{
    text-align: center;
    font-size: 1.2em;
}

.steps-info{
    display: flex;
    flex-direction: column;
    width: 46%;
    margin: 0 auto;
}

.steps-info h4{
    font-size: 1em;
    font-weight: 900;
    margin: 20px 0 0 0;
    text-align: center;
}

.steps-info p{
    font-size: 1em;
}

.reviews-content-block{
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    background-image: url(../img/reviews-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 60px 0 40px 0;
    user-select: none;
}

.reviews-overlay{
    background: linear-gradient(to bottom,#0e1428 0,rgba(14,20,40,.72) 66%,transparent 140%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}

.reviews-content-block h2{
    text-align: center;
    color: #fff;
    font-size: 1.8em;
    font-weight: 100;
    z-index: 5;
}

.reviews-slider{
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-slider{
    width: 60%;
    margin: 0 auto;
}


.review-text{
    font-size: 1.6em;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.3;
}

.review-person{
    display: flex;
    align-items: center;
}

.review-person img{
    align-self: center;
    border-radius: 50%;
    height: 75px;
    width: 75px;
    margin-right: 30px;
}

.review-person-info{
    display: flex;
    flex-direction: column;
}


@media (max-width: 500px){
    h1{
        font-size: 2em;
    }

    h2{
        font-size: 1.5em;
        text-align: center;
    }

    .inner-content{
        width: initial;
    }

    .products-content-block{
        box-sizing: border-box;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .product-block-items{
        flex-wrap: wrap;
    }

    .products-block-2,
    .products-block-3{
        width: 100%;
    }

    .products-block-2 .product,
    .products-block-3 .product{
        width: 100%;
    }

    .product{
        width: 100%;
    }

    .cup{
        width: 100%;
    }

    .product-options{
        left: 0;
        padding: 0 40px;
    }

    .welcome-content p{
        font-size: 1em;
        padding: 0 2em;
    }

    .get-call-block{
        /* right: 15px; */
    }

    .get-call-block .get-call a{
        font-size: 0.8em;
        white-space: nowrap;
    }

    .get-call-block .get-call p{
        font-size: 0.55em;
    }

    .benefits-title{
        font-size: 0.8em;
    }
    
    .benefits-text{
        font-size: 0.8em;
        margin-bottom: 20px;
    }

    .benefits-wrap{
        padding: 0 15px;
        box-sizing: border-box;
    }

    .benefits-label{
        margin-bottom: 30px;
    }

    .benefits-content-block h2{
        padding: 0 1em;
    }

    .steps{
        width: 80%;
        flex-wrap: wrap;
    }

    .step{
        width: 50%;
    }

    .steps-info{
        width: 80%;
    }

    .review-text{
        font-size: 1em;
    }

    .reviews-slider{
        width: 85%;
    }

    html .CSSgal .prevNext a{
        top: 85px;
    }

    html .CSSgal .prevNext a+a{
        right: -20px;
    }

    html .CSSgal .prevNext a{
        left: -20px;
    }

    .reviews-content-block h2{
        font-size: 1.5em;
    }

    html header .logo img{
        height: 55%;
    }

    html .language-select{
        margin-right: 15px;
    }

    html .language-select span{
        margin: 0 5px;
    }

    html .callback{
        width: 90%;
    }
    
}

@media (max-width: 1370px){
    header .header-nav .header-nav-item{
        font-size: 1.2em;
    }

    .language-select a{
        font-size: 1.2em;
    }

}