@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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;
}

/* Для Chrome, Safari, Edge, Opera */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Для Firefox */
input[type='number'] {
	-moz-appearance: textfield;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

html,
body {
	scroll-behavior: smooth;
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
	background: #ffffff;
	color: #030a33;
	line-height: 1.4;
}

body.locked-scroll {
	overflow: hidden;
}

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;
}
button {
	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;
	cursor: pointer;
}

a {
	display: block;
	-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;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.d-flex {
	display: flex;
}

.d-block {
	display: block;
}

.hidden {
	display: none;
}

.visible {
	visibility: visible;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-lowercase {
	text-transform: lowercase;
}

.title {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.title {
		margin-bottom: 20px;
	}
}
.title__head {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.title__head span {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
.title__head h2 {
	max-width: 1000px;
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: left;
}
@media (max-width: 767px) {
	.title__head h2 {
		max-width: 176px;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: left;
	}
}
.title__description {
	max-width: 750px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.title__description {
		max-width: 100%;
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}

.desktop {
	display: flex !important;
}
@media (max-width: 1024px) {
	.desktop {
		display: none !important;
	}
}

.tablet {
	display: none !important;
}
@media (max-width: 1024px) {
	.tablet {
		display: flex !important;
	}
}

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

.header-wrap {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 111;
	background-color: #e3e6ec;
}

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.header__logo {
	width: 50px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
@media (max-width: 1024px) {
	.header__nav {
		display: none;
	}
}
.header__nav-item-wrap {
	position: relative;
}
.header .submenu {
	position: absolute;
	top: 100%;
	left: -10px;
	z-index: 999;
	background: #ffffff;
	padding: 15px 5px;
	border-radius: 5px;
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	-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;
}
.header .submenu a {
	padding: 5px;
	border-radius: 5px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: normal;
	text-align: left;
	white-space: nowrap;
}
.header .submenu a:hover {
	color: #283acf;
	background: #e3e6ec;
}
.header .submenu a.active {
	color: #283acf;
	background: #e3e6ec;
}
.header .icon-chevron {
	font-size: 1.5rem;
	-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;
}
.header__nav-item-wrap:hover .submenu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.header__nav-item-wrap:hover .icon-chevron {
	color: #283acf;
	transform: rotateX(180deg);
}
.header__nav-item-wrap:hover .header__nav-item {
	color: #283acf;
}
.header__nav-item-wrap:hover .header__nav-item:before {
	width: 79%;
}
.header__nav-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: normal;
	text-align: left;
}
.header__nav-item:before {
	content: '';
	position: absolute;
	top: auto;
	right: auto;
	bottom: 15px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #283acf;
	-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;
}
.header__nav-item:hover {
	color: #283acf;
}
.header__nav-item:hover:before {
	width: 100%;
}
.header__nav-item.active {
	color: #283acf;
}
.header__nav-item.active:before {
	width: 100%;
}
.header__right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 36px;
}
.header__switch {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.header__switch.mobile > .header__switch-item {
	position: relative;
	z-index: 111;
	color: #ffffff;
}
.header__switch.mobile > .header__switch-item:before {
	background-color: #ffffff;
}
.header__switch-item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: normal;
	text-align: left;
}
.header__switch-item:before {
	content: '';
	position: absolute;
	top: auto;
	right: auto;
	bottom: 15px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #283acf;
	-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;
}
.header__switch-item:hover {
	color: #283acf;
}
.header__switch-item:hover:before {
	width: 100%;
}
.header__switch-item.active {
	color: #283acf;
}
.header__switch-item.active:before {
	width: 100%;
}
.header__social {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 1024px) {
	.header__social {
		display: none;
	}
}
.header__social-item {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14.2px 0px 14.21px 0px;
	border-radius: 25px;
	font-size: 1.3125rem;
}
.header .facebook {
	background: #ffffff;
}
.header .facebook:hover {
	color: #ffffff;
	background: #1a77f2;
}
.header .instagram {
	background: linear-gradient(237deg, #ffffff 0%, #ffffff 100%);
}
.header .instagram:hover {
	color: #ffffff;
	background: linear-gradient(
		237deg,
		#ee4e81 17.85%,
		#cf338e 48.15%,
		#b738b3 63.68%,
		#5d51db 79.21%
	);
}

.toggle {
	position: relative;
	width: 50px;
	height: 50px;
	display: none;
	cursor: pointer;
	overflow: hidden;
	z-index: 111;
}
@media (max-width: 1024px) {
	.toggle {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.toggle span {
	position: absolute;
	width: 40px;
	height: 2px;
	border-radius: 4px;
	background-color: #000000;
	-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;
}

.toggle span:nth-child(1) {
	transform: translateY(-15px);
	width: 25px;
	left: 5px;
}

.toggle span:nth-child(2) {
	transform: translateY(15px);
	width: 15px;
	left: 5px;
}

.toggle span:nth-child(3) {
	transform: translateX(0);
}

/* Active (clicked) state */
.toggle.active span:nth-child(1) {
	background-color: #ffffff;
	width: 40px;
	transform: translateY(0) rotate(45deg);
	transition-delay: 0.125s;
}

.toggle.active span:nth-child(2) {
	background-color: #ffffff;
	width: 40px;
	transform: translateY(0) rotate(315deg);
	transition-delay: 0.125s;
}

.toggle.active span:nth-child(3) {
	background-color: #ffffff;
	transform: translateX(60px);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #030a33;
	z-index: 100;
	display: none;
	padding: 10px 40px;
	overflow: 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;
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 1024px) {
	.mobile-menu {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.mobile-menu {
		padding: 10px 16px;
	}
}
.mobile-menu.active {
	opacity: 1;
	pointer-events: auto;
}
.mobile-menu__logo {
	width: 50px;
	height: 54px;
	margin-bottom: 56px;
}
@media (max-width: 767px) {
	.mobile-menu__logo {
		margin-bottom: 80px;
	}
}
.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-bottom: 145px;
}
@media (max-width: 767px) {
	.mobile-menu__nav {
		gap: 20px;
		margin-bottom: 50px;
	}
}
.mobile-menu__nav-item {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
}
@media (max-width: 767px) {
	.mobile-menu__nav-item {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: left;
	}
}
.mobile-menu__social {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
@media (max-width: 767px) {
	.mobile-menu__social {
		gap: 20px;
	}
}
.mobile-menu__social-item {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14.2px 0px 14.21px 0px;
	border-radius: 25px;
	font-size: 1.3125rem;
}
.mobile-menu .facebook {
	color: #ffffff;
	background: #1a77f2;
}
.mobile-menu .instagram {
	color: #ffffff;
	background: linear-gradient(
		237deg,
		#ee4e81 17.85%,
		#cf338e 48.15%,
		#b738b3 63.68%,
		#5d51db 79.21%
	);
}

.hero-wrap {
	width: 100%;
	height: 803px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@media (max-width: 1024px) {
	.hero-wrap {
		height: 1000px;
	}
}
@media (max-width: 767px) {
	.hero-wrap {
		height: 600px;
	}
}

.hero {
	padding-top: 391px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1024px) {
	.hero {
		padding-top: 284px;
	}
}
@media (max-width: 767px) {
	.hero {
		padding-top: 120px;
	}
}
.hero__title {
	font-family: 'Poppins', sans-serif;
	color: #ffffff;
	font-size: 4rem;
	font-weight: 700;
	line-height: 70px;
	text-align: center;
}
@media (max-width: 1024px) {
	.hero__title {
		margin-bottom: 220px;
	}
}
@media (max-width: 767px) {
	.hero__title {
		margin-bottom: 100px;
		font-size: 2rem;
		line-height: 40px;
	}
}
.hero__text {
	max-width: 591px;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
}
@media (max-width: 1024px) {
	.hero__text {
		max-width: 518px;
	}
}
@media (max-width: 767px) {
	.hero__text {
		max-width: 343px;
	}
}

.advantages-wrap {
	background-color: #e3e6ec;
	padding: 21px 0;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.advantages-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 1024px) {
	.advantages-wrap .container {
		padding: 0 !important;
	}
}

.advantages__item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
.advantages__item i {
	font-size: 3.125rem;
}

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

.about {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
	gap: 24px;
}
.about__left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
}
@media (max-width: 1024px) {
	.about__left {
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}
}
.about__left-img {
	width: 300px;
	height: 472px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.about__left-img {
		width: 100%;
		height: 338px;
	}
}
.about__left-content {
	max-width: 408px;
}
@media (max-width: 1024px) {
	.about__left-content {
		max-width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 24px;
	}
}
@media (max-width: 767px) {
	.about__left-content {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 20px;
	}
}
.about__left-content--img {
	display: none;
}
@media (max-width: 1024px) {
	.about__left-content--img {
		display: block;
		width: 365px;
		height: 430px;
		border-radius: 30px;
		object-fit: cover;
	}
}
@media (max-width: 767px) {
	.about__left-content--img {
		width: 100%;
		height: 490px;
	}
}
.about__left-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 54px;
}
@media (max-width: 1024px) {
	.about__left-text {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.about__left-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	.about__left-btn {
		display: none !important;
	}
}
.about__right-img {
	position: relative;
	top: -120px;
	width: 516px;
	height: 597px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.about__right-img {
		display: none;
	}
}
.about-mobile-btn {
	display: none !important;
}
@media (max-width: 767px) {
	.about-mobile-btn {
		display: flex !important;
		margin: 20px auto auto auto;
	}
}

.mission-wrap {
	padding: 62px 0;
	background: #e3e6ec;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.mission-wrap {
		padding: 40px 0;
	}
}

.mission__block:last-child {
	width: fit-content;
	margin-left: auto;
}
.mission__block:last-child .title {
	margin: 0;
}

.mission__text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 54px;
}
@media (max-width: 767px) {
	.mission__text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
		margin-bottom: 0;
	}
}

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

.path {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
}
@media (max-width: 767px) {
	.path {
		flex-direction: column;
		justify-content: flex-start;
		gap: 20px;
	}
}
.path__bg {
	position: absolute;
	top: -280px;
	right: 0;
}
@media (max-width: 1024px) {
	.path__bg {
		top: -260px;
		width: 235px;
		height: 143px;
	}
}
@media (max-width: 767px) {
	.path__bg {
		display: none;
	}
}
.path__left {
	position: relative;
}
.path__left .large {
	width: 465px;
	height: 459px;
	object-fit: cover;
	border-radius: 30px;
}
@media (max-width: 1024px) {
	.path__left .large {
		width: 100%;
		height: 100%;
	}
}
@media (max-width: 1024px) {
	.path__left {
		width: 100%;
		height: 400px;
	}
}
@media (max-width: 767px) {
	.path__left {
		width: 100%;
		height: 321px;
	}
}
.path__left-wrap-img {
	position: absolute;
	right: -9px;
	bottom: -9px;
	width: 241px;
	height: 226px;
	background-color: #ffffff;
	border-radius: 18px 0 18px 0;
	padding: 9px;
}
@media (max-width: 1024px) {
	.path__left-wrap-img {
		width: 175px;
		height: 211px;
	}
}
@media (max-width: 767px) {
	.path__left-wrap-img {
		width: 169px;
		height: 169px;
	}
}
.path__left-wrap-img .small {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 10px 0;
}
.path__right {
	max-width: 622px;
}
@media (max-width: 1024px) {
	.path__right {
		max-width: 50%;
	}
}
@media (max-width: 767px) {
	.path__right {
		max-width: 100%;
	}
}
.path__right-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.path__right-text {
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	.path__right-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.path__right-list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.path__right-list {
		display: none;
	}
}
.path__right-item {
	max-width: 192px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.path__right-item span {
	display: block;
	color: #283acf;
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 10px;
}
.path__bottom-list {
	display: none;
}
@media (max-width: 1024px) {
	.path__bottom-list {
		margin-top: 50px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 30px;
	}
}
@media (max-width: 767px) {
	.path__bottom-list {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
	}
}

.counter {
	font-weight: bold;
	transition: all 0.3s ease;
}

.help-wrap {
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.help-wrap {
		margin-bottom: 50px;
	}
}
.help-wrap .title {
	margin-bottom: 20px;
}

.help {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 50px;
}
@media (max-width: 767px) {
	.help {
		align-items: center;
	}
}
.help__btn {
	margin-left: 0 !important;
}
@media (max-width: 767px) {
	.help__btn {
		margin-left: -60px !important;
	}
}
.help__btn span {
	font-size: 1rem;
	transform: rotate(180deg);
}
.help__btn:hover span {
	transform: rotate(160deg);
}
.help__swiper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.help__swiper-slide {
	position: relative;
	height: 415px;
	border-radius: 12px;
	overflow: hidden;
	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;
}
.help__swiper-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: 3;
	border-radius: 12px;
	-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;
}
.help__swiper-slide:hover::after {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(40px);
}
.help__swiper-slide:hover .help__swiper-slide--link {
	background: #030a33;
	border-color: #030a33;
}
.help__swiper-slide:hover .help__swiper-slide--link i {
	transform: rotate(160deg);
}
.help__swiper-slide:hover .help__swiper-slide--title {
	top: 113px;
}
.help__swiper-slide:hover .help__swiper-slide--text {
	top: 186px;
}
.help__swiper-slide--link {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 4;
	width: 50px;
	height: 50px;
	padding: 12px 11px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	border: 1px solid #ffffff;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(25px);
	color: #ffffff;
}
.help__swiper-slide--link i {
	transform: rotate(200deg);
	-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;
}
.help__swiper-slide--img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 3;
}
.help__swiper-slide--title {
	width: 100%;
	padding: 0 20px;
	position: absolute;
	left: 0;
	top: 332px;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	z-index: 5;
	-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;
}
.help__swiper-slide--text {
	width: 100%;
	padding: 0 20px;
	position: absolute;
	left: 0;
	top: 420px;
	color: #ffffff;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
	z-index: 5;
	-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;
}
.help__swiper-nav {
	position: absolute;
	top: 0;
	right: 0 !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25px;
	height: auto;
}
@media (max-width: 767px) {
	.help__swiper-nav {
		position: static;
		margin: auto;
		margin-top: -30px;
	}
}

.swiper-button-next,
.swiper-button-prev {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	padding: 15px 12px;
	border-radius: 22.5px;
	border: 1px solid #283acf;
	position: static;
	color: #283acf;
	margin-top: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: #283acf;
	color: #ffffff;
}

.swiper-button-next {
	transform: rotate(180deg);
}

.partners {
	background: #e3e6ec;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.partners {
		margin-bottom: 50px;
	}
}
.partners__content {
	position: relative;
	padding: 62px 0;
}
@media (max-width: 767px) {
	.partners__content {
		padding: 40px 0;
	}
}
.partners__swiper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.partners__item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 99px;
	border-radius: 30px;
	background: #ffffff;
	overflow: hidden;
}
.partners__item img {
	min-width: 100px;
	max-width: 115px;
	object-fit: cover;
}
.partners__link {
	display: flex;
	justify-content: center;
	align-items: center;
}
.partners__swiper-nav {
	position: absolute;
	top: -100px;
	right: 0 !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25px;
	height: auto;
}
@media (max-width: 767px) {
	.partners__swiper-nav {
		position: static;
		margin: auto;
		margin-top: 20px;
	}
}
.partners-button-next,
.partners-button-prev {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	padding: 15px 12px;
	border-radius: 22.5px;
	border: 1px solid #283acf;
	position: static;
	color: #283acf;
	margin-top: 0;
}
.partners-button-next::after,
.partners-button-prev::after {
	display: none;
}
.partners-button-next:hover,
.partners-button-prev:hover {
	background-color: #283acf;
	color: #ffffff;
}
.partners-button-next {
	transform: rotate(180deg);
}

.video-wrap {
	margin-top: -50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.video-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 1024px) {
	.video-wrap {
		margin-top: 0;
	}
}

.video {
	position: relative;
	width: 100%;
	height: 497px;
	overflow: hidden;
	border-radius: 40px;
}
@media (max-width: 1024px) {
	.video {
		height: 288px;
	}
}
@media (max-width: 767px) {
	.video {
		height: 214px;
	}
}
.video__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 3;
}
.video iframe {
	width: 100%;
	height: 100%;
}
.video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 4;
}
@media (max-width: 1024px) {
	.video__play {
		width: 87px;
		height: 87px;
	}
}

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

.faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.faq__title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.faq__title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
	}
}
.faq__text {
	max-width: 600px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	margin: auto;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.faq__text {
		max-width: 100%;
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: center;
	}
}
.faq__btn {
	margin-bottom: 35px;
}
@media (max-width: 767px) {
	.faq__btn {
		margin-bottom: 50px;
	}
}
.faq__list {
	width: 992px;
}
@media (max-width: 1024px) {
	.faq__list {
		width: 100%;
	}
}
.faq__item {
	padding-bottom: 15px;
	border-bottom: 1px solid #bbbbbb;
	margin-bottom: 25px;
}
@media (max-width: 767px) {
	.faq__item {
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
}
.faq__item-head {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}
.faq__item-head p {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
.faq__item-head i {
	font-size: 2.5625rem;
	position: relative;
	top: 5px;
	-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;
}
.faq__item-body {
	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;
	width: 90%;
}
.faq__item-body p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.footer-wrap {
	padding: 20px 0 24px 0;
	background-color: #e3e6ec;
}

.footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 20px;
}
@media (max-width: 767px) {
	.footer {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}
.footer__left-logo {
	width: 50px;
	height: 54px;
	margin-bottom: 25px;
}
.footer__left-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 18px;
}
.footer__left-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.footer__left-item a,
.footer__left-item span {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.footer__left-item a,
	.footer__left-item span {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.footer__left-social {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.footer__left-social-item {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14.2px 0px 14.21px 0px;
	border-radius: 25px;
	font-size: 1.3125rem;
}
.footer .facebook {
	color: #ffffff;
	background: #1a77f2;
}
.footer .instagram {
	color: #ffffff;
	background: linear-gradient(
		237deg,
		#ee4e81 17.85%,
		#cf338e 48.15%,
		#b738b3 63.68%,
		#5d51db 79.21%
	);
}
.footer__right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
}
@media (max-width: 767px) {
	.footer__right {
		align-items: flex-start;
	}
}
.footer__right-nav {
	margin-top: 15px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	margin-bottom: 46px;
}
@media (max-width: 1024px) {
	.footer__right-nav {
		flex-wrap: wrap;
	}
}
@media (max-width: 767px) {
	.footer__right-nav {
		display: none;
	}
}
.footer__right-item:hover {
	color: #283acf;
}
.footer__right-btn {
	position: relative;
	right: 50px;
	margin-bottom: 69px;
}
@media (max-width: 1024px) {
	.footer__right-btn {
		margin-bottom: 43px;
	}
}
@media (max-width: 767px) {
	.footer__right-btn {
		position: absolute !important;
		top: 0;
		right: 50px;
	}
}
.footer__right-documents {
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	text-decoration-line: underline;
}
@media (max-width: 767px) {
	.footer__right-documents {
		margin-top: 50px;
	}
}
.footer__descr {
	padding-top: 20px;
	border-top: 1px solid #bbbbbb;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 767px) {
	.footer__descr {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 10px;
	}
}
.footer__descr-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}
.footer__descr p {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.footer__descr a {
	display: block;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	text-decoration: underline;
}

.breadcrumbs-wrap {
	padding-top: 20px;
	padding-bottom: 20px;
}
@media (max-width: 1024px) {
	.breadcrumbs-wrap {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.breadcrumbs__list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}
.breadcrumbs__item {
	color: #bbbbbb;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.breadcrumbs__item {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.breadcrumbs__chev {
	font-size: 1.5rem;
	transform: rotate(-90deg);
}
.breadcrumbs__item.active {
	color: #030a33;
}

.head-wrap {
	width: 100%;
	height: 483px;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
}
@media (max-width: 767px) {
	.head-wrap {
		padding-top: 50px;
		height: 400px;
	}
}

.head__title {
	margin-bottom: 10px;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
}
@media (max-width: 767px) {
	.head__title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
	}
}
.head__text {
	max-width: 700px;
	margin: auto;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
}
@media (max-width: 1024px) {
	.head__text {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.head__text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 25px;
		text-align: center;
	}
}
.head__btn-wrap {
	width: 290px;
	margin: auto;
	margin-top: 20px;
}
@media (max-width: 767px) {
	.head__btn-wrap {
		width: 70%;
	}
}
.head__btn span {
	font-size: 1rem;
	transform: rotate(180deg);
}
.head__btn:hover span {
	transform: rotate(160deg);
}
.head__btns {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 100px;
}
@media (max-width: 1024px) {
	.head__btns {
		flex-direction: column;
		gap: 20px;
	}
}
.head__btns .btn-charity {
	margin-left: 0;
}
@media (max-width: 1024px) {
	.head__btns .btn-charity {
		margin-left: -50px;
	}
}
.head__btn-join {
	position: relative;
	left: 50%;
	transform: translate(-50%);
	width: 315px;
	margin-top: 20px;
}

.info {
	padding-top: 50px;
	padding-bottom: 100px;
}
@media (max-width: 767px) {
	.info {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}
.info__block {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
}
@media (max-width: 767px) {
	.info__block {
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 20px;
	}
}
.info__block h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
	margin-bottom: 15px;
}
@media (max-width: 767px) {
	.info__block h2 {
		font-size: 1.5rem;
		line-height: 30px;
	}
}
.info__block p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.info__block p {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
		position: relative;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
	}
}
.info__block.expanded p {
	-webkit-line-clamp: unset;
	overflow: visible;
	display: block;
}
.info__block img.horizontal {
	display: flex;
	flex-shrink: 0;
	width: 516px;
	height: 325px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.info__block img.horizontal {
		width: 365px;
		height: 544px;
	}
}
@media (max-width: 767px) {
	.info__block img.horizontal {
		width: 100%;
		height: 299px;
	}
}
.info__block img.vertical {
	display: flex;
	flex-shrink: 0;
	width: 325px;
	height: 516px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.info__block img.vertical {
		width: 544px;
		height: 365px;
	}
}
@media (max-width: 767px) {
	.info__block img.vertical {
		width: 100%;
		height: 299px;
	}
}
.info__toggle {
	display: none;
}
@media (max-width: 767px) {
	.info__toggle {
		display: block;
		font-size: 1rem;
		color: #283acf;
		margin-left: auto;
		position: relative;
		top: -15px;
	}
}
.info__block:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.info__block:not(:last-child) {
		margin-bottom: 14px;
	}
}
.info__block:nth-child(2n) {
	flex-direction: row-reverse;
}
@media (max-width: 767px) {
	.info__block:nth-child(2n) {
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 20px;
	}
}

.reporting-wrap {
	background: #e3e6ec;
	padding: 50px 0;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.reporting-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.reporting-wrap {
		padding: 20px 0;
	}
}

.reporting {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.reporting {
		justify-content: center;
		gap: 20px;
	}
}
.reporting__item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 32px 10px;
	width: 230px;
	height: 114px;
	border-radius: 30px;
	border: 1px solid #283acf;
	background: #ffffff;
	box-shadow: 0px 0px 4px 0px #283acf;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: normal;
	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;
	cursor: pointer;
}
@media (max-width: 767px) {
	.reporting__item {
		justify-content: center;
		gap: 20px;
		width: 161px;
		height: 114px;
		font-size: 1rem;
		font-weight: 600;
		line-height: 24px;
		text-align: center;
	}
}
.reporting__item span {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	color: #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;
	z-index: 5;
}
.reporting__item:hover {
	color: #000000;
	background: #000000;
	box-shadow: none;
	border-color: #000000;
}
.reporting__item:hover span {
	opacity: 1;
}

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

.position {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
}
@media (max-width: 1024px) {
	.position {
		justify-content: flex-start;
	}
}
.position__item {
	width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
@media (max-width: 1024px) {
	.position__item {
		width: 48%;
	}
}
@media (max-width: 767px) {
	.position__item {
		width: 100%;
	}
}
.position__item-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	padding: 10px;
	gap: 10px;
	font-size: 3.125rem;
	color: #283acf;
	background: #ffffff;
	box-shadow: 0px 0px 12px 0px #283acf, 0px 0px 6px 0px rgba(40, 58, 207, 0.72);
}
.position__item-title {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
}
.position__item-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}

.complaints-wrap {
	padding: 50px 0;
	background: url(../img/complaints-bg.png) lightgray 50% / cover no-repeat;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.complaints-wrap {
		margin-bottom: 50px;
	}
}

.complaints {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 28px;
}
@media (max-width: 1024px) {
	.complaints {
		flex-direction: column;
	}
}
.complaints__left {
	padding: 40px;
	background: #030a33;
	backdrop-filter: blur(40px);
	width: 50%;
	height: 638px;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1024px) {
	.complaints__left {
		width: 606px;
		height: auto;
	}
}
@media (max-width: 767px) {
	.complaints__left {
		width: 100%;
		padding: 20px 10px;
	}
}
.complaints__left-title {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.complaints__left-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
		margin-bottom: 20px;
	}
}
.complaints__left-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	list-style-type: disc;
	list-style-position: inside;
}
.complaints__left-item {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.complaints__left-item {
		font-size: 1rem;
		font-weight: 400;
		line-height: 25px;
		text-align: left;
	}
}
.complaints__right {
	width: 50%;
	height: 638px;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	background: #ffffff;
	backdrop-filter: blur(40px);
}
@media (max-width: 1024px) {
	.complaints__right {
		width: 606px;
	}
}
@media (max-width: 767px) {
	.complaints__right {
		width: 100%;
		height: auto;
		padding: 20px 10px;
	}
}
.complaints__right-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.complaints__right-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
	}
}
.complaints__right-text {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.complaints__right-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
		margin-bottom: 10px;
	}
}

.directions-wrap {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.directions-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.directions-wrap {
		margin-top: 20px;
	}
}

.directions {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
	flex-wrap: wrap;
}
.directions__item {
	width: 30%;
}
@media (max-width: 1024px) {
	.directions__item {
		width: 46%;
	}
}
@media (max-width: 767px) {
	.directions__item {
		width: 100%;
	}
}
.directions__item-img {
	width: 100%;
	height: 246px;
	border-radius: 30px;
	object-fit: cover;
	margin-bottom: 10px;
}
.directions__item-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 25px;
	text-align: left;
	margin-bottom: 10px;
}
.directions__item-text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.news-wrap {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.news-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.news-wrap {
		margin-top: 20px;
	}
}
.news-wrap__btn {
	margin-top: 50px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.news {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
}
@media (max-width: 1024px) {
	.news {
		gap: 20px;
	}
}
.news__item {
	width: 32%;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}
@media (max-width: 1024px) {
	.news__item {
		width: 48%;
	}
}
@media (max-width: 767px) {
	.news__item {
		width: 100%;
	}
}
.news__item-img {
	width: 100%;
	height: 216px;
	object-fit: cover;
}
@media (max-width: 767px) {
	.news__item-img {
		height: 200px;
	}
}
.news__item-content {
	padding: 20px;
}
.news__item-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 30px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.news__item-title {
		font-size: 1.2rem;
		font-weight: 700;
		line-height: 20px;
		text-align: left;
	}
}
.news__item-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.news__item-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.news__item-bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.news__item-date {
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.news__item-date {
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.news__item-link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.news__item-link {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.news__item-link i {
	transform: rotate(180deg);
	font-size: 0.9375rem;
}
@media (max-width: 767px) {
	.news__item-link i {
		font-size: 0.75rem;
	}
}

.news-slider-wrap {
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.news-slider-wrap {
		margin-bottom: 50px;
	}
}

.news-swiper-wrapper {
	position: relative;
}

.news__swiper {
	width: 100%;
	overflow: hidden;
	padding: 5px;
}
.news__swiper__swiper-nav {
	position: absolute;
	top: -100px;
	right: 0 !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25px;
	height: auto;
}
@media (max-width: 767px) {
	.news__swiper__swiper-nav {
		position: static;
		margin: auto;
		margin-top: 20px;
	}
}
.news__swiper-button-next,
.news__swiper-button-prev {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	padding: 15px 12px;
	border-radius: 22.5px;
	border: 1px solid #283acf;
	position: static;
	color: #283acf;
	margin-top: 0;
}
.news__swiper-button-next::after,
.news__swiper-button-prev::after {
	display: none;
}
.news__swiper-button-next:hover,
.news__swiper-button-prev:hover {
	background-color: #283acf;
	color: #ffffff;
}
.news__swiper-button-next {
	transform: rotate(180deg);
}

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

.videos__item {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 55px;
	padding: 26px 20px;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
	.videos__item {
		flex-direction: column;
		gap: 20px;
	}
}
.videos__item:not(:last-child) {
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.videos__item:not(:last-child) {
		margin-bottom: 20px;
	}
}
.videos__item-video {
	display: flex;
	position: relative;
	width: 680px;
	height: 344px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 30px;
}
@media (max-width: 1024px) {
	.videos__item-video {
		width: 343px;
		height: 344px;
	}
}
@media (max-width: 767px) {
	.videos__item-video {
		width: 100%;
		height: 192px;
	}
}
.videos__item-video iframe {
	width: 100%;
	height: 100%;
}
.videos__item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 3;
}
.videos__item-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 4;
}
@media (max-width: 1024px) {
	.videos__item-play {
		width: 87px;
		height: 87px;
	}
}
.videos__item-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.videos__item-content h3 {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.videos__item-content p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.videos__item-content p {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.videos__item__date {
	position: absolute;
	right: 20px;
	bottom: 26px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.videos__item__date {
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}

.new-wrap {
	margin-top: 30px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.new-wrap {
		margin-bottom: 50px;
	}
}

.new__top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 34px;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.new__top {
		flex-direction: column;
		gap: 20px;
	}
}
.new__img-large {
	width: 100%;
	height: 402px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 767px) {
	.new__img-large {
		height: 300px;
	}
}
.new__text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	overflow-wrap: anywhere;
}
@media (max-width: 767px) {
	.new__text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.gallery {
	position: relative;
	margin-top: 100px;
}
@media (max-width: 991px) {
	.gallery {
		margin-top: 50px;
	}
}
.gallery__img-small {
	width: 100%;
	height: 233px;
	border-radius: 30px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.gallery__img-small {
		height: 180px;
	}
}
@media (max-width: 767px) {
	.gallery__img-small {
		height: 130px;
		border-radius: 20px;
	}
}
.gallery__swiper-nav {
	position: absolute;
	top: 0;
	right: 0 !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 25px;
	height: auto;
}
@media (max-width: 767px) {
	.gallery__swiper-nav {
		position: static;
		margin: auto;
		margin-top: 20px;
	}
}
.gallery__swiper-button-next,
.gallery__swiper-button-prev {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	padding: 15px 12px;
	border-radius: 22.5px;
	border: 1px solid #283acf;
	position: static;
	color: #283acf;
	margin-top: 0;
}
.gallery__swiper-button-next::after,
.gallery__swiper-button-prev::after {
	display: none;
}
.gallery__swiper-button-next:hover,
.gallery__swiper-button-prev:hover {
	background-color: #283acf;
	color: #ffffff;
}
.gallery__swiper-button-next {
	transform: rotate(180deg);
}
.influence-wrap {
	margin-top: 100px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.influence-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.influence-wrap {
		margin-top: 50px;
	}
}

.influence {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 150px;
}
@media (max-width: 1024px) {
	.influence {
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.influence {
		flex-wrap: wrap;
	}
}
.influence p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.influence p {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.influence img {
	width: 636px;
	height: 444px;
	object-fit: cover;
	border-radius: 30px;
}
@media (max-width: 1024px) {
	.influence img {
		width: 367px;
		height: 569px;
	}
}
@media (max-width: 767px) {
	.influence img {
		width: 100%;
		height: 275px;
	}
}

.error {
	position: relative;
	padding-top: 50px;
	padding-bottom: 100px;
}
@media (max-width: 767px) {
	.error {
		padding-bottom: 50px;
	}
}
.error .container {
	position: relative;
	z-index: 2;
}
.error__bg {
	position: absolute;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 752px;
	height: 593px;
	border-radius: 752px;
	background: linear-gradient(90deg, #fef4b7 0%, #8ab4da 50%, #4591f6 100%);
	filter: blur(100px);
}
@media (max-width: 1024px) {
	.error__bg {
		width: 500px;
		height: 500px;
		border-radius: 500px;
	}
}
@media (max-width: 767px) {
	.error__bg {
		width: 375px;
		height: 326px;
		border-radius: 375px;
	}
}
.error__title {
	font-family: 'Poppins', sans-serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 70px;
	text-align: center;
	margin-bottom: 30px;
}
@media (max-width: 1024px) {
	.error__title {
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.error__title {
		font-size: 2.25rem;
		font-weight: 700;
		line-height: 50px;
		text-align: center;
		margin-bottom: 50px;
	}
}
.error__number {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-family: 'Poppins', sans-serif;
	font-size: 200px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.error__number {
		font-size: 160px;
		margin-bottom: 20px;
	}
}
.error__number img {
	width: 167px;
	height: 167px;
}
@media (max-width: 1024px) {
	.error__number img {
		width: 122px;
		height: 122px;
	}
}
.error__text {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.error__text {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 25px;
		text-align: center;
	}
}
.error__btn {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.contacts-wrap {
	padding: 50px 0;
	background: url(../img/contacts-bg.png) no-repeat;
	background-size: cover;
}
@media (max-width: 767px) {
	.contacts-wrap {
		padding: 20px 0;
	}
}

.contacts {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}
@media (max-width: 1024px) {
	.contacts {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}
}
.contacts__content-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.contacts__content-list {
		flex-direction: row;
	}
}
@media (max-width: 767px) {
	.contacts__content-list {
		flex-direction: column;
	}
}
.contacts__content-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.contacts__content-line {
	display: block;
	width: 300px;
	height: 1px;
	background-color: #bbbbbb;
	margin-bottom: 20px;
}
@media (max-width: 1024px) {
	.contacts__content-line {
		width: 100%;
	}
}
.contacts__content-label--social {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.contacts__content-label--social {
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.contacts__content-social {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.contacts__content-social .facebook {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #1a77f2;
	color: #ffffff;
	font-size: 1.375rem;
}
.contacts__content-social .instagram {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: linear-gradient(
		237deg,
		#ee4e81 17.85%,
		#cf338e 48.15%,
		#b738b3 63.68%,
		#5d51db 79.21%
	);
	color: #ffffff;
	font-size: 1.375rem;
}
.contacts__content-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #ffffff;
	font-size: 2rem;
}
.contacts__content-label {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.contacts__content-label {
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.contacts__content-value {
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.contacts__form {
	width: 606px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	padding: 32px 40px 40px 40px;
	border-radius: 30px;
	background: #ffffff;
	backdrop-filter: blur(40px);
}
@media (max-width: 767px) {
	.contacts__form {
		width: 100%;
		padding: 20px 10px;
	}
}
.contacts__form-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.contacts__form-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
	}
}
.contacts__form-text {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.contacts__form-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
	}
}

.contacts-map {
	width: 100%;
	height: 419px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.contacts-map {
		margin-bottom: 50px;
	}
}
@media (max-width: 1024px) {
	.contacts-map {
		height: 281px;
	}
}
@media (max-width: 767px) {
	.contacts-map {
		height: 350px;
	}
}

.tenders-wrap {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.tenders-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.tenders-wrap {
		margin-top: 20px;
	}
}

.tenders {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
	row-gap: 50px;
}
@media (max-width: 1024px) {
	.tenders {
		row-gap: 40px;
	}
}
@media (max-width: 767px) {
	.tenders {
		row-gap: 20px;
	}
}
.tenders__item {
	position: relative;
	width: 32%;
	min-height: 340px;
	padding: 20px 16px 48px 16px;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
	.tenders__item {
		width: 48%;
	}
}
@media (max-width: 767px) {
	.tenders__item {
		width: 100%;
		min-height: 250px;
	}
}
.tenders__item-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.tenders__item-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.tenders__item-start {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.tenders__item-start {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.tenders__item-start span {
	font-weight: 600;
}
.tenders__item-end {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.tenders__item-end {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.tenders__item-end span {
	font-weight: 600;
}
.tenders__item-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.tenders__item-text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.tenders__item-link {
	position: absolute;
	right: 16px;
	bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.tenders__item-link {
		font-size: 1rem;
		font-weight: 700;
		line-height: 20px;
		text-align: left;
	}
}
.tenders__item-link i {
	display: block;
	font-size: 0.9375rem;
	transform: rotate(180deg);
}
@media (max-width: 767px) {
	.tenders__item-link i {
		font-size: 0.75rem;
	}
}

.vacancies-wrap {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.vacancies-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.vacancies-wrap {
		margin-top: 20px;
	}
}

.vacancies {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 24px;
	flex-wrap: wrap;
	row-gap: 50px;
}
@media (max-width: 1024px) {
	.vacancies {
		row-gap: 40px;
	}
}
@media (max-width: 767px) {
	.vacancies {
		row-gap: 20px;
	}
}
.vacancies__item {
	position: relative;
	width: 32%;
	min-height: 208px;
	padding: 20px 16px 48px 16px;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
	.vacancies__item {
		width: 48%;
	}
}
@media (max-width: 767px) {
	.vacancies__item {
		width: 100%;
		min-height: 180px;
	}
}
.vacancies__item-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancies__item-top {
		gap: 5px;
		margin-bottom: 10px;
	}
}
.vacancies__item-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancies__item-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: left;
	}
}
.vacancies__item-date {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancies__item-date {
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.vacancies__item-start {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.vacancies__item-start {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.vacancies__item-start span {
	font-weight: 600;
}
.vacancies__item-end {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 25px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancies__item-end {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.vacancies__item-end span {
	font-weight: 600;
}
.vacancies__item-link {
	position: absolute;
	right: 16px;
	bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancies__item-link {
		font-size: 1rem;
		font-weight: 700;
		line-height: 20px;
		text-align: left;
	}
}
.vacancies__item-link i {
	display: block;
	font-size: 0.9375rem;
	transform: rotate(180deg);
}
@media (max-width: 767px) {
	.vacancies__item-link i {
		font-size: 0.75rem;
	}
}

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

.vacancy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 767px) {
	.vacancy {
		align-items: flex-start;
	}
}
.vacancy__title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy__title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: center;
		margin: auto;
		margin-bottom: 10px;
	}
}
.vacancy__description {
	color: #000000;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.vacancy__description {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
	}
}
.vacancy__conditions {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 60px;
}
@media (max-width: 767px) {
	.vacancy__conditions {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 50px;
	}
}
.vacancy__conditions-item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 24px;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancy__conditions-item {
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.vacancy__conditions-item span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	padding: 10px;
	border-radius: 35px;
	background: #e3e6ec;
	font-size: 50px;
}
.vacancy__duties {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 100px;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.vacancy__duties {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}
}
.vacancy__duties-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.vacancy__duties-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.vacancy__duties-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: left;
	}
}
.vacancy__duties-list {
	width: 408px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
@media (max-width: 1024px) {
	.vacancy__duties-list {
		width: auto;
		max-width: 370px;
	}
}
@media (max-width: 767px) {
	.vacancy__duties-list {
		max-width: 100%;
	}
}
.vacancy__duties-item {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancy__duties-item {
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.vacancy__links {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}
@media (max-width: 1024px) {
	.vacancy__links {
		justify-content: space-between;
	}
}
@media (max-width: 767px) {
	.vacancy__links {
		flex-direction: column-reverse;
		gap: 50px;
	}
}
.vacancy__links a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
}
@media (max-width: 767px) {
	.vacancy__links a {
		font-size: 1rem;
		font-weight: 700;
		line-height: normal;
		text-align: left;
	}
}
.vacancy__links a i {
	font-size: 0.9375rem;
}
@media (max-width: 767px) {
	.vacancy__links a i {
		font-size: 0.75rem;
	}
}

.mt {
	margin-top: 100px;
}
@media (max-width: 1024px) {
	.mt {
		margin-top: 75px;
	}
}
@media (max-width: 767px) {
	.mt {
		margin-top: 50px;
	}
}

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

.join {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 50px;
}
@media (max-width: 1024px) {
	.join {
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.join {
		flex-direction: column;
		margin-bottom: 20px;
	}
}
.join__block {
	width: 50%;
	height: 367px;
	padding: 40px 37px 31px 37px;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
	.join__block {
		height: 470px;
	}
}
@media (max-width: 767px) {
	.join__block {
		width: 100%;
		height: auto;
	}
}
.join__block-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.join__block-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: center;
	}
}
.join__block-list {
	list-style-type: disc;
}
.join__block-item {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
.join__block-item:not(:last-child) {
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.join__block-item {
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.join__img {
	width: 50%;
	height: 367px;
	object-fit: cover;
	border-radius: 30px;
}
@media (max-width: 1024px) {
	.join__img {
		height: 470px;
	}
}
@media (max-width: 767px) {
	.join__img {
		width: 100%;
		height: 250px;
	}
}

.join-description {
	color: #283acf;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}
@media (max-width: 767px) {
	.join-description {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 25px;
		text-align: center;
	}
}

.accept {
	margin-top: 50px;
}
.accept__title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.accept__title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: center;
	}
}
.accept__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
@media (max-width: 767px) {
	.accept__list {
		flex-direction: column;
		gap: 10px;
	}
}
.accept__item {
	width: 33%;
	height: 193px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding: 15px;
	border-radius: 30px;
	border: 1px solid #bbbbbb;
	background: #ffffff;
}
@media (max-width: 1024px) {
	.accept__item {
		height: 269px;
	}
}
@media (max-width: 767px) {
	.accept__item {
		width: 100%;
		height: auto;
	}
}
.accept__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	font-size: 40px;
	padding: 10px;
	border-radius: 35px;
	background: #e3e6ec;
}
.accept__item-text {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
}

.donate-wrap {
	margin-top: 50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
	.donate-wrap {
		margin-bottom: 50px;
	}
}
@media (max-width: 1024px) {
	.donate-wrap {
		margin-top: 20px;
	}
}

.donate {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
}
@media (max-width: 1024px) {
	.donate {
		gap: 20px;
	}
}
@media (max-width: 767px) {
	.donate {
		flex-direction: column;
		gap: 30px;
	}
}
@media (max-width: 1024px) {
	.donate__content {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.donate__content {
		width: 100%;
	}
}
.donate__content-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 50px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.donate__content-title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 27px;
		text-align: left;
	}
}
.donate__content-text {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 767px) {
	.donate__content-text {
		font-size: 1rem;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
	}
}
.donate__sub-title {
	margin-top: 50px;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: left;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.donate__sub-title {
		margin-top: 20px;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 24px;
		text-align: left;
		margin-bottom: 10px;
	}
}
.donate__list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 17px;
}
@media (max-width: 1024px) {
	.donate__list {
		justify-content: space-between;
		gap: 27px;
	}
}
@media (max-width: 767px) {
	.donate__list {
		flex-direction: column;
		gap: 10px;
	}
}
.donate__item {
	width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media (max-width: 767px) {
	.donate__item {
		width: 100%;
	}
}
.donate__item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	padding: 10px;
	border-radius: 35px;
	font-size: 50px;
	background: #e3e6ec;
}
.donate__item-text {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
}
@media (max-width: 767px) {
	.donate__item-text {
		max-width: 250px;
	}
}

.donate-description {
	margin-top: 100px;
	color: #283acf;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}
@media (max-width: 1024px) {
	.donate-description {
		margin-top: 50px;
	}
}
@media (max-width: 767px) {
	.donate-description {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 25px;
		text-align: center;
	}
}

.donate-form__wrap {
	width: 516px;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.donate-form__wrap {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.donate-form__wrap {
		width: 100%;
	}
}

.donate-form {
	min-height: 423px;
	padding: 50px 33px;
	border-radius: 30px;
	border: 1px solid #283acf;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
	.donate-form {
		min-height: 400px;
		padding: 50px 20px;
	}
}
.donate-form__toggle {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.donate-form__toggle label {
	padding-bottom: 20px;
	color: #000000;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	position: relative;
	display: block;
	text-align: center;
	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;
}
.donate-form__toggle label:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	border-radius: 30px 30px 0px 0px;
	background: #283acf;
	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;
}
.donate-form__toggle label.active::after {
	opacity: 1;
}
.donate-form__toggle label input {
	display: none;
}
.donate-form__line {
	width: 100%;
	height: 1px;
	background-color: #bbbbbb;
	margin-bottom: 20px;
}
.donate-form__sum-field {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	border-bottom: 1px dashed #bbbbbb;
	margin-bottom: 34px;
}
.donate-form__sum-field input {
	width: 100%;
	padding: 0 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 500;
	line-height: 50px;
	text-align: left;
}
.donate-form__sum-field input::placeholder {
	color: #bbbbbb;
}
.donate-form__preset {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.donate-form__preset button {
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	width: 144px;
	height: 49px;
	border-radius: 30px;
	border: 1px solid #bbbbbb;
	color: #000000;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
.donate-form__preset button span {
	color: #bbbbbb;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
}
@media (max-width: 1024px) {
	.donate-form__preset button {
		width: 101px;
		font-size: 1.125rem;
		font-weight: 600;
		line-height: 25px;
		text-align: left;
	}
	.donate-form__preset button span {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.donate-form__note {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 0.9375rem;
	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;
	margin-bottom: 20px;
}
.donate-form__note svg {
	fill: #283acf;
	width: 20px;
	height: 20px;
	display: flex;
	flex-shrink: 0;
}
.donate-form__submit {
	width: 100%;
}
.donate-form__submit:disabled {
	opacity: 0.5;
	pointer-events: none;
}
.donate-form__description {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}
.donate-form .custom-select-2 {
	position: relative;
	cursor: pointer;
}
.donate-form .custom-select-2 .select-trigger {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: 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;
	padding: 5px 0;
}
.donate-form .custom-select-2 .select-trigger i.icon-chevron {
	position: relative;
	top: 2px;
	font-size: 24px;
	-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;
	display: inline-block;
}
.donate-form .custom-select-2 .select-trigger .selected-currency {
	color: #bbbbbb;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-left: 5px;
}
.donate-form .custom-select-2.open .select-trigger i.icon-chevron {
	transform: rotateX(180deg);
}
.donate-form .custom-select-2 .select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	z-index: 10;
	-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;
}
.donate-form .custom-select-2 .select-options li {
	padding: 5px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: normal;
	text-align: left;
	cursor: pointer;
}
.donate-form .custom-select-2 .select-options li:hover,
.donate-form .custom-select-2 .select-options li.active {
	color: #283acf;
	background: #e3e6ec;
}
.donate-form .custom-select-2.open .select-options {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.donate-agree {
	margin-top: 20px;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #283acf;
	background: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.donate-agree p {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
}

.thank {
	position: relative;
	padding-top: 142px;
	padding-bottom: 100px;
}
@media (max-width: 767px) {
	.thank {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
.thank .container {
	position: relative;
	z-index: 2;
}
.thank__bg {
	position: absolute;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 752px;
	height: 593px;
	border-radius: 752px;
	background: linear-gradient(90deg, #fef4b7 0%, #8ab4da 50%, #4591f6 100%);
	filter: blur(100px);
}
@media (max-width: 1024px) {
	.thank__bg {
		width: 500px;
		height: 500px;
		border-radius: 500px;
	}
}
@media (max-width: 767px) {
	.thank__bg {
		width: 375px;
		height: 326px;
		border-radius: 375px;
	}
}
.thank__img {
	width: 167px;
	height: 167px;
	margin: auto;
	margin-bottom: 50px;
}
.thank__title {
	font-family: 'Poppins', sans-serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 70px;
	text-align: center;
	margin-bottom: 30px;
}
@media (max-width: 1024px) {
	.thank__title {
		margin-bottom: 80px;
	}
}
@media (max-width: 767px) {
	.thank__title {
		font-size: 2.25rem;
		font-weight: 700;
		line-height: 50px;
		text-align: center;
		margin-bottom: 50px;
	}
}
.thank__text {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 50px;
}
@media (max-width: 767px) {
	.thank__text {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 25px;
		text-align: center;
	}
}
.thank__btn {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.btn-charity {
	position: relative;
	z-index: 2;
	margin-left: -50px;
	color: #ffffff;
	background-color: #000000;
	padding: 21px 35px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 100%;
	text-align: center;
}
.btn-charity-icon {
	position: absolute;
	top: 0;
	right: -50px;
	font-size: 2.625rem;
	background: #000000;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: 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;
}
.btn-charity:hover {
	background-color: #283acf;
}
.btn-charity:hover .btn-charity-icon {
	background-color: #283acf;
}

.primary {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: inline-flex;
	background: #283acf;
	padding: 19px 20px;
	border-radius: 50px;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	overflow: 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;
}
.primary .icon-arrow {
	font-size: 1rem;
	opacity: 0;
	width: 0;
	margin-right: 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;
	white-space: nowrap;
	overflow: hidden;
	transform: rotate(180deg);
}
.primary:hover .icon-arrow {
	opacity: 1;
	width: 1.5rem;
}
.primary:active {
	background: #1629bb;
}

.submit {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 21px 53px;
	border-radius: 50px;
	background: #030a33;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 100%;
	text-align: center;
}
.submit:hover {
	box-shadow: 0px 5px 10px 0px #283acf;
}
.submit:active {
	background-color: #000000;
}
.submit:disabled {
	background-color: #bbbbbb;
	box-shadow: none;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
@media (max-width: 767px) {
	.row {
		flex-direction: column;
		gap: 0;
	}
}

.input {
	width: 100%;
	margin-bottom: 10px;
}
.input label {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.input label {
		font-size: 1rem;
	}
}
.input input {
	width: 100%;
	height: 49px;
	border-radius: 10px;
	padding: 14px 12px 12px 12px;
	border: 1px solid #bbbbbb;
	background: #ffffff;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.input input {
		padding: 14px 12px 12px 9px;
	}
}
.input input::placeholder {
	color: #787878;
}
.input input:focus {
	border-color: #030a33;
}
.input textarea {
	width: 100%;
	height: 49px;
	border-radius: 10px;
	padding: 14px 12px 12px 12px;
	border: 1px solid #bbbbbb;
	background: #ffffff;
	resize: none;
	height: 103px;
}
@media (max-width: 767px) {
	.input textarea {
		padding: 14px 12px 12px 9px;
	}
}
.input textarea::placeholder {
	color: #787878;
}
.input textarea:focus {
	border-color: #030a33;
}

.custom-checkbox {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	user-select: none;
	margin-top: 20px;
	margin-bottom: 20px;
}
.custom-checkbox input {
	display: none;
}
.custom-checkbox input:checked + .checkbox-icon {
	border-color: #030a33;
}
.custom-checkbox input:checked + .checkbox-icon i {
	opacity: 1;
	transform: scale(1);
}
.custom-checkbox .checkbox-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	border: 1px solid #030a33;
	margin-right: 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;
}
.custom-checkbox .checkbox-icon i {
	font-size: 18px;
	color: #030a33;
	-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;
	opacity: 0;
	transform: scale(0);
	pointer-events: none;
}
.custom-checkbox .checkbox-label {
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 767px) {
	.custom-checkbox .checkbox-label {
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}

.upload label {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.upload label {
		font-size: 1rem;
	}
}
.upload button {
	color: #283acf;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	text-align: left;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
@media (max-width: 767px) {
	.upload button {
		font-size: 1rem;
	}
}

.custom-select {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}
.custom-select label {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	margin-bottom: 5px;
}
@media (max-width: 767px) {
	.custom-select label {
		font-size: 1rem;
	}
}
.custom-select .select-input {
	position: relative;
	padding: 14px 12px 12px 12px;
	border: 1px solid #bbbbbb;
	background: #ffffff;
	width: 100%;
	height: 49px;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.custom-select .select-input .selected {
	display: block;
	pointer-events: none;
}
.custom-select .select-input i {
	font-size: 26px;
	-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;
}
.custom-select .select-input .options {
	opacity: 0;
	pointer-events: none;
	width: 100%;
	position: absolute;
	top: 59px;
	left: 0;
	background: #ffffff;
	border: 1px solid #bbbbbb;
	height: auto;
	overflow-y: auto;
	z-index: 10;
	border-radius: 10px;
	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;
}
.custom-select .select-input .options li {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: left;
	padding: 5px 12px;
	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;
}
.custom-select .select-input .options li:hover {
	color: #283acf;
	background-color: #e3e6ec;
}
.custom-select .select-input.open .options {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}
.custom-select .select-input.open .icon-chevron {
	transform: rotateX(180deg);
}

.modal-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	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;
}
@media (max-width: 767px) {
	.modal-wrap {
		padding: 0 16px;
	}
}
.modal-wrap.is-open {
	opacity: 1;
	visibility: visible;
}
.modal-wrap.is-open .modal {
	transform: scale(1);
	opacity: 1;
}

.modal {
	position: relative;
	width: 408px;
	border: 1px solid #283acf;
	background: #ffffff;
	box-shadow: 0px 0px 6px 0px #283acf;
	transform: scale(0.95);
	opacity: 0;
	padding: 32px 40px 40px 40px;
	border-radius: 30px;
	-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 {
		width: 344px;
		padding: 32px 10px;
	}
}
.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 2rem;
}
.modal__title {
	color: #000000;
	font-family: 'Poppins', sans-serif;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e3e6ec;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}
@media (max-width: 767px) {
	.modal__title {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: center;
	}
}
.modal__title-second {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.modal__title-second {
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 30px;
		text-align: center;
	}
}
.modal__text {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.modal__text {
		font-size: 1rem;
		font-weight: 400;
		line-height: 20px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.form-wrap {
		padding-right: 5px;
		height: 450px;
		overflow: auto;
	}
}

.large {
	width: 606px;
}

.accessibility-btn {
	position: fixed;
	bottom: 80px;
	left: 7%;
	z-index: 90;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 150px;
	padding: 19px 9px;
	border-radius: 10px;
	border: 1px solid #ffffff;
	background: #ffffff;
	box-shadow: 0px 0px 6px 0px #283acf;
	-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) {
	.accessibility-btn {
		position: fixed;
		bottom: 60px;
		left: 3%;
		z-index: 90;
	}
}
@media (max-width: 767px) {
	.accessibility-btn {
		position: fixed;
		bottom: 50px;
		left: 2%;
		z-index: 90;
	}
}
.accessibility-btn:hover {
	color: #ffffff;
	background: #283acf;
}
@media (max-width: 1024px) {
	.accessibility-btn {
		width: 60px;
		height: 60px;
		border-radius: 100%;
		padding: 0;
		border: none;
		box-shadow: none;
		background: none;
		max-width: auto;
	}
	.accessibility-btn:hover {
		color: none;
		background: none;
	}
}
.accessibility-btn span {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
}
@media (max-width: 1024px) {
	.accessibility-btn span {
		display: none;
	}
}
.accessibility-btn img {
	display: none;
}
@media (max-width: 1024px) {
	.accessibility-btn img {
		display: block;
	}
}

.accessibility-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.size {
	width: 100%;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 25px;
	text-align: center;
	padding: 10px;
	border-radius: 10px;
}
.size:hover {
	background: #e3e6ec;
}
.size.active {
	background: #e3e6ec;
}
.offer-content {
	margin: 50px auto;
	font-size: 1rem;
	line-height: 1.6;
	color: #000;
	background-color: #fff;
	word-wrap: break-word;
}

/* Заголовки */
.offer-content h1,
.offer-content h2,
.offer-content h3,
.offer-content h4 {
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	font-weight: 700;
	color: #111;
}

/* Параграфи */
.offer-content p {
	margin-bottom: 1em;
}

/* Посилання */
.offer-content a {
	color: #0073e6;
	text-decoration: underline;
}

.offer-content a:hover,
.offer-content a:focus {
	color: #005bb5;
	text-decoration: none;
}

/* Списки */
.offer-content ul,
.offer-content ol {
	margin-left: 1.5em;
	margin-bottom: 1em;
}

.offer-content li {
	margin-bottom: 0.5em;
}

/* Таблиці */
.offer-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
}

.offer-content th,
.offer-content td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.offer-content th {
	background-color: #f4f4f4;
	font-weight: 600;
}

/* Виділення коду */
.offer-content pre,
.offer-content code {
	background-color: #f5f5f5;
	padding: 4px 8px;
	border-radius: 4px;
	font-family: monospace, monospace;
	font-size: 14px;
	overflow-x: auto;
}

.wpcf7-spinner {
	margin: 0;
	left: 50%;
	transform: translate(-50%, 20px);
}
.wpcf7 form .wpcf7-response-output {
	margin: 0;
}
.hidden-direction {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
#resumeUpload {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
