@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    border: 0;

    background-color: #FBFBFB;
    font-family: 'Inter', sans-serif;
}
.visuallyhidden {
	position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
img {
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
}

button {
    width: 430px;
    height: 55px;
    background-color: #1A73E8;
    border-radius: 61px;
    margin: 25px 0;
    border: 0;
    font-size: 22px;
    font-weight: 400;
    color: white;
    transition: 0.3s;
}

button:hover {
    background-color: #3b86e8;
}

.button-sub {
	background-color: #ff000000;
    border: 1px solid #1b73e8;
    color: #1b73e8;
	width: 430px;
    height: 55px;
    border-radius: 61px;
    margin: 25px 0;
    font-size: 22px;
    font-weight: 400;
    transition: 0.3s;
}

.button-sub:hover {
	color:white;
	border: 1px solid white;
}

.above-the-title {
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
}
.reviews-slider {
    margin: 0 auto;
}
.review-slide {
    padding-bottom: 40px;
}
.reviews-slider .slick-prev:before {
    border-left: 4px solid #000000;
    transform: rotate(-45deg);
    left: 0;
}
.reviews-slider .slick-next:before {
    border-right: 4px solid #000000;
    transform: rotate(45deg);
    right: 0;
}
.reviews-slider .slick-arrow:before {
    content: "";
    border-top: 4px solid #000000;
    width: 15px;
    height: 15px;
    display: block;
    
    position: absolute;
}
.reviews-slider .slick-arrow {
    color: transparent;
    top: 25%;
}
@media screen and (max-width: 999px) {
    .reviews-slider {
        max-width: 70vw;
    }
    .above-the-title {
        text-align: left;
    }
}
@media screen and (min-width: 1000px) {
    .reviews-slider {
        max-width: 1000px;
    }
   
}

.title {
    margin: 20px auto;
    text-align: center;

    font-size: 32px;
    font-weight: 600;
    color: black;
}


/* hero start */

.container__hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	/*padding-top: 115px;*/
    background-color: #161616;
}

.hero__left {
    height: 100%;
    width: 50%;
}

.hero__left img {
    width: 100%;
    object-fit: cover;
}

.hero__right {
    max-width: 430px;
    padding-left: 70px;
    margin: auto 0;
}

.hero__title {
    font-size: 38px;
    font-weight: 600;
    color: white;
	margin: 0;
    margin-bottom: 20px;
}

.hero__text {
    font-size: 24px;
    font-weight: 500;
    color: #dadada;
}

.hero__subtext {
	padding-top:25px;
    font-size: 16px;
    font-weight: 400;
    color: #dadada;
}

@media screen and (max-width: 1080px) {
    .hero__right {
        padding-left: 50px;
    }
}

@media screen and (max-width: 999px) {
    .container__hero {
        display: block;
    }

	.hero__left img {
        width: 100vw !important;
    }

    .hero__right {
        padding: 0;
        width: 372px;
    	margin: 45px auto 0px auto;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 640px) {

    .hero__right {
        width: 372px;
    }

    .hero__title {
        font-size: 26px;

    }

    .hero__text {
        font-size: 19px;
    }

	button {
		width:100%;
	}

	.button-sub {
		width:100%;
	}
}


/* abot start */
.container__about {
    margin-top: 90px;
    margin-bottom: 90px;
	margin-left: 30px;
    margin-right: 40px;
}

.about {
	text-align: center;
}

.about__subtitle {
    max-width: 1000px;
	margin: -15px auto 0px auto;
	text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #4f4f4f;
}

.about__text {
    max-width: 1000px;
    margin: 0 auto;
	text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: black;
    padding: 0 20px;
}

@media screen and (max-width: 999px) {

	.about {
		text-align: left;
	}

	.about__subtitle {
		text-align: start;
	}

    .about__text {
        text-align: start;
        padding: 0;
    }

    .title {
        text-align: start;
    }
}

@media screen and (max-width: 640px) {

	.about__subtitle {
		font-size: 16px;
	}

    .about__text {
        font-size: 22px;
    }

    .title {
        font-size: 28px;
    }
}


/* about__pro start */

.container__pro {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
    background-color: black;
}

.pro__left {
    width: 50%;
    max-width: 470px;
    margin: auto;
}

.pro__title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.pro__text {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.pro__price {
    font-size: 16px;
    font-weight: 400;
    color: #949494;
	margin-top: 15px;
}

.pro__right {
    width: 50%;
    object-fit: cover;
}

.pro__right img {
    width: 100%;
    object-fit: cover;
}

.pro__button {
    font-size: 22px;
}

@media screen and (max-width: 999px) {
    .container__pro {
        justify-content: center;
        width: 100%;
    }

    .pro__right {
        width: 100%;
    }

    .pro__right img {
        width: 100vw;
    }

    .pro__left {
        width: 100%;
        margin: 60px 30px;
    }
}

@media screen and (max-width: 640px) {
    .pro__title {
        font-size: 21px;
    }

    .pro__text {
        font-size: 16px;
    }

    .pro__price {
        /* display: none; */
    }
}

/* guarantees start */

.guarantees__section {
	background-color:#ffefdb;
	padding-left: 30px;
    padding-right: 30px;
}

.guarantees__list {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
	margin: auto;
	padding-top: 15px;
    padding-bottom: 15px;
}

.guarantees__element {
    width: 30%;
	display: flex;
}

@media screen and (max-width: 999px) {
    .guarantees__list {
        display: block;
    }

    .guarantees__element {
        width: 580px;
        padding: 10px 0px;
        font-size: 16px;
        font-weight: 400;
        color: black;
    }
}

@media screen and (max-width: 640px) {
    .guarantees__element {
        width: auto;
    }
}


/* benefits start */

.container__ben {
    margin: 90px auto;
	margin-left: 30px;
    margin-right: 40px;
}

.ben__text {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
    margin: 60px auto;
    padding: 0 20px;
}

.ben__element {
    width: 30%;
}

@media screen and (max-width: 999px) {
    .ben__text {
        display: block;
        padding: 0;
    }

    .ben__element {
        width: 580px;
        margin: 50px 0px;
        font-size: 16px;
        font-weight: 400;
        color: black;
    }
}

@media screen and (max-width: 640px) {
    .ben__element {
        width: auto;
    }
}



/* sugaring is start */

.sugaring-is__section {
	background-color:#ffefdb;
	padding-left: 30px;
    padding-right: 30px;
	padding-top: 50px;
}

.sugaring-is__list {
    display: flex;
    max-width: 1000px;
    justify-content: space-between;
	margin: auto;
	padding-top: 15px;
    padding-bottom: 40px;
}

.sugaring-is__element {
    width: 22%;
}

@media screen and (max-width: 999px) {
    .sugaring-is__list {
        display: block;
    }

    .sugaring-is__element {
        width: 580px;
        padding: 10px 0px;
        font-size: 16px;
        font-weight: 400;
        color: black;
    }
}

@media screen and (max-width: 640px) {
    .sugaring-is__element {
        width: auto;
    }
}




/* on the body start */

.on-the-body__section {
	padding-left: 30px;
    padding-right: 30px;
	padding-top: 50px;
	text-align: center;
}

.on-the-body-block {
	display: flex;
    flex-wrap: wrap;
    justify-content: normal;
    gap: 15px;
	max-width: 1000px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 70px;
	text-align:center;
}

.body-block-container{
   	position: relative;
    width: 26%;
	color: black;
    background-color: whitesmoke;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    padding: 10px 5px 10px 5px;
	text-decoration: none;
}

.body-block-container:hover {
    border: 1px solid #a6a6a6;
}

@media screen and (max-width: 400px) {
    .body-block-container{
    	width: 100%;
	}
}

@media screen and (min-width: 600px) {
    .body-block-container{
    	width: 29%;
	}
}

@media screen and (min-width: 999px) {
    .body-block-container{
    	width: 31%;
	}
}

@media screen and (max-width: 999px) {
    .on-the-body__section {
    	text-align: left;
    }
}



/* spare Start */

.container__spare {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: black;
}

.spare__left {
    width: 50%;
    height: 100%;

}

.spare__left img {
    width: 100%;
    object-fit: cover;
}

.spare__right {
    width: 50%;
    max-width: 370px;
    margin: auto 65px;
}

.spare__title {
    color: white;
}

.spare__text {
    max-width: 470px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    
}

@media screen and (max-width: 999px) {
    .spare__left {
        width: 100vw;
    }

    .spare__right {
        margin: 60px auto 120px auto;
    }
}

@media screen and (max-width: 640px) {
    .spare__text {
        font-size: 16px;
        font-weight: 400;
        color: white;
    }

    .spare__title {
        font-size: 24px;
    }
}


/* pravki */
html {
    overflow-x: hidden;
}

@media screen and (max-width: 999px) {
    .spare__right {
        width: 300px;
    }
}

@media screen and (max-width: 429px){
    button {
        width: 300px;
    }

	.button-sub {
        width: 300px;
    }

    .hero__right {
        width: 300px;
        /*margin: 30px auto;*/
    }

    .pro__button {
        font-size: 22px;
    }

    .ben__element {
        width: auto;
    }
}

/* delete

.hero__left {
        width: 100%;
        min-width: 640px;
    }

    .hero__left img {
        width: 100%;
        min-width: 640px;
        object-fit: cover;
    }

    .hero__left {
        min-width: 370px;
    }

    .hero__left img {
        min-width: 370px;
    }


*/