@charset "UTF-8";
:root {
	--font-family: 'Host Grotesk', sans-serif;
	--content-width: 1240px;
	--container-offset: 20px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--light-color: #fff;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
	opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
	opacity: 0.4;
	pointer-events: none;
}
*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
.page__body {
	margin: 0;
	min-width: 360px;
	min-height: 100%;
	font-size: 16px;
}
img {
	height: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
a {
	text-decoration: none;
}
.site-container {
	overflow: hidden;
}
.is-hidden {
	display: none !important;
}
.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.input-reset {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	background-color: #fff;
}
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
	display: none;
}
.visually-hidden {
	position: absolute;
	overflow: hidden;
	margin: -1px;
	border: 0;
	padding: 0;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
}
.container {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width);
}
.centered {
	text-align: center;
}
.dis-scroll {
	position: fixed;
	left: 0;
	top: 0;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
}
.page--ios .dis-scroll {
	position: relative;
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	padding: 18px 0;
	background-color: #fff;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	z-index: 100;
}
.header .header__wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .header__wrapper a img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.header .header__wrapper a img:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.header .header__wrapper .header__nav .header__nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	list-style: none;
}
.header .header__wrapper .header__nav .header__nav__list li a {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.header .header__wrapper .header__nav .header__nav__list li a:hover {
	color: #dbb424;
}
.header .header__wrapper .header__nav .btn--primary {
	display: none;
}
.burger {
	--burger-width: 22px;
	--burger-height: 16px;
	--burger-line-height: 2px;
	position: relative;
	border: none;
	padding: 0;
	width: var(--burger-width);
	height: var(--burger-height);
	color: #000;
	background-color: transparent;
	cursor: pointer;
	display: none;
}
.burger::after,
.burger::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	border-radius: 3px;
}
.burger::before {
	top: 0;
}
.burger::after {
	width: 13px;
	right: 0;
	left: auto;
	top: calc(100% - var(--burger-line-height));
}
.burger__line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: var(--burger-line-height);
	background-color: currentColor;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	border-radius: 3px;
}
.burger--active::before {
	top: 50%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
	width: 100%;
	top: 50%;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition:
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		top 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition:
		transform 0.3s ease-in-out,
		-webkit-transform 0.3s ease-in-out;
}
.footer {
	background-color: #0f0f0f;
	padding: 60px 0 30px;
}
@media (max-width: 772px) {
	.header .header__wrapper .header__nav,
	.header .header__wrapper > .btn--primary {
		display: none;
	}
	.header .header__wrapper .header__nav.menu--active {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: fixed;
		top: 67px;
		left: 0;
		width: 100vw;
		background-color: #fff;
		z-index: 100;
		padding: 0 20px 24px;
	}
	.header .header__wrapper .header__nav.menu--active .header__nav__list {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 20px;
		padding: 30px 0 32px;
		margin: 0;
		border-top: 1px solid #dcdcdc;
	}
	.header .header__wrapper .header__nav.menu--active .btn--primary {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer {
		padding: 40px 0 28px;
	}
}
.footer .footer__wrapper .footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
}
.footer .footer__wrapper .footer__top .footer__top__nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 50px;
}
@media screen and (max-width: 772px) {
	.footer .footer__wrapper .footer__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 32px;
	}
	.footer .footer__wrapper .footer__top .footer__top__nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 12px;
	}
}
.footer .footer__wrapper .footer__top .footer__top__nav ul li a {
	color: #fff;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer .footer__wrapper .footer__top .footer__top__nav ul li a:hover {
	color: #f7c923;
}
.footer .footer__wrapper .footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	margin-top: 38px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer__wrapper .footer__bottom span {
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	text-align: left;
}
.footer .footer__wrapper .footer__bottom .footer__bottom__nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 48px;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 772px) {
	.footer .footer__wrapper .footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 25px;
		margin-top: 32px;
		padding-top: 32px;
	}
	.footer .footer__wrapper .footer__bottom .footer__bottom__nav {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.footer .footer__wrapper .footer__bottom .footer__bottom__nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 9px;
	}
}
.footer .footer__wrapper .footer__bottom .footer__bottom__nav ul li a {
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	text-align: left;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer .footer__wrapper .footer__bottom .footer__bottom__nav ul li a:hover {
	color: #f7c923;
}
.hero {
	position: relative;
	min-height: 100vh;
	background: linear-gradient(
		175deg,
		rgba(248, 170, 54, 0.7) 13.921%,
		#fff 80.566%
	);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 140px 0 0;
	overflow: hidden;
}
.hero .container {
	width: 100%;
	position: relative;
}
.hero__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0;
	padding: 10px 30px;
	border: 1px solid rgba(248, 170, 54, 0.5);
	border-radius: 30px;
	background: rgba(248, 170, 54, 0.2);
}
.badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 3px solid rgba(248, 170, 54, 0.3);
	background: #f8aa36;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media (max-width: 772px) {
	.hero {
		padding-top: 65px;
	}
	.badge {
		padding: 8px 20px;
	}
	.badge__dot {
		width: 6px;
		height: 6px;
	}
}
.hero__title {
	max-width: 1011px;
	color: #000;
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 62px;
	font-weight: 800;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	margin: 11px 0 0;
}
@media (max-width: 972px) {
	.hero__title {
		font-size: 34px;
	}
	.hero__title br {
		display: none;
	}
}
.hero__sub {
	max-width: 650px;
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	margin: 14px auto 0;
}
@media (max-width: 972px) {
	.hero__sub {
		font-size: 14px;
		margin: 6px 0 0;
	}
	.hero__sub br {
		display: none;
	}
}
.hero__wrapper .btn--primary {
	margin: 26px 0 0;
}
@media (max-width: 772px) {
	.hero__wrapper .btn--primary {
		margin: 20px 0 0;
		width: 100%;
	}
}
.cards {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 5;
}
.card {
	position: absolute;
	border-radius: 18px;
	overflow: hidden;
	-webkit-box-shadow:
		0 12px 48px rgba(0, 0, 0, 0.18),
		0 2px 8px rgba(0, 0, 0, 0.1);
	box-shadow:
		0 12px 48px rgba(0, 0, 0, 0.18),
		0 2px 8px rgba(0, 0, 0, 0.1);
	will-change: transform;
	-webkit-transition: -webkit-box-shadow 0.3s;
	transition:
		box-shadow 0.3s,
		-webkit-box-shadow 0.3s;
	-webkit-transform: translateY(calc(var(--offset, 0) * 1px));
	-ms-transform: translateY(calc(var(--offset, 0) * 1px));
	transform: translateY(calc(var(--offset, 0) * 1px));
}
.card img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.card--1 {
	width: 226px;
	height: 413px;
	left: 0;
	top: 380px;
	border-radius: 18px;
}
.card--2 {
	width: 226px;
	height: 413px;
	left: calc(50% - 380px);
	top: 440px;
	border-radius: 18px;
}
.card--3 {
	width: 226px;
	height: 413px;
	left: calc(50% + 160px);
	top: 440px;
	border-radius: 18px;
}
.card--4 {
	width: 226px;
	height: 413px;
	right: 0;
	top: 380px;
	border-radius: 18px;
}
@media (max-width: 900px) {
	.card--1 {
		left: 20px;
		width: calc(25vw - 25px);
		height: calc((25vw - 25px) * 1.85);
		top: 400px;
	}
	.card--2 {
		left: calc(25vw - 25px + 40px);
		width: calc(25vw - 25px);
		height: calc((25vw - 25px) * 1.85);
		top: calc(400px + 25vw - 75px);
	}
	.card--3 {
		left: auto;
		right: calc(25vw - 25px + 40px);
		width: calc(25vw - 25px);
		height: calc((25vw - 25px) * 1.85);
		top: calc(400px + 25vw - 75px);
	}
	.card--4 {
		right: 20px;
		width: calc(25vw - 25px);
		height: calc((25vw - 25px) * 1.85);
		top: 400px;
	}
}
@media (max-width: 600px) {
	.hero {
		padding-top: 100px;
	}
}
.reviews {
	padding: 80px 0;
}
.reviews-swiper {
	margin-top: 50px;
	position: relative;
}
@media (max-width: 982px) {
	.reviews {
		padding: 40px 0;
	}
	.reviews-swiper {
		margin-top: 24px;
	}
}
.reviews-slide {
	padding: 24px 24px 44px;
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
}
.reviews-slide .reviews-slide-paragraph {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	min-height: 137px;
}
.reviews-slide .reviews-slide__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.reviews-slide .reviews-slide__top .reviews-slide__top__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.reviews-slide .reviews-slide__top .reviews-slide__top__main img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}
.reviews-slide
	.reviews-slide__top
	.reviews-slide__top__main
	.reviews-slide__top__info
	h3 {
	color: var(--Black, #1c1c1a);
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 982px) {
	.reviews-slide {
		padding: 20px;
	}
	.reviews-slide .reviews-slide-paragraph {
		font-size: 12px;
	}
	.reviews-slide .reviews-slide__top .reviews-slide__top__main {
		gap: 12px;
	}
	.reviews-slide .reviews-slide__top .reviews-slide__top__main img {
		width: 40px;
		height: 40px;
	}
	.reviews-slide
		.reviews-slide__top
		.reviews-slide__top__main
		.reviews-slide__top__info
		h3 {
		font-size: 16px;
	}
}
.reviews-slide
	.reviews-slide__top
	.reviews-slide__top__main
	.reviews-slide__top__info
	p {
	color: var(--Gray, #797979);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	margin: 0;
}
.reviews-slide .reviews-slide__top .reviwes-slide__top__stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4px;
}
.reviews-slide .reviews-slide__top .reviwes-slide__top__stars svg {
	width: 10px;
	height: 10px;
}
.reviews-swiper,
.reviews-swiper .swiper-wrapper {
	overflow: visible;
}
.reviews-swiper .swiper-slide {
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.reviews-swiper .swiper-slide-active,
.reviews-swiper .swiper-slide-next,
.reviews-swiper .swiper-slide-prev {
	opacity: 1;
	pointer-events: auto;
}
.reviews-button-next,
.reviews-button-prev {
	min-width: 50px;
	width: 50px;
	min-height: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: var(--Black, #1c1c1a);
	cursor: pointer;
	border: 0;
}
@media (max-width: 982px) {
	.reviews-slide
		.reviews-slide__top
		.reviews-slide__top__main
		.reviews-slide__top__info
		p {
		font-size: 12px;
	}
	.reviews-button-next,
	.reviews-button-prev {
		display: none;
	}
}
.swiper-button-disabled {
	opacity: 0.5;
}
.reviews-button-prev svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.reviews-button-next {
	position: absolute;
	right: -30px;
	top: calc(50% - 16px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 100;
}
.reviews-button-prev {
	position: absolute;
	left: -30px;
	top: calc(50% - 16px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 100;
}
.reviews-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 7px;
	margin: 32px auto 0;
}
.reviews-pagination .swiper-pagination-bullet {
	background: #f8aa36;
	margin: 0 !important;
}
.make {
	padding: 100px 0;
	background: #f9f1e6;
}
.make .btn--primary {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
@media (max-width: 921px) {
	.header .header__wrapper .header__nav .header__nav__list {
		gap: 24px;
	}
	.make {
		padding: 50px 0;
	}
}
.make__grid {
	margin: 60px 0 50px;
	gap: 24px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	padding: 0;
}
@media (max-width: 772px) {
	.make .btn--primary {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
	}
	.make__grid {
		margin: 24px 0;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
.make__grid .make__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 24px;
	text-align: center;
}
.make__grid .make__item .make__icon {
	min-width: 50px;
	width: 50px;
	min-height: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(213, 134, 74, 0.2);
}
.make__grid .make__item .make-title {
	color: var(--Black, #1c1c1a);
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	text-align: center;
	margin: 14px 0 0;
}
@media (max-width: 772px) {
	.make__grid .make__item {
		padding: 20px;
	}
	.make__grid .make__item .make__icon {
		min-width: 44px;
		width: 44px;
		min-height: 44px;
		height: 44px;
	}
	.make__grid .make__item .make__icon img {
		width: 20px;
		height: 20px;
	}
	.make__grid .make__item .make-title {
		font-size: 16px;
		margin: 16px 0 0;
	}
}
.make__grid .make__item .make-description {
	color: var(--Greydark, #797979);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	text-align: center;
	margin: 12px 0 0;
}
.steps {
	background: #1c1c1a;
	padding: 100px 0;
}
.steps .section-description,
.steps .section-title {
	color: #fff;
	text-align: left;
}
.steps .section-description {
	margin: 14px 0 0;
}
.steps__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 180px;
}
@media (max-width: 981px) {
	.steps__wrapper {
		gap: 80px;
	}
}
@media (max-width: 772px) {
	.make__grid .make__item .make-description {
		margin: 6px 0 0;
	}
	.steps {
		padding: 50px 0;
	}
	.steps__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}
}
.steps__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 44px;
}
@media (max-width: 772px) {
	.steps__right {
		gap: 20px;
	}
}
.step-item {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 50px 1fr;
	grid-template-columns: 50px 1fr;
	gap: 0 24px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}
.step-num {
	width: 50px;
	height: 50px;
	background: #2c2c2c;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffc174;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	text-align: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media (max-width: 772px) {
	.step-item {
		gap: 0 13px;
	}
	.step-num {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}
}
.step-line {
	position: absolute;
	top: 63px;
	left: 25px;
	width: 1px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	min-height: 41px;
	height: 41px;
}
.step-item:last-child .step-line {
	background: 0 0;
}
.step-title {
	color: var(--White, #fff);
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 772px) {
	.step-line {
		min-height: 31px;
		height: 31px;
		top: 48px;
		left: 22px;
	}
	.step-title {
		font-size: 16px;
	}
}
.step-desc {
	max-width: 375px;
	color: var(--Greylight, #dcdcdc);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	margin: 10px 0 0;
}
@media (max-width: 772px) {
	.step-desc {
		font-size: 12px;
		margin: 6px 0 0;
	}
}
.what-we-do__grid {
	display: -ms-grid;
	display: grid;
	gap: 24px;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	margin: 58px 0 50px;
}
.what-we-do__grid .what-we-do__grid__item {
	position: relative;
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 24px;
}
.what-we-do__grid .what-we-do__grid__item .what-we-do__grid__item__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}
.what-we-do__grid
	.what-we-do__grid__item
	.what-we-do__grid__item__top
	.what-we-do__grid__item__top__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 50px;
	min-height: 50px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background: rgba(213, 134, 74, 0.1);
}
.what-we-do__grid
	.what-we-do__grid__item
	.what-we-do__grid__item__top
	.what-we-do__grid__item__top__icon
	img {
	width: 24px;
	height: 24px;
}
.what-we-do__grid .what-we-do__grid__item .what-we-do__grid__item__top h3 {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 20px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 0;
}
.what-we-do__grid .what-we-do__grid__item p {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	margin: 20px 0 0;
}
@media (max-width: 772px) {
	.what-we-do__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		margin: 24px 0;
		gap: 16px;
	}
	.what-we-do__grid .what-we-do__grid__item {
		padding: 20px;
	}
	.what-we-do__grid .what-we-do__grid__item .what-we-do__grid__item__top {
		gap: 12px;
	}
	.what-we-do__grid
		.what-we-do__grid__item
		.what-we-do__grid__item__top
		.what-we-do__grid__item__top__icon {
		min-width: 44px;
		min-height: 44px;
		width: 44px;
		height: 44px;
	}
	.what-we-do__grid
		.what-we-do__grid__item
		.what-we-do__grid__item__top
		.what-we-do__grid__item__top__icon
		img {
		width: 20px;
		height: 20px;
	}
	.what-we-do__grid .what-we-do__grid__item .what-we-do__grid__item__top h3 {
		font-size: 16px;
	}
	.what-we-do__grid .what-we-do__grid__item p {
		font-size: 14px;
		margin: 16px 0 0;
	}
}
.what-we-do__grid .what-we-do__grid__item h4 {
	position: absolute;
	right: 24px;
	top: -5px;
	color: rgba(28, 28, 26, 0.06);
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 78px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}
.who {
	padding: 100px 0;
}
@media (max-width: 721px) {
	.who {
		padding: 50px 0;
	}
}
.who__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [5];
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 60px 0 0;
}
@media (max-width: 921px) {
	.who__list {
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
		margin: 32px 0 0;
	}
	.who__list .who__list__item__image img {
		width: 100%;
		-o-object-position: top;
		object-position: top;
	}
}
@media (max-width: 721px) {
	.who__list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		margin: 24px 0 0;
	}
}
@media (max-width: 458px) {
	.who__list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}
}
.who__list .who__list__item__image {
	border-radius: 10px;
	overflow: hidden;
	height: 402px;
}
.who__list .who__list__item__image img {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	height: 402px;
}
.who__list .who__list__item__image img:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.who__list h3 {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0;
	margin: 16px 0 0;
}
.who__list p {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	margin: 8px 0 0;
}
.want {
	position: relative;
	background: #f9f1e6;
	padding: 100px 0;
}
.want .want__wrapper {
	max-width: 50%;
}
.want .want__wrapper .want-mark {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: var(--Greydark, #797979);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0;
	text-align: left;
	padding: 6px 20px;
	border: 1px solid #797979;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0);
}
.want .want__wrapper .want-title {
	text-align: left;
}
.want .want__wrapper .want-description {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	margin: 14px 0 0;
}
.want .want__wrapper .want__stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 105px;
	padding-top: 37px;
	margin-top: 37px;
	margin-bottom: 50px;
	border-top: 1px solid #dcdcdc;
}
.want .want__wrapper .want__stats .want__stat .want__stat-number {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 48px;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 981px) {
	.want .btn--primary {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.want .want__wrapper {
		max-width: 60%;
	}
	.want .want__wrapper .want__stats {
		gap: 40px;
		padding-top: 20px;
		margin-top: 20px;
		margin-bottom: 24px;
	}
	.want .want__wrapper .want__stats .want__stat .want__stat-number {
		font-size: 32px;
	}
}
.want .want__wrapper .want__stats .want__stat .want__stat-title {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0;
	margin: 0;
}
.want .image-want-right {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(50vw - 120px);
	height: 100%;
}
@media (max-width: 772px) {
	.what-we-do__grid .what-we-do__grid__item h4 {
		font-size: 34px;
		top: 12px;
		right: 20px;
	}
	.want {
		padding: 0 0 50px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 25px;
	}
	.want .want__wrapper {
		max-width: 100%;
		width: 100%;
	}
	.want .want__wrapper .want-mark {
		margin: 0 0 10px;
		font-size: 12px;
	}
	.want .want__wrapper .want-description {
		font-size: 14px;
	}
	.want .want__wrapper .btn--primary {
		width: 100%;
	}
	.want .image-want-right {
		width: 100%;
		max-height: 510px;
		-o-object-fit: cover;
		object-fit: cover;
		position: relative;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
}
.cta {
	min-height: calc(100vh - 50px);
	background-image: url(../img/cta-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	gap: 115px;
}
.cta .cta__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	min-height: calc(100vh - 50px);
	padding: 100px 0;
}
@media (max-width: 981px) {
	.want .want__wrapper .want__stats .want__stat .want__stat-title {
		font-size: 14px;
		margin: 6px 0 0;
	}
	.cta .cta__wrapper {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
.cta .cta__wrapper .cta__content .section-title {
	max-width: 535px;
	color: #fff;
	text-align: left;
}
.cta .cta__wrapper .cta__content .section-description {
	color: #fff;
	text-align: left;
	margin: 14px 0 0;
}
.cta .cta__wrapper .cta__form {
	width: 100%;
	border-radius: 10px;
	background: #fff;
	padding: 50px;
}
.cta .cta__wrapper .cta__form label {
	display: block;
	margin-bottom: 20px;
}
.cta .cta__wrapper .cta__form label h3 {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	margin: 0 0 8px;
}
@media (max-width: 772px) {
	.cta .cta__wrapper {
		padding: 50px 0;
	}
	.cta .cta__wrapper .cta__form {
		padding: 24px 20px;
	}
	.cta .cta__wrapper .cta__form label {
		margin-bottom: 16px;
	}
	.cta .cta__wrapper .cta__form label h3 {
		font-size: 14px;
		margin: 0 0 10px;
	}
}
.cta .cta__wrapper .cta__form label input {
	width: 100%;
	border: 1px solid #dcdcdc;
	border-radius: 30px;
	background: #f5f5f5;
	padding: 15px 24px 16px;
	color: black;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
}

.cta .cta__wrapper .cta__form label input::placeholder {
	color: #797979;
}
@media (max-width: 772px) {
	.cta .cta__wrapper .cta__form label input {
		font-size: 14px;
		padding: 12px 20px;
	}
}
.cta .cta__wrapper .cta__form label textarea {
	width: 100%;
	min-height: 167px;
	color: black;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	padding: 15px 24px 16px;
	border: 1px solid #dcdcdc;
	border-radius: 24px;
	background: #f5f5f5;
	resize: vertical;
}

.cta .cta__wrapper .cta__form label textarea::placeholder {
	color: #797979;
}

.locations {
	padding: 120px 0 100px;
}
.locations .locations__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [5];
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	list-style: none;
	margin: 50px 0 0;
	padding: 0;
}
@media (max-width: 982px) {
	.locations .locations__grid {
		-ms-grid-columns: (1fr) [4];
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
	}
}
.locations .locations__grid .locations__item {
	position: relative;
	height: 187px;
	border-radius: 10px;
	overflow: hidden;
}
.locations .locations__grid .locations__item:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.locations .locations__grid .locations__item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding: 27px;
}
.locations .locations__grid .locations__item::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(35.027%, rgba(30, 30, 30, 0)),
		to(#1e1e1e)
	);
	background: linear-gradient(
		180deg,
		rgba(30, 30, 30, 0) 35.027%,
		#1e1e1e 100%
	);
	z-index: 1;
	pointer-events: none;
}
.locations .locations__grid .locations__item img {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	width: 100%;
	height: 187px;
}
.locations .locations__grid .locations__item h2 {
	position: relative;
	z-index: 3;
	color: #fff;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}
.location-main-image {
	border-radius: 10px;
	background: #d9d9d9;
	margin: 50px 0 0;
}
@media (max-width: 772px) {
	.cta .cta__wrapper .cta__form label textarea {
		min-height: 127px;
		padding: 15px 20px;
		font-size: 14px;
		border-radius: 18px;
	}
	.cta .cta__wrapper .cta__form .btn--primary {
		width: 100%;
	}
	.locations {
		padding: 108px 0 50px;
	}
	.locations .locations__grid {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}
	.location-main-image {
		margin: 24px 0 0;
	}
}
.location__body {
	max-width: 75%;
	margin: 50px 0 0;
}
.location__body h2 {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 48px;
	font-weight: 800;
	line-height: 120%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 772px) {
	.location__body {
		max-width: 100%;
		margin: 24px 0 0;
	}
	.location__body h2 {
		font-size: 26px;
	}
}
.location__body h3 {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 28px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 0;
}
@media (max-width: 772px) {
	.location__body h3 {
		font-size: 22px;
	}
}
.location__body p {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	margin: 0;
}
.location__body ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.location__body ul li {
	position: relative;
	color: var(--Black, #1c1c1a);
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	padding-left: 24px;
}
.location__body ul li::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f8aa36;
}
.location__body h2 + p {
	margin: 6px 0 0;
}
@media (max-width: 772px) {
	.location__body p {
		font-size: 14px;
	}
	.location__body ul {
		gap: 10px;
	}
	.location__body ul li {
		font-size: 14px;
	}
	.location__body ul li::after {
		width: 6px;
		height: 6px;
	}
	.location__body h2 + p {
		margin: 14px 0 0;
	}
}
.location__body h3 + p {
	margin: 16px 0 0;
}
@media (max-width: 772px) {
	.location__body h3 + p {
		margin: 12px 0 0;
	}
}
.location__body p + p {
	margin: 24px 0 0;
}
@media (max-width: 772px) {
	.location__body p + p {
		margin: 16px 0 0;
	}
}
.location__body p + h3,
.location__body p + ul {
	margin: 32px 0 0;
}
.blog {
	padding: 150px 0 100px;
}
.blog .blog__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 23px;
	margin: 50px 0 0;
	padding: 0;
	list-style: none;
}
@media (max-width: 772px) {
	.location__body p + ul {
		margin: 15px 0 0;
	}
	.blog {
		padding: 108px 0 50px;
	}
	.blog .blog__grid {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
	}
}
.blog .blog__grid .blog__item {
	border-radius: 10px;
	-webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 10px 10px 24px;
}
.blog .blog__grid .blog__item .blog__item__image {
	overflow: hidden;
	width: 100%;
	height: 294px;
	border-radius: 10px;
}
.blog .blog__grid .blog__item .blog__item__image img {
	width: 100%;
	height: 294px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	-o-object-position: top;
	object-position: top;
}
.blog .blog__grid .blog__item .blog__item__body {
	padding-left: 14px;
	padding-right: 14px;
}
.blog .blog__grid .blog__item img {
	width: 100%;
	height: 294px;
	border-radius: 10px;
}
.blog .blog__grid .blog__item h2 {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 20px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 12px 0 0;
}

.blog .blog__grid .blog__item h2 a {
	color: #000;
}

@media (max-width: 982px) {
	.blog .blog__grid {
		gap: 16px;
		margin: 24px 0 0;
	}
	.blog .blog__grid .blog__item .blog__item__image,
	.blog .blog__grid .blog__item .blog__item__image img {
		height: 264px;
	}
	.blog .blog__grid .blog__item .blog__item__body {
		padding-left: 10px;
		padding-right: 10px;
	}
	.blog .blog__grid .blog__item h2 {
		font-size: 18px;
		margin: 16px 0 0;
	}
}
.blog .blog__grid .blog__item p {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
	margin: 10px 0 0;
}
.blog .blog__grid .blog__item .blog__item__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
}
.blog .blog__grid .blog__item .blog__item__bottom .blog__item__bottom-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	width: 40px;
	height: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid rgba(213, 134, 74, 0.4);
	background: rgba(213, 134, 74, 0.1);
	border-radius: 50%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.blog .blog__grid .blog__item .blog__item__bottom .blog__item__bottom-link svg {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.blog
	.blog__grid
	.blog__item
	.blog__item__bottom
	.blog__item__bottom-link:hover {
	background: #d5864a;
}
.blog
	.blog__grid
	.blog__item
	.blog__item__bottom
	.blog__item__bottom-link:hover
	svg {
	stroke: #fff;
}
.blog .blog__grid .blog__item .blog__item__bottom .blog__item-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 13px;
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
}
@media (max-width: 982px) {
	.blog .blog__grid .blog__item p {
		font-size: 12px;
		margin: 6px 0 0;
	}
	.blog .blog__grid .blog__item .blog__item__bottom .blog__item__bottom-link {
		width: 36px;
		height: 36px;
	}
	.blog
		.blog__grid
		.blog__item
		.blog__item__bottom
		.blog__item__bottom-link
		svg {
		height: 10.82px;
	}
	.blog .blog__grid .blog__item .blog__item__bottom .blog__item-date {
		font-size: 12px;
		gap: 10px;
	}
}
.blog .blog__grid .blog__item .blog__item__bottom .blog__item-date img {
	width: 20px;
	height: 20px;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 0;
}
.blog .blog__grid .blog__item:hover .blog__item__image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.blog .blog__grid .blog__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-grid-column-span: 3;
	grid-column: span 3;
	margin-top: 27px;
}
@media (max-width: 772px) {
	.blog .blog__grid .blog__btn {
		-ms-grid-column-span: 2;
		grid-column: span 2;
		margin-top: 8px;
	}
}
@media (max-width: 500px) {
	.blog .blog__grid {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}
	.blog .blog__grid .blog__btn {
		-ms-grid-column-span: 1;
		grid-column: span 1;
	}
}
.article {
	padding: 140px 0 100px;
}
.article .article__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
}
@media (max-width: 982px) {
	.blog .blog__grid .blog__item .blog__item__bottom .blog__item-date img {
		width: 16px;
		height: 16px;
	}
	.article .article__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.article .article__header__image {
		width: 100%;
		max-height: 300px;
	}
}
.article .article__header__image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.article .article__header__image img {
	border-radius: 10px;
}
@media (max-width: 982px) {
	.article .article__header__image img {
		width: 100%;
		max-height: 300px;
	}
}
.article .article__header__content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.article .article__header__content h1 {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 48px;
	font-weight: 800;
	line-height: 120%;
	letter-spacing: 0;
	margin: 0;
}
.article .article__header__content .article__header__stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	margin-top: 40px;
}
.article
	.article__header__content
	.article__header__stats
	.article__header__stat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 13px;
}
.article
	.article__header__content
	.article__header__stats
	.article__header__stat
	img {
	width: 20px;
	height: 20px;
	-o-object-fit: contain;
	object-fit: contain;
}
.article
	.article__header__content
	.article__header__stats
	.article__header__stat
	span {
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0;
}
@media (max-width: 772px) {
	.article {
		padding: 108px 0 50px;
	}
	.article .article__header__content h1 {
		font-size: 28px;
	}
	.article .article__header__content .article__header__stats {
		gap: 32px;
		margin-top: 24px;
	}
	.article
		.article__header__content
		.article__header__stats
		.article__header__stat {
		gap: 10px;
	}
	.article
		.article__header__content
		.article__header__stats
		.article__header__stat
		img {
		width: 16px;
		height: 16px;
	}
	.article
		.article__header__content
		.article__header__stats
		.article__header__stat
		span {
		font-size: 12px;
	}
}
.article .article__header__content .article__header__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
}
.article
	.article__header__content
	.article__header__socials
	.article__header__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 40px;
	width: 40px;
	min-height: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(213, 134, 74, 0.1);
	transition: 0.5s;
}

.article
	.article__header__content
	.article__header__socials
	.article__header__social:hover {
	background: rgba(196, 126, 72, 0.199);
}

.article .article__body {
	max-width: 700px;
	margin: 90px auto 0;
}
.article .article__body h2 {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 28px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	text-align: left;
	margin: 32px 0 0;
}
@media (max-width: 772px) {
	.article .article__header__content .article__header__socials {
		gap: 10px;
		margin-top: 24px;
	}
	.article
		.article__header__content
		.article__header__socials
		.article__header__social {
		min-width: 34px;
		min-height: 34px;
		width: 34px;
		height: 34px;
	}
	.article .article__body {
		margin: 27px auto 0;
	}
	.article .article__body h2 {
		font-size: 22px;
		margin: 20px 0 0;
	}
}
.article .article__body h3 {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 20px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	text-align: left;
	margin: 32px 0 0;
}
@media (max-width: 772px) {
	.article .article__body h3 {
		font-size: 18px;
		margin: 20px 0 0;
	}
}
.article .article__body p {
	color: #000;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	margin: 16px 0 0;
}
@media (max-width: 772px) {
	.article .article__body p {
		font-size: 14px;
		margin: 10px 0 0;
	}
}
.article .article__body img {
	width: 100%;
	border-radius: 10px;
	margin-top: 32px;
}
.article .article__body ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 24px 0 0 20px;
	padding: 0;
}
.article .article__body ul li {
	position: relative;
	color: #000;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 170%;
	letter-spacing: 0;
	padding-left: 19px;
}
.article .article__body ul li::after {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: #f8aa36;
	border-radius: 50%;
}
.article .article__body .article-blog-link {
	position: relative;
	display: block;
	color: #f8aa36;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 0;
	margin: 50px 0 0;
	padding: 0 0 0 28px;
}
.article .article__body .article-blog-link::after {
	content: '';
	width: 16px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url(../img/svg/arrow-gold.svg) 0 0 / contain no-repeat;
}
.section-title {
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 48px;
	font-weight: 800;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}
@media (max-width: 921px) {
	.section-title {
		font-size: 28px;
	}
}
.section-description {
	max-width: 600px;
	margin: 14px auto 0;
	color: #797979;
	font-family: 'Host Grotesk';
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
}
@media (max-width: 921px) {
	.section-description {
		font-size: 16px;
	}
}
@media (max-width: 772px) {
	.article .article__body ul {
		margin: 20px 0 0;
	}
	.article .article__body ul li {
		font-size: 14px;
	}
	.article .article__body .article-blog-link {
		font-size: 14px;
		margin: 20px 0 0;
	}
	.section-title br {
		display: none;
	}
	.section-description {
		font-size: 14px;
	}
}
.gold {
	color: #f8aa36;
}
.btn--primary {
	color: #1c1c1a;
	font-family: 'Host Grotesk';
	font-style: Bold;
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	letter-spacing: 0;
	border-radius: 40px;
	background: #f7c923;
	padding: 14px 36px 17px;
	border: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	cursor: pointer;
}
.btn--primary:hover {
	color: white;
	background: #D9AB0A;
}
.page-title {
	color: #000;
	font-family: 'Host Grotesk';
	font-style: ExtraBold;
	font-size: 62px;
	font-weight: 800;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}
@media (max-width: 772px) {
	.page-title {
		font-size: 28px;
	}
	.btn--secondary {
		width: 100%;
	}
}
.btn--secondary {
	color: #f8aa36;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	border: 1px solid #d5864a;
	border-radius: 40px;
	background: #fff;
	padding: 16px 47px 18px;
	cursor: pointer;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.btn--secondary:hover {
	color: #fff;
	background: #d5864a;
}
