@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
	url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
	url('../fonts/Montserrat-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
	url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
	url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2'),
	url('../fonts/Inter-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2'),
	url('../fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RF Dewi Extended';
	src: url('../fonts/RFDewiExtended-Ultrabold.woff2') format('woff2'),
	url('../fonts/RFDewiExtended-Ultrabold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RF Dewi Extended';
	src: url('../fonts/RFDewiExtended-Bold.woff2') format('woff2'),
	url('../fonts/RFDewiExtended-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RF Dewi Extended';
	src: url('../fonts/RFDewiExtended-Semibold.woff2') format('woff2'),
	url('../fonts/RFDewiExtended-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

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

html,
body {
	height: 100%;
}

.non-scroll {
	overflow: hidden;
}

.wrapper {
	flex-direction: column;
	display: flex;
	overflow: hidden;
	min-height: 100%;
	padding-top: 102px;
	position: relative;
}

form,
input,
textarea,
button {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-style: normal;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

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

a {
	text-decoration: none;
}

a img {
	border: none;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-style: normal;
	background-color: #FFFFFF;
	position: relative;
}

.container {
	max-width: 1400px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.header {
	background-color: #ffffff;
	padding: 27px 0;
	z-index: 15;
	position: fixed;
	left: 0;
	width: 100%;
	top: 0;
	transition: all 0.3s ease-in-out;
}

.header.active {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	list-style-type: none;
	position: relative;
	margin: 0 auto;
}

.main-menu li {
	margin: 0;
}

.main-menu li a {
	padding: 10px;
	display: inline-block;
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: #081E18;
	transition: color 0.3s ease-in-out;
	position: relative;

}

.main-menu li a:hover {
	color: #8ACE4A;
}

.overlay-top {
	width: 100%;
}

.scroll {
	display: flex;
	align-items: center;
}

.logo {
	flex-shrink: 0;
	z-index: 19;
}

#menu-toggle {
	display: none;
}

.btn {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #FDFFF7;
	background-color: #0E3229;
	padding: 0 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 57px;
	width: fit-content;
	border-radius: 100px;
	transition: all 0.3s ease-in-out;
	border: 1px solid transparent;
	position: relative;
}

.btn span {
	position: relative;
	z-index: 2;
}

.btn:hover:after {
	opacity: 1;
}

.btn:after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #FFFFFF 0%, #DDF8C3 100%);
	position: absolute;
	opacity: 0;
	border-radius: 100px;
	transition: opacity 0.3s ease-in-out;
}

.btn:hover {
	color: #71B333;
	border-color: #71B333;
}

.btn-reg {
	background-color: #C3EA9D;
	color: #0E3229;
	border: 0;
}

.btn-reg:hover {
	border: 0;
	color: #FFFFFF;
}

.btn-reg:after {
	background: linear-gradient(90deg, #8FCC54 0%, #589E16 100%);
}

.btn-login {
	min-width: 118px;
}

.btn-center {
	margin: 0 auto;
}

.block-header-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.block-header-btns .btn {
	height: 54px;
	padding: 0 35px;
}

.main {
	padding: 24px 0;
}

.main-wrap {
	background-image: url("../img/bg_main.webp");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 36px 100px 36px 53px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	border-radius: 50px;
}

.main-media {
	max-width: 541px;
}

.main-info {
	margin-top: 68px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 27px;
}

h1 {
	font-size: 60px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
}

h2 {
	font-size: 45px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
}

.description {
	font-size: 25px;
	color: #081E18;
	margin-top: 15px;
}

.main .description {
	margin-top: 0;
}

.segment {
	padding: 68px 0;
}

.segment h2 {
	text-align: center;
}

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

.benefits-inner {
	display: flex;
	justify-content: center;
	gap: 22px;
	margin: 75px auto 0;
	position: relative;
	z-index: 0;
}

.benefits-column {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.benefits-column.col-1 {
	max-width: 441px;
	width: 100%;
}

.benefits-column.col-2 {
	max-width: 410px;
	width: 100%;
}

.benefits-column.col-3 {
	max-width: 410px;
	width: 100%;
}

.benefits-item {
	border-radius: 20px;
	position: relative;
	padding: 30px;
	font-family: 'RF Dewi Extended', sans-serif;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	z-index: 0;
}

.benefits-item img {
	position: absolute;
	z-index: -1;
}

.benefits-item.item-1 img {
	width: 321px;
	top: -49px;
	right: 0;
}

.benefits-item.item-2 img {
	width: 311px;
	bottom: 0;
	right: 0;
}

.benefits-item.item-3 img {
	width: 205px;
	bottom: 0;
	right: 0;
}

.benefits-item.item-4 img {
	width: 264px;
	bottom: -17px;
	right: 11px;
}

.benefits-item.item-5 img {
	width: 229px;
	top: -44px;
	right: -13px;
}

.benefits-item.item-6 img {
	width: 207px;
	top: 0;
	right: 38px;
}

.benefits-item.item-7 img {
	width: 176px;
	bottom: 0;
	right: 22px;
}

.benefits-item.item-1 {
	height: 335px;
	background-color: #C6F19D;
	padding-bottom: 52px;
	margin-top: auto;
}

.benefits-item.item-2 {
	height: 248px;
	background-color: #ECFFD9;
}

.benefits-item.item-3 {
	height: 161px;
	background-color: #F8F8F8;
}

.benefits-item.item-4 {
	height: 422px;
	background-color: #C6F19D;
	padding-top: 43px;
}

.benefits-item.item-5 {
	height: 243px;
	background-color: #C6F19D;
	padding-top: 43px;
}

.benefits-item.item-6 {
	height: 161px;
	background-color: #ECFFD9;
}

.benefits-item.item-7 {
	height: 157px;
	background-color: #F8F8F8;
}

.item-1 p, .item-4 p, .item-5 p {
	font-size: 60px;
	line-height: 80%;
	font-weight: 800;
}

.item-1 p span, .item-4 p span, .item-5 p span {
	font-size: 35px;
	display: block;
}

.item-2 p, .item-6 p {
	font-size: 30px;
	line-height: 90%;
	font-weight: 800;
}

.item-2 p span {
	font-size: 25px;
	display: block;
}

.item-3 p, .item-7 p {
	font-size: 25px;
}

.item-1 p {
	margin-top: auto;
}

.btn-benefits {
	margin-top: 60px;
}

.benefits .container {
	position: relative;
	z-index: 0;
}

.benefits .container:before {
	content: "";
	background-image: url("../img/benefits_figure1.webp");
	width: 225px;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: -125px;
	top: -58px;
	z-index: -1;
}

.benefits .container:after {
	content: "";
	background-image: url("../img/benefits_figure2.webp");
	width: 192px;
	height: 168px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: -75px;
	bottom: -48px;
	z-index: -1;
}

.benefits-inner:after {
	content: "";
	background-image: url("../img/benefits_figure3.webp");
	width: 138px;
	height: 111px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 67px;
	bottom: -155px;
	z-index: -1;
}

.services {
	background-color: #F8F8F8;
}

.services-inner {
	margin: 50px auto 0;
	display: flex;
	align-items: stretch;
	gap: 22px;
	max-width: 1336px;
	position: relative;
}

.services-item {
	background-color: #ffffff;
	border-radius: 22px;
	padding: 23px 10px 23px 23px;
	width: calc(25% - 16px);
	display: flex;
	flex-direction: column;
}

.services-item-media {
	max-width: 183px;
	margin: 0 auto;
	flex-shrink: 0;
}

.services-item-info {
	margin-top: 23px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.services-name {
	font-size: 21px;
	color: #0E3229;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	margin-bottom: 13px;
}

.services-descr {
	margin-top: auto;
	font-size: 18px;
	color: #0E3229;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	padding: 11px 10px;
	border-radius: 13px;
	background-color: #C6F19D;
}

.services-icons {
	margin-top: 12px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.icon-item {
	width: 50px;
}

.btn-services {
	margin-top: 50px;
}

.services .container {
	position: relative;
}

.services .container:after {
	content: "";
	background-image: url("../img/services_figure1.png");
	width: 178px;
	height: 161px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: 0;
	bottom: -30px;
	z-index: 1;
}

.swiper.desktop {
	display: block;
}

.swiper.mobile {
	display: none;
}

.events {
	position: relative;
}

.events .container {
	position: relative;
}

.events .container:before {
	content: "";
	background-image: url("../img/figure_events.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 165px;
	height: 178px;
	position: absolute;
	top: -20px;
	left: -80px;
}

.events:after {
	content: "";
	background-image: url("../img/benefits_figure3.webp");
	width: 158px;
	height: 131px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: 237px;
	bottom: 16px;
	z-index: -1;
}

.swiper-events {
	margin-top: 37px;
	padding: 50px 0 0;
	position: relative;
	overflow: visible;
}

.swiper-events .swiper-wrapper {
	align-items: stretch;
}

.events-item {
	border-radius: 20px;
	padding: 20px 20px 70px;
	background-color: #F8F8F8;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	color: #0E3229;
	height: 100%;
	position: relative;
	z-index: 0;
	transition: opacity ease .3s;
}

/*.events-item-fixed {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	max-width: 455px;
	height: 575px;
	position: absolute;
	top: 3%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	background-color: #C6F19D;
	border-radius: 20px;
	padding: 20px 20px 70px;
}*/

.swiper-events .swiper-slide.swiper-slide-active .events-item {
	background-color: #C6F19D;
}

.swiper-events .swiper-slide.swiper-slide-active {
	transform: scale(1.1);
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.swiper-events .swiper-slide-active .events-item:after {
	content: "";
	background-image: url("../img/figure1_item_active.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 175px;
	height: 165px;
	position: absolute;
	right: 20px;
	bottom: 0;
	z-index: -1;
}

.swiper-events .swiper-slide-active .events-item:before {
	content: "";
	background-image: url("../img/figure2_item_active.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 188px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.swiper-slide-active .events-item {
	/*	opacity: 0;
		pointer-events: none;*/
}

.event-img {
	border-radius: 17px;
}

.event-name {
	font-size: 30px;
	font-weight: 800;
	font-family: "RF Dewi Extended", sans-serif;
}

.event-date {
	font-size: 20px;
}

.event-location {
	font-size: 20px;
	font-weight: 600;
}

.event-location {
	font-size: 20px;
	font-weight: 500;
}

.event-icon {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.event-icon:before {
	content: "";
	background-size: cover;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.event-icon.event-location:before {
	background-image: url("../img/icon-location.svg");
}

.event-icon.event-date:before {
	background-image: url("../img/icon-calendar.svg");
}

.swiper-slide {
	height: auto;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.btn-arrow-swiper {
	width: 41px;
	height: 41px;
	border-radius: 10px;
	background-color: #F8F8F8;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease-in-out;
	background-repeat: no-repeat;
	background-position: center;
	position: static;
}

.btn-arrow-swiper:hover {
	background-color: #C6F19D;
}

.swiper-button-prev {
	background-image: url("../img/angle-up-small.svg");
	transform: rotate(180deg);
}

.swiper-button-next {
	background-image: url("../img/angle-up-small.svg");
}

.swiper-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	margin-top: 62px;
}

.reviews {
	background-color: #C6F19D;
	background-image: url("../img/bg_reviews.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}

.reviews:before {
	content: "";
	background-image: url("../img/img_coin_2.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 182px;
	height: 169px;
	position: absolute;
	bottom: -60px;
	right: 20%;
	z-index: 5;
}

.reviews h2 br {
    display: none;
}

.reviews .description br {
    display: none;
}

.swiper-reviews {
	margin-top: 50px;
	position: relative;
	padding-bottom: 20px;
}

.swiper-reviews:before {
	content: "";
	background-image: url("../img/img_coin.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 160px;
	height: 119px;
	position: absolute;
	bottom: 0;
	left: 53px;
	z-index: 5;
}

.reviews-item {
	border-radius: 20px;
	background-color: #FFFFFF;
	padding: 30px;
	position: relative;
	height: 100%;
	z-index: 0;
}

.reviews-item:after {
	content: "";
	background-image: url("../img/icon-quotation.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 66px;
	height: 67px;
	top: 14px;
	right: 30px;
	position: absolute;
	z-index: -1;
}

.reviews-item-info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.reviews-item-info img {
	width: 70px;
	flex-shrink: 0;
	border-radius: 50%;
}

.reviews-item p {
	font-size: 16px;
	font-weight: 500;
}

.reviews-item-info p {
	font-size: 16px;
}

.review-name {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}

.reviews-item-text p {
	margin-top: 15px;
}

.swiper-reviews .swiper-arrow {
	gap: 25px;
	margin-top: 25px;
}

.swiper-reviews .btn-arrow-swiper {
	background-color: #ffffff;
}

.swiper-reviews .btn-arrow-swiper:hover {
	background-color: #F8F8F8;
}

.btn-reviews {
	margin-top: 30px;
}

.btn-comment {
	height: 43px;
	width: 100%;
	border-radius: 32px;
	background-color: #F9F9F9;
	max-width: 282px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	font-size: 14px;
	font-weight: 500;
	color: #0E3229;
	transition: background-color 0.3s ease-in-out;
	cursor: pointer;
}

.btn-comment:hover {
	background-color: #EDEDED;
}

.team {
	background-color: #F8F8F8;
}

.team-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 50px;
}

.team-item-info {
	font-size: 22px;
	font-family: 'RF Dewi Extended', sans-serif;
	font-weight: 600;
	color: #0E3229;
}

.team-item-info .team-name {
	font-family: 'RF Dewi Extended', sans-serif;
	font-weight: 800;
}

.overlay {
	position: fixed;
	background: rgba(2, 2, 11, 0.6);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1010;
	display: none;
}

.modal_main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: left;
	width: 100%;
	max-width: 1050px;
}

.modal {
	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	text-align: center;
}

.modal_wrapper {
	width: 100%;
	height: auto;
	padding: 30px;
	background: #FFFFFF;
	border-radius: 20px;
	margin: auto;
	position: relative;
	z-index: 0;
}

.modal-more .modal_wrapper:after {
	content: "";
	background-image: url("../img/icon-quotation.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 66px;
	height: 67px;
	top: 14px;
	right: 30px;
	position: absolute;
	z-index: -1;
}

.modal-thanks .modal_main {
	max-width: 618px;
}

.modal-thanks .modal_body {
	text-align: center;
}

.close-icon {
	background-image: url("../img/icon-close.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 26px;
	top: 20px;
}

.modal-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;
}

.modal-title {
	font-size: 35px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
}

.modal-description {
	font-size: 25px;
	font-weight: 500;
	color: #0E3229;
}

.btn-back {
	background-color: #C3EA9D;
	color: #0E3229;
	font-size: 20px;
	padding: 0 35px;
}

.btn-back:hover {
	border: 0;
	color: #FFFFFF;
}

.btn-back span {
	position: relative;
	z-index: 2;
}

.form-main button[disabled] {
	opacity: 0.5;
	pointer-events: none;
	cursor: default;
	transition: opacity 0.3s ease;
}

.btn-back:after {
	background: linear-gradient(90deg, #8FCC54 0%, #589E16 100%);
}

.contacts {
	background-image: url("../img/bg_contacts.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top -70px left -160px;
}

.contacts .container {
	position: relative;
}

.contacts .container:before {
	content: "";
	background-image: url("../img/figure_contacts.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 180px;
	height: 198px;
	position: absolute;
	left: -140px;
	bottom: -50px;
}

.contacts-inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 50px;
}

.contacts-info {
	max-width: 306px;
	width: 100%;
	flex-shrink: 0;
	margin-top: 30px;
}

.caption {
	font-size: 35px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
}

.contacts-list {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}

.contacts-list a {
	font-size: 18px;
	color: #0E3229;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	transition: color 0.3s ease-in-out;
}

.contacts-list a:before {
	content: "";
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: cover;
}

.contacts-list a.tg:before {
	background-image: url("../img/icon-tg.svg");
}

.contacts-list a.mail:before {
	background-image: url("../img/icon-mail.svg");
}

.contacts-list a:hover {
	color: #8ACE4A;
}

.contacts-form {
	padding: 30px;
	border-radius: 40px;
	background-color: #F8F8F8;
	max-width: 618px;
	width: 100%;
}

.check label,
.check input {
	cursor: pointer;
	margin: 0;
}

.check .check-in input[type="checkbox"] {
	display: none;
}

.form-group-check .check label {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	font-size: 16px;
}

.check label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(14, 50, 41, 0.5);
}

.check label a {
	font-size: 14px;
	color: rgba(14, 50, 41, 0.5);
	text-decoration: underline;
}

.check .check-in input[type="checkbox"] + label .check-copy {
	width: 16px;
	height: 16px;
	cursor: pointer;
	display: inline-block;
	flex-shrink: 0;
	background-color: transparent;
	border: 1px solid #0E3229;
	border-radius: 2px;
	position: relative;
	transition: all 0.3s ease-in-out;
	top: 2px;
}

.check-copy:after {
	content: "";
	background-image: url("../img/icon-check.svg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.check .check-in input[type="checkbox"]:checked + label .check-copy {
	background-color: #0E3229;
	border-color: #0E3229;
}

.check .check-in input[type="checkbox"]:checked + label .check-copy:after {
	opacity: 1;
}

.form-main {
	margin-top: 25px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 22px;
}

.form-main .form-group {
	width: 100%;
	position: relative;
}

.form-main .form-group input {
	width: 100%;
	height: 48px;
	outline: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	padding: 0 15px;
	color: #081E18;
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.form-group input:active, .form-group input:focus {
	border-color: #95D05D;
}

.form-group textarea:active, .form-group textarea:focus {
	border-color: #95D05D;
}

.form-main .btn {
	height: 54px;
	width: 100%;
	cursor: pointer;
}

.form-main .form-group.error input {
	border-color: #D94F43;
}

.error-message {
	position: absolute;
	top: 100%;
	margin-left: 15px;
	left: 0;
	font-size: 13px;
	font-weight: 500;
	color: #D94F43;
}

.footer {
	background-color: #F8F8F8;
	padding: 30px 0;
	margin-top: auto;
}

.footer-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}

.footer-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	color: #081E18;
}

.footer-info a {
	font-size: 14px;
	color: rgba(8, 30, 24, 0.5);
	transition: color 0.3s ease-in-out;
}

.footer-info a:hover {
	color: rgba(8, 30, 24, 1);
}

.footer-menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-menu ul li a {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #081E18;
	transition: color 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
	color: #8ACE4A;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-socials .icon-socials {
	display: flex;
	width: 46px;
	height: 46px;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-socials .tg {
	background-image: url("../img/icon-tg.svg");
}

.footer-socials .inst {
	background-image: url("../img/icon-inst.svg");
	height: 47px;
}

.backtotop {
	background-image: url("../img/icon-backtotop.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 9;
}

.backtotop.active {
	opacity: 1;
}

.block-mob {
	display: none !important;
}

.policy-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.policy-top h1 {
	font-size: 30px;
	color: #0E3229;
}

.policy-date {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
}

.policy-content {
	margin-top: 60px;
}

.policy-content p {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.75);
}

.policy-content ul, .policy-content ol {
	padding-left: 20px;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.75);
}

.policy-content h2 {
	font-size: 21px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
	margin-top: 30px;
	text-align: left;
}

.policy-content h3 {
	font-size: 19px;
	font-family: "RF Dewi Extended", sans-serif;
	font-weight: 800;
	color: #0E3229;
	margin-top: 20px;
	text-align: left;
}

.mistake {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.mistake h1 {
	text-align: center;
	font-size: 30px;
	color: #0E3229;
}

.mistake .img_error {
	margin: 50px auto;
}

.btn-404 {
	font-size: 22px;
}

.grecaptcha-badge {
	z-index: 2;
}

.loader-overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.7);
}

.loader-overlay.active {
	display: flex;
}

.loader-overlay .loader-icon {
	width: 50px;
	height: 50px;
	background: url("../img/loader_icon.svg") no-repeat top center / contain;
}

.loader-overlay.active .loader-icon {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.swiper-team {
	margin-top: 50px;
}

.swiper-arrow-team .btn-arrow-swiper {
	background-color: #C6F19D;
}

.swiper-arrow-team {
	margin-top: 50px;
}

.languages {
	z-index: 2;
	position: relative;
	display: flex;
	margin-left: 10px;
	flex-shrink: 0;
}

.languages.active > ul {
	display: block;
}

.active-lang {
	height: 54px;
	min-width: 87px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	gap: 5px;
	cursor: pointer;
	background-color: #FFFFFF;
	border-radius: 100px;
	border: 1px solid #C3EA9D;
	transition: all 0.3s ease-in-out;
	font-size: 20px;
	text-transform: uppercase;
	color: #9CCA6F;
}

.active-lang:after {
	content: "";
	background-image: url("../img/icon-arrow-down.svg?v=2");
	width: 9px;
	height: 8px;
	transition: transform 0.3s ease-in-out;
}

.languages > ul {
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	margin-top: 4px;
	display: none;
	border-radius: 25px;
	overflow: hidden;
	background-color: #ffffff;
	z-index: 10;
	border: 1px solid #C3EA9D;
}

.languages > ul li a {
	padding: 12px 0 12px 21px;
	background-color: transparent;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	font-size: 20px;
	color: rgba(156, 202, 111, 0.5);
}

.languages > ul li:not(:last-child) a {
	border-bottom: 1px solid #C3EA9D;
}

.languages > ul li a:hover {
	color: rgba(156, 202, 111, 1);
}

.languages.active .active-lang:after {
	transform: rotate(180deg);
}

@media screen and (max-width: 1600px) {

	.contacts .container:before {
		width: 150px;
		height: 168px;
		left: -20px;
		bottom: -50px;
	}

	.events-item-fixed {
		max-width: 400px;
		height: 545px;
	}
}

@media screen and (max-width: 1300px) {
	.main-menu li a {
		font-size: 18px;
	}

	.logo {
		max-width: 180px;
	}

	.benefits-item.item-1 img {
		width: 271px;
	}

	.benefits-item.item-3 img {
		width: 145px;
	}

	.benefits-item {
		padding: 20px;
	}

	.benefits-item.item-5 img {
		width: 179px;
		top: -34px;
	}

	.item-1 p, .item-4 p, .item-5 p {
		font-size: 50px;
	}

	.item-1 p span, .item-4 p span, .item-5 p span {
		font-size: 32px;
	}

	.benefits-item.item-2 img {
		width: 271px;
	}

	.benefits-item.item-4 img {
		width: 214px;
	}

	.benefits-item.item-6 img {
		width: 207px;
		right: 8px;
	}

	.description {
		font-size: 20px;
	}

	h1 {
		font-size: 50px;
		line-height: 1;
	}

	h2 {
		font-size: 35px;
	}

	.segment {
		padding: 35px 0;
	}

	.services-item-media {
		max-width: 140px;
	}

	.services-descr {
		font-size: 16px;
	}

	.events-item-fixed {
		max-width: 350px;
		height: 485px;
		top: 3%;
	}

	.event-name {
		font-size: 24px;
	}

	.backtotop {
		width: 46px;
		height: 46px;
		bottom: 10px;
		right: 20px;
	}

	.reviews:before {
		width: 142px;
		height: 129px;
		bottom: -60px;
		right: 0;
	}

}

@media screen and (max-width: 1100px) {

	.header {
		padding: 10px 0;
	}

	.header .container {
		padding: 0 15px;
	}

	.main-menu li {
		width: 100%;
	}

	.main-menu li a {
		width: 100%;
	}

	#menu-toggle {
		margin-left: auto;
		display: flex;
		z-index: 99;
	}

	#menu-toggle .unitbox {
		display: block;
		background: #4B4B4B;
		border-radius: 10px;
		transition: .25s ease-in-out;
	}

	#menu-toggle #hamburger {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: 24px;
		height: 24px;
	}

	#menu-toggle #hamburger .unitbox {
		width: 24px;
		height: 3px;
		position: relative;
		top: 0;
		right: 0;
		margin: 2px 0;
	}

	#menu-toggle #hamburger .unitbox:nth-child(2) {
		width: 19px;
	}

	#menu-toggle #hamburger .unitbox:nth-child(3) {
		width: 13px;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(1) {
		transform: rotate(-45deg) translate(-1px, 1px);
		margin: 0;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(3) {
		opacity: 0;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(2) {
		margin: 0;
		width: 24px;
		transform: rotate(45deg) translate(-1px, -1px);
	}

	.overlay-top {
		position: fixed;
		background-color: #FFFFFF;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
		padding: 60px 0 0;
	}

	.scroll {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: hidden;
		overflow-y: scroll;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-end;
		padding: 15px 15px 10px;
	}

	.overlay-top.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	.main-menu {
		gap: 5px;
		flex-direction: column;
		align-items: flex-end;
		width: 100%;
		text-align: right;
		padding: 0;
		margin-top: 10px;
		max-width: 450px;
		margin-left: auto;
		margin-right: 0;
		order: 2;
	}

	.block-header-btns {
		display: flex;
		align-items: flex-end;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 10px;
		order: 1;
		flex-direction: column;
	}

	.languages {
		margin-left: 0;
		order: 3;
	}

	.main .container {
		padding: 0 10px;
	}

	.wrapper {
		padding-top: 60px;
	}

	.main {
		padding: 0 0 10px;
	}

	.main-wrap {
		padding: 5px 15px 25px 15px;
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
		gap: 0;
		border-radius: 30px;
		background-image: url("../img/bg_main_m.webp");
	}

	.main-info {
		margin-top: 0;
		align-items: center;
		gap: 12px;
		width: 100%;
		text-align: center;
	}

	h1 {
		font-size: 34px;
	}

	.description {
		font-size: 16px;
		margin-top: 10px;
	}

	.main-media {
		max-width: 340px;
	}

	.segment {
		padding: 30px 0;
	}

	h2 {
		font-size: 29px;
	}

	.backtotop {
		width: 44px;
		height: 44px;
	}

	.block-desk {
		display: none !important;
	}

	.block-mob {
		display: block !important;
	}

	.benefits-inner {
		flex-direction: column;
		gap: 10px;
		margin-top: 32px;
		max-width: 600px;
	}

	.benefits-item.item-1 {
		height: 171px;
		padding-bottom: 20px;
		margin-top: 0;
	}

	.item-1 p, .item-4 p, .item-5 p {
		font-size: 43px;
	}

	.item-1 p span, .item-4 p span, .item-5 p span {
		font-size: 25px;
	}

	.benefits-item {
		border-radius: 15px;
	}

	.benefits-item.item-1 img {
		width: 190px;
		top: -35px;
	}

	.benefits-item.item-5, .benefits-item.item-4 {
		height: 171px;
		padding-top: 20px;
	}

	.item-5 p, .item-4 p {
		margin-top: auto;
	}

	.benefits-item.item-5 img {
		width: 149px;
		top: -7px;
		right: 4px;
	}

	.benefits-item.item-4 img {
		width: 119px;
		bottom: -5px;
		right: 50px;
	}

	.benefits-item.item-2, .benefits-item.item-6 {
		height: 128px;
	}

	.item-2 p, .item-6 p {
		font-size: 22px;
	}

	.item-2 p span {
		font-size: 17px;
	}

	.benefits-item.item-2 img {
		width: 161px;
	}

	.benefits-item.item-6 img {
		width: auto;
		right: 28px;
		height: 128px;
	}

	.benefits-item.item-3, .benefits-item.item-7 {
		height: 140px;
		flex: 1;
	}

	.benefits-row {
		display: flex;
		align-items: stretch;
		gap: 10px;
	}

	.item-3 p, .item-7 p {
		font-size: 17px;
	}

	.benefits-item.item-3 img {
		width: 105px;
		left: 0;
		margin: 0 auto;
	}

	.benefits-item.item-7 img {
		width: 116px;
		bottom: 0;
		right: 0;
		margin: 0 auto;
		left: 0;
	}

	.btn-benefits {
		margin-top: 30px;
	}

	.btn {
		font-size: 18px;
		padding: 0 51px;
		height: 46px;
		max-width: 320px;
		width: 100%;
	}

	.block-header-btns .btn {
		height: 44px;
		padding: 0 28px;
		font-size: 16px;
	}

	.btn-login {
		min-width: 98px;
		width: fit-content;
	}

	.btn-reg {
		width: fit-content;
	}

	.benefits .container:before {
		width: 145px;
		height: 130px;
		left: -75px;
		top: -38px;
	}

	.benefits-inner:after {
		display: none;
	}

	.benefits .container:after {
		width: 142px;
		height: 123px;
		right: -75px;
		bottom: 150px;
	}

	.services-inner {
		margin: 30px auto 0;
		align-items: center;
		flex-direction: column;
		gap: 10px;
		max-width: 520px;
		position: relative;
	}

	.services-item {
		width: 100%;
		align-items: center;
		flex-direction: row;
		padding: 10px;
	}

	.services-item-media {
		max-width: 100px;
	}

	.services-item-info {
		margin-top: 0;
		align-items: flex-end;
		text-align: right;
	}

	.services .container:after {
		display: none;
	}

	.swiper-events {
		margin-top: 0;
		padding: 40px 0 0;
	}

	.contacts-inner {
		display: flex;
		align-items: center;
		gap: 20px;
		flex-direction: column;
	}

	.contacts {
		background-image: url("../img/bg_contacts_m.webp");
		background-position: top center;
	}

	.caption {
		font-size: 29px;
	}

	.contacts-list {
		align-items: center;
		flex-direction: column;
		gap: 15px;
		margin-top: 20px;
	}

	.contacts-info {
		max-width: 100%;
		width: 100%;
		margin-top: 0;
		text-align: center;
	}

	.contacts-list a {
		font-size: 16px;
	}

	.contacts-list a:before {
		width: 27px;
		height: 27px;
	}

	.contacts-form {
		padding: 20px;
		border-radius: 40px;
		max-width: 618px;
		width: 100%;
	}

	.caption {
		font-size: 25px;
	}

	.form-main .btn {
		height: 46px;
		max-width: 360px;
		width: 100%;
		margin: 0 auto;
	}

	.contacts .container:before {
		display: none;
	}

	.footer-menu {
		display: none;
	}

	.footer {
		padding: 10px 0;
	}

	.footer-inner {
		align-items: center;
		flex-direction: column;
		gap: 10px;
		justify-content: center;
	}

	.footer-info {
		align-items: center;
		gap: 5px;
		font-size: 11px;
	}

	.footer-info a {
		font-size: 11px;
	}

	.footer-info img {
		max-height: 33px;
	}

	.footer-socials {
		margin: 5px 0;
	}

	.footer-socials .icon-socials {
		width: 34px;
		height: 34px;
	}

	.footer-socials .inst {
		width: 33px;
		height: 34px;
	}

	.services-icons {
		justify-content: flex-end;
	}

	.btn-services {
		margin-top: 20px;
	}

	.policy-top {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.policy-top h1 {
		font-size: 25px;
	}

	.policy-date {
		font-size: 14px;
	}

	.policy-content {
		margin-top: 20px;
	}

	.mistake .img_error {
		margin: 30px auto;
		max-width: 500px;
		width: 100%;
	}

	.events:after {
		display: none;
	}

	.languages {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.languages > ul {
		position: static;
		margin-top: 0;
		display: flex;
		align-items: center;
		border-radius: 0;
		gap: 10px;
		overflow: hidden;
		background-color: transparent;
		border: 0;
		list-style-type: none;
	}

	.languages > ul li a {
		padding: 12px 28px;
		background-color: transparent;
		display: flex;
		align-items: center;
		border: 1px solid #C3EA9D;
		border-radius: 81px;
		text-decoration: none;
		transition: all 0.3s ease-in-out;
		font-size: 16px;
		color: #C3EA9D;
	}

	.active-lang {
		height: auto;
		min-width: auto;
		display: flex;
		padding: 12px 28px;
		gap: 5px;
		cursor: pointer;
		background-color: rgba(195, 234, 157, 0.3);
		border-radius: 80px;
		border: 1px solid rgba(195, 234, 157, 0.3);
		font-size: 16px;
		color: #9CCA6F;
	}

	.active-lang:after {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.main-media {
		max-width: 286px;
	}

	.btn {
		font-size: 18px;
		padding: 0 51px;
		height: 46px;
	}

	.services-name {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.services-descr {
		font-size: 13px;
		height: auto;
		padding: 4px 10px;
		border-radius: 10px;
	}

	.swiper.desktop {
		display: none;
	}

	.swiper.mobile {
		display: block;
	}

	.services-icons {
		margin-top: 10px;
		gap: 4px;
	}

	.icon-item {
		width: 35px;
	}

	.events-item {
		border-radius: 13px;
		padding: 13px 13px 40px;
		gap: 7px;
	}

	.event-img {
		border-radius: 11px;
		width: 100%;
	}

	.event-name {
		font-size: 20px;
	}

	.event-location, .event-date {
		font-size: 13px;
	}

	.event-icon:before {
		width: 13px;
		height: 13px;
	}

	.event-icon {
		gap: 6px;
	}

	.swiper-events .swiper-slide.swiper-slide-active .events-item:after {
		width: 125px;
		height: 115px;
		right: 10px;
		bottom: 0;
	}

	.swiper-events .swiper-slide.swiper-slide-active .events-item:before {
		width: 40px;
		height: 128px;
		left: 0;
		top: 0;
	}

	.swiper-arrow {
		gap: 15px;
		margin-top: 42px;
	}

	.btn-arrow-swiper {
		width: 30px;
		height: 30px;
		background-size: 8px;
	}

	.reviews {
		background-image: url("../img/bg_reviews_m.webp");
	}

	.swiper-reviews {
		margin-top: 30px;
		padding-bottom: 30px;
	}

	.swiper-reviews:before {
		display: none;
	}

	.reviews:before {
		display: none;
	}

	.btn-reviews {
		margin-top: 0;
	}

	.reviews-item-text p {
		font-size: 14px;
	}

	.mistake h1 {
		font-size: 25px;
	}

	.mistake .img_error {
		margin: 22px auto;
	}

	.btn-404 {
		margin-top: 30px;
		font-size: 18px;
	}

	.events .container:before {
		width: 135px;
		height: 148px;
		top: 15px;
		left: -40px;
	}

	.swiper-team {
		margin-top: 30px;
	}

	.swiper-arrow-team {
		margin-top: 30px;
	}

	.team-item {
		gap: 30px;
	}

	.team-item-info {
		font-size: 19px;
	}

}

@media screen and (max-width: 568px) {
	.event-img {
		height: 150px;
	}

	.main-info {
		align-items: flex-start;
		text-align: left;
	}

	.main-info .btn {
		margin: 0 auto;
	}
	.reviews h2 br {
    display: block;
    }
    
    .reviews .description br {
        display: block;
    }
}
