:root {
	--font-family: "Poppins", sans-serif;
	--second-family: "Inter", sans-serif;

	--container-width: 1180px;
	--container-padding-x: 20px
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--background-color);
	font-family: var(--second-family);
	color: var(--color-dark);
	font-size: 16px;
	line-height: 1.3;
}

a {
	text-decoration: none;
	color: inherit;
}

li {
	list-style: none;
}

/* ======================= */
/*========= Утилитарный класс =========*/
.container {
	max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--container-padding-x);
}

.container-big {
	max-width: 1366px;
	width: 100%;
	margin-inline: auto;
	/* padding-inline: var(--container-padding-x); */
	position: relative;

}

.button {
	background: transparent;
	border: none;
	outline: none;
	text-transform: uppercase;

}

.button__transparent {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	transition: text-decoration 0.4s ease;
}

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

.button__default {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	color: #048853;
	height: 40px;
	background: #fff;
	display: grid;
	place-items: center;
	padding-inline: 37px;
	transition: color .4s ease-in-out, border-radius .4s ease;
}

.button__default:hover {
	color: #000;
	border-radius: 8px;
}


.overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 10;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.title--default {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 48px;
	text-align: center;
	color: #048853;
}

.subtitle--default {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 500px) {
	.title--default {
		font-size: calc(32px + (48 - 32) * ((100vw - 500px) / (1060 - 500)));
		;
	}

	.subtitle--default {
		font-size: calc(1hhpx + (18 - 1hh) * ((100vw - 500px) / (1060 - 500)))
	}
}

/*========= Утилитарный класс =========*/
/* ======================= */

/* Мобильное меню кнопка бургера  */
.button__burger {
	margin-left: auto;
	display: none;
}

.burger__line {
	width: 30px;
	height: 2px;
	background: #fff;
	display: block;
	margin: 8px auto;
}

/* Мобильное меню кнопка бургера  */

/* Закрытия меню по кнопке  */
.button__close {
	padding: 15px;
	position: absolute;
	display: none;

}

.close__line {
	display: block;
	background: #fff;
	width: 30px;
	height: 2px;
	margin: 8px auto;
}

.button__close:hover .close__line {
	background: rgb(255, 46, 46);
}

.close__line:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.close__line:nth-child(2) {
	transform: translateY(-5px) rotate(-45deg);
}

/* Закрытия меню по кнопке  */

.layout {
	background: linear-gradient(143deg, #048853 0%, rgba(0, 0, 0, 0.84) 100%);
	width: 100%;
	min-height: 100vh;
	height: auto;
	position: relative;
}

/* Header */
.header {
	padding-top: 38px;
	/* padding-bottom: 101px; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	/* z-index: 5; */
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 5;
}

.logo__img {}

.logo__name {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	text-wrap: nowrap;
}

.menu {}

.menu__items {
	display: flex;
	align-items: center;
	gap: 30px;
}

.menu__item {
	position: relative;
}

.menu__item::after,
.menu__item::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: #fff;
	display: block;
	transition: all 0.6s ease-in-out;
}

.menu__item::after {
	bottom: -5px;
	right: 0;
	transform-origin: right;
}

.menu__item::before {
	top: -5px;
	left: 0;
	transform-origin: left;
}

.menu__item:hover:after,
.menu__item:hover:before {
	width: 100%;
	background: #145d40;
}

.menu__link {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}

.menu--active {
	font-weight: 700;
}

.button__group {
	display: flex;
	align-items: center;
	gap: 46px;
}

/* Header */

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

	.button__close {
		display: block;
	}

	.layout {}

	.container {}

	.header {}

	.logo {}

	.logo__img {}

	.logo__name {}

	.menu {
		/* display: none; */
		position: fixed;
		width: 320px;
		height: 100vh;
		background: #1c4b38;
		border-right: 5px solid #fff;
		box-shadow: 0px 0px 30px rgb(0 0 0 / 72%);
		top: 0;
		left: 0;
		transition:
			transform .4s cubic-bezier(0.215, 0.610, 0.355, 1),
			opacity .3s ease;
		z-index: 20 !important;
		transform: translateX(-100%);
		pointer-events: none;
	}

	.menu.active {
		display: block;
		transform: translateX(0);
		pointer-events: auto;
	}

	.menu__items {
		flex-direction: column;
		align-items: flex-end;
		padding: 1rem 3rem;
	}

	.menu__item {}

	.menu__link {}

	.menu--active {}

	.button__group {}

	.button {}

	.button__transparent {}

	.button__default {}
}

@media screen and (max-width: 600px) {
	.menu .button__group {
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
		align-items: flex-end;
		padding: 1rem 3rem;
	}
}

@media screen and (max-width: 400px) {
	.menu.active {
		width: 100%;
	}
}

/* Banner */
.banner {

	display: flex;
	align-items: center;
	min-height: calc(100vh - 120px);
	/* высота шапки */
	align-items: center;

}

.banner__content {

	/* position: relative; */
}

.banner__content::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/img/popins-font-left.svg) center / contain no-repeat;
	width: 295px;
	height: 100vh;
	/* z-index: 1; */
}

.banner__title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 52px;
	line-height: 138%;
	color: #fff;
	margin-bottom: 18px;
	max-width: 574px;
	width: 100%;
}

.banner__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	margin-bottom: 38px;
	max-width: 453px;
	width: 100%;
	letter-spacing: 0.05rem;

}

.banner__text span {
	font-weight: 700;
}

.banner__button {
	padding-inline: 54px;
	height: 70px;
}

.button--arrow {
	position: relative;

}

.button--arrow::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 25px;
	background: url(../images/icons/arrow.svg) center / contain no-repeat;
	top: 50%;
	transform: translateY(-50%);
	right: -50px;
	pointer-events: none;
}



.banner__img {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.img--after {
	/* position: relative; */
}

.img--after::after {
	position: absolute;
	content: '';
	width: 225px;
	height: 606px;
	top: -65px;
	left: 75px;
	background: url(../images/img/popins-font.svg) center / contain no-repeat;
	z-index: -1;
	transform: rotate(30deg);
}


.banner-img {
	width: 704px;
	height: auto;
	display: block;
}


@media screen and (max-width: 1060px) {
	.banner {
		padding-top: 30px;
		flex-direction: column-reverse;
	}

	.banner__img {
		position: unset;
		margin-bottom: 15px;
	}

	.banner__img::after {
		display: none;
	}

	.banner-img {
		width: calc(400px + (704 - 400) * ((100vw - 500px) / (1060 - 500)));
		height: auto;
	}

	.banner__title {
		font-size: calc(30px + (52 - 30) * ((100vw - 500px) / (1060 - 500)));
	}

}



/* Секция Layanan Kami  */
.layana {
	background: #f3fff4;
	padding-block: 105px 173px;
}

.container {}

.layana__box {
	margin-bottom: 46px;
}

.layana__title {}

.layana__subtitle {}



/* Карточка */
.layana__group {}

.layana__items {
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
}

.layana__item {
	flex-basis: auto;
	flex-shrink: 1;
	flex-grow: 1;


	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 350px;

	border-radius: 5px;
	z-index: 1;
	padding-inline: 53px;
	padding-block: 59px;
	background: rgb(255, 255, 255);
	transition: color 0.4s ease;
	overflow: hidden;
}

.layana__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(136deg, #00985b 0%, #000 100%);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.6s ease-in-out;
}

.layana__item:hover::before {
	opacity: 1;
}

.layana__item:hover .layana__content-title,
.layana__item:hover .layana__content-text {
	color: #fff;
}

.layana__item:hover .layana__img {
	background: #fff;
}

.layana__img {
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background: #00985b;
	display: grid;
	place-items: center;
	margin-bottom: 13px;
	transition: background 0.4s ease;
}

.layana__img img {
	width: 57px;
	height: 57px;
}

.layana__content {
	text-align: center;

}

.layana__content-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	color: #00985b;
	margin-bottom: 13px;
}

.layana__content-text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #000;
	max-width: 273px;
}

/* Карточка */

/* Секция Layanan Kami  */




/* tabs */
.ramah {
	background: url(../images/img/ramah-bg.png) center / cover no-repeat;
	padding-block: 122px 270px;
}

.container {}

.ramah__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 48px;
	text-align: center;
	color: #fff;
}

.ramah__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	text-align: center;
	color: #fff;
	margin-bottom: 62px;
}

.ramah__tabs {}

.tabs-btn {
	display: flex;
	align-items: center;

}

.ramah__tabs-title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	/* text-align: center; */
	color: #000;
	background: rgba(255, 255, 255, 0.6);
	height: 42px;
	padding-inline: 22px;
	display: grid;
	place-items: center;
	cursor: pointer;
}

.ramah__tabs-title:hover:not(.active) {
	color: #ffffff;
}

.ramah__tabs-title:first-child {
	border-radius: 9px 0 0 0;
}

.ramah__tabs-title:last-child {
	border-radius: 0 9px 0 0;
}

.active-tab {
	color: #00985b;
	background: rgba(255, 255, 255, 0.8);
}

.tabs-content {

	background: rgba(255, 255, 255, 0.8);
	border-radius: 0 0 0 9px;
	padding-inline: 10px;
	display: flex;
	align-items: center;
	position: relative;
	min-height: 88px;
	/* width: 980px; */
	/* background: red; */
	padding-right: 110px;
}

.tabs-content::before {
	content: 'Cari';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 135px;
	background: #00985b;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 36px;
	display: grid;
	place-items: center;
	color: #fff;
}


.tab__dropdown {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-100%);
	opacity: 0;
	transition: all 0.5s ease;
	visibility: hidden;
}

.tab-content:hover .tab__dropdown {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
	z-index: 5;

}

.tab-content.active-menu {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;

	z-index: 5;
}

.tab__items {
	position: absolute;
	top: 00%;
	left: 0;
	width: 230px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0 0 9px 9px;
	;
	/* box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5); */
	z-index: 1;
	transform-origin: top;
	/* backdrop-filter: blur(5px); */
	/* transform: scale(0); */
	/* visibility: hidden; */
	/* opacity: 0; */
}

.tab__item {
	padding-block: 2px;
	/* background: red; */
	/* width: 100%; */
}

.tab__link {
	/* background: green; */
	padding-block: 10px;
	padding-left: 10px;
	display: block;
	font-family: var(--font-family);
	font-weight: 400;

}

.tab__link:hover {
	background: rgba(255, 255, 255, 0.78);
	border-radius: 5px;
	backdrop-filter: blur(5px);

}


.tab-content-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;

	/* background: red; */
	align-items: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.tab-content-box.tab--active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	position: relative;
}

.tab-content {
	display: flex;
	align-items: center;
	gap: 7px;

	height: 88px;
	position: relative;
	padding-inline: 15px;
}

.tab-content:not(:last-child)::before {
	content: '';
	position: absolute;
	background: #fff;
	width: 1px;
	height: 100%;
	right: 0;
	top: 0;
}

.tab-icons {}

.tab-title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color: #00985b;
}

.tab-content i {
	color: #00985b;
	font-size: 25px;
}

.ri-arrow-drop-down-line {}

@media screen and (max-width: 900px) {
	.ramah__title {
		font-size: calc(32px + (48 - 32) * ((100vw - 500px) / (900 - 500)));
		margin-bottom: 10px;
	}

	.ramah__text {
		font-size: calc(18px + (24 - 18) * ((100vw - 500px) / (900 - 500)));
		;
	}
}

@media screen and (max-width: 600px) {
	.tabs-content::before {
		display: none;
	}

	.tabs-content {
		padding-right: 0;
	}

	.tab-content {
		flex-basis: auto;
		flex-shrink: 1;
		flex-grow: 1;
	}
}

/* tabs */


/* Rekomendasi Rumah Untuk Mu */
.rekomend {
	background: #f3fff4;
	padding-block: 104px;
}

.rekomend__box {
	margin-bottom: 44px;
}

.rekomend__titile {}

.title--default {}

.rekomend__group {
	border-radius: 5px;
	transition: all 0.4s ease;

	display: grid;
	/* grid-template-columns: repeat(3, 1fr); */
	grid-template-columns: repeat(auto-fit, minmax(200px, 363px));
	gap: 20px;
	justify-content: center;
	margin-bottom: 59px;
}



.rekomend__items:hover .rekomend__content-title,
.rekomend__items:hover .rekomend__content-subtitle {
	color: #fff;
}

.rekomend__items:hover .rekomend__content-name {
	color: #ff7a00;
}

.rekomend__items {
	max-width: 363px;
	width: 100%;
	background: #fff;
	min-height: 469px;
	height: auto;
}

.rekomend__items:hover {
	box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.25);
	background: linear-gradient(137deg, #00985b 0%, #00985b 51.03%, #000 100%);
}

.rekomend__item {}

.rekomend__img {
	display: block;
	/* background: red; */
	padding: 6px;
}

.rekomend__img img {
	width: 351px;
	height: auto;
}

.rekomend__content {
	margin-bottom: 29px;
	padding-left: 21px;
}

.rekomend__content-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	color: #000;
}

.rekomend__content-subtitle {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	color: #000;
}

.rekomend__content-name {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	color: #f00;
}

.rekomend__colums {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	background: #fff;
	padding-inline: 24px 21px;
}

.rekomend__column {}

.rekomend__icon {
	display: flex;
	align-items: center;
	gap: 4px;
}

.rekomend__icon span {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	color: #000;
}

.rekomend__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	color: #000;
}

.rekomend-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	color: #000;
}

.rekomend__wrap {}

.rekomend__wra-title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color: #000;
	cursor: pointer;
	transition: all 0.4s ease
}

.rekomend__wra-title:hover {
	color: #00985b;
}

.rekomend__items {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .4s ease, transform .4s ease;
	display: none;
	/* скрыты по умолчанию */
}

.rekomend__items.show {
	display: block;
}

.rekomend__items.visible {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 950px) {
	.title--default {
		font-size: calc(32px + (48 - 32) * ((100vw - 500px) / (950 - 500)));
		;
	}
}

@media screen and (max-width: 400px) {
	.rekomend__img img {
		width: calc(250px + (351 - 250) * ((100vw - 300px) / (400 - 300)));

		height: auto;
	}

	.rekomend__colums {
		gap: calc(10px + (41 - 5) * ((100vw - 300px) / (400 - 300)));
	}
}

/* Rekomendasi Rumah Untuk Mu */


/* Fitur Rumah */
.fitur {
	padding-block: 147px;
	background: #f3fff4;

}

.container {}

.fitur__navigations {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 58px;
}

.fitur__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 48px;
	/* text-align: center; */
	color: #048853;
}

.title--default {}

.fitur__button {
	background: #00985b;
	text-transform: none;
	color: #fff;
	display: grid;
	place-content: center;
	/* height: 45px; */
}

.fitur__line {}

.button {}

.button__default {}

.swiper {}

.mySwiper {}

.fiturSwiper {
	position: relative;
}

.swiper-wrapper {}

.swiper-slide .fitur__box::after {}

.fitur__box {
	position: relative;
	position: relative;
	width: 340px;
	height: 480px;
}

.fitur__box::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	width: 340px;
	height: 480px;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

.fitur__img {}

.fitur__img img {
	width: 340px;
	height: 480px;
}

.fitur__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	text-wrap: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

.fitur__box:Hover .fitur__content {
	opacity: 1;
	visibility: visible;
}

.fitur__box:hover::after {
	opacity: 1;
	visibility: visible;
}


.fitur__title-c {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 36px;
	text-align: center;
	color: #fff;
}

.fitur__subtitle {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;
}

.fitur__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	color: #fff;
	margin-bottom: 56px;
}

.itur__inner {
	display: flex;
	justify-content: center;
}

.fitur__button-slid {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	color: #fff;
	background: #00985b;
	height: 45px;
	padding-inline: 17px;
	text-transform: none;


}

.swiper__slide-navigation {
	position: relative;
}

.fitur__slider-wrapper {
	position: relative;
}

.fitur--prev,
.fitur--next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: #00985b;
	width: 61px;
	height: 61px;
	aspect-ratio: 1;
	border-radius: 50%;
	display: grid;
	place-items: center;

}

.fitur--prev {
	left: -25px;
}

.fitur--next {
	right: 50px;
}

@media screen and (max-width: 900px) {
	.fitur__navigations {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.fitur__title {
		font-size: calc(32px + (48 - 32) * ((100vw - 300px) / (500 - 300)));
		margin-bottom: 15px;
	}

	.fitur--next,
	.fitur--prev {
		width: 30px;
		height: auto;
		/* left: 0; */
	}

	.fitur--next svg,
	.fitur--prev svg {
		width: 15px;
		height: 15px;
	}

	.fitur--prev {
		left: 0;
	}

	.fitur--next {
		right: 0;
	}
}

/* Fitur Rumah */



/* Contact */
.contacts {
	position: relative;
	background: url(../images/img/bg-contact.png) center / cover no-repeat;
	padding-block: 148px;

}

.contacts::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;

}

.contacts .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	/* gap: 159px; */
}



.container .contacts__content {
	position: relative;
	z-index: 5;
	color: #fff;
}

.container .contacts__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	color: #fff;
	max-width: 441px;
	margin-bottom: 19px;
}

.contacts__group {}

.contacts__subtitle {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	margin-bottom: 14px;
}

.contacts__items {
	margin-bottom: 20px;
}

.contacts__item {
	display: flex;
	align-items: center;
	gap: 18px;
}

.contacts__item:not(:last-child) {
	margin-bottom: 12px;
}

.contacts__icons {}

.contacts__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 112%;
	color: #fff;
	max-width: 332px;
}

.contacts__social {
	display: flex;
	align-items: center;
	gap: 18px;
}

.contacts__social-items {
	display: flex;
	align-items: center;
	gap: 18px;
}

.contacts__social-item {}

.contacts__social-link {}

.contacts__social-subtitle {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 112%;
	color: #fff;
}

.contacts__form {
	z-index: 5;
	background: #fff;
	border-radius: 5px;
	padding: 52px 48px 51px 47px;
	max-width: 580px;
	width: 100%;
}

.contacts__form-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	margin-bottom: 21px;
	color: #00985b;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form {}

.contacts__form-box {
	margin-bottom: 18px;
}

.contacts__form-input {
	outline: none;
	border: none;
	background: #c4c4c4;
	height: 75px;
	padding-inline: 35px;
	width: 100%;
}

.contacts__form-input::placeholder {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 112%;
	color: #717171;
}

.contacts__form-button {
	background: #00985b;
	height: 75px;
	color: #fff;
	width: 100%;
}

.button {}

.button__default {}

/* Contact */

@media screen and (max-width: 1076px) {
	.contacts .container {
		justify-content: center;
	}

	.contacts__content {
		margin-bottom: 30px;
	}

	.container .contacts__title {
		font-size: calc(28px + (40 - 28) * ((100vw - 300px) / (1076 - 300)));

	}

	.contacts__form-title {
		font-size: calc(28px + (40 - 28) * ((100vw - 300px) / (1076 - 300)));

	}
}

/* footer */
.footer {
	background: #000;
	padding-block: 105px 65px;
	color: #fff;
}

.container {}

.footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
	flex-wrap: wrap;

}

.footer__top-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	padding-right: 25px;
}

.footer--tilte {}

.footer__top-nav {}

.footer__top-items {
	display: flex;
	align-items: center;
	gap: 25px;
}

.footer__top-item {}

.footer__top-link {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 18px;
	transition: color .4s ease;
}

.footer__top-link:hover {
	color: #00985b
}

.footer__bottom {}

.footer__bottom-copirating {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	opacity: 0.8;
}

@media screen and (max-width: 617px) {
	.footer__top-logo {
		margin-bottom: 25px;
	}

	.footer__top {
		justify-content: center;
	}

	.footer__top-items {
		flex-wrap: wrap;
		text-align: center;
	}

	.footer__top-item {
		flex-basis: auto;
		flex-shrink: 1;
		flex-grow: 1;
	}
}

/* footer */