@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Manrope:regular,500,600,700,800&display=swap");

body {
	font-family: Manrope;
	color: #333;
}

[class*="__container"] {
	max-width: 1170px;
	margin: 0 auto;
}

@media (max-width: 1199.98px) {
	[class*="__container"] {
		max-width: 970px;
	}
}

@media (max-width: 991.98px) {
	[class*="__container"] {
		max-width: 750px;
	}
}

@media (max-width: 767.98px) {
	[class*="__container"] {
		max-width: none;
		padding: 0 15px;
	}
}

.simple-rating {
	position: relative;
	font-size: 24px;
	display: inline-block;
}

.simple-rating::before {
	content: "★★★★★";
	display: block;
}

.simple-rating__items {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	overflow: hidden;
}

.simple-rating__item {
	position: absolute;
	width: 0%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 0;
}

.simple-rating__label {
	flex: 0 0 20%;
	height: 100%;
	cursor: pointer;
	color: #FBB040;
}

.simple-rating__label::before {
	content: "★";
	display: block;
	transition: color 0.3s ease 0s;
}

.simple-rating__item:checked,
.simple-rating__item:checked~.simple-rating__label {
	color: #FBB040;
}

.simple-rating__label:hover,
.simple-rating__label:hover~.simple-rating__label,
.simple-rating__label:checked~.simple-rating__label:hover {
	color: #FBB040;
}

.title {
	font-weight: 600;
	font-size: 40px;
	line-height: 137.5%;
	/* 55/40 */
}

.title__center {
	text-align: center;
}

/* Header */

.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}

.header__container {
	min-height: 103px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	column-gap: 10px;
	row-gap: 15px;
	justify-content: space-between;
	align-items: center;

}

@media (max-width:767.98px) {
	.header__container {
		min-height: none;
		flex-direction: column;
	}
}

.header__logo {
	font-weight: 800;
	font-size: 23px;
}

.header__menu {}

.menu {}

.menu__items {
	display: flex;
	flex-wrap: wrap;
	column-gap: 46px;
	row-gap: 10px;
}

.menu__item {}

.menu__link {
	font-weight: 700;
	font-size: 13px;
}

.menu__link:hover {
	text-decoration: underline;
}

@media (max-width:767.98px) {
	.menu__items {
		justify-content: center;
		align-items: center;
	}

	.menu__link {
		font-size: 18px;
	}
}

.page__main {}

.main-block {
	padding-bottom: 110px;
}

.main-block__container {
	padding-top: 183px;
	position: relative;
}

.main-block__container::after {
	content: "";
	background-color: #BDCCFF;
	position: absolute;
	width: 200%;
	height: 100%;
	top: 0;
	left: 68%;
}


.main-block__body {
	margin: 0px 0px 14px 0px;
}

.body-main-block {
	display: flex;
	align-items: flex-start;
	position: relative;
}

.body-main-block__content {
	flex: 0 1 50%;
}


.content-main-block {
	padding-top: 40px;
	position: relative;
	z-index: 3;
}

.content-main-block__body {
	padding: 0px 80px 0px 0px;
}

.content-main-block__sub-title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 22px;
	line-height: 131.818182%;
	/* 29/22 */
	margin: 0px 0px 24px 0px;
}

.content-main-block__title {
	font-weight: 800;
	font-size: 54px;
	line-height: 135.185185%;
	/* 73/54 */
}

.content-main-block__text {
	font-size: 17px;
	line-height: 135.294118%;
	/* 23/17 */
	letter-spacing: 0.01em;
	margin: 0px 0px 45px 0px;
}


.content-main-block__form {}

.form-main-block {
	position: relative;
	z-index: 5;
	display: flex;
	margin: 0px -188px 0px 0px;
	background: #fff url('../img/home.svg') 33px 32px no-repeat;
	box-shadow: 0 8.148148536682129px 6.518518447875977px 0 rgba(0, 0, 0, .01), 0 20px 13px 0 rgba(0, 0, 0, .01), 0 38.51852035522461px 25.481481552124023px 0 rgba(0, 0, 0, .02), 0 64.81481170654297px 46.85185241699219px 0 rgba(0, 0, 0, .02), 0 100px 80px 0 rgba(0, 0, 0, .03);
}

.form-main-block__input {
	height: 86px;
	border: 1px solid #dadada;
	padding: 0px 0px 0px 74px;
	background-color: transparent;
	width: 100%;
	flex: 1 1 auto;
}

.form-main-block__input::placeholder {
	color: #DADADA;
	font-size: 20px;
}

.form-main-block__button {
	height: 86px;
	cursor: pointer;
	width: 188px;
	flex: 0 0 188px;
	background-color: #F85A47;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 135.294118%;
	/* 23/17 */
	padding: 5px 15px;
}

.body-main-block__slider {
	flex: 0 1 50%;
}


.slider-main-block {}

.slider-main-block__wrapper {}

.slider-main-block__slide {
	position: relative;
	padding: 0px 0px 95% 0px;
}

.body-main-block__arrows {
	position: absolute;
	bottom: -52px;
	right: 0;
	display: flex;
	gap: 40px;
	align-items: center;
}

.body-main-block__arrow.swiper-button-next,
.body-main-block__arrow.swiper-button-prev {
	position: static;
	height: 20px;
	width: 11px;
	background: url('../img/icons/arrow.svg') 0 0 / 100% no-repeat;
}

.body-main-block__arrow::after {
	display: none;
}

.body-main-block__arrow.swiper-button-prev {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.swiper-button-prev {}

.swiper-button-next {}

.slider-main-block__slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.main-block__partners {}

.partners-main-block {
	max-width: 65%;
}

.partners-main-block__label {
	font-size: 17px;
	margin: 0px 0px 25px 0px;
}

.partners-main-block__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 25px;
}

.partners-main-block__item {}

.partners-main-block__item img {
	max-width: 100%;
}

.how {
	padding-top: 110px;
	padding-bottom: 110px;
}

.how__container {}

.how__title {
	margin-bottom: 70px;
}

.how__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(auto, 260px));
	gap: 30px;
	justify-content: space-between;
}

@media (min-width:991px) {
	.how__items {
		padding: 0 35px;
	}
}

.how__item {
	/* max-width: 260px; */
}

.item-how {
	text-align: center;
	display: grid;
	justify-items: center;
	position: relative;
}

.item-how__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	border-radius: 20px;
	margin-bottom: 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.item-how:not(:last-child):after {
	content: "";
	position: absolute;
	width: 210px;
	transform: translate(86.5%, 0px);
	height: 11px;
	top: 41px;
	right: 0;
	background: url('../img/how/border_1.svg') 0 0 / 100% no-repeat;
	-webkit-transform: translate(86.5%, 0px);
	-moz-transform: translate(86.5%, 0px);
	-ms-transform: translate(86.5%, 0px);
	-o-transform: translate(86.5%, 0px);
}

.item-how-2:not(:last-child):after {
	transform: translate(86.5%, 0px) rotate(-180deg);
	-webkit-transform: translate(86.5%, 0px) rotate(-180deg);
	-moz-transform: translate(86.5%, 0px) rotate(-180deg);
	-ms-transform: translate(86.5%, 0px) rotate(-180deg);
	-o-transform: translate(86.5%, 0px) rotate(-180deg);
}

.item-how-1 .item-how__icon {
	background-color: #9672FF;
	box-shadow: 0 1.8518518209457397px 3.1481480598449707px 0 rgba(150, 114, 255, .02), 0 8.148148536682129px 6.518518447875977px 0 rgba(150, 114, 255, .03), 0 20px 13px 0 rgba(150, 114, 255, .04), 0 38.51852035522461px 25.481481552124023px 0 rgba(150, 114, 255, .04), 0 64.81481170654297px 46.85185241699219px 0 rgba(150, 114, 255, .05), 0 100px 80px 0 rgba(150, 114, 255, .07);
}


.item-how-2 .item-how__icon {
	background-color: #4DDFFD;
	box-shadow: 0 1.8518518209457397px 3.1481480598449707px 0 rgba(77, 223, 253, .02), 0 8.148148536682129px 6.518518447875977px 0 rgba(77, 223, 253, .03), 0 20px 13px 0 rgba(77, 223, 253, .04), 0 38.51852035522461px 25.481481552124023px 0 rgba(77, 223, 253, .04), 0 64.81481170654297px 46.85185241699219px 0 rgba(77, 223, 253, .05), 0 100px 80px 0 rgba(77, 223, 253, .07);
}

.item-how-3 .item-how__icon {
	background-color: #F2B8EC;
	box-shadow: 0 1.8518518209457397px 3.1481480598449707px 0 rgba(242, 184, 236, .02), 0 8.148148536682129px 6.518518447875977px 0 rgba(242, 184, 236, .03), 0 20px 13px 0 rgba(242, 184, 236, .04), 0 38.51852035522461px 25.481481552124023px 0 rgba(242, 184, 236, .04), 0 64.81481170654297px 46.85185241699219px 0 rgba(242, 184, 236, .05), 0 100px 80px 0 rgba(242, 184, 236, .07);
}

.item-how__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 136.363636%;
	/* 30/22 */
	margin-bottom: 15px;
}

.item-how__text {}

.item-how__text p {
	font-size: 16px;
	line-height: 150%;
	/* 24/16 */
}



.deals {
	padding-top: 110px;
	padding-bottom: 110px;
}

.deals__container {}


.deals__header {
	margin-bottom: 50px;
}

.header-deals {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.header-deals__content {
	flex: 1 1 auto;
}

.header-deals__title {}

.header-deals__title:not(:last-child) {
	margin-bottom: 15px;
}

.header-deals__text {
	max-width: 470px;
	line-height: 24px;
}

.header-deals__link {
	background-color: #F85A47;
	display: inline-block;
	font-weight: 500;
	font-size: 17px;
	text-align: center;
	color: #fff;
	line-height: 135.294118%;
	/*23/17*/
	padding: 22px 34px;
	box-shadow: 0 1.8518518209457397px 3.1481480598449707px 0 rgba(248, 90, 71, .02), 0 8.148148536682129px 6.518518447875977px 0 rgba(248, 90, 71, .03), 0 20px 13px 0 rgba(248, 90, 71, .04), 0 38.51852035522461px 25.481481552124023px 0 rgba(248, 90, 71, .04), 0 64.81481170654297px 46.85185241699219px 0 rgba(248, 90, 71, .05), 0 100px 80px 0 rgba(248, 90, 71, .07);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
}

.header-deals__link:hover {
	background-color: #c23627;
}

.deals__tabs {}

.tabs-deals {}

.tabs-deals__nav {
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	row-gap: 10px;
	margin-bottom: 45px;
}

.tabs-deals__button {
	font-size: 19px;
	line-height: 136.842105%;
	/* 26/19 */
	transition: all 0.3s ease 0s;
	position: relative;
}

.tabs-deals__button::after {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	bottom: 0;
	left: 50%;
	transition: all 0.5s ease 0s;
	background-color: #f85a47;
	transform: translate(-50%, 0);
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
}

.tabs-deals__button:hover {
	color: #f85a47;
}

.tabs-deals__button.active {
	color: #f85a47;
}

.tabs-deals__button.active::after {
	width: 100%;
}

.tabs-deals__button:hover::after {
	width: 100%;
}

.tabs-deals__body {}

.tabs-deals__item {
	display: none;
}

.tabs-deals__item.active {
	display: block;
}

.item-tabs {}

.item-tabs__items {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 370px));
	justify-content: center;
}

.item-tabs__item {
	position: relative;
}

.item-tabs__image {
	position: relative;
	padding-bottom: 81%;
	border-radius: 5px;
	overflow: hidden;
}

.item-tabs__image:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.item-tabs__image img {
	position: absolute;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.item-tabs__options {
	position: absolute;
	z-index: 5;
	top: 14px;
	left: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.item-tabs__option {
	border: 1px solid #fff;
	border-radius: 5px 5px 5px 5px;
	background-color: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 12px;
	padding: 6px 12px;
	transition: all 0.3s ease 0s;
}

.item-tabs__option:hover {
	background-color: rgba(0, 0, 0, 0.6);
}





.page__featured {}

.featured {
	padding-top: 110px;
	padding-bottom: 110px;
}

.featured__container {}

.featured__title {
	margin-bottom: 95px;
}

.featured__body {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background-color: #F1FFFF;
	padding: 40px 40px 80px 40px;
	gap: 77px;
}

.featured__images {}

.images--featured {
	display: grid;
	justify-items: center;
}

.images--featured__item {
	box-shadow: 48px 58px 44px 0 rgba(0, 0, 0, .09), 0 13.281481742858887px 6.518518447875977px 0 rgba(0, 0, 0, .02), 0 32.599998474121094px 13px 0 rgba(0, 0, 0, .02), 0 62.785186767578125px 25.481481552124023px 0 rgba(0, 0, 0, .02), 0 105.64814758300781px 46.85185241699219px 0 rgba(0, 0, 0, .03), 0 163px 80px 0 rgba(0, 0, 0, .04);
}

.images--featured__item img {
	max-width: 100%;
}

.images--featured__item-mini {
	margin-top: -114px;
	margin-left: 20px;
	margin-right: 20px;
	box-shadow: 48px 58px 44px 0 rgba(0, 0, 0, .09), 0 13.281481742858887px 6.518518447875977px 0 rgba(0, 0, 0, .02), 0 32.599998474121094px 13px 0 rgba(0, 0, 0, .02), 0 62.785186767578125px 25.481481552124023px 0 rgba(0, 0, 0, .02), 0 105.64814758300781px 46.85185241699219px 0 rgba(0, 0, 0, .03), 0 163px 80px 0 rgba(0, 0, 0, .04);
}

.featured__content {}

.content-featured {}

.content-featured__body {}

@media (min-width:1200px) {
	.content-featured__body {
		max-width: 412px;
		padding-top: 40px;
	}
}

.content-featured__title {
	font-size: 31px;
	font-weight: 600;
	line-height: 135.483871%;
	/* 42/31 */
	margin-bottom: 28px;
}


.content-featured__text {
	max-width: 344px;
	margin-bottom: 42px;
}

.content-featured__text p {
	color: #545a58;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	/* 24/16 */
}

.content-featured__options {
	display: grid;
	gap: 35px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 55px;
}

.options-content-featured {}



.options-content-featured__item {}

.options-content-featured__label {
	font-weight: 700;
	font-size: 17px;
	line-height: 135.294118%;
	/* 23/17 */
	row-gap: 37pxs;
	margin-bottom: 12px;
}

.options-content-featured__value {}

.options-content-featured__link {
	width: 100%;
	display: block;
	text-align: center;
	padding: 16px 35px;
	background-color: #F85A47;
	box-shadow: 0 1.8518518209457397px 3.1481480598449707px 0 rgba(248, 90, 71, .02), 0 8.148148536682129px 6.518518447875977px 0 rgba(248, 90, 71, .03), 0 20px 13px 0 rgba(248, 90, 71, .04), 0 38.51852035522461px 25.481481552124023px 0 rgba(248, 90, 71, .04), 0 64.81481170654297px 46.85185241699219px 0 rgba(248, 90, 71, .05), 0 100px 80px 0 rgba(248, 90, 71, .07);
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	transition: background-color 0.5s ease 0s;
	line-height: 150%;
}

.options-content-featured__link:hover {
	background-color: #ff432e;
}




.reviews {
	padding-top: 110px;
	padding-bottom: 110px;
}

.reviews__container {}

.reviews__title {
	margin-bottom: 50px;
	max-width: 570px;
}

.reviews__items {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(280px, 380px));
}

.reviews__item {}


.item-reviews {
	background: #fff;
	border: 1px solid #EBEBEB;
	border-radius: 10px;
	transition: all 0.5s ease 0s;
	padding: 52px 72px 52px 36px;
}

.item-reviews:hover {
	box-shadow: 3px 44px 54px 0 rgba(0, 0, 0, .08), 0 8.148148536682129px 6.518518447875977px 0 rgba(0, 0, 0, .01), 0 20px 13px 0 rgba(0, 0, 0, .01), 0 38.51852035522461px 25.481481552124023px 0 rgba(0, 0, 0, .02), 0 64.81481170654297px 46.85185241699219px 0 rgba(0, 0, 0, .02), 0 100px 80px 0 rgba(0, 0, 0, .03);
}

.item-reviews__raiting {}


.simple-rating {
	margin-bottom: 33px;
}

.simple-rating__items {}

.simple-rating__item {}

.simple-rating__label {}

.item-reviews__text {
	margin-bottom: 53px;
}

.item-reviews__text p {
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 175%;
	/* 28/16 */
}

.item-reviews__author {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}


.author-item-reviews {}

.author-item-reviews__avatar {}

.author-item-reviews__body {}

.author-item-reviews__name {
	color: #333;
	font-size: 16px;
	font-weight: 700;
}

.author-item-reviews__location {
	color: #666;
	font-size: 14px;
	font-weight: 400;
}




.reviews__footer {
	padding-top: 85px;
}

.footer-reviews {
	display: flex;
	column-gap: 100px;
}

.footer-reviews__partners {
	flex: 1 1 auto;
}

.partners-footer-reviews {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.partners-footer-reviews__item {}

.footer-reviews__info {
	flex: 0 0 300px;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	/* 24/16 */
}

.footer-reviews__info a {
	color: #2cbde7;
	text-decoration: underline;
}




.subscribe {
	padding-top: 110px;
	padding-bottom: 110px;
}

.subscribe__container {}

.subscribe__header {
	text-align: center;
	margin-bottom: 34px;
}

.subscribe__title {
	font-weight: 700;
	font-size: 45px;
	line-height: 144.2%;
	letter-spacing: 0.02em;
	margin-bottom: 11px;
}

.subscribe__sub-title {
	color: #31353b;
	font-size: 23px;
	font-weight: 700;
	line-height: 143.478261%;
	/* 33/23 */
}

.subscribe__form {
	max-width: 686px;
	margin: 0 auto;
}


.form-subscribe {
	background-color: #fff;
	display: flex;
	gap: 15px;
	padding: 26px 30px 26px 45px;
	box-shadow: 0 13.281481742858887px 6.518518447875977px 0 rgba(0, 0, 0, .02), 0 32.599998474121094px 13px 0 rgba(0, 0, 0, .02), 0 62.785186767578125px 25.481481552124023px 0 rgba(0, 0, 0, .02), 0 105.64814758300781px 46.85185241699219px 0 rgba(0, 0, 0, .03), 0 163px 80px 0 rgba(0, 0, 0, .04);
}

.form-subscribe__content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.form-subscribe__label {
	display: block;
	margin-bottom: 10px;
	color: rgba(49, 53, 59, 0.2);
	font-size: 17px;
	font-weight: 500;
	line-height: 147.058824%;
	/* 25/17 */
}

.form-subscribe__input {
	font-weight: 700;
	width: 100%;
	flex: 1 1 auto;
	font-size: 20px;
	color: #31353b;
	line-height: 145%;
	/* 29/20 */
}

.form-subscribe__button {
	background-color: #F85A47;
	height: 72px;
	padding: 23px 40px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 144.444444%;
	/* 26/18 */
	transition: all 0.5s ease 0s;
}

.form-subscribe__button:hover {
	background-color: #ff442f;
}




.footer {}

.footer__container {
	border-top: 1px solid #DEDFE1;
	padding-top: 60px;
	padding-top: 60px;
	padding-bottom: 60px;
	display: grid;
	grid-template-columns: auto 1fr;
	row-gap: 78px;
	column-gap: 20px;
}

.footer__logo {
	font-weight: 800;
	font-size: 23px;
	line-height: 134.782609%;
	/* 31/23 */
}

.footer__menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.footer__copy {
	text-align: center;
	font-size: 12px;
	margin-bottom: 36px;
	line-height: 133.333333%;
	/* 16/12 */
}

@media (min-width:768px) {
	.footer__copy {
		grid-column: span 2;

	}
}

.menu-footer {}

.menu-footer__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 45px;
	justify-content: center;
	row-gap: 15px;
}

.menu-footer__item {}

.menu-footer__link {
	font-weight: 700;
	font-size: 13px;
	line-height: 130.769231%;
	/* 17/13 */
}




@media (max-width: 1199.98px) {

	.body-main-block {
		display: block;
	}

	.form-main-block {
		margin-right: 0;
	}

	.content-main-block {
		margin-bottom: 40px;
	}

	.content-main-block__body {
		padding-right: 0;
	}

	.body-main-block__arrows {
		bottom: -40px;
	}

	.main-block__container {
		padding-top: 100px;
		padding-bottom: 30px;
	}

	.partners-main-block {
		max-width: none;
		position: relative;
		z-index: 2;
	}

	.item-how:not(:last-child):after {
		width: 170px;
		transform: translate(69.5%, 0px);
		-webkit-transform: translate(69.5%, 0px);
		-moz-transform: translate(69.5%, 0px);
		-ms-transform: translate(69.5%, 0px);
		-o-transform: translate(69.5%, 0px);
	}

	.item-how-2:not(:last-child):after {
		transform: translate(69.5%, 0px) rotate(-180deg);
		-webkit-transform: translate(69.5%, 0px) rotate(-180deg);
		-moz-transform: translate(69.5%, 0px) rotate(-180deg);
		-ms-transform: translate(69.5%, 0px) rotate(-180deg);
		-o-transform: translate(69.5%, 0px) rotate(-180deg);
	}

	.deals {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.featured {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.reviews {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.subscribe {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.featured__body {
		display: flex;
		flex-direction: column-reverse;
	}
}

@media (max-width: 991.98px) {
	.item-how:not(:last-child):after {
		width: 130px;
		transform: translate(59.5%, 0px);
		-webkit-transform: translate(59.5%, 0px);
		-moz-transform: translate(59.5%, 0px);
		-ms-transform: translate(59.5%, 0px);
		-o-transform: translate(59.5%, 0px);
	}

	.item-how-2:not(:last-child):after {
		transform: translate(59.5%, 0px) rotate(-180deg);
		-webkit-transform: translate(59.5%, 0px) rotate(-180deg);
		-moz-transform: translate(59.5%, 0px) rotate(-180deg);
		-ms-transform: translate(59.5%, 0px) rotate(-180deg);
		-o-transform: translate(59.5%, 0px) rotate(-180deg);
	}

	.how {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.main-block {
		padding-bottom: 70px;
	}

	.deals {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.featured {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.reviews {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.featured__title {
		margin-bottom: 50px;
	}

	.reviews__items {
		grid-template-columns: repeat(2, minmax(280px, 380px));
	}

	.footer-reviews {
		flex-wrap: wrap;
		row-gap: 30px;
	}

	.subscribe {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.subscribe__title {
		font-size: 20px;
	}

	.subscribe__sub-title {
		font-size: 16px;
	}
}

@media (max-width:767.98px) {
	.featured__title {
		margin-bottom: 30px;
	}

	.content-featured__title {
		font-size: 20px;
	}

	.featured__body {
		margin: 0 -15px;
		padding: 20px 15px 20px 15px;
	}

	.partners-main-block__items {
		justify-content: center;
	}

	.content-main-block__title {
		font-size: 30px;
		line-height: 120%;
	}

	.form-main-block {
		display: block;
	}

	.form-main-block__button {
		width: 100%;
	}

	.header-deals__link {
		width: 100%;
	}

	.item-how:not(:last-child):after {
		display: none;
	}

	.how__items {
		grid-template-columns: 1fr;
	}

	.how {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.main-block {
		padding-bottom: 30px;
	}

	.how__title {
		margin-bottom: 30px;
	}

	.item-how__icon {
		margin-bottom: 30px;
	}

	.title {
		font-size: 30px;
		line-height: 183.333333%;
		/* 55/30 */
	}

	.deals {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.featured {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.content-featured__title {
		font-size: 24px;
	}

	.reviews__items {
		grid-template-columns: repeat(1, 1fr);
	}

	.reviews {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.subscribe {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.form-subscribe {
		flex-direction: column;
	}

	.footer__container {

		padding-top: 30px;
		padding-top: 30px;
		grid-template-columns: 1fr;
		justify-items: center;
		row-gap: 30px;
	}
}

@media (max-width:479.98px) {
	.form-main-block {
		background: #fff;
	}

	.images--featured__item-mini {
		margin-top: -50px;
	}

	.form-main-block__input {
		padding: 0px 0px 0px 10px;
	}

	.deals {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.featured {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.reviews {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.content-featured__options {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 35px;
	}
}