@font-face {
	font-family: 'Gotham Pro';
	src: url('../../assets/fonts/GothamProBold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gotham Pro';
	src: url('../../assets/fonts/GothamProMedium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gotham Pro';
	src: url('../../assets/fonts/GothamProRegular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.15;
}

ul,
ol {
	list-style: none;
}

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

button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

input[type='checkbox'],
input[type='radio'],
input[type='file'] {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

html,
body {
	scroll-behavior: smooth;
	font-style: normal;
	font-weight: 400;
	font-family: 'Gotham Pro', sans-serif;
	background: #ffffff;
	color: #000;
}

button {
	cursor: pointer;
}

a,
button,
input {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.no-scroll {
	overflow: hidden;
}

.swiper-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 30px;
	padding: 9px;
	background: #f65e01;
}
.swiper-btn:hover {
	box-shadow: 0 4px 4px 0 #6c6c6c;
}

.swiper-button-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.btn-primary {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	border-radius: 48px;
	background: linear-gradient(274deg, #ffc420 0%, #fe4b08 39%, #fe4b08 57%, #ffc420 100%);
	background-size: 200% 200%;
	box-shadow: 12px 0 12px 0 rgba(255, 255, 255, 0.25) inset,
		-2px -4px 8px 0 rgba(255, 255, 255, 0.25) inset;
	cursor: pointer;
}
.btn-primary:hover {
	background-position: 100% 0;
}
@media (max-width: 767px) {
	.btn-primary {
		font-size: 16px;
		font-weight: 700;
		line-height: 18px;
		text-align: center;
	}
}

.btn-secondary {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	border-radius: 40px;
	border: 2px solid #9498ab;
	background: #f6f6f6;
	box-shadow: 4px 4px 10px 2px #bcbcbc inset, -4px -4px 10px 2px #fff inset;
}
.btn-secondary:hover {
	color: #f65e01;
	border-radius: 40px;
	border: 2px solid #f65e01;
	background: #ececec;
	box-shadow: 4px 4px 10px 2px #bcbcbc inset, -4px -4px 10px 2px #fff inset;
}
@media (max-width: 767px) {
	.btn-secondary {
		font-size: 16px;
		font-weight: 700;
		line-height: 18px;
		text-align: center;
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	will-change: opacity, transform;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-opacity {
	opacity: 0;
	transition: opacity 0.8s ease;
	will-change: opacity;
}

.fade-opacity.is-visible {
	opacity: 1;
}

.scroll-to-top {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 20px;
	bottom: 40px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #222222;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 999;
}
.scroll-to-top:hover {
	background: #f65e01;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.breadcrumbs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	overflow: hidden;
}
.breadcrumbs__item {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #9498ab;
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	text-align: left;
	flex-shrink: 0;
}
@media (max-width: 991px) {
	.breadcrumbs__item {
		font-size: 14px;
	}
}
.breadcrumbs__item a {
	display: block;
}
.breadcrumbs__item:last-child {
	color: #000;
}

.title {
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
@media (max-width: 1024px) {
	.title {
		font-size: 32px;
		font-weight: 500;
		line-height: 34px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
	}
}
.title span:not(:empty) {
	color: #f65e01;
}
.title span:empty {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 20px;
	background: #f65e01;
	margin-left: 5px;
}
@media (max-width: 1024px) {
	.title span:empty {
		width: 7px;
		height: 7px;
		border-radius: 20px;
	}
}
@media (max-width: 767px) {
	.title span:empty {
		width: 4px;
		height: 4px;
		border-radius: 20px;
	}
}

.pagination__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.pagination__item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagination__item--next .pagination__link,
.pagination__item--prev .pagination__link {
	width: auto;
	height: auto;
	border-radius: 0;
	background: none !important;
}
.pagination__link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: transparent;
}
.pagination__link svg {
	fill: #000;
}
.pagination__item.is-active .pagination__link {
	color: #ffffff;
	background: #f65e01;
}
.pagination__item:hover .pagination__link {
	color: #ffffff;
	background: #f65e01;
}

.resume-upload {
	position: relative;
	width: 100%;
}

.resume-upload__area {
	position: relative;
	padding: 23px 24px;
	text-align: center;
	border-radius: 25px;
	border: 2px dashed #f65e01;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.resume-upload__area.dragover {
	border-color: #f65e01;
	background: #f5f9ff;
}

.resume-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.resume-upload__actions {
	margin-top: 15px;
}

.resume-upload__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
}

.resume-upload__actions button {
	padding: 6px 12px;
	border: 1px solid #f65e01;
	background: #ffffff;
	color: #f65e01;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
	cursor: pointer;
}

.resume-upload__actions button:hover {
	background: #f65e01;
	color: #ffffff;
}

.container {
	max-width: 1440px;
	margin: auto;
	padding: 0 84px;
}
@media (max-width: 1024px) {
	.container {
		padding: 0 40px;
	}
}
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
}

.header-wrap {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	z-index: 1111;
	transition: box-shadow 0.2s ease;
}

.header-wrap--scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 1111;
}
@media (max-width: 767px) {
	.header {
		padding-top: 14px;
		padding-bottom: 14px;
	}
}
.header__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 767px) {
	.header__logo {
		width: 114px;
		height: 34px;
		object-fit: cover;
	}
}
.header__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 32px;
	padding: 13px 20px;
	border-radius: 20px;
	background: #222222;
}
@media (max-width: 1024px) {
	.header__nav {
		display: none;
	}
}
.header__nav-item {
	position: relative;
	cursor: pointer;
	z-index: 2222;
}
.header__nav-item:hover .header__nav-item--list {
	opacity: 1;
	pointer-events: all;
}
.header__nav-item:hover .header__nav-item--main {
	color: #f65e01;
}
.header__nav-item:hover .header__nav-item--main > svg {
	fill: #f65e01;
	transform: rotateX(180deg);
}
.header__nav-item--main {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
@media (max-width: 1024px) {
	.header__nav-item--main {
		color: #000;
		font-size: 24px;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.header__nav-item--main {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
	}
}
.header__nav-item--main > svg {
	fill: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.header__nav-item--main > svg {
		fill: #000;
	}
}
@media (max-width: 1024px) {
	.header__nav-item--main > img {
		color: #000;
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 767px) {
	.header__nav-item--main > img {
		width: 20px;
		height: 20px;
	}
}
.header__nav-item--list {
	position: absolute;
	left: 0;
	top: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 10px;
	border-radius: 5px;
	background: #202020;
}
.header__nav-item--item {
	padding: 10px;
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
}
.header__nav-item--item a {
	display: block;
	width: 100%;
}
.header__nav-item--item:hover {
	color: #f65e01;
}
.header__nav-link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
.header__nav-link:hover {
	color: #f65e01;
}
.header__contacts {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 3px;
}
@media (max-width: 1024px) {
	.header__contacts {
		display: none;
	}
}
.header__contacts-phone {
	position: relative;
	width: 200px;
}
.header__contacts-phone a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}
.header__contacts-phone button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	color: #f65e01;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0px, rgb(255, 255, 255) 25px);
	padding-left: 30px;
	z-index: 2;
}
.header__contacts-email {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #222222;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}
.header__mobile-panel {
	display: none;
}
@media (max-width: 1024px) {
	.header__mobile-panel {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		gap: 20px;
	}
}
.header__burger {
	background: none;
	border: 0;
	cursor: pointer;
}
.header__burger .line {
	fill: #f65e01;
	transition: transform 0.35s ease, opacity 0.25s ease;
	transform-origin: center;
}
.header__burger.open .line--top {
	transform: translateY(10px) rotate(45deg);
}
.header__burger.open .line--middle {
	opacity: 0;
}
.header__burger.open .line--bottom {
	transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu-wrap {
	position: absolute;
	left: 0;
	top: 87px;
	width: 100%;
	height: fit-content;
	padding: 13px 0 64px 0;
	border-bottom: 2px solid #f65e01;
	background: #ffffff;
	z-index: 2;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.mobile-menu-wrap {
		top: 63px;
		height: calc(100vh - 63px);
	}
}
.mobile-menu-wrap.open {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}
@media (max-width: 767px) {
	.mobile-menu-wrap {
		border-bottom: 0;
	}
}

.mobile-menu {
	width: 100%;
}
.mobile-menu__top {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: 20px;
}
.mobile-menu__nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.mobile-menu__nav-item {
	width: 100%;
	position: relative;
	cursor: pointer;
}
.mobile-menu__nav-item.active .mobile-menu__nav-item--wrap {
	max-height: 500px;
	opacity: 1;
}
.mobile-menu__nav-item.active .mobile-menu__nav-item--main > svg {
	transform: rotateX(180deg);
}
.mobile-menu__nav-item--main {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}
.mobile-menu__nav-item--main > svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.mobile-menu__nav-item--wrap {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.mobile-menu__nav-item--list {
	margin-top: 10px;
	padding: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	border-radius: 5px;
	background: #f65e01;
}
.mobile-menu__nav-item--item {
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	border-bottom: 1px solid #ffa770;
}
.mobile-menu__nav-item--item a {
	display: block;
	width: 100%;
}
.mobile-menu__nav-link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}
.mobile-menu__socials {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}
@media (max-width: 767px) {
	.mobile-menu__socials {
		margin-top: 0;
		position: absolute;
		left: 16px;
		bottom: 32px;
	}
}
.mobile-menu__social {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 30px;
	flex-shrink: 0;
	background: #2c2c2c;
}
.mobile-menu__social:hover {
	background: #f65e01;
}

.hero-wrap {
	background-image: url(../img/hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
}
@media (max-width: 1024px) {
	.hero-wrap {
		background-image: url(../img/hero-tablet.jpg);
	}
}

.hero {
	padding: 50px 0 100px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	height: 787px;
}
@media (min-width: 1440px) {
	.hero {
		padding: 40px 0 100px 0;
		height: calc(100vh - 87px);
	}
}
@media (max-width: 1024px) {
	.hero {
		padding: 40px 0 110px 0;
		height: 1107px;
	}
}
@media (max-width: 767px) {
	.hero {
		padding: 20px 0;
		height: 752px;
	}
}
.hero__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 709px;
	width: 100%;
	height: 100%;
}
@media (max-width: 1024px) {
	.hero__left {
		justify-content: flex-start;
	}
}
.hero__left-top {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}
@media (max-width: 1024px) {
	.hero__left-top {
		gap: 20px;
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.hero__left-top {
		margin-bottom: 20px;
	}
}
.hero__title {
	font-family: 'M PLUS 1', sans-serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 70px;
	text-align: left;
	text-transform: uppercase;
}
.hero__title span {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 20px;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.hero__title {
		font-size: 48px;
		font-weight: 500;
		line-height: 50px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.hero__title {
		font-size: 32px;
		font-weight: 500;
		line-height: 36px;
		text-align: center;
	}
}
.hero__text {
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
	text-align: left;
	min-height: 71px;
}
@media (max-width: 1024px) {
	.hero__text {
		font-size: 20px;
		font-weight: 500;
		line-height: 22px;
		text-align: left;
		min-height: 43px;
	}
}
@media (max-width: 767px) {
	.hero__text {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: center;
		min-height: 60px;
	}
}
.hero__left-middle {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1024px) {
	.hero__left-middle {
		margin-bottom: 57px;
	}
}
@media (max-width: 767px) {
	.hero__left-middle {
		gap: 10px;
		margin-bottom: 44px;
	}
}
@media (max-width: 480px) {
	.hero__left-middle {
		flex-direction: column;
		width: 100%;
	}
}
.hero__left-bottom-middle {
	display: none;
}
@media (max-width: 1024px) {
	.hero__left-bottom-middle {
		max-width: 308px;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 13px;
		margin-bottom: 108px;
	}
}
@media (max-width: 1024px) and (max-width: 767px) {
	.hero__left-bottom-middle {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 5px;
		max-width: 212px;
		margin-bottom: 0;
	}
}
@media (max-width: 1024px) and (max-width: 767px) {
	.hero__left-bottom-middle img {
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 1024px) {
	.hero__left-bottom-middle p {
		font-size: 20px;
		font-weight: 400;
		line-height: 22px;
		text-align: left;
	}
}
@media (max-width: 1024px) and (max-width: 767px) {
	.hero__left-bottom-middle p {
		font-size: 13px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.hero__btn-primary {
	width: 291px;
	height: 68px;
}
@media (max-width: 767px) {
	.hero__btn-primary {
		width: 173px;
		height: 51px;
	}
}
@media (max-width: 480px) {
	.hero__btn-primary {
		width: 100%;
	}
}
.hero__btn-secondary {
	width: 291px;
	height: 68px;
}
@media (max-width: 767px) {
	.hero__btn-secondary {
		width: 173px;
		height: 51px;
	}
}
@media (max-width: 480px) {
	.hero__btn-secondary {
		width: 100%;
	}
}
.hero__left-bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 50px;
}
@media (max-width: 1024px) {
	.hero__left-bottom {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.hero__left-bottom {
		display: none;
	}
}
.hero__left-bottom--item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}
.hero__left-bottom--item p {
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
.hero__left-bottom--item span {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 1024px) {
	.hero__left-bottom--item {
		max-width: 203px;
		width: 100%;
	}
}
.hero__right {
	max-width: 308px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 13px;
}
.hero__right p {
	font-size: 24px;
	font-weight: 400;
	line-height: 30px;
	text-align: left;
}
@media (max-width: 1024px) {
	.hero__right {
		display: none;
	}
}
.hero__right-arrow {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 3s ease, transform 3s ease;
}
.hero__right-arrow.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.advantages-wrap {
	background: url(../img/bg-advantages.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 50px 0;
}
@media (max-width: 1024px) {
	.advantages-wrap {
		padding: 40px 0 70px 0;
	}
}
@media (max-width: 767px) {
	.advantages-wrap {
		padding: 50px 0;
	}
}

.advantages {
	padding: 50px 30px;
	border-radius: 40px;
	background: rgba(146, 146, 146, 0.1);
	backdrop-filter: blur(40px);
}
@media (max-width: 1024px) {
	.advantages {
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.advantages {
		padding: 12px;
		border-radius: 20px;
	}
}
.advantages__title {
	max-width: 656px;
	width: 100%;
	margin: auto;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.advantages__title {
		margin-bottom: 10px;
	}
}
.advantages__text {
	max-width: 488px;
	width: 100%;
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.advantages__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: center;
	}
}
.advantages__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}
@media (max-width: 1024px) {
	.advantages__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.advantages__list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.advantages__item {
	padding: 16px;
	border-radius: 10px;
	background: #ffffff;
	min-height: 230px;
}
@media (max-width: 1024px) {
	.advantages__item {
		min-height: 250px;
	}
}
@media (max-width: 480px) {
	.advantages__item {
		min-height: auto;
	}
}
.advantages__item-img {
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.advantages__item-img {
		margin-bottom: 10px;
	}
}
.advantages__item-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.advantages__item-title {
		font-size: 18px;
		font-weight: 500;
		line-height: 20px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.advantages__item-title {
		margin-bottom: 5px;
	}
}
.advantages__item-text {
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 1024px) {
	.advantages__item-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.advantages__item-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}

.clients {
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.clients {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.clients {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.clients__title {
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.clients__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.clients__title {
		margin-bottom: 20px;
	}
}
@media (max-width: 1024px) {
	.clients__swiper {
		width: calc(100% + 40px);
		margin-right: -40px;
	}
}
@media (max-width: 767px) {
	.clients__swiper {
		width: 100%;
		margin-right: 0;
	}
}
.clients__list {
	align-items: center;
}
.clients__list-item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.clients__btn {
	width: 291px;
	height: 68px;
	border-radius: 48px;
	margin: auto;
	margin-top: 50px;
}
@media (max-width: 767px) {
	.clients__btn {
		width: 343px;
		height: 51px;
		border-radius: 48px;
		margin-top: 30px;
	}
}
@media (max-width: 480px) {
	.clients__btn {
		width: 100%;
	}
}

.price {
	padding-top: 48px;
	padding-bottom: 48px;
}
@media (max-width: 1024px) {
	.price {
		padding-top: 68px;
		padding-bottom: 68px;
	}
}
@media (max-width: 767px) {
	.price {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.price__top {
	max-width: 656px;
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.price__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.price__top {
		max-width: 100%;
		margin-bottom: 20px;
	}
}
.price__top-title {
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.price__top-title {
		margin-bottom: 10px;
	}
}
.price__top-text {
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
@media (max-width: 767px) {
	.price__top-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: center;
	}
}
.price__tabs {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	margin-bottom: 57px;
}
@media (max-width: 1024px) {
	.price__tabs {
		gap: 5px;
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.price__tabs {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
}
.price__tab {
	width: 297px;
	height: 58px;
	border-radius: 10px;
	padding: 4px 10px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #000;
	background: #ebebeb;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.price__tab {
		padding: 8px 16px;
		width: auto;
		height: auto;
		border-radius: 99px;
	}
}
.price__tab-num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 48px;
	padding: 15px 13px 15px 12px;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.price__tab-num {
		display: none;
	}
}
.price__tab-name {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
	.price__tab-name {
		font-size: 16px;
		font-weight: 700;
		line-height: 18px;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.price__tab-name {
		font-size: 14px;
		font-weight: 700;
		line-height: 16px;
		text-align: center;
	}
}
.price__tab:hover {
	background: #000;
}
.price__tab:hover .price__tab-num {
	color: #f65e01;
}
.price__tab:hover .price__tab-name {
	color: #ffffff;
}
.price__tab.active {
	background: #000;
}
.price__tab.active .price__tab-num {
	color: #f65e01;
}
.price__tab.active .price__tab-name {
	color: #ffffff;
}

.price__table {
	display: none;
}
.price__table.active {
	display: block;
}

@media (max-width: 1024px) {
	.price__table {
		display: none !important;
	}
}
.price__table-head {
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(3, 6, 18, 0.07);
}
.price__table-head--row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.price__table-head-name {
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	text-align: left;
}
.price__table-head-tariff {
	opacity: 0.5;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}
.price__table-head-price {
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	margin-bottom: 10px;
}
.price__table-head-text {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
}
.price__table-body--row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding: 14px 0 18px 0;
	border-bottom: 1px solid rgba(3, 6, 18, 0.07);
}
.price__table-body--col {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	text-align: left;
}
.price__table-body--col a:hover {
	color: #f65e01;
}
.price__table-body--col img {
	margin: auto;
}
.price .custom-checkbox {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin: auto;
}
@media (max-width: 1024px) {
	.price .custom-checkbox {
		margin-right: 10px;
	}
}
.price .custom-checkbox input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}
.price .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #f65e01;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.price .custom-checkbox input:checked ~ .checkmark {
	background-color: #f65e01;
}
.price .checkmark::after {
	content: '';
	position: absolute;
	display: none;
}
.price .custom-checkbox input:checked ~ .checkmark::after {
	display: block;
}
.price .custom-checkbox .checkmark::after {
	left: 6px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.price__block {
	display: none !important;
}
@media (max-width: 1024px) {
	.price__block {
		display: none;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.price__block.active {
		display: grid !important;
	}
}
@media (max-width: 767px) {
	.price__block {
		grid-template-columns: repeat(1, 1fr);
	}
}
.price__tariff {
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #ebebeb;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.price__tariff.custom > ul {
	gap: 20px;
}
.price__tariff-name {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-bottom: 5px;
}
.price__tariff-price {
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: left;
	margin-bottom: 10px;
}
.price__tariff-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	margin-bottom: 20px;
}
.price ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.price ul > li {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	text-align: left;
}
.price ul > li svg {
	flex-shrink: 0;
}
.price__order-consultation {
	width: 291px;
	height: 68px;
	border-radius: 48px;
	margin: auto;
	margin-top: 24px;
}
@media (max-width: 767px) {
	.price__order-consultation {
		width: 343px;
		height: 51px;
		border-radius: 48px;
	}
}
@media (max-width: 480px) {
	.price__order-consultation {
		width: 100%;
	}
}

.price__info {
	margin-bottom: 70px;
}
@media (max-width: 767px) {
	.price__info {
		margin-bottom: 50px;
	}
}
.price__info-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.price__info-item {
	width: 100%;
	padding: 20px 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.price__info-item:hover {
	background: #ebebeb;
}
.price__info-item:hover .price__info-item--title {
	color: #f65e01;
}
.price__info-item.highlight {
	background: #ebebeb;
}
.price__info-item.highlight .price__info-item--title {
	color: #f65e01;
}
.price__info-item--title {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 10px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.price__info-item--text {
	max-width: 100%;
	width: 100%;
	color: #000;
}

/* Вертикальна ритміка */
.price__info-item--text > * {
	margin-top: 0;
}

.price__info-item--text > *:not(:last-child) {
	margin-bottom: 16px;
}

/* Параграфи */
.price__info-item--text p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
}

/* Заголовки */
.price__info-item--text h1,
.price__info-item--text h2,
.price__info-item--text h3,
.price__info-item--text h4,
.price__info-item--text h5,
.price__info-item--text h6 {
	font-weight: 700;
	line-height: 1.3;
}

.price__info-item--text h1 {
	font-size: 36px;
}
.price__info-item--text h2 {
	font-size: 32px;
}
.price__info-item--text h3 {
	font-size: 24px;
}
.price__info-item--text h4 {
	font-size: 20px;
}
.price__info-item--text h5 {
	font-size: 18px;
}
.price__info-item--text h6 {
	font-size: 16px;
}

/* Списки */
.price__info-item--text ul {
	list-style-type: disc;
	padding-left: 24px;
}

.price__info-item--text ol {
	list-style-type: decimal;
	padding-left: 24px;
}

.price__info-item--text li {
	margin-bottom: 8px;
}

/* Посилання */
.price__info-item--text a {
	color: #f65e01;
	text-decoration: underline;
	transition: 0.2s ease;
}

.price__info-item--text a:hover {
	text-decoration: none;
}

/* Blockquote */
.price__info-item--text blockquote {
	padding: 20px 30px;
	background: #f5f5f5;
	border-left: 4px solid #f65e01;
	font-style: italic;
}

/* Зображення */
.price__info-item--text img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Таблиці */
.price__info-item--text table {
	width: 100%;
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
}

.price__info-item--text th,
.price__info-item--text td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}

/* Горизонтальна лінія */
.price__info-item--text hr {
	border: none;
	height: 1px;
	background: #ddd;
}

.planner-wrap {
	width: 100%;
	background-image: url(../img/bg-form.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
	padding: 50px 0;
}
@media (max-width: 1024px) {
	.planner-wrap {
		padding: 40px 0;
	}
}
@media (max-width: 767px) {
	.planner-wrap {
		padding: 20px 0;
		background-position: center;
	}
}

.planner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 74px;
}
@media (max-width: 1024px) {
	.planner {
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
	}
}
@media (max-width: 767px) {
	.planner {
		gap: 20px;
	}
}
.planner__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 611px;
	width: 100%;
}
@media (max-width: 1024px) {
	.planner__left {
		max-width: 523px;
	}
}
@media (max-width: 767px) {
	.planner__left {
		max-width: 100%;
	}
}
.planner__title {
	font-size: 40px;
	font-weight: 500;
	line-height: 50px;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.planner__title {
		font-size: 32px;
		font-weight: 500;
		line-height: 34px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.planner__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.planner__title-accent {
	position: relative;
	background: rgba(255, 85, 0, 0.3);
	border-left: 1px solid #f65e01;
	border-right: 1px solid #f65e01;
	padding: 0 5px;
}
.planner__title-accent::after {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 20px;
	background: #f65e01;
}
.planner__title-end {
	color: #f65e01;
}
.planner__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.planner__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.planner__right {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.planner__right {
		margin: auto;
	}
}
.planner__form {
	width: 582px;
	padding: 50px 30px;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1) inset;
}
@media (max-width: 1024px) {
	.planner__form {
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.planner__form {
		width: 100%;
		padding: 20px;
	}
}
.planner__form form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 767px) {
	.planner__form form {
		gap: 5px;
	}
}
.planner__form form .row {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 767px) {
	.planner__form form .row {
		flex-direction: column;
		gap: 5px;
	}
}
.planner__form-input {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 55px;
	border-radius: 25px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #ffffff;
	background: #f6f6f6;
}
.planner__form-input::placeholder {
	color: #9498ab;
	opacity: 1;
}
@media (max-width: 767px) {
	.planner__form-input {
		height: 45px;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.planner__form form textarea {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 141px;
	border-radius: 25px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #ffffff;
	background: #f6f6f6;
	resize: none;
}
.planner__form form textarea::placeholder {
	color: #9498ab;
	opacity: 1;
}
@media (max-width: 767px) {
	.planner__form form textarea {
		height: 119px;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.planner__form .btn-primary {
	width: 100%;
	height: 68px;
	border-radius: 48px;
}
@media (max-width: 767px) {
	.planner__form .btn-primary {
		width: 100%;
		height: 49px;
		border-radius: 48px;
	}
}
.planner__form-title {
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.planner__form-title {
		font-size: 32px;
		font-weight: 500;
		line-height: 34px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.planner__form-title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
	}
}
.planner__form-title span {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 20px;
	background: #f65e01;
	margin-left: 0;
}
@media (max-width: 1024px) {
	.planner__form-title span {
		width: 7px;
		height: 7px;
		border-radius: 20px;
	}
}
@media (max-width: 767px) {
	.planner__form-title span {
		width: 4px;
		height: 4px;
		border-radius: 20px;
	}
}
.planner__form-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.planner__form-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.planner__form-tabs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.planner__form-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	border-radius: 20px;
	color: #000;
	border: 1px solid #9498ab;
	background: #ffffff;
}
.planner__form-tab:hover {
	color: #f65e01;
	border-color: #f65e01;
}
.planner__form-tab.active {
	color: #ffffff;
	background: #f65e01;
	border-color: #f65e01;
}
@media (max-width: 767px) {
	.planner__form-tab {
		font-size: 12px;
		font-weight: 400;
		line-height: 14px;
		text-align: left;
		padding: 8px 18px;
	}
}

.services-wrap {
	background: url(../img/bg-advantages.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 50px 0;
}
@media (max-width: 1024px) {
	.services-wrap {
		padding: 40px 0 70px 0;
	}
}
@media (max-width: 767px) {
	.services-wrap {
		padding: 50px 0;
	}
}

.services {
	padding: 50px 30px;
	border-radius: 40px;
	background: rgba(146, 146, 146, 0.1);
	backdrop-filter: blur(40px);
}
@media (max-width: 1024px) {
	.services {
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.services {
		padding: 12px;
		border-radius: 20px;
	}
}
.services__title {
	max-width: 656px;
	width: 100%;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.services__title {
		margin-bottom: 10px;
	}
}
.services__text {
	max-width: 488px;
	width: 100%;
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.services__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: center;
	}
}
.services__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}
@media (max-width: 1024px) {
	.services__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.services__list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.services__item {
	padding: 16px;
	border-radius: 10px;
	background: #ffffff;
	min-height: 230px;
}
@media (max-width: 1024px) {
	.services__item {
		min-height: 250px;
	}
}
@media (max-width: 480px) {
	.services__item {
		min-height: auto;
	}
}
.services__item-img {
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.services__item-img {
		margin-bottom: 10px;
	}
}
.services__item-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.services__item-title {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.services__item-title {
		margin-bottom: 5px;
	}
}
.services__item-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 1024px) {
	.services__item-list {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.services__item-list {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.services__item-list > li {
	list-style-type: disc;
	margin-left: 20px;
}

.team {
	margin-top: 46px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.team {
		margin-top: 30px;
		margin-bottom: 80px;
	}
}
@media (max-width: 1024px) {
	.team {
		margin-top: 50px;
		margin-bottom: 30px;
	}
}
.team__top {
	max-width: 488px;
	width: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.team__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.team__top {
		max-width: 100%;
		margin-bottom: 20px;
	}
}
.team__title {
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.team__title {
		margin-bottom: 10px;
	}
}
.team__text {
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.team__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.team__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) {
	.team__list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767px) {
	.team__list {
		display: none;
	}
}
.team__swiper {
	display: none;
}
@media (max-width: 767px) {
	.team__swiper {
		display: block;
	}
}
.team__list-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: auto;
	height: 339px;
	border-radius: 10px;
	padding: 10px;
	overflow: hidden;
}
.team__list-item--img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.team__list-item--info {
	position: absolute;
	left: 10px;
	bottom: 10px;
	width: calc(100% - 20px);
	height: 74px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 16px 10px;
	border-radius: 5px;
	background: #ffffff;
}
.team__list-item--name {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.team__list-item--name p:first-child {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.team__list-item--name p:last-child {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
.team__list-item--link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50px;
	background: #000;
}
.team__list-item--link:hover {
	background: #f65e01;
}
.team__nav {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-bottom: 6px;
}

.author {
	margin-top: 50px;
	margin-bottom: 50px;
}
.author__title {
	max-width: 656px;
	width: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.author__title {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.author__title {
		max-width: 100%;
	}
}
.author__content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 50px;
}
@media (max-width: 1024px) {
	.author__content {
		flex-direction: column;
		gap: 20px;
		align-items: flex-end;
	}
}
.author__text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
@media (max-width: 767px) {
	.author__text {
		gap: 10px;
	}
}
.author__text {
	font-size: 16px;
	line-height: 22px;
	color: #000;
}
.author__text h1,
.author__text h2,
.author__text h3,
.author__text h4,
.author__text h5,
.author__text h6 {
	font-weight: 700;
	line-height: 1.3;
}
.author__text h2 {
	font-size: 32px;
}
.author__text h3 {
	font-size: 24px;
}
.author__text h4 {
	font-size: 20px;
}
.author__text ul {
	list-style-type: disc;
	padding-left: 24px;
}
.author__text ol {
	list-style-type: decimal;
	padding-left: 24px;
}
.author__text li {
	margin-bottom: 10px;
}
.author__text a {
	color: #f65e01;
	text-decoration: underline;
	transition: 0.2s;
}
.author__text a:hover {
	text-decoration: none;
}
.author__text blockquote {
	padding: 20px 30px;
	background: #f5f5f5;
	border-left: 4px solid #f65e01;
	font-style: italic;
}
.author__text table {
	width: 100%;
	border-collapse: collapse;
}
.author__text th,
.author__text td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}
.author__block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: 296px;
	height: 264px;
	border-radius: 20px;
	flex-shrink: 0;
	padding: 20px;
	border-radius: 20px;
	background: #ebebeb;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.author__block {
		width: 100%;
		height: auto;
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.author__block {
		width: 296px;
		height: 264px;
	}
}
.author__block-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.author__block-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	text-align: left;
}
.author__block-title span {
	color: #f65e01;
}
@media (max-width: 1024px) {
	.author__block-title {
		margin-left: auto;
	}
}
.author__person {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}
.author__person-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 5px;
}
.author__person-name {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: right;
}
.author__person-position {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: right;
}
.author__person-img {
	width: 74px;
	height: 74px;
	border-radius: 50px;
	object-fit: cover;
}

.consultation-wrap {
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.consultation-wrap {
		margin-bottom: 50px;
	}
}

.consultation {
	background: #222222;
	background-image: url(../img/consultation.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	padding: 50px;
	border-radius: 20px;
}
@media (max-width: 1024px) {
	.consultation {
		padding: 20px 39px;
		height: 398px;
		background-size: 60%;
	}
}
@media (max-width: 767px) {
	.consultation {
		background-size: 80%;
	}
}
.consultation__title {
	max-width: 523px;
	width: 100%;
	color: #ffffff;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.consultation__title {
		max-width: 100%;
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
	}
}
.consultation__text {
	max-width: 523px;
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-bottom: 39px;
}
@media (max-width: 767px) {
	.consultation__text {
		max-width: 100%;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: center;
		margin-bottom: 20px;
	}
}
.consultation__btn {
	width: 291px;
	height: 68px;
	border-radius: 48px;
}
@media (max-width: 767px) {
	.consultation__btn {
		width: 303px;
		height: 49px;
		border-radius: 48px;
	}
}

.newspaper-wrap {
	margin-bottom: 50px;
}

.newspaper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 50px 30px;
	border-radius: 40px;
	background: #ebebeb;
}
@media (max-width: 1024px) {
	.newspaper {
		gap: 30px;
		border-radius: 30px;
		padding: 30px;
	}
}
@media (max-width: 767px) {
	.newspaper {
		gap: 10px;
		border-radius: 20px;
		padding: 20px 10px;
	}
}
.newspaper__title {
	max-width: 656px;
	width: 100%;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
}
@media (max-width: 1024px) {
	.newspaper__title {
		font-size: 32px;
		font-weight: 500;
		line-height: 34px;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.newspaper__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
	}
}
.newspaper__body {
	column-count: 3;
	column-gap: 27px;
}
@media (max-width: 1024px) {
	.newspaper__body {
		column-count: 2;
		column-gap: 20px;
	}
}
@media (max-width: 767px) {
	.newspaper__body {
		column-count: 1;
		column-gap: 0;
	}
}
.newspaper__body h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	text-align: left;
}
@media (max-width: 1024px) {
	.newspaper__body h3 {
		font-size: 20px;
		font-weight: 500;
		line-height: 22px;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.newspaper__body h3 {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: left;
	}
}
.newspaper__body > * + * {
	margin-top: 20px;
}
.newspaper__body p {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.newspaper__body p {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}

.roadmap-wrap {
	background-image: url(../img/bg-roadmap.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	padding-bottom: 30px;
}
@media (max-width: 991px) {
	.roadmap-wrap {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.roadmap {
	width: 100%;
}
.roadmap__top {
	max-width: 656px;
	width: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.roadmap__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.roadmap__top {
		max-width: 100%;
		margin-bottom: 20px;
	}
}
.roadmap__title {
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.roadmap__title {
		margin-bottom: 10px;
	}
}
.roadmap__text {
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.roadmap__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.roadmap__list {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	overflow: hidden;
	padding-bottom: 20px;
}
@media (max-width: 991px) {
	.roadmap__list {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 50px;
		padding-left: 20px;
	}
}
.roadmap__list-bg-element {
	position: absolute;
	left: 0;
	top: 56.5px;
	z-index: 1;
}
@media (max-width: 991px) {
	.roadmap__list-bg-element {
		display: none;
	}
}
.roadmap__list-bg-element--mobile {
	display: none;
}
@media (max-width: 991px) {
	.roadmap__list-bg-element--mobile {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
}
.roadmap__item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	z-index: 2;
}
.roadmap__item:hover .roadmap__item-top span,
.roadmap__item:hover .roadmap__item-top p {
	color: #f65e01;
}
.roadmap__item:hover .roadmap__item-img {
	background: #f65e01;
}
.roadmap__item:hover .roadmap__item-img svg {
	fill: #ffffff;
}
.roadmap__item-top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 5px;
}
.roadmap__item-top span {
	display: block;
	font-size: 40px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.roadmap__item-top span {
		color: #f65e01;
	}
}
.roadmap__item-top p {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
	position: relative;
	top: -4px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.roadmap__item-top p {
		color: #f65e01;
	}
}
.roadmap__item-bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 10px;
}
.roadmap__item-img-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 991px) {
	.roadmap__item-img-wrap .line {
		display: none;
	}
}
.roadmap__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 25px;
	background: #f6f6f6;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.roadmap__item-img {
		background: #f65e01;
	}
}
.roadmap__item-img svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.roadmap__item-img svg {
		fill: #ffffff;
	}
}
.roadmap__item-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 2px;
}
.roadmap__item-item {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.reviews {
	margin-bottom: 100px;
}
@media (max-width: 991px) {
	.reviews {
		margin-bottom: 50px;
	}
}
.reviews__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.reviews__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.reviews__top {
		margin-bottom: 20px;
	}
}
.reviews__swiper {
	width: 629px;
	margin-right: 0;
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.reviews__swiper {
		width: 100%;
		margin-bottom: 20px;
	}
}
.reviews__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: left;
}
@media (max-width: 767px) {
	.reviews__item {
		font-size: 13px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.reviews__item-user {
	display: none;
}
@media (max-width: 991px) {
	.reviews__item-user {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 4px;
		padding: 5px;
		width: fit-content;
		height: 45px;
		border-radius: 30px;
		margin-left: auto;
		margin-top: 5px;
		background: #ebebeb;
	}
	.reviews__item-user img {
		width: 40px;
		height: 40px;
		border-radius: 30px;
		object-fit: cover;
	}
}
.reviews__bottom {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 56px;
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.reviews__bottom {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 20px;
		margin-bottom: 0;
	}
}
.reviews__users {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}
@media (max-width: 991px) {
	.reviews__users {
		display: none;
	}
}
.reviews__user {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	padding: 5px;
	max-width: 60px;
	width: 100%;
	height: 60px;
	border-radius: 30px;
	background: #ebebeb;
	overflow: hidden;
	transition: all 1s;
}
.reviews__user.active {
	max-width: 350px;
}
.reviews__user-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 7px;
	padding-right: 20px;
}
.reviews__user-info img {
	width: 50px;
	height: 50px;
	border-radius: 30px;
	object-fit: cover;
}
.reviews__user-name {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	white-space: nowrap;
}
@media (max-width: 991px) {
	.reviews__user-name {
		font-size: 13px;
		font-weight: 500;
		line-height: 15px;
		text-align: left;
	}
}
.reviews__user-company {
	font-size: 14px;
	font-weight: 400;
	line-height: 13px;
	text-align: left;
	white-space: nowrap;
}
@media (max-width: 991px) {
	.reviews__user-company {
		font-size: 12px;
		font-weight: 400;
		line-height: 14px;
		text-align: left;
	}
}
.reviews__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.reviews__nav.desktop {
	display: flex !important;
}
@media (max-width: 767px) {
	.reviews__nav.desktop {
		display: none !important;
	}
}
.reviews__nav.mobile {
	display: none !important;
}
@media (max-width: 767px) {
	.reviews__nav.mobile {
		display: flex !important;
		margin-bottom: 20px;
	}
}
.reviews__link {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-size: 32px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.reviews__link {
		font-size: 20px;
		font-weight: 400;
		line-height: 22px;
		text-align: left;
	}
}
.reviews__link svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.reviews__link:hover {
	color: #f65e01;
}
.reviews__link:hover svg {
	fill: #f65e01;
}

.articles {
	margin-bottom: 100px;
}
@media (max-width: 991px) {
	.articles {
		margin-bottom: 50px;
	}
}
.articles__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.articles__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.articles__top {
		margin-bottom: 20px;
	}
}
.articles__card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.articles__card:hover .articles__card-text {
	color: #f65e01;
}
.articles__card:hover .articles__card-img > img {
	transform: scale(1.2);
}
.articles__card-date {
	color: #9498ab;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}
.articles__card-img {
	width: 100%;
	height: 219px;
	border-radius: 10px;
	overflow: hidden;
}
.articles__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.articles__card-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.articles__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.articles__nav.desktop {
	display: flex !important;
}
@media (max-width: 767px) {
	.articles__nav.desktop {
		display: none !important;
	}
}
.articles__nav.mobile {
	display: none !important;
}
@media (max-width: 767px) {
	.articles__nav.mobile {
		margin-top: 20px;
		display: flex !important;
	}
}
.articles__link {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-size: 32px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.articles__link {
		margin-top: 20px;
		font-size: 20px;
		font-weight: 400;
		line-height: 22px;
		text-align: left;
	}
}
.articles__link svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.articles__link:hover {
	color: #f65e01;
}
.articles__link:hover svg {
	fill: #f65e01;
}

.mailing-wrap {
	padding: 50px 0;
	background: #ebebeb;
}
@media (max-width: 991px) {
	.mailing-wrap {
		padding: 20px 0;
	}
}

.mailing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.mailing__title {
	text-align: center;
	margin-bottom: 10px;
}
.mailing__text {
	font-size: 20px;
	font-weight: 40;
	line-height: 24px;
	text-align: center;
	margin-bottom: 39px;
}
@media (max-width: 991px) {
	.mailing__text {
		font-size: 14px;
		font-weight: 40;
		line-height: 16px;
		text-align: center;
	}
}
.mailing form {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 991px) {
	.mailing form {
		width: 100%;
		flex-direction: column;
		gap: 20px;
	}
}
.mailing_input {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 499px;
	height: 55px;
	border-radius: 25px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #ffffff;
	background: #ffffff;
}
.mailing_input::placeholder {
	color: #9498ab;
	opacity: 1;
}
@media (max-width: 767px) {
	.mailing_input {
		width: 100%;
		height: 49px;
	}
}
.mailing form .btn-primary {
	width: 291px;
	height: 57px;
	border-radius: 48px;
}
@media (max-width: 767px) {
	.mailing form .btn-primary {
		width: 100%;
		height: 49px;
		border-radius: 48px;
	}
}
@media (min-width: 767px) {
	.mailing .wpcf7-response-output {
		position: absolute;
		bottom: -40px;
		width: fit-content !important;
	}
}

.faq {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 38px;
	margin-top: 50px;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.faq {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.faq {
		gap: 20px;
	}
}
.faq__title {
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.faq__title {
		margin-bottom: 10px;
	}
}
@media (max-width: 767px) {
	.faq__title {
		margin-bottom: 5px;
	}
}
.faq__text {
	color: #9498ab;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.faq__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: center;
	}
}
.faq__right {
	max-width: 578px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1024px) {
	.faq__right {
		max-width: 100%;
	}
}
.faq__item {
	width: 100%;
	padding: 20px 10px;
	border-radius: 20px;
	background: #ebebeb;
}
@media (max-width: 767px) {
	.faq__item {
		padding: 12px 10px;
	}
}
.faq__item.open .faq__item-body {
	max-height: 400px;
}
.faq__item.open .faq__item-top > p {
	color: #f65e01;
}
.faq__item.open .faq__item-arrow > svg {
	transform: rotateX(180deg);
}
.faq__item-top {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}
@media (max-width: 767px) {
	.faq__item-top {
		gap: 4px;
	}
}
.faq__item-top:hover p {
	color: #f65e01;
}
.faq__item-top p {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	transition: all 0.5s;
}
.faq__item-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border-radius: 20px;
	padding: 7px 2px;
	background: #f65e01;
}
.faq__item-arrow svg {
	transition: all 0.5s;
}
.faq__item-body {
	overflow: hidden;
	max-height: 0;
	transition: all 0.5s;
}
.faq__item-body p {
	padding-top: 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.faq__item-body p {
		padding-top: 4px;
		font-size: 15px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}

.intro-wrap {
	padding: 20px 0;
	height: 498px;
	background-image: url(../img/bg-intro.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top;
}
@media (max-width: 1024px) {
	.intro-wrap {
		height: auto;
		background-position: bottom;
	}
}
@media (max-width: 767px) {
	.intro-wrap {
		padding-top: 10px;
		height: 440px;
		background-position: bottom;
	}
}

.intro {
	max-width: 719px;
	width: 100%;
	margin: auto;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.intro {
		max-width: 100%;
		margin-top: 30px;
	}
}
.intro__img {
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.intro__img {
		margin-bottom: 15px;
	}
}
.intro__title {
	color: #000;
	font-family: 'M PLUS 1', sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.intro__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
	}
}
.intro__text {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}
@media (max-width: 767px) {
	.intro__text {
		line-height: 18px;
	}
}
.intro__btn {
	margin-top: 20px;
	padding: 26px 30px;
}
@media (max-width: 480px) {
	.intro__btn {
		padding: 16px;
		width: 100%;
	}
}
.intro__tabs {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 562px;
}
@media (max-width: 991px) {
	.intro__tabs {
		justify-content: center;
		margin-top: 30px;
		max-width: 100%;
	}
}
.intro__tab {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 20px;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #9498ab;
}
@media (max-width: 991px) {
	.intro__tab {
		padding: 4px 8px;
		font-weight: 500;
		line-height: 18px;
		text-align: center;
	}
}
.intro__tab:hover {
	color: #f65e01;
	border-color: #f65e01;
}
.intro__tab.active {
	color: #f65e01;
	border-color: #f65e01;
}

.cases {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.cases {
		margin-bottom: 50px;
	}
}
.cases__title {
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.cases__title {
		margin-bottom: 20px;
	}
}
.cases__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.cases__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.cases__list {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		margin-bottom: 20px;
	}
}
.cases__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 10px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid #d5d5d5;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.cases__item:hover {
	border-color: #f65e01;
}
.cases__item:hover .cases__item-img > img {
	transform: scale(1.2);
}
.cases__item:hover .cases__item-name {
	color: #f65e01;
}
.cases__item:hover .cases__item-link {
	background: #f65e01;
}
.cases__item:hover .cases__item-link svg {
	transform: rotate(-45deg);
}
.cases__item:hover .cases__item-link > svg {
	fill: #ffffff;
}
.cases__item-img {
	width: 100%;
	height: 296px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}
.cases__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.cases__item-bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.cases__item-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 6px;
}
.cases__item-name {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.cases__item-tag {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 13px;
	text-align: left;
}
.cases__item-link {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
	border-radius: 40px;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.cases__item-link svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.project-team {
	margin: 100px auto;
}
@media (max-width: 1024px) {
	.project-team {
		margin: 70px auto;
	}
}
@media (max-width: 767px) {
	.project-team {
		margin: 50px auto;
	}
}
.project-team__title {
	max-width: 656px;
	width: 100%;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.project-team__title {
		max-width: 100%;
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.project-team__title {
		margin-bottom: 20px;
	}
}
.project-team__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) {
	.project-team__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.project-team__list {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}
.project-team__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 20px;
	border-radius: 30px;
	background: #ebebeb;
}
@media (max-width: 767px) {
	.project-team__item {
		padding: 16px;
		border-radius: 20px;
	}
}
.project-team__item--img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	padding: 15px;
	flex-shrink: 0;
	background: #ffffff;
}
.project-team__item--title {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.project-team__item--title {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: left;
	}
}
.project-team__item--text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 767px) {
	.project-team__item--text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}

.benefits {
	margin: 100px auto;
}
@media (max-width: 1024px) {
	.benefits {
		margin: 70px auto;
	}
}
@media (max-width: 767px) {
	.benefits {
		margin: 50px auto;
	}
}
.benefits__title {
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.benefits__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.benefits__title {
		margin-bottom: 20px;
	}
}
.benefits__content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
@media (max-width: 1024px) {
	.benefits__content {
		flex-direction: column;
		justify-content: flex-start;
	}
}
.benefits__left {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
	width: 618px;
	height: 595px;
	border-radius: 20px;
	padding: 50px;
	overflow: hidden;
}
@media (max-width: 1440px) {
	.benefits__left {
		width: 50%;
	}
}
@media (max-width: 1024px) {
	.benefits__left {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.benefits__left {
		padding: 20px;
		height: 335px;
	}
}
.benefits__left-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.benefits__left-text {
	z-index: 2;
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	text-align: left;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.benefits__left-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
		margin-bottom: 20px;
	}
}
.benefits__left-btn {
	z-index: 2;
	padding: 22px 39px;
}
@media (max-width: 767px) {
	.benefits__left-btn {
		padding: 15px;
	}
}
.benefits__right {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 10px;
	column-gap: 30px;
	width: 530px;
}
@media (max-width: 1440px) {
	.benefits__right {
		width: 50%;
	}
}
@media (max-width: 1024px) {
	.benefits__right {
		width: 100%;
	}
}
.benefits__right-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 20px;
}
@media (max-width: 767px) {
	.benefits__right-item {
		padding: 0;
	}
}
.benefits__right-item--img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 35px;
	background: #f65e01;
}
@media (max-width: 767px) {
	.benefits__right-item--img {
		width: 24px;
		height: 24px;
		border-radius: 30px;
	}
}
.benefits__right-item--title {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.benefits__right-item--title {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: left;
	}
}
.benefits__right-item--text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 767px) {
	.benefits__right-item--text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}

.portfolio {
	margin-top: 100px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.portfolio {
		margin-top: 70px;
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.portfolio {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}
.portfolio__top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.portfolio__top {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.portfolio__top {
		margin-bottom: 20px;
	}
}
.portfolio__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.portfolio__nav.desktop {
	display: flex !important;
}
@media (max-width: 767px) {
	.portfolio__nav.desktop {
		display: none !important;
	}
}
.portfolio__nav.mobile {
	display: none !important;
}
@media (max-width: 767px) {
	.portfolio__nav.mobile {
		margin-top: 20px;
		display: flex !important;
	}
}
.portfolio__link {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-size: 32px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.portfolio__link {
		margin-top: 20px;
		font-size: 20px;
		font-weight: 400;
		line-height: 22px;
		text-align: left;
	}
}
.portfolio__link svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.portfolio__link:hover {
	color: #f65e01;
}
.portfolio__link:hover svg {
	fill: #f65e01;
}

.about-us-wrap {
	margin: 20px auto 50px auto;
}
@media (max-width: 767px) {
	.about-us-wrap {
		margin-top: 10px;
	}
}

.about-us {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 767px) {
	.about-us {
		margin-top: 30px;
	}
}
.about-us__icon {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.about-us__icon {
		margin-bottom: 15px;
	}
}
.about-us__title {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.about-us__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
		margin-bottom: 20px;
	}
}
.about-us__text {
	max-width: 719px;
	width: 100%;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.about-us__text {
		max-width: 100%;
		margin-bottom: 20px;
	}
}
.about-us__img {
	width: 100%;
	height: 536px;
	border-radius: 20px;
	object-fit: cover;
}
@media (max-width: 767px) {
	.about-us__img {
		height: 227px;
	}
}

.company {
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.company {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.company {
		margin-bottom: 50px;
	}
}
.company__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 59px;
}
@media (max-width: 1024px) {
	.company__content {
		flex-direction: column;
		gap: 20px;
	}
}
.company__title {
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.company__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.company__title {
		margin-bottom: 20px;
	}
}
.company__text {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.company__text {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.company__text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
		margin-bottom: 20px;
	}
}
.company__list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 767px) {
	.company__list {
		flex-direction: column;
		gap: 10px;
	}
}
.company__item {
	max-width: 203px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}
.company__item-num {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
@media (max-width: 767px) {
	.company__item-num {
		font-size: 32px;
		font-weight: 500;
		line-height: 34px;
		text-align: left;
	}
}
.company__item-text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 767px) {
	.company__item-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.company__img {
	width: 556px;
	height: 324px;
	border-radius: 20px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.company__img {
		width: 100%;
		height: 227px;
		border-radius: 20px;
	}
}

.mission {
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.mission {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.mission {
		margin-bottom: 50px;
	}
}
.mission__title {
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.mission__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 767px) {
	.mission__title {
		margin-bottom: 20px;
	}
}
.mission__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 50px;
}
@media (max-width: 1024px) {
	.mission__content {
		flex-direction: column;
		gap: 20px;
	}
}
.mission__img {
	width: 556px;
	height: 324px;
	border-radius: 20px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.mission__img {
		width: 100%;
		height: 227px;
		border-radius: 20px;
	}
}
.mission__text {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
@media (max-width: 767px) {
	.mission__text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}

.blog__content {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.blog__content {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.blog__content {
		margin-bottom: 50px;
	}
}
.blog__list {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 50px;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.blog__list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.blog__item:nth-child(odd) {
	padding-right: 120px;
	border-right: 1px solid #e5e5e5;
}
@media (max-width: 1024px) {
	.blog__item:nth-child(odd) {
		padding-right: 60px;
	}
}
@media (max-width: 767px) {
	.blog__item:nth-child(odd) {
		padding-right: 0;
		border-right: none;
	}
}
.blog__item:nth-child(even) {
	padding-left: 120px;
}
@media (max-width: 1024px) {
	.blog__item:nth-child(even) {
		padding-left: 60px;
	}
}
@media (max-width: 767px) {
	.blog__item:nth-child(even) {
		padding-left: 0;
	}
}
.blog__item-mark {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	text-align: left;
	margin-bottom: 10px;
}
.blog__item-title {
	color: #f65e01;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	cursor: pointer;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.blog__item-title {
		font-size: 18px;
	}
}
.blog__item-title:hover {
	text-decoration: underline;
}
.blog__item-text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	margin-bottom: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 767px) {
	.blog__item-text {
		font-size: 14px;
		margin-bottom: 10px;
	}
}
.blog__item-bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.blog__item-author {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.blog__item-author--avatar {
	width: 30px;
	height: 30px;
	border-radius: 30px;
	object-fit: cover;
}
.blog__item-author--name {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	text-align: left;
}
.blog__item-date {
	color: #9498ab;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}

.article {
	margin-top: 20px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.article {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.article {
		margin-bottom: 50px;
	}
}
.article__top {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 760px;
	width: 100%;
	margin: 50px auto 35px auto;
}
@media (max-width: 1024px) {
	.article__top {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.article__top {
		margin: 30px auto 20px auto;
	}
}
.article__top-mark {
	color: #f65e01;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	margin-bottom: 10px;
}
.article__top-title {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.article__top-title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
	}
}
.article__description {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 767px) {
	.article__description {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.article__body {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 42px;
}
@media (max-width: 1024px) {
	.article__body {
		flex-direction: column;
		gap: 20px;
	}
}
.article__nav {
	position: sticky;
	left: 0;
	top: 120px;
	max-width: 243px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media (max-width: 1024px) {
	.article__nav {
		position: static;
		top: 0;
		max-width: 100%;
	}
}
.article__nav a {
	width: 100%;
	padding: 10px 20px;
	color: #f65e01;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}
@media (max-width: 1024px) {
	.article__nav a {
		padding: 10px 0;
	}
}
.article__nav a:hover {
	color: #ffffff;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.article__nav a:hover {
		color: #f65e01;
		background: #ffffff;
	}
}
.article__nav a.active {
	color: #ffffff;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.article__nav a.active {
		color: #f65e01;
		background: #ffffff;
	}
}
.article__content {
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
	font-weight: 700;
	line-height: 1.3;
	margin: 40px 0 20px;
}
.article__content h2 {
	font-size: 32px;
}
.article__content h3 {
	font-size: 24px;
}
.article__content h4 {
	font-size: 20px;
}
.article__content p {
	margin-bottom: 20px;
}
.article__content ul {
	list-style-type: disc;
	padding-left: 24px;
	margin: 20px 0;
}
.article__content ol {
	list-style-type: decimal;
	padding-left: 24px;
	margin: 20px 0;
}
.article__content li {
	margin-bottom: 10px;
}
.article__content a {
	color: #f65e01;
	text-decoration: underline;
	transition: 0.2s;
}
.article__content a:hover {
	text-decoration: none;
}
.article__content img {
	width: 100%;
	height: 345px;
	border-radius: 20px;
	object-fit: cover;
	margin: 20px 0;
}
@media (max-width: 767px) {
	.article__content img {
		height: 229px;
	}
}
.article__content blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: #f5f5f5;
	border-left: 4px solid #f65e01;
	font-style: italic;
}
.article__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
}
.article__content th,
.article__content td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}
.article__author {
	position: sticky;
	top: 120px;
	right: 0;
	max-width: 243px;
	width: 100%;
}
@media (max-width: 1024px) {
	.article__author {
		position: static;
		top: 0;
		max-width: 600px;
		margin: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
.article__author-avatar {
	position: relative;
	width: 85px;
	height: 74px;
	border-radius: 0px;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.article__author-avatar {
		width: 64px;
		height: 56px;
		border-radius: 0px;
	}
}
.article__author-img {
	width: 74px;
	height: 74px;
	border-radius: 50px;
	object-fit: cover;
}
@media (max-width: 767px) {
	.article__author-img {
		width: 56px;
		height: 56px;
		border-radius: 50px;
	}
}
.article__author-link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 40px;
	background: #000;
}
.article__author-link:hover {
	background: #f65e01;
}
.article__author-name {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 5px;
}
.article__author-text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 1024px) {
	.article__author-text {
		text-align: center;
	}
}

.case {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.case {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.case {
		margin-top: 20px;
		margin-bottom: 50px;
	}
}
.case__body {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 42px;
}
@media (max-width: 1024px) {
	.case__body {
		flex-direction: column;
		gap: 20px;
	}
}
.case__nav {
	position: sticky;
	left: 0;
	top: 120px;
	max-width: 243px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media (max-width: 1024px) {
	.case__nav {
		position: static;
		top: 0;
		max-width: 100%;
	}
}
.case__nav a {
	width: 100%;
	padding: 10px 20px;
	color: #f65e01;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}
@media (max-width: 1024px) {
	.case__nav a {
		padding: 10px 0;
	}
}
.case__nav a:hover {
	color: #ffffff;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.case__nav a:hover {
		color: #f65e01;
		background: #ffffff;
	}
}
.case__nav a.active {
	color: #ffffff;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.case__nav a.active {
		color: #f65e01;
		background: #ffffff;
	}
}
.case__content {
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
.case__content h1,
.case__content h2,
.case__content h3,
.case__content h4,
.case__content h5,
.case__content h6 {
	font-weight: 700;
	line-height: 1.3;
	margin: 40px 0 20px;
}
.case__content h2 {
	font-size: 32px;
}
.case__content h3 {
	font-size: 24px;
}
.case__content h4 {
	font-size: 20px;
}
.case__content p {
	margin-bottom: 20px;
}
.case__content ul {
	list-style-type: disc;
	padding-left: 24px;
	margin: 20px 0;
}
.case__content ol {
	list-style-type: decimal;
	padding-left: 24px;
	margin: 20px 0;
}
.case__content li {
	margin-bottom: 10px;
}
.case__content a {
	color: #f65e01;
	text-decoration: underline;
	transition: 0.2s;
}
.case__content a:hover {
	text-decoration: none;
}
.case__content img {
	width: 100%;
	height: 345px;
	border-radius: 20px;
	object-fit: cover;
	margin: 20px 0;
}
@media (max-width: 767px) {
	.case__content img {
		height: 229px;
	}
}
.case__content blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: #f5f5f5;
	border-left: 4px solid #f65e01;
	font-style: italic;
}
.case__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
}
.case__content th,
.case__content td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}
.case__author {
	position: sticky;
	top: 120px;
	right: 0;
	max-width: 243px;
	width: 100%;
}
@media (max-width: 1024px) {
	.case__author {
		position: static;
		top: 0;
		max-width: 600px;
		margin: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
.case__author-avatar {
	position: relative;
	width: 85px;
	height: 74px;
	border-radius: 0px;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.case__author-avatar {
		width: 64px;
		height: 56px;
		border-radius: 0px;
	}
}
.case__author-img {
	width: 74px;
	height: 74px;
	border-radius: 50px;
	object-fit: cover;
}
@media (max-width: 767px) {
	.case__author-img {
		width: 56px;
		height: 56px;
		border-radius: 50px;
	}
}
.case__author-link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 40px;
	background: #000;
}
.case__author-link:hover {
	background: #f65e01;
}
.case__author-name {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 5px;
}
.case__author-text {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
@media (max-width: 1024px) {
	.case__author-text {
		text-align: center;
	}
}

.case-intro {
	padding-top: 20px;
	padding-bottom: 100px;
	width: 100%;
	height: 498px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
@media (max-width: 767px) {
	.case-intro {
		height: 440px;
		padding-top: 10px;
		padding-bottom: 50px;
	}
}
.case-intro__content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.case-intro .breadcrumbs__item {
	color: #ffffff;
}
.case-intro__title {
	max-width: 760px;
	width: 100%;
	color: #ffffff;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
@media (max-width: 767px) {
	.case-intro__title {
		max-width: 100%;
		font-size: 24px;
		font-weight: 500;
		line-height: 26px;
		text-align: left;
	}
}

.vacancies {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) {
	.vacancies {
		margin-top: 30px;
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.vacancies {
		margin-top: 20px;
		gap: 20px;
		grid-template-columns: repeat(1, 1fr);
	}
}
.vacancies__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 20px;
	border-radius: 30px;
	border: 1px solid #ececec;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.vacancies__item:hover {
	box-shadow: 0 4px 4px 0 rgba(246, 94, 1, 0.5);
}
.vacancies__item:hover .vacancies__item-link {
	background: #f65e01;
}
.vacancies__item:hover .vacancies__item-link svg {
	fill: #ffffff;
	transform: rotate(-45deg);
}
.vacancies__item-title {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	line-height: 26px;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancies__item-title {
		gap: 5px;
		font-size: 20px;
		font-weight: 500;
		line-height: 22px;
		text-align: left;
	}
}
.vacancies__item-tabs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}
.vacancies__item-tab {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	border-radius: 5px;
	background: #eaeaea;
}
.vacancies__item-bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.vacancies__item-logo {
	width: 86px;
	height: 24px;
}
.vacancies__item-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 40px;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.vacancies__item-link {
		width: 42px;
		height: 42px;
		border-radius: 40px;
	}
}
.vacancies__item-link svg {
	fill: #000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.vacancy {
	margin-top: 20px;
	margin-bottom: 100px;
}
@media (max-width: 1024px) {
	.vacancy {
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.vacancy {
		margin-bottom: 50px;
	}
}
.vacancy__body {
	position: relative;
	width: 100%;
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 58px;
}
@media (max-width: 1024px) {
	.vacancy__body {
		margin-top: 30px;
		flex-direction: column;
		gap: 50px;
	}
}
.vacancy__name {
	position: sticky;
	top: 120px;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex-shrink: 0;
	width: 462px;
	height: auto;
	border-radius: 30px;
	padding: 20px;
	background: #ffffff;
	box-shadow: 15px 15px 30px 0 rgba(190, 190, 190, 0.3);
}
@media (max-width: 1024px) {
	.vacancy__name {
		width: 100%;
		position: static;
		top: 0;
	}
}
.vacancy__name-title {
	color: #000;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.vacancy__name-title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
	}
}
.vacancy__name-tabs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.vacancy__name-tabs {
		margin-bottom: 20px;
	}
}
.vacancy__name-tab {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	border-radius: 5px;
	background: #eaeaea;
}
.vacancy__name-btn {
	width: 100%;
	height: 68px;
}
@media (max-width: 1024px) {
	.vacancy__name-btn {
		height: 51px;
	}
}
.vacancy__content {
	width: 100%;
	height: auto;
	border-radius: 30px;
	padding: 20px;
	background: #ffffff;
	box-shadow: 15px 15px 30px 0 rgba(190, 190, 190, 0.3);
}
@media (max-width: 767px) {
	.vacancy__content {
		padding: 0;
		box-shadow: none;
	}
}
.vacancy__content-title {
	color: #000;
	font-size: 32px;
	font-weight: 500;
	line-height: 34px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy__content-title {
		font-size: 24px;
		font-weight: 500;
		line-height: 26px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.vacancy__content-text {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy__content-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
		margin-bottom: 50px;
	}
}
.vacancy__content-switcher {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #f65e01;
}
@media (max-width: 767px) {
	.vacancy__content-switcher {
		padding: 0;
		border: none;
	}
}
.vacancy__content-tabs {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy__content-tabs {
		gap: 5px;
		justify-content: flex-start;
	}
}
.vacancy__content-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33%;
	height: 58px;
	padding: 4px 10px;
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	border-radius: 10px;
	background: #ebebeb;
}
@media (max-width: 767px) {
	.vacancy__content-tab {
		font-size: 14px;
		font-weight: 500;
		line-height: 16px;
		text-align: center;
		height: 45px;
	}
}
.vacancy__content-tab:hover {
	color: #ffffff;
	background: #f65e01;
}
.vacancy__content-tab.active {
	color: #ffffff;
	background: #f65e01;
}
.vacancy__content-block p,
.vacancy__content-block li,
.vacancy__content-block a,
.vacancy__content-block span {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin: 2px 0;
}
@media (max-width: 767px) {
	.vacancy__content-block p,
	.vacancy__content-block li,
	.vacancy__content-block a,
	.vacancy__content-block span {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.vacancy__content-block ol {
	list-style-type: decimal;
	margin-left: 25px;
}
.vacancy__content-block ul {
	list-style-type: disc;
	margin-left: 20px;
}

.vacancy-apply {
	padding: 50px 0;
	background-image: url(../img/vacancy-apply.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media (max-width: 767px) {
	.vacancy-apply {
		padding: 20px 0;
	}
}
.vacancy-apply__title {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy-apply__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: center;
		margin-bottom: 10px;
	}
}
.vacancy-apply__text {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width: 767px) {
	.vacancy-apply__text {
		font-size: 16px;
		font-weight: 500;
		line-height: 18px;
		text-align: center;
		margin-bottom: 20px;
	}
}
.vacancy-apply__btn {
	padding: 22px 30px;
	margin: auto;
}
@media (max-width: 767px) {
	.vacancy-apply__btn {
		padding: auto;
		width: 100%;
		height: 51px;
	}
}

.testimonials {
	padding-top: 50px;
	padding-bottom: 100px;
}
@media (max-width: 1024px) {
	.testimonials {
		padding-top: 30px;
		padding-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.testimonials {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}
.testimonials__list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.testimonials__list {
		gap: 15px;
	}
}
.testimonials__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
	border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
	.testimonials__item {
		padding-bottom: 20px;
	}
}
.testimonials__rating {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1px;
	margin-bottom: 10px;
}
.testimonials__rating-star {
	display: flex;
	justify-content: center;
	align-items: center;
}
.testimonials__text > p {
	max-width: 704px;
	width: 100%;
	color: #2a2d3c;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.testimonials__text > p {
		max-width: 100%;
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: center;
	}
}
.testimonials__author {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	width: fit-content;
	height: 60px;
	border-radius: 30px;
	padding: 5px 30px 5px 5px;
	background: #f6f6f6;
}
.testimonials__author-img {
	width: 50px;
	height: 50px;
	border-radius: 30px;
	object-fit: cover;
}
.testimonials__author-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 7px;
}
.testimonials__author-name {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.testimonials__author-company {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}

.policy {
	padding-top: 50px;
	padding-bottom: 100px;
}
@media (max-width: 1024px) {
	.policy {
		padding-top: 30px;
		padding-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.policy {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}
.policy {
	/* Заголовки */
}
.policy h1,
.policy h2,
.policy h3,
.policy h4 {
	line-height: 1.3;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 16px;
	color: #111;
}
.policy h1 {
	font-size: 32px;
	margin-top: 0;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 12px;
}
.policy h2 {
	font-size: 24px;
	border-left: 4px solid #f65e01;
	padding-left: 12px;
}
.policy h3 {
	font-size: 20px;
}
.policy h4 {
	font-size: 18px;
}
.policy {
	/* Параграфи */
}
.policy p {
	margin-bottom: 16px;
}
.policy {
	/* Списки */
}
.policy ul,
.policy ol {
	margin: 16px 0 16px 24px;
	padding: 0;
}
.policy ul {
	list-style-type: disc;
}
.policy ol {
	list-style-type: decimal;
}
.policy li {
	margin-bottom: 8px;
}
.policy {
	/* Посилання */
}
.policy a {
	color: #f65e01;
	text-decoration: none;
	border-bottom: 1px solid rgba(246, 94, 1, 0.3);
	transition: all 0.2s ease;
}
.policy a:hover {
	color: #f65e01;
	border-bottom-color: #f65e01;
}
.policy {
	/* Таблиці */
}
.policy table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
}
.policy th,
.policy td {
	border: 1px solid #e5e5e5;
	padding: 10px 12px;
	text-align: left;
}
.policy th {
	background: #f9f9f9;
	font-weight: 600;
}
.policy {
	/* Виділені блоки */
}
.policy blockquote {
	margin: 24px 0;
	padding: 16px 20px;
	background: #f9f9f9;
	border-left: 4px solid #f65e01;
	font-style: italic;
}
.policy {
	/* Горизонтальна лінія */
}
.policy hr {
	border: none;
	border-top: 1px solid #e5e5e5;
	margin: 40px 0;
}
.policy {
	/* Адаптив */
}
@media (max-width: 768px) {
	.policy h1 {
		font-size: 26px;
	}
	.policy h2 {
		font-size: 20px;
	}
}

.error {
	margin-top: 12px;
	margin-bottom: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.error {
		margin-top: 10px;
		margin-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.error {
		margin-bottom: 50px;
	}
}
.error__img {
	margin-bottom: 80px;
}
@media (max-width: 767px) {
	.error__img {
		margin-bottom: 70px;
	}
}
.error__title {
	color: #000;
	font-size: 32px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.error__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 26px;
		text-align: center;
	}
}
.error__text {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.error__text {
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
		text-align: center;
	}
}
.error__btn {
	width: 325px;
	height: 68px;
}
@media (max-width: 767px) {
	.error__btn {
		height: 49px;
	}
}
@media (max-width: 480px) {
	.error__btn {
		width: 100%;
	}
}

.contacts {
	padding-top: 20px;
	padding-bottom: 100px;
	background-image: url(../img/bg-intro.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}
@media (max-width: 1024px) {
	.contacts {
		padding-bottom: 70px;
	}
}
@media (max-width: 767px) {
	.contacts {
		padding-bottom: 50px;
	}
}
.contacts__content {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}
@media (max-width: 1024px) {
	.contacts__content {
		flex-direction: column;
		gap: 50px;
	}
}
@media (max-width: 767px) {
	.contacts__content {
		margin-top: 20px;
	}
}
.contacts__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.contacts__left-top {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media (max-width: 1024px) {
	.contacts__left-top {
		margin-bottom: 20px;
	}
}
.contacts__title {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
@media (max-width: 767px) {
	.contacts__title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
	}
}
.contacts__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}
@media (max-width: 767px) {
	.contacts__list {
		gap: 20px;
	}
}
.contacts__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.contacts__item-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 35px;
	background: #f65e01;
}
.contacts__item-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}
.contacts__item-label {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.contacts__item-value {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
.contacts__line {
	display: block;
	width: 362px;
	height: 1px;
	background: #f65e01;
}
@media (max-width: 1024px) {
	.contacts__line {
		margin: 20px 0;
		width: 100%;
	}
}
.contacts__socials {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.contacts__socials-title {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.contacts__socials-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1024px) {
	.contacts__socials-list {
		gap: 9px;
	}
}
.contacts__socials-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 52px;
	border-radius: 30px;
	background-color: #000;
}
.contacts__socials-item:hover {
	background-color: #f65e01;
}
.contacts__right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 478px;
	height: auto;
	padding: 30px;
	border-radius: 20px;
	border: 1px solid #ebebeb;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
	.contacts__right {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.contacts__right {
		padding: 20px;
	}
}
.contacts__right-title {
	color: #000;
	font-size: 40px;
	font-weight: 500;
	line-height: 42px;
	text-align: left;
}
@media (max-width: 767px) {
	.contacts__right-title {
		font-size: 24px;
		font-weight: 500;
		line-height: 28px;
		text-align: left;
	}
}
.contacts__right-text {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-bottom: 20px;
}
.contacts__right form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.contacts__right form .contacts__input {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 55px;
	border-radius: 25px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #ffffff;
	background: #f6f6f6;
}
.contacts__right form .contacts__input::placeholder {
	color: #9498ab;
	opacity: 1;
}
@media (max-width: 767px) {
	.contacts__right form .contacts__input {
		height: 45px;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.contacts__right form .contacts__textarea {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 141px;
	border-radius: 25px;
	padding: 23px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #ffffff;
	background: #f6f6f6;
	resize: none;
}
.contacts__right form .contacts__textarea::placeholder {
	color: #9498ab;
	opacity: 1;
}
@media (max-width: 767px) {
	.contacts__right form .contacts__textarea {
		height: 119px;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		text-align: left;
	}
}
.contacts__right form .btn-primary {
	width: 100%;
	height: 68px;
	border-radius: 48px;
}
@media (max-width: 767px) {
	.contacts__right form .btn-primary {
		width: 100%;
		height: 49px;
		border-radius: 48px;
	}
}

.modal {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 11111;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.modal--active {
	opacity: 1;
	visibility: visible;
}
.modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}
.modal__dialog {
	position: relative;
	padding: 20px;
	max-width: 590px;
	width: 100%;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	transform: translateY(20px);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.modal__dialog {
		max-width: calc(100% - 24px);
		padding: 16px;
	}
}
@media (max-height: 700px) {
	.modal__dialog {
		overflow-y: auto;
		max-height: 95vh;
	}
}
.modal--active .modal__dialog {
	transform: translateY(0);
}
.modal__close {
	margin-left: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal__title {
	margin-bottom: 10px;
}
.modal__text {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.modal__text {
		font-size: 14px;
		font-weight: 500;
		line-height: 16px;
		text-align: left;
	}
}
.modal__tabs {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.modal__tab {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	border-radius: 20px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	border: 1px solid #9498ab;
	background: #ffffff;
}
@media (max-width: 767px) {
	.modal__tab {
		padding: 8px 10px;
		font-size: 14px;
		font-weight: 500;
		line-height: 16px;
		text-align: center;
	}
}
.modal__tab:hover {
	color: #f65e01;
	border-color: #f65e01;
}
.modal__tab.active {
	color: #fff;
	background: #f65e01;
	border-color: #f65e01;
}
.modal form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
@media (max-width: 767px) {
	.modal__form {
		gap: 10px;
	}
}
.modal__form-row {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
@media (max-width: 767px) {
	.modal__form-row {
		flex-direction: column;
		gap: 10px;
	}
}
.modal__form-input {
	width: 100%;
	height: 55px;
	border-radius: 25px;
	padding: 23px 24px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #e8e8e8;
	background: #f7f7f7;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.modal__form-input:focus {
	border-color: #f65e01;
}
.modal__form-input::placeholder {
	color: #9498ab;
	opacity: 1;
}
.modal__form-textarea {
	width: 100%;
	height: 141px;
	border-radius: 25px;
	padding: 23px 24px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border: 1px solid #e8e8e8;
	background: #f7f7f7;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	resize: none;
}
.modal__form-textarea:focus {
	border-color: #f65e01;
}
.modal__form-textarea::placeholder {
	color: #9498ab;
	opacity: 1;
}
.modal__form-btn {
	width: 100%;
	height: 68px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
	.modal__form-btn {
		height: 51px;
	}
}

.footer-wrap {
	padding: 30px 0;
	background: #222222;
}

.footer__top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 43px;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.footer__top {
		flex-direction: column;
		margin-bottom: 30px;
	}
}
.footer__main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.footer__main-top {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.footer__main-top {
		margin-bottom: 30px;
	}
}
.footer__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.footer__text {
	color: #f65e01;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	text-align: left;
	margin-bottom: 10px;
}
.footer__form-label {
	display: block;
	max-width: 349px;
	width: 100%;
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	margin-bottom: 15px;
}
.footer__form form {
	position: relative;
	width: 326px;
	height: 48px;
	overflow: hidden;
}
.footer__form form input {
	width: 100%;
	height: 100%;
	padding: 10px 50px 10px 16px;
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	border-radius: 56px;
	border: 1px solid #d1d5db;
	background: #ffffff;
}
.footer__form form input::placeholder {
	color: #4b5563;
	opacity: 1;
}
.footer__form form button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.footer__main-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.footer__main-bottom--contact {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.footer__main-bottom--contact a {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.footer__main-bottom--contact a:hover {
	color: #f65e01;
}
.footer__nav {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
@media (max-width: 991px) {
	.footer__nav {
		display: none;
	}
}
.footer__nav-col {
	max-width: 205px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.footer__nav-col--title {
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	text-align: left;
}
.footer__nav-col--list {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}
.footer__nav-col--item {
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.footer__nav-col--item:hover {
	color: #f65e01;
}
.footer__bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.footer__bottom-list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 50px;
}
@media (max-width: 991px) {
	.footer__bottom-list {
		flex-direction: column-reverse;
		gap: 10px;
	}
}
.footer__bottom-item {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.footer__bottom-item:first-child {
		margin-top: 40px;
	}
}
.footer__bottom-item a:hover {
	color: #f65e01;
}
.footer__bottom-socials {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	height: 62px;
	padding: 10px 5px;
	border-radius: 20px;
	background: #f6f6f6;
}
@media (max-width: 991px) {
	.footer__bottom-socials {
		display: none;
	}
}
.footer__bottom-social {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 52px;
	border-radius: 30px;
}
.footer__bottom-social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	padding: 4px 12.5px;
	background: #2c2c2c;
}
.footer__bottom-social a:hover {
	background: #f65e01;
}

.custom-checkbox .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	cursor: pointer;
}

.custom-checkbox input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.custom-checkbox .wpcf7-list-item-label {
	position: relative;
	display: block;
	padding-left: 30px;
	cursor: pointer;
}

.custom-checkbox .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #f65e01;
	border-radius: 5px;
	background: #fff;
	transition: 0.2s;
}

.custom-checkbox .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	opacity: 0;
	transition: 0.2s;
}

.custom-checkbox input[type='checkbox']:checked + .wpcf7-list-item-label::before {
	background: #f65e01;
	border-color: #f65e01;
}

.custom-checkbox input[type='checkbox']:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}

.custom-checkbox .wpcf7-list-item-label {
	flex: 1;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}

/* Контейнер повідомлення */
.wpcf7 .wpcf7-response-output {
	width: 100%;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.4;
	margin: 0 !important;
	border: 1px solid transparent;
	animation: cf7FadeIn 0.25s ease;
}

/* Успішна відправка */
.wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf5;
	color: #065f46;
	border-color: #6ee7b7;
}

/* Помилка відправки */
.wpcf7 form.failed .wpcf7-response-output {
	background: #fef2f2;
	color: #991b1b;
	border-color: #fecaca;
}

/* Невалідні поля */
.wpcf7 form.invalid .wpcf7-response-output {
	background: #fff7ed;
	color: #9a3412;
	border-color: #fed7aa;
}

@keyframes cf7FadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wpcf7 form.submitting {
	position: relative;
}

/* Ховаємо стандартний спінер CF7 */
.wpcf7 .wpcf7-spinner {
	display: none !important;
}

/* Оверлей */
.wpcf7 form.submitting::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.65);
	border-radius: 12px;
	z-index: 5;
}

/* Сам лоадер */
.wpcf7 form.submitting::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	border: 3px solid #f2f2f2;
	border-top-color: #000;
	border-radius: 50%;
	animation: cf7Spin 0.8s linear infinite;
	z-index: 6;
}

.content {
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	font-weight: 700;
	line-height: 1.3;
	margin: 40px 0 20px;
}
.content h2 {
	font-size: 32px;
}
.content h3 {
	font-size: 24px;
}
.content h4 {
	font-size: 20px;
}
.content p {
	margin-bottom: 20px;
}
.content ul {
	list-style-type: disc;
	padding-left: 24px;
	margin: 20px 0;
}
.content ol {
	list-style-type: decimal;
	padding-left: 24px;
	margin: 20px 0;
}
.content li {
	margin-bottom: 10px;
}
.content a {
	color: #f65e01;
	text-decoration: underline;
	transition: 0.2s;
}
.content a:hover {
	text-decoration: none;
}
.content img {
	width: 100%;
	height: 345px;
	border-radius: 20px;
	object-fit: cover;
	margin: 20px 0;
}
@media (max-width: 767px) {
	.content img {
		height: 229px;
	}
}
.content blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: #f5f5f5;
	border-left: 4px solid #f65e01;
	font-style: italic;
}
.content table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
}
.content th,
.content td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}
