/*--------------------------------------------------------------
# Seriveces
--------------------------------------------------------------*/

.services {
	background: #FCFCFC;
}
.services__main-block {
	display: flex;
	flex-direction: column;
	gap: 50px 0;
}

.services__groups {
	display: flex;
	flex-direction: column;
	gap: 50px 0;
}

.services .groups .group__list {
	display: grid;
	grid-gap: 15px;
}
.services .groups .list__item {
	display: flex;
	flex-direction: column;
	gap: 16px 0;
	padding: 16px 12px;
	background: #FFFFFF;
	box-shadow: 0px 4px 5px rgba(152, 152, 152, 0.2);
	border-radius: 0px;
}

.services .list .item__thumb {
	overflow: hidden;
	width: 100%;
}

.services .list .item .thumb__img {
	display: block;
	width: 100%;
	object-fit: cover;
	height: 230px;
}

.services .list .item.has-descr .thumb__img {
	height: 120px;
}

.services .list .item__name {
	display: block;
	text-align: center;
	font-family: 'Orelega One';
	font-size: 21px;
	line-height: 1.1;
	text-transform: capitalize;
	color: #1B1B1B;
}

.services .list-columns-5 .item__name,
.services .list-columns-6 .item:not([style*="7"]) .name {
	text-align: left;
}


.services .groups .list .item__benefits {
	flex-wrap: wrap;
	gap: 12px 32px;
}

.services .groups .list .item__benefits li {
	min-width: 150px;
	flex: 150px;
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	text-transform: capitalize;
	color: #4A4A4A;
}

@media (max-width: 1200px) {

	.services__groups {
		gap: 30px;
	}

	.services .groups .group-columns-4 .list,
	.services .groups .group-columns-5 .list, 
	.services .groups .group-columns-6:not(:last-child) .list {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
	}

	.services .groups .group-columns-4 .list__item,
	.services .groups .group-columns-5 .list__item,
	.services .groups .group-columns-6:not(:last-child) .list__item {
		flex: 1 1 360px;
		min-width: 360px;
	}

	.services .list .item.has-descr .thumb__img {
		height: 180px;
	}
}

@media (max-width: 1024px) {
	.services .groups .group .list-columns-6 {
		grid-template-columns: repeat(4, 1fr)!important;
	}
}

@media (max-width: 767px) {

	.services__groups {
		gap: 16px;
	}

	.services .groups .group .list-columns-2,
	.services .groups .group .list-columns-3 {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
	}

	
	.services .groups .list-columns-2 .item,
	.services .groups .list-columns-3 .item {
		flex: 1 1 360px;
		min-width: 360px;
	}
	.services .groups .group-columns-6:not(:last-child) .list__item,
	.services .groups .list-columns-6 .item {
		flex: auto;
		min-width: auto;
	}


	.services .groups .group .list-columns-6 {
		display: grid!important;
		grid-template-columns: repeat(2, 1fr)!important;
		grid-gap: 16px;
	}

	.services .groups .group .list-columns-6 .item[style*="3/7"] {
		grid-column: 1/3!important;
	}

	.services .list .item__name {
		font-size: 20px;
	}
}

@media (max-width: 520px) {
	.services .groups .list .item__benefits {
		gap: 12px;
	}

	.services .groups .list .item__benefits li {
		min-width: 135px;
		flex: 1 1 calc(50% - 12px);
	}
	.services .groups .group .list-columns-6 .item[style*="3/7"] .benefits {
		flex-direction: column;
	}
	.services .groups .group .list-columns-6 .item[style*="3/7"] .benefits li {
		min-width: auto;
		flex: auto;
	}

	.services .groups .list-columns-2 .item,
	.services .groups .list-columns-3 .item {
		flex: auto;
		min-width: auto;
	}

	.services .list .item__name {
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
	background: #F2F2F2;
}

.hero__main-block {
	padding-bottom: 20px;
	display: grid;
	grid-gap: 0 70px;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
}

.hero__left-column {
	display: flex;
	flex-direction: column;
	position: relative;
}

.left-column__img {
	position: absolute;
	height: auto;
	width: 100%;
	object-fit: contain;
	padding: 0 50px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.hero__top-group {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	position: relative;
	z-index: 1;
}

.hero .top-group__title {
	padding-left: 18px;
	padding-top: 18px;
	position: relative;
	z-index: 1;
}

.hero .top-group__title:before {
	content: '';
	position: absolute;
	width: 60px;
	height: 60px;
	background: rgba(243, 57, 50, 0.8);
	left: 0;
	top: 0;
	z-index: -1;
}

.hero .top-group__short-descr {
	font-family: 'Belanosima';
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: #F33932;
	display: block;
}

.hero__descr,
.hero__descr p {
	margin: 0;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: #4A4A4A;
	max-width: 500px;
}

.hero__bottom-group {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
}

.hero .bottom-group__quote {
	display: flex;
	align-items: center;
	gap: 0 8px;
	justify-content: flex-start;
	line-height: 1.6;
	font-weight: 500;
	color: #4A4A4A;
	padding: 0;
	margin: 0;
}

.hero .bottom-group__quote:before {
	content: '';
	width: 24px;
	height: 24px;
	background-size: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.8001 6.85004C10.2143 6.85004 10.5501 6.51425 10.5501 6.10004C10.5501 5.68582 10.2143 5.35004 9.8001 5.35004V6.85004ZM4.45167 14.8404C4.57059 15.2372 4.98864 15.4625 5.38542 15.3435C5.78219 15.2246 6.00744 14.8066 5.88852 14.4098L4.45167 14.8404ZM18.5001 6.85015C18.9143 6.85015 19.2501 6.51437 19.2501 6.10015C19.2501 5.68594 18.9143 5.35015 18.5001 5.35015V6.85015ZM13.1517 14.8406C13.2706 15.2373 13.6886 15.4626 14.0854 15.3437C14.4822 15.2247 14.7074 14.8067 14.5885 14.4099L13.1517 14.8406ZM9.8001 6.10004V5.35004C8.14561 5.35004 6.70386 6.23026 5.7001 7.54976C4.69706 8.8683 4.1001 10.6564 4.1001 12.6H4.8501H5.6001C5.6001 10.9538 6.10735 9.49192 6.89393 8.45793C7.67977 7.42489 8.71302 6.85004 9.8001 6.85004V6.10004ZM4.8501 12.6H4.1001C4.1001 13.3979 4.24555 14.1527 4.45167 14.8404L5.1701 14.6251L5.88852 14.4098C5.71264 13.8229 5.6001 13.2164 5.6001 12.6H4.8501ZM18.5001 6.10015V5.35015C16.8456 5.35015 15.4039 6.23038 14.4001 7.54988C13.3971 8.86842 12.8001 10.6566 12.8001 12.6002H13.5501H14.3001C14.3001 10.9539 14.8073 9.49204 15.5939 8.45804C16.3798 7.42501 17.413 6.85015 18.5001 6.85015V6.10015ZM13.5501 12.6002H12.8001C12.8001 13.398 12.9455 14.1528 13.1517 14.8406L13.8701 14.6252L14.5885 14.4099C14.4126 13.8231 14.3001 13.2165 14.3001 12.6002H13.5501Z' fill='%234A4A4A'/%3E%3Cpath d='M19.5 13.8801C19.5 12.0852 18.032 10.6301 16.25 10.6301C14.468 10.6301 13 12.0852 13 13.8801C13 15.6751 14.468 17.1301 16.25 17.1301C18.032 17.1301 19.5 15.6751 19.5 13.8801Z' fill='%234A4A4A'/%3E%3Cpath d='M10.7998 13.88C10.7998 12.0851 9.33182 10.63 7.5498 10.63C5.76779 10.63 4.2998 12.0851 4.2998 13.88C4.2998 15.675 5.76779 17.13 7.5498 17.13C9.33182 17.13 10.7998 15.675 10.7998 13.88Z' fill='%234A4A4A'/%3E%3C/svg%3E%0A");
}

.hero .bottom-group__btn:after {
	content: '';
	width: 20px;
	height: 20px;
	background-size: 20ox;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.83341 3.33332C4.4527 3.33332 3.33341 4.45261 3.33341 5.83332V14.1667C3.33341 15.5474 4.4527 16.6667 5.83341 16.6667H14.1667C15.5475 16.6667 16.6667 15.5474 16.6667 14.1667V10.8333C16.6667 10.3731 17.0398 9.99999 17.5001 9.99999C17.9603 9.99999 18.3334 10.3731 18.3334 10.8333V14.1667C18.3334 16.4678 16.4679 18.3333 14.1667 18.3333H5.83341C3.53223 18.3333 1.66675 16.4678 1.66675 14.1667V5.83332C1.66675 3.53214 3.53223 1.66666 5.83341 1.66666H9.16675C9.62699 1.66666 10.0001 2.03975 10.0001 2.49999C10.0001 2.96023 9.62699 3.33332 9.16675 3.33332H5.83341Z' fill='%23F33932'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.0893 1.91073C18.4148 2.23617 18.4148 2.76381 18.0893 3.08925L10.5893 10.5892C10.2639 10.9147 9.73626 10.9147 9.41083 10.5892C9.08539 10.2638 9.08539 9.73617 9.41083 9.41073L16.9108 1.91073C17.2363 1.5853 17.7639 1.5853 18.0893 1.91073Z' fill='%23F33932'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6667 2.49999C11.6667 2.03975 12.0398 1.66666 12.5001 1.66666H17.5001C17.9603 1.66666 18.3334 2.03975 18.3334 2.49999V7.49999C18.3334 7.96023 17.9603 8.33332 17.5001 8.33332C17.0398 8.33332 16.6667 7.96023 16.6667 7.49999V3.33332H12.5001C12.0398 3.33332 11.6667 2.96023 11.6667 2.49999Z' fill='%23F33932'/%3E%3C/svg%3E%0A");
}

.hero .right-column__img {
	display: block;
	width: 100%;
	object-fit: cover;
}

@media (max-width:1200px) {
	.hero__main-block {
		grid-template-columns: 440px 1fr;
		grid-gap: 0 50px;
	}

	.hero__bottom-group {
		margin-top: 30px;
	}
}


@media (max-width: 1024px) {
	.hero__main-block {
		display: block;
	}

	.hero__bottom-group {
		flex-direction: column;
		gap: 40px 0;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.hero .bottom-group__btn {
		max-width: 330px;
		width: 100%;
		justify-content: space-between;
	}

	.hero__right-column {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.hero .right-column__img {
		max-height: 220px;
	}
}


/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
	background: #FFFFFF;
}
.map__title-group {
	display: flex;
	flex-direction: column;
	gap: 24px 0;
	max-width: 500px;
}

.map .title-group__section-title {
	font-family: 'Orelega One';
	font-weight: 400;
	font-size: 40px;
	line-height: 1.2;
	text-transform: capitalize;
	color: #000000;
}

.map .title-group__sub-title {
	font-family: 'Belanosima';
	font-size: 18px;
	line-height: 1.6;
	display: block;
	color: #F33932;
}

.map__main-block {
	display: grid;
	grid-template-columns: max-content 1fr;
	grid-gap: 0 80px;
}

.map__map-group {
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
	display: grid;
	grid-template-columns: 300px 1fr;
}

.map .map-group__info-column {
	display: flex;
	flex-direction: column;
	gap: 36px 0;
	height: 100%;
	padding: 30px 20px;
}

.map .info-column__contact-group {
	width: 100%;
}

.map .contact-group__name {
	margin-bottom: 20px;
	display: block;
	line-height: 1.6;
	color: #4A4A4A;
	font-family: 'Poppins';
	font-weight: 400;
	font-size: 16px;
}

.map .contact-group__hours {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Poppins';
	font-weight: 400;
	color: #4A4A4A;
	margin-bottom: 20px;
}

.map .contact-group__loc,
.map .contact-group__phone {
	font-weight: 600;
	line-height: 1.6;
	color: #4A4A4A;
	display: block;
}

.map .map-group__map-column iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 330px;
}

@media (max-width: 1200px) {
	.map__main-block {
		grid-template-columns: 390px 1fr;
		grid-gap: 0 35px;
	}

	.map .title-group__section-title {
		font-size: 32px;
	}

	.map__title-group {
		gap: 16px 0;
	}

	.map .title-group__sub-title {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.map__main-block {
		display: block;
		max-width: 767px;
		margin-left: auto;
		margin-right: auto;
	}

	.map__map-group {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.map__map-group {
		display: block;
	}

	.map .contact-group__name {
		margin-bottom: 12px;
	}

	.map .map-group__info-column {
		gap: 12px 0;
		padding: 16px 20px;
	}
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
	background: #FFFFFF;
}

.steps__main-block {
	display: flex;
	flex-direction: column;
	gap: 36px 0;
	overflow: hidden;
}

.steps__list {
	display: flex;
	gap: 30px 42px;
	flex-wrap: wrap;
}

.steps .list__item {
	flex: 1 1 calc(20% - 42px);
	min-width: 200px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px 0;

}

.steps .list__item__img {
	width: 100%;
	max-width: 140px;
	height: 140px;
	object-fit: contain;
	object-position: top;
}

.steps .list__item:not(:last-child):after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -33px;
	width: 24px;
	height: 24px;
	background-size: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 12H20.5M20.5 12L17.5 9M20.5 12L17.5 15' stroke='%23F33932' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.steps .item__text-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px 0;
}

.steps .item__name {
	font-weight: 600;
	line-height: 24px;
	text-transform: capitalize;
	color: #1B1B1B;
	font-family: 'Poppins';
	font-size: 16px;
}

.steps .item__descr {
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	text-transform: capitalize;
	color: #6A6A6A;
}
@media (max-width: 520px) {
	.steps__list {
		flex-wrap: unset;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none;  /* IE and Edge */
	}

	.steps__list::-webkit-scrollbar {
		display: none; /* Chrome, Safari */
	}

	.steps .list__item {
		flex: 1 1 calc(65vw - 30px);
		min-width: calc(65vw - 30px);
	}
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
.reviews {
	background: #FCFCFC;
}

.reviews__main-block {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 36px 0;
}

.reviews .swiper {
	padding: 7px 12px;
}

.reviews .swiper-slide {
	display: flex;
	gap: 16px 0;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews .swiper-slide__avatar {
	border-radius: 50%;
	width: 90px;
	height: 90px;
	object-fit: cover;
	object-position: center;
}

.reviews .swiper-slide__name {
	display: block;
	text-align: center;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	text-transform: capitalize;
	color: #000000;
}

.reviews .swiper-slide__descr {
	font-family: 'Poppins';
	font-size: 14px;
	line-height: 21px;
	color: #6A6A6A;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.questions {
	background: #FFFFFF;
}
.questions__main-block {
	display: flex;
	flex-direction: column;
	gap: 36px 0;
}
.questions__columns {
	display: grid;
	grid-gap: 0 30px;
	grid-template-columns: repeat(2, 1fr);
}
.questions__thumb {
	max-width: 430px;
}

.questions .thumb__img {
	height: auto;
	width: 100%;
}

.questions__list-group {
	max-width: 580px;
	width: 100%;
} 

.questions .list-group__list {
	flex-direction: column;
	gap: 20px 0;
}

.questions .list__item {
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	padding: 12px;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 0px;
}

.questions .item__question {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #F33932;
	cursor: pointer;
}

.questions .item__question:after {
	content: '';
	width: 24px;
	height: 24px;
	background-size: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 6.5V11H17.5V13H13V17.5H11V13H6.5V11H11V6.5H13Z' fill='%23F33932'/%3E%3C/svg%3E%0A");
}


.questions .item.open .question:after {
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.0026 18L12.5035 13.4968L8.0045 18L7 16.9961L11.5061 12.5L7 8.00386L8.0045 7L12.5035 11.5032L17.0026 7.00707L18 8.00386L13.501 12.5L18 16.9961L17.0026 18Z' fill='%23F33932'/%3E%3C/svg%3E%0A");
} 

.questions .item__answer {
	font-size: 14px;
	line-height: 21px;
	color: #6A6A6A;
}


@media (max-width: 767px) {
	.questions__columns {
		display: block;
	}

	.questions__list-group {
		max-width:100%;
		margin-top: 50px;
	}

	.questions__thumb {
		max-width: 320px;
		margin-right: auto;
		margin-left: auto;
	}
}


/*--------------------------------------------------------------
# Choose
--------------------------------------------------------------*/

.choose {
	background: #FCFCFC;
}

.chose__section-title {
	margin-bottom: 36px;
}

.choose__list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.choose .list__item {
	flex: 1 1 calc(25% - 30px);
	min-width: 260px;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	padding: 16px;
	background: #FFFFFF;
	box-shadow: 0px 4px 5px rgba(152, 152, 152, 0.2);
}

.choose .item__img {
	display: block;
	height: 240px;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.choose .item__text-group {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}

.choose .item__name {
	text-transform: capitalize;
	color: #000000;
}

.choose .item__descr {
	font-family: 'Poppins';
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-transform: capitalize;
	color: #6A6A6A;
}

/*--------------------------------------------------------------
# Included
--------------------------------------------------------------*/
.included {
	background: #FFFFFF;
}

.included__main-block {
	display: grid;
	grid-gap: 0 60px;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
}

.included__left-column {
	display: flex;
	flex-direction: column;
	gap: 16px 0;
	justify-content: center;

}

.included .left-column__descr {
	line-height: 24px;
	text-transform: capitalize;
	color: #4A4A4A;
}

.included .left-column__descr p {
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	font-weight: inherit;

}

.included .left-column__btn:after {
	content: '';
	width: 20px;
	height: 20px;
	background-size: 20px;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.83341 3.83341C4.4527 3.83341 3.33341 4.9527 3.33341 6.33341V14.6667C3.33341 16.0475 4.4527 17.1667 5.83341 17.1667H14.1667C15.5475 17.1667 16.6667 16.0475 16.6667 14.6667V11.3334C16.6667 10.8732 17.0398 10.5001 17.5001 10.5001C17.9603 10.5001 18.3334 10.8732 18.3334 11.3334V14.6667C18.3334 16.9679 16.4679 18.8334 14.1667 18.8334H5.83341C3.53223 18.8334 1.66675 16.9679 1.66675 14.6667V6.33341C1.66675 4.03223 3.53223 2.16675 5.83341 2.16675H9.16675C9.62699 2.16675 10.0001 2.53984 10.0001 3.00008C10.0001 3.46032 9.62699 3.83341 9.16675 3.83341H5.83341Z' fill='%23FAFAFA'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.0893 2.41083C18.4148 2.73626 18.4148 3.2639 18.0893 3.58934L10.5893 11.0893C10.2639 11.4148 9.73626 11.4148 9.41083 11.0893C9.08539 10.7639 9.08539 10.2363 9.41083 9.91083L16.9108 2.41083C17.2363 2.08539 17.7639 2.08539 18.0893 2.41083Z' fill='%23FAFAFA'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6667 3.00008C11.6667 2.53984 12.0398 2.16675 12.5001 2.16675H17.5001C17.9603 2.16675 18.3334 2.53984 18.3334 3.00008V8.00008C18.3334 8.46032 17.9603 8.83341 17.5001 8.83341C17.0398 8.83341 16.6667 8.46032 16.6667 8.00008V3.83341H12.5001C12.0398 3.83341 11.6667 3.46032 11.6667 3.00008Z' fill='%23FAFAFA'/%3E%3C/svg%3E%0A");

}


.included__right-column {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	padding: 24px;
	background: #FFEFEE;
	box-shadow: 0px 4px 5px rgba(152, 152, 152, 0.2);
}

.included .right-column__title {
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 23px;
	line-height: 34px;
	color: #F33932;
}

.included .right-column__list {
	flex-direction: column;
	gap: 16px 0;
}

.included .list__item {
	color: #4A4A4A;
	display: flex;
	align-items: center;
	gap: 0 8px;
}

.included .list__item:before {
	content: '';
	width: 16px;
	height: 16px;
	background-size: 16px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6656 0.9375L6.33437 10.6031L2 6.27187L0 8.27188L6.66563 14.9375L16 2.9375L13.6656 0.9375Z' fill='%23F33932'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1024px) {
	.included__main-block {
		grid-gap: 0 30px;
	}
}

@media (max-width: 767px) {
	.included__main-block {
		display: block;
	}

	.included__right-column {
		margin-top: 40px;
	}
}

/*--------------------------------------------------------------
# Cities
--------------------------------------------------------------*/

.cities {
	background: #FCFCFC;
}
.cities__columns {
	display: grid;
	grid-gap: 0 100px;
	grid-template-columns: max-content 1fr;
}

.cities__thumb-group {
	display: block;
}

.cities__thumb-group svg {
	max-width: 500px;
	width: 100%;
	height: auto;
}

.cities__cities-group {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 60px 0;
	padding-bottom: 24px;
}

.cities .cities-group__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	color: #4A4A4A;
}

.cities .cities-group__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
}

.cities .cities-group .list__item {
	display: block;
	flex: 1 1 160px;
}

.cities .cities-group .list .link {
	display: block;
	line-height: 1.6;
	text-transform: capitalize;
	color: #1B1B1B;
}


.cities .cities__gallery {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

.cities .gallery__item {
	display: block;
	position: relative;
}

.cities .gallery__item:first-child {
	grid-column: 1/3;
}

.cities .gallery__item:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.cities .gallery .item__name {
	position: absolute;
	z-index: 1;
	width: 100%;
	left: 0;
	bottom: 25px;
	font-family: 'Orelega One';
	font-weight: 400;
	font-size: 26px;
	line-height: 12
	text-transform: capitalize;

	color: #FFFFFF;
	text-align: center;

}

.cities .gallery .item__img {
	display: block;
	height: 230px;
	width: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.cities__columns {
		display: block;
	}

	.cities__thumb-group svg {
		max-width: 100%;
	}

	.cities__cities-group {
		margin-top: 42px;
		gap: 32px 0;
	}

	.cities .cities-group__title {
		text-align: center;
		font-size: 18px;
		text-align: center;
	}

	.cities .cities__gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.cities .gallery__item:first-child {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	.cities .cities-group__title {
		font-size: 16px;
	}

	.cities__cities-group {
		margin-top: 32px;
		gap: 20px 0;
	}

	.cities .cities__gallery {
		display: block;
	}
}

@media (max-width: 520px) {
	.cities .gallery .item__img {
		height: 130px;
	}
}

/*--------------------------------------------------------------
# Companion
--------------------------------------------------------------*/
.companion {
	background: #FFEFEE;
}

.companion__title-group {
	display: grid;
	align-items: center;
	grid-template-columns: max-content 1fr;
}

.companion .title-group__text-group {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}


.companion .title-group__sub-title {
	display: block;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: #F33932;
}

.companion .title-group__descr {
	font-family: 'Poppins';
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-transform: capitalize;
	color: #1F1F1F;
	max-width: 580px;
	margin-left: auto;
	margin-right: 0;
	padding-left: 60px;
}

.companion__gallery {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.companion .gallery__item {
	display: block;
	flex: 1 1 calc(33.3% - 32px);
	min-width: 360px;
}

.companion .gallery .item__img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.companion__title-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px 0;
		max-width: 767px;
		margin-left: auto;
		margin-right: auto;
	}

	.companion .title-group__section-title {
		text-align: center;
	}

	.companion .title-group__text-group {
		align-items: center;
		
	}

	.companion .title-group__descr {
		text-align: center;
		max-width: 100%;
		padding-left: 0;
	}
}

@media (max-width: 520px) {
	.companion .gallery__item {
		flex: auto;
		min-width: auto;
	}
}

/*--------------------------------------------------------------
# Statistic
--------------------------------------------------------------*/
.statistic {
	background: #FFEFEE;
}

.statistic__main-block {
	display: flex;
	flex-direction: column;
	gap: 45px 0;
}

.statistic__bottom-group{
	display: flex;
	gap: 0 70px;
	align-items: center;
}

.statistic .bottom-group__descr {
	max-width: 500px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.6;
	color: #4A4A4A;
}

.statistic .bottom-group__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	width: 100%;
}

.statistic .bottom-group .list__item {
	display: block;
	flex: 1 1 150px;
	min-width: 150px;
	font-family: 'Poppins';
	font-weight: 500;
	font-size: 28px;
	line-height: 1.2;
	text-transform: capitalize;
	color: #000000;
}


.statistic__gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.statistic .gallery__item {
	display: block;
	flex: 1 1 calc(14% - 10px);
	min-width: 150px;

}

.statistic .gallery .item__img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1024px) {
	.statistic__bottom-group {grid-gap: 0 32px}

	.statistic .bottom-group__list {
		gap: 10px 0;
	}

	.statistic .bottom-group .list__item {
		font-size: 24px;
		min-width: 125px;
		flex: 1 1 125px;
	}

	.statistic .bottom-group__descr {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.statistic .bottom-group__descr {
		font-size: 16px;
	}
}

@media (max-width: 560px) {
	.statistic__bottom-group {
		display: block;
	}

	.statistic .bottom-group__list {
		margin-top: 30px;
		justify-content: space-between;
	}

	.statistic .bottom-group .list__item {
		font-size: 18px;
		flex: auto;
		width: max-content;
		min-width: auto;
	}

	.statistic .bottom-group__descr {
		font-size: 14px;
	}
}

