:root {
	--font-family: 'Inter', sans-serif;
	--content-width: 1280px;
	--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 {
	width: 100%;
	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;
}
.btn--primary {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	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: 32px;
	background: #c46a2b;
	padding: 5px 5px 5px 36px;
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	border: 0;
}
.btn--primary .btn--arrow {
	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;
	max-width: 43px;
	min-width: 43px;
	width: 43px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
	background: #a05926;
}
@media screen and (max-width: 768px) {
	.btn--primary {
		width: 100%;
		font-size: 14px;
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.btn--primary span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
.btn--white {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	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: 32px;
	background: #fff;
	padding: 5px 5px 5px 36px;
	color: #c46a2b;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	border: 1px solid #fff;
}
.btn--white .btn--arrow {
	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;
	max-width: 43px;
	min-width: 43px;
	width: 43px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	background: rgba(196, 106, 43, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--white .btn--arrow svg,
.btn--white .btn--arrow svg path {
	fill: #c46a2b;
}
.btn--white:hover {
	color: #fff;
	background: 0 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--white:hover .btn--arrow {
	background: rgba(255, 255, 255, 0.1921568627);
}
.btn--white:hover svg,
.btn--white:hover svg path {
	fill: #fff;
}
@media screen and (max-width: 768px) {
	.btn--white {
		width: 100%;
		font-size: 14px;
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.btn--white span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
.btn--transparent {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	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: 32px;
	background: 0 0;
	border: 1px solid #c46a2b;
	padding: 5px 5px 5px 36px;
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.btn--transparent .btn--arrow {
	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;
	max-width: 43px;
	min-width: 43px;
	width: 43px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.2);
}
.btn--transparent .btn--arrow svg,
.btn--transparent .btn--arrow svg path {
	fill: #fff;
}
.btn--transparent:hover {
	background: #a05926;
}
@media screen and (max-width: 768px) {
	.btn--transparent {
		width: 100%;
		font-size: 14px;
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.btn--transparent span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
.btn--white-trasparent {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	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: 32px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid #fff;
	padding: 5px 5px 5px 36px;
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.btn--white-trasparent .btn--arrow {
	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;
	max-width: 43px;
	min-width: 43px;
	width: 43px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.2);
}
.btn--white-trasparent:hover {
	background: #a05926;
}
@media screen and (max-width: 768px) {
	.btn--white-trasparent {
		width: 100%;
		font-size: 14px;
		gap: 0;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.btn--white-trasparent span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
.section-title {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
}
.section__btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
}
.error {
	border: 1px solid red !important;
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	-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: 17px 0 13px;
	z-index: 100;
}
.header .btn--primary {
	font-size: 14px;
}
.li-mobile {
	display: none;
}
@media screen and (max-width: 910px) {
	.li-mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header__content .header__logo img {
		height: 40px;
		width: auto;
		-o-object-fit: contain;
		object-fit: contain;
	}
}
.header__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 50px;
}
@media screen and (max-width: 910px) and (max-width: 910px) {
	.header__content ul .btn--primary {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
		margin-top: 12px;
	}
	.header__content ul .btn--primary span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
@media screen and (max-width: 910px) {
	.header__content ul {
		display: none;
	}
	.header__content ul .btn--primary {
		color: #fff;
	}
	.header__content ul.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: absolute;
		left: 0;
		top: 73px;
		background: #fff;
		border-top: 1px solid #dcdcdc;
		width: 100%;
		padding: 32px 20px 24px;
		gap: 20px;
	}
}
.header__content ul li a {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 14px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header__content ul li a:hover {
	color: #c46a2b;
}
.hero {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 200px 0 30vh;
	margin-top: 73px;
	min-height: calc(100vh - 70px);
	background: url(../img/hero-bg.jpg) left top/cover no-repeat;
}
.hero .hero-title {
	max-width: 868px;
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 58px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0;
}
@media screen and (max-width: 768px) {
	.section-title {
		font-size: 28px;
	}
	.section__btn {
		width: 100%;
	}
	.hero {
		padding: 200px 0 20vh;
	}
	.hero .hero-title {
		font-size: 29px;
	}
}
.hero .hero-description {
	max-width: 572px;
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	margin: 10px 0 32px;
}
.hero .hero__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}
.hero .hero__btns a {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 0;
	min-width: 299px;
	padding: 5px 5px 5px 28px;
}
.hero .hero__btns a span:first-child {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.hero .hero-description {
		font-size: 16px;
		margin: 10px 0 24px;
	}
	.hero .hero__btns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}
	.hero .hero__btns a {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 0;
	}
	.hero .hero__btns a span:first-child {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: center;
	}
}
.hero .hero__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	list-style: none;
	padding: 0;
	margin: 44px 0 0;
}
.hero .hero__bottom li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.hero .hero__bottom li span {
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: 0;
	text-align: left;
}
@media screen and (max-width: 781px) {
	.hero .hero__bottom {
		margin: 40px 0 0;
		gap: 22px;
	}
	.hero .hero__bottom li span {
		font-size: 14px;
	}
}
.preference {
	padding-top: 100px;
}
.preference .preference__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 25px 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.preference .preference__list .preference__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	border-radius: 2px;
	-webkit-box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 24px;
}
.preference .preference__list .preference__item .preference__title {
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	margin: 0;
}
.services {
	margin-top: 100px;
	margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.preference {
		padding-top: 50px;
	}
	.preference .preference__list {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.preference .preference__list .preference__item {
		padding: 14px 20px 13px;
		gap: 16px;
	}
	.preference .preference__list .preference__item img {
		max-width: 24px;
		max-height: 24px;
	}
	.preference .preference__list .preference__item .preference__title {
		font-size: 14px;
	}
	.services {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}
.services__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin: 50px 0;
	padding: 0;
	list-style: none;
}
.services__grid .services__grid__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.services__grid .services__grid__item img {
	width: 100%;
	min-height: 292px;
	object-fit: cover;
	border-radius: 2px;
	-webkit-box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.services__grid .services__grid__item img:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.services__grid .services__grid__item .services__grid__item--title {
	color: #c46a2b;
	font-family: Inter;
	font-style: Bold;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
	.services__grid {
		gap: 24px;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		margin: 24px 0;
	}
	.services__grid .services__grid__item img {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.services__grid .services__grid__item .services__grid__item--title {
		margin: 16px 0 0;
	}
}
.services__grid .services__grid__item .services__grid__item--description {
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: 0;
	margin: 12px 0 0;
}
.services__grid
	.services__grid__item:nth-child(2n)
	.services__grid__item--title {
	margin: 0;
}
@media screen and (max-width: 768px) {
	.services__grid
		.services__grid__item:nth-child(2n)
		.services__grid__item--title {
		margin: 16px 0 0;
	}
}
.services__grid .services__grid__item:nth-child(2n) img {
	margin-top: 22px;
}
.approach {
	background-image: url(../img/approach-bg.webp);
	color: #fff;
}
.approach__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 58px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.approach__content .approach__image {
	height: 100%;
}
.approach__content .approach__image img {
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 2px;
	-webkit-box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 50px 4px rgba(0, 0, 0, 0.1);
	transition: .5s;
}

.approach__content .approach__image img:hover {
	filter: grayscale(0);	
}

.approach__content .approach__text {
	max-width: 525px;
	padding-right: 20px;
}
.approach__content .approach__text h2 {
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.services__grid .services__grid__item:nth-child(2n) img {
		margin-top: 0;
	}
	.approach__content {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.approach__content .approach__image {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.approach__content .approach__text {
		max-width: 100%;
		padding: 0 20px 50px;
	}
	.approach__content .approach__text h2 {
		font-size: 28px;
	}
}
.approach__content .approach__text p {
	color: rgba(255, 255, 255, 0.7);
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	margin: 16px 0 20px;
}
@media screen and (max-width: 768px) {
	.approach__content .approach__text p {
		font-size: 14px;
		margin: 14px 0 20px;
	}
}
.approach__content .approach__text 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 0 34px;
	list-style: none;
}
.approach__content .approach__text ul li {
	position: relative;
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	padding-left: 37px;
}
.approach__content .approach__text ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url(../img/svg/ok-app.svg);
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 50%;
}
.approach.values-culture {
	background-image: url(../img/values-bg.webp);
	color: #000;
}
.approach.values-culture .approach__text {
	margin-left: auto;
}
.approach.values-culture .approach__text h2 {
	color: #111;
}
.approach.values-culture .approach__text p {
	color: rgba(17, 17, 17, 0.7);
}
.approach.values-culture .approach__text ul li {
	color: #111;
}
.approach.values-culture .approach__text .approach__phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	margin-bottom: 32px;
}
.approach.values-culture .approach__text .approach__phone h4 {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0;
	margin: 0;
}
.approach.values-culture .approach__text .approach__phone a {
	color: #c46a2b;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0;
}
.ramp {
	color: #fff;
	background: #c46a2b;
	padding: 60px 0;
}
@media screen and (max-width: 768px) {
	.approach__content .approach__text ul {
		margin: 0 0 24px;
	}
	.approach__content .approach__text ul li {
		font-size: 14px;
		padding-left: 30px;
	}
	.approach__content .approach__text ul li::before {
		width: 16px;
		height: 16px;
	}
	.ramp {
		padding: 50px 0;
	}
}
.ramp .ramp__content {
	text-align: center;
}
.ramp .ramp__content h3 {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	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;
	padding: 12px 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 14px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.ramp .ramp__content h3 {
		font-size: 12px;
		padding: 12px 21px;
	}
}
.ramp .ramp__content h2 {
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	margin: 19px 0 16px;
}
@media screen and (max-width: 768px) {
	.ramp .ramp__content h2 {
		font-size: 28px;
		margin: 14px 0;
	}
}
.ramp .ramp__content p {
	max-width: 525px;
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	margin: 0 auto 32px;
}
.approach.services-area {
	padding: 100px 0;
	background: #35494e;
}
@media screen and (max-width: 768px) {
	.ramp .ramp__content p {
		font-size: 14px;
		margin: 0 auto 24px;
	}
	.approach.services-area .approach__text {
		-webkit-box-ordinal-group: -1;
		-ms-flex-order: -2;
		order: -2;
		padding: 0 20px 20px;
	}
	.approach.services-area {
		padding: 50px 0;
	}
	.approach.services-area .approach__content {
		gap: 0;
	}
}
.approach.services-area .white {
	color: #fff;
	opacity: 1;
}
.approach.services-area h3 {
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 20px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	margin: 24px 0 0;
}
.approach.services-area h3 + p {
	margin: 12px 0 24px;
}
.approach.services-area ul {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
}
.form-section {
	padding: 100px 0;
	background: url(../img/contact-form.webp);
}
.form-section .form-section__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 128px;
}
.form-section .form-section__wrapper .form-section__contacts {
	max-width: 525px;
}
.form-section .form-section__wrapper .form-section__contacts > h2 {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0;
}
@media screen and (max-width: 880px) {
	.form-section {
		padding: 50px 0;
	}
	.form-section .form-section__wrapper {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.form-section .form-section__wrapper .form-section__contacts {
		max-width: 100%;
	}
	.form-section .form-section__wrapper .form-section__contacts > h2 {
		font-size: 28px;
		text-align: center;
		margin: 0 auto;
	}
}
.form-section .form-section__wrapper .form-section__contacts > p {
	max-width: 525px;
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	margin: 16px 0 32px;
}
.form-section .form-section__wrapper .form-section__contacts .contacts__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.form-section
	.form-section__wrapper
	.form-section__contacts
	.contacts__form
	.contacts__form__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 18px;
	border-radius: 2px;
	background: #fff;
	padding: 21px 24px 24px;
}
@media screen and (max-width: 880px) {
	.form-section .form-section__wrapper .form-section__contacts > p {
		font-size: 14px;
		text-align: center;
		margin: 14px auto 16px;
	}
	.form-section .form-section__wrapper .form-section__contacts .contacts__form {
		gap: 12px;
	}
	.form-section
		.form-section__wrapper
		.form-section__contacts
		.contacts__form
		.contacts__form__item {
		padding: 11px 20px 12px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.form-section
		.form-section__wrapper
		.form-section__contacts
		.contacts__form
		.contacts__form__item
		.contacts__form__item__image {
		max-width: 26px;
		max-height: 26px;
	}
}
.form-section
	.form-section__wrapper
	.form-section__contacts
	.contacts__form
	.contacts__form__item
	.contacts__form__item__image {
	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;
}
.form-section
	.form-section__wrapper
	.form-section__contacts
	.contacts__form
	.contacts__form__item
	.contacts__form__item__right
	h3 {
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	margin: 0;
}
@media screen and (max-width: 880px) {
	.form-section
		.form-section__wrapper
		.form-section__contacts
		.contacts__form
		.contacts__form__item
		.contacts__form__item__right
		h3 {
		font-size: 12px;
	}
}
.form-section
	.form-section__wrapper
	.form-section__contacts
	.contacts__form
	.contacts__form__item
	.contacts__form__item__right
	a {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	margin: 0;
}
.form-section__form {
	width: 100%;
	max-width: 575px;
	margin: 0 auto;
	padding: 50px;
	-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;
}
.form-section__title {
	color: #111;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 22px;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
}
@media screen and (max-width: 880px) {
	.form-section
		.form-section__wrapper
		.form-section__contacts
		.contacts__form
		.contacts__form__item
		.contacts__form__item__right
		a {
		font-size: 14px;
	}
	.form-section__form {
		max-width: 100%;
		padding: 20px;
	}
	.form-section__title {
		font-size: 18px;
	}
}
.form-section__subtitle {
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	margin: 16px 0 27px;
}
@media screen and (max-width: 880px) {
	.form-section__subtitle {
		font-size: 14px;
		margin: 16px 0 20px;
	}
}
.form-section__field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	background: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	padding: 18px 24px;
	margin-bottom: 14px;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
.form-section__field:focus-within {
	border-color: #c46a2b;
}
.form-section__field input,
.form-section__field select,
.form-section__field textarea {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border: none;
	background: 0 0;
	outline: 0;
	color: #111;
	font-family: Inter;
	font-style: Regular;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	font-family: inherit;
}
@media screen and (max-width: 880px) {
	.form-section__field {
		padding: 15px 20px;
		gap: 16px;
	}
	.form-section__field input,
	.form-section__field select,
	.form-section__field textarea {
		font-size: 14px;
	}
}
.form-section__field input::-webkit-input-placeholder,
.form-section__field select::-webkit-input-placeholder,
.form-section__field textarea::-webkit-input-placeholder {
	color: #999;
}
.form-section__field input::-moz-placeholder,
.form-section__field select::-moz-placeholder,
.form-section__field textarea::-moz-placeholder {
	color: #999;
}
.form-section__field input:-ms-input-placeholder,
.form-section__field select:-ms-input-placeholder,
.form-section__field textarea:-ms-input-placeholder {
	color: #999;
}
.form-section__field input::-ms-input-placeholder,
.form-section__field select::-ms-input-placeholder,
.form-section__field textarea::-ms-input-placeholder {
	color: #999;
}
.form-section__field input::placeholder,
.form-section__field select::placeholder,
.form-section__field textarea::placeholder {
	color: #999;
}
.form-section__field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	color: #888;
}
.form-section__field--select {
	border: 1px solid #dcdcdc;
	-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;
}
.form-section__field--select select {
	color: #111;
}
.form-section__field--select .form-section__chevron {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: none;
}
.form-section__field--select .form-section__chevron svg {
	width: 18px;
	height: 18px;
	stroke: #111;
}
.form-section__field--textarea {
	height: auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-top: 18px;
	padding-bottom: 18px;
}
.form-section__field--textarea textarea {
	resize: none;
	width: 100%;
	min-height: 90px;
	line-height: 1.5;
}
.form-section__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	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;
}
.form-section__icon svg {
	width: 22px;
	height: 22px;
	stroke: #c46a2b;
	fill: none;
}
.form-section__icon--top {
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-top: 2px;
}
.form-section__submit {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	border: none;
	cursor: pointer;
	padding: 0;
	border-radius: 0;
	overflow: hidden;
	margin-top: 8px;
	-webkit-transition: -webkit-filter 0.2s;
	transition: filter 0.2s;
	transition:
		filter 0.2s,
		-webkit-filter 0.2s;
}
.form-section__submit:hover {
	-webkit-filter: brightness(1.08);
	filter: brightness(1.08);
}
.form-section__submit:active {
	-webkit-transform: scale(0.98);
	-ms-transform: scale(0.98);
	transform: scale(0.98);
}
.footer {
	padding: 50px 0 24px;
	background: #314547;
}
.footer .footer__top {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 2fr 1fr 1fr;
	grid-template-columns: 2fr 1fr 1fr;
	padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
	.approach.services-area h3 {
		margin: 14px 0 0;
	}
	.approach.services-area h3 + p {
		margin: 10px 0 0;
	}
	.approach.services-area ul {
		margin: 20px 0;
	}
	.approach.services-area .approach__image {
		padding: 0 20px;
		height: 300px;
	}
	.approach.services-area .approach__image iframe {
		height: 300px;
	}
	.footer .footer__top {
		padding-bottom: 24px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}
	.footer .footer__top .mt-12 {
		margin-top: 12px;
	}
}
.footer .footer__top .footer__col.footer__col__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
}
.footer .footer__top .footer__col-title {
	color: #fff;
	font-family: Inter;
	font-style: Semi Bold;
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
	.footer .footer__top .footer__col-title {
		font-size: 16px;
		margin: 0 0 14px;
	}
}
.footer .footer__top .footer__col__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer .footer__top .footer__col__list li {
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
}
.footer .footer__top .footer__col__list li a {
	color: #fff;
	font-family: Inter;
	font-style: Regular;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.footer .footer__top .footer__col__list li a:hover {
	color: #c46a2b;
}
.footer .footer__top .socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}
.footer .footer__top .socials .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;
	max-width: 42px;
	min-width: 42px;
	width: 42px;
	max-height: 42px;
	min-height: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer .footer__top .socials .social:hover {
	background: rgba(196, 106, 43, 0.7);
}
.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
	.footer .footer__top .footer__col__list {
		gap: 12px;
	}
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
		gap: 27px;
		text-align: center;
	}
}
.footer__bottom p {
	color: #fff;
	font-style: Light;
	font-size: 14px;
	font-weight: 300;
	line-height: 17px;
	margin: 0;
}
.social-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.mobile {
	display: none !important;
}
@media screen and (max-width: 768px) {
	.mobile {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 14px;
	}
	.pc {
		display: none !important;
	}
	.footer-logotype img {
		width: auto;
		max-height: 40px;
		-o-object-fit: contain;
		object-fit: contain;
	}
}
.burger {
	display: none;
	--burger-width: 22px;
	--burger-height: 14px;
	--burger-line-height: 2px;
	position: relative;
	border: none;
	padding: 0;
	width: var(--burger-width);
	height: var(--burger-height);
	color: #2e3b69;
	background-color: transparent;
	cursor: pointer;
}
.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;
}
.burger::before {
	top: 0;
}
.burger::after {
	top: calc(100% - var(--burger-line-height));
	width: 13px;
	right: 0;
	left: auto;
}
.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;
}
.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;
}
@media screen and (max-width: 910px) {
	.header__right .btn--primary {
		display: none;
	}
	.burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
