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

html, body {
	height: 100%;
}

.non_scroll {
	overflow: hidden;
}

.logo {
	display: block;
	background-image: url("../img/logo.svg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 238px;
	height: 53px;
	position: relative;
}

.page-content {
	flex-direction: column;
	display: flex;
	color: #131F31;
	min-height: 100%;
	overflow-x: hidden;
	position: relative;
}

ul, ol {
	list-style-type: none;
}

form, input, textarea, button {
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

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

img {
	max-width: 100%;
}

a img {
	border: none;
}

b, strong {
	font-weight: 700;
}

body {
	font-size: 20px;
	line-height: 30px;
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

section {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.container-long {
	max-width: 1400px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.container {
	max-width: 1300px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.header-inners {
	display: flex;
	align-items: center;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	right: 0;
	margin: auto;
	padding: 10px 0;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 16px;
}

.main-menu li a {
	text-decoration: none;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 600;
	font-size: 18px;
	background-color: transparent;
	transition: background-color 0.3s ease-in-out;
	text-transform: uppercase;
}

.btn-header {
	margin-left: 20px;
}

.overlay_top {
	height: 100%;
	margin-left: auto;
}

.overlay_scroll {
	height: 100%;
	display: flex;
	align-items: center;
}

.btn {
	font-size: 18px;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	outline: 0;
	border: 0;
	background-color: #66BF0C;
	height: 46px;
	font-weight: 600;
	padding: 0 19px;
	border-radius: 10px;
	transition: background-color 0.3s ease-in-out;
	text-decoration: none;
}

.btn:hover {
	background-color: #529410;
}

.btn2 {
	background-color: #3B1195;
}

.btn2:hover {
	background-color: #200755;
}

.section-main {
	background-image: url("../img/bg_main.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 734px;
	padding-bottom: 170px;
}

.main-inners {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	margin-top: 210px;
}

.main-info {
	max-width: 725px;
	width: 100%;
}

.main_media {
	max-width: 300px;
	width: 100%;
}

.main_media img {
	display: block;
}

.title1 {
	text-transform: uppercase;
}

h1, h2, .title-section {
	color: #3B1195;
	font-weight: 600;
	font-size: 40px;
	line-height: 40px;
}

.centered {
	text-align: center;
}

.subtitle {
	font-size: 24px;
	line-height: 30px;
	margin-top: 27px;
}

.btn-main {
	height: 67px;
	background-color: transparent;
	font-size: 24px;
	font-weight: 600;
	color: #66BF0C;
	margin-top: 27px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
	padding-right: 30px;
	text-transform: uppercase;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-main:before {
	content: "";
	width: 67px;
	height: 100%;
	background-color: #66BF0C;
	background-image: url("../img/icon_arrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 10px;
	transition: background-color 0.3s ease-in-out;
}

.btn-main:hover {
	background-color: #66BF0C;
	color: #ffffff;
}

.btn-main:active {
	background-color: #4D9703;
}

.btn-main:active:before {
	background-color: #4D9703;
}

.section-advantages {
	padding: 48px 0 35px;
}

.advantages-inners {
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
	gap: 45px;
}

.advantages-text {
	width: 100%;
	max-width: 440px;
	flex-shrink: 0;
}

.advantages-info {
	display: flex;
	align-items: stretch;
	gap: 42px;
	width: 100%;
	flex-wrap: wrap;
}

.advantages-info-item {
	flex: 0 0 calc(50% - 21px);
	padding: 65px 30px;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	position: relative;
}

.advantages-info-item:after {
	content: "";
	background-image: url("../img/icon_circle.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 69px;
	height: 69px;
	position: absolute;
	right: -35px;
	top: -35px;
	border-radius: 50%;
}

.advantages-info-item .number {
	font-size: 40px;
	font-weight: 700;
	color: #3B1195;
	margin-bottom: 20px;
}

.section-topical-links {
	padding: 48px 0 35px;
	background-image: url("../img/bg_topical_links.webp");
	background-size: 100% 60%;
	background-repeat: no-repeat;
	background-position: bottom center;
}

.swiper-main-wrapper {
	margin-top: 35px;
}

.swiper-main-item {
	padding: 22px 61px 17px;
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	margin: 15px 57px 40px;
}

.swiper-main-item-body, .main-item-body {
	display: flex;
	align-items: flex-start;
	gap: 44px;
}

.main-item-body {
	gap: 22px
}

.swiper-main-media {
	max-width: 412px;
	width: 100%;
	flex-shrink: 0;
}

.swiper-main-media img, .main-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h3, .title3 {
	color: #3B1195;
	font-weight: 600;
	font-size: 24px;
	line-height: 41px;
}

.swiper-main-info .title3 {
	text-transform: uppercase;
	margin-bottom: 4px;
}

.read-more {
	font-size: 20px;
	line-height: 30px;
	color: #3B1195;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	margin-top: 10px;
	display: inline-flex;
}

.read-more:hover {
	color: #1D064E;
}

.btn-topical-links {
	padding: 0 60px;
	display: flex;
	width: fit-content;
	margin: 18px auto 0;
}

.swiper-pagination {
	bottom: 0 !important;
}

.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background-color: #E2DBEF;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background-color: #3B1195;
}

.swiper-main-info p, .main-info p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 11;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
}

.services-item {
	display: flex;
	align-items: flex-start;
	gap: 81px;
	padding: 48px 0;
}

.services-inners .services-item:nth-child(2n) {
	flex-direction: row-reverse;
}

.services-media {
	max-width: 550px;
	width: 100%;
	flex-shrink: 0;
}

.services-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-item .title-section {
	margin-bottom: 21px;
}

.btn-service {
	margin-top: 21px;
	padding: 0 60px;
	display: flex;
	width: fit-content;
}

.section-cta {
	background-image: url("../img/bg_cta.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	min-height: 370px;
	display: flex;
	align-items: center;
	position: relative;
}

.foot-figure:after {
	content: "";
	background-image: url("../img/bg_foot_cta.webp");
	background-size: cover;
	height: 28px;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	bottom: 0;
}

.section-cta-inners {
	margin-top: 25px;
}

.section-cta .title-section {
	color: #ffffff;
	text-transform: uppercase;
}

.btn-cta {
	padding: 0 60px;
	height: 68px;
	margin-top: 20px;
	font-size: 20px;
}

.section-reviews {
	padding: 48px 0;
}

.rating {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
}

.rating li {
	list-style: none;
}

.rating li .star {
	width: 34px;
	height: 34px;
	background: url("../img/star_icon.svg") no-repeat center center;
}

.rating li .star.active {
	background: url("../img/star_active_icon.svg") no-repeat center center;
}

.reviews-inners {
	margin-top: 135px;
	display: flex;
	align-items: stretch;
	gap: 128px 40px;
	flex-wrap: wrap;
}

.reviews-item {
	/* max-width: 285px; */
	flex: 0 0 calc(25% - 30px);
	width: 100%;
	padding: 0 18px 25px;
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	text-align: center;
}

.reviews-item-ava-circle {
	width: 136px;
	height: 136px;
	border-radius: 50%;
	overflow: hidden;
	border: 8px solid #ffffff;
	margin: 0 auto;
	position: relative;
	top: -38px;
}

.reviews-item-ava {
	background-image: url("../img/bg_ava.svg");
	background-size: cover;
	background-position: top center;
	width: 168px;
	height: 129px;
	margin: -43px auto 0;
}

.reviews-item-ava-circle img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.reviews-item .rating {
	margin-top: 10px;
}

.reviews-item .reviews-date {
	margin-top: 16px;
	color: rgba(19, 31, 49, 0.3);
}

.reviews-item .reviews-name {
	line-height: normal;
	margin: 7px 0;
}

.btn-reviews {
	padding: 0 60px;
	margin: 46px auto 0;
	display: flex;
	width: fit-content;
}

.section-result {
	padding: 48px 0;
}

.section-result .swiper-main-media, .section-result .main-media {
	max-width: 666px;
}

.section-result .swiper-main-item {
	padding: 0;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	margin: 15px 57px 40px;
}

.section-result .swiper-button-next:after, .section-result .swiper-button-prev:after {
	color: #3B1195;
}

.section-result .swiper-main-info .title3, .section-result .main-info .title3 {
	text-transform: none;
	margin-bottom: 4px;
	line-height: 30px;
}

.section-result .swiper-main-info p, .section-result .main-info p {
	-webkit-line-clamp: inherit;
}

.section-content {
	padding: 38px 0;
}

.content-block {
	margin-top: 28px;
}

.content-block h3 {
	margin-top: 14px;
	text-transform: uppercase;
}

.content-block p {
	margin-top: 14px;
}

.content-block ul, .content-block ol {
	padding-left: 30px;
	margin-top: 14px;
}

.content-block h2, .content-block h3 {
	margin-top: 30px;
}

.content-block ul {
	list-style-type: disc;
}

.content-block ol {
	list-style-type: decimal;
}

.section-faq {
	padding: 48px 0 78px;
}

.faq-items .faq-item {
	background-color: #ffffff;
	border-bottom: 2px solid #3B1195;
}

.faq-items .faq-item .faq-item-title {
	font-size: 24px;
	cursor: pointer;
	position: relative;
	padding: 21px 30px 21px 0;
	font-weight: 600;
	color: #3B1195;
}

.faq-items .faq-item .faq-item-title:after {
	content: "";
	position: absolute;
	width: 22px;
	height: 5px;
	right: 31px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: #3B1195;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}

.faq-items .faq-item .faq-item-title:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 22px;
	right: 39px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: #3B1195;
	transition: opacity 0.3s ease-in-out;
	border-radius: 3px;
	opacity: 1;
}

.faq-items .faq-item .faq-item-info {
	display: none;
	padding: 0 94px 21px 0;
}

.faq-items .faq-item .faq-item-info p {
	margin: 0;
}

.faq-items .faq-item.active .faq-item-title:before {
	opacity: 0;
}

.section-trust {
	padding: 38px 0;
}

.trust-inners {
	margin-top: 36px;
	display: flex;
	align-items: stretch;
	gap: 22px 57px;
	flex-wrap: wrap;
}

.trust-item {
	flex: 0 0 calc(33% - 35px);
}

.trust-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-form {
	padding: 55px 0 44px;
	background-image: url("../img/bg_contact_form.webp");
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	position: relative;
}

.section-form.bottom {
	background-image: url("../img/bg_contact_form.webp") !important;
}

.section-form:before {
	content: "";
	background-image: url("../img/img_foot_top.png");
	height: 31px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
}

.section-form .title-section {
	color: #ffffff;
	text-transform: uppercase;
}

.form-group-inners {
	margin-top: 29px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 80px;
}

.div1 {
	grid-area: 1 / 1 / 2 / 2;
}

.div2 {
	grid-area: 1 / 2 / 2 / 3;
}

.div3 {
	grid-area: 1 / 3 / 2 / 3;
}

.div4 {
	grid-area: 2 / 1 / 3 / 2;
}

.div5 {
	grid-area: 3 / 1 / 4 / 2;
	margin-top: 7px;
}

.div6 {
	grid-area: 2 / 2 / 4 / 4;
}

.form-group-btn {
	max-width: 100%;
}

.form-group label {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 5px;
}

.form-group input {
	width: 100%;
	height: 54px;
	border-radius: 10px;
	outline: 0;
	border: 0;
	padding: 0 13px;
	font-size: 20px;
}

.form-group select {
	width: 100%;
	height: 54px;
	border-radius: 10px;
	outline: 0;
	border: 0;
	padding: 0 13px;
	font-size: 20px;
}

.form-group textarea {
	width: 100%;
	height: 161px;
	border-radius: 10px;
	outline: 0;
	border: 0;
	padding: 13px;
	font-size: 20px;
	resize: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
	color: #C2C5C9;
}

.btn-form {
	margin: 29px auto 0;
	display: flex;
	width: fit-content;
	padding: 0 60px;
	height: 67px;
	cursor: pointer;
}

footer {
	background-color: #1D0650;
	padding: 53px 0 40px;
	text-align: center;
}

.menu-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin-top: 20px;
}

.menu-footer li a {
	text-decoration: none;
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	transition: color 0.3s ease-in-out;
}

.menu-footer li a:hover {
	color: #7F43FF;
}

.list-social {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 30px;
}

.list-social li a {
	width: 76px;
	height: 76px;
	background-size: cover;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: top center;
	display: block;
	transition: all 0.3s ease-in-out;
	opacity: 1;
}

.list-social li a:hover {
	opacity: 0.7;
}

.list-social li.facebook a {
	background-image: url("../img/icon_facebook.svg");
}

.list-social li.whatsapp a {
	background-image: url("../img/icon_whatsapp.svg");
}

.list-social li.telegram a {
	background-image: url("../img/icon_telegram.svg");
}

#menu-toggle {
	width: 33px;
	height: 33px;
	cursor: pointer;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 16;
	position: relative;
	margin-left: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-weight: 700;
	font-size: 34px;
}

.section-top {
	background-image: url("../img/bg_page_top.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 734px;
	padding-bottom: 170px;
}

.page-all .logo:after {
	content: "";
	background-image: url("../img/bg_logo.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 683px;
	height: 93px;
	position: absolute;
	z-index: -1;
	left: -180px;
	top: -10px;
}

.section-top {
	color: #ffffff;
	position: relative;
}

.section-top .title-section, .section-top h1 {
	color: #ffffff;
}

.section-top .main_media {
	max-width: 452px;
	margin-top: -100px;
}

.section-top:after {
	content: "";
	background-image: url("../img/bg_foot_volna.svg");
	background-repeat: no-repeat;
	height: 168px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.page-all .section-form {
	background-image: url("../img/bg_contact_form2.webp");
}

.list-check {
	margin-top: 40px;
}

.list-check li {
	position: relative;
	margin-bottom: 28px;
	padding-left: 80px;
	font-size: 20px;
	line-height: 30px;
}

.list-check li:before {
	content: "";
	background-image: url("../img/icon_check.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 49px;
	height: 49px;
	position: absolute;
	left: 0;
	top: 0;
}

.list-check li:last-child {
	margin-bottom: 0;
}

.section-links {
	padding: 17px 0;
}

.links-inners {
	max-width: 1146px;
	width: 100%;
	margin: 0 auto;
}

.links-item {
	padding: 17px 61px;
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	margin-top: 31px;
}

.links-item-body {
	display: flex;
	align-items: flex-start;
	gap: 44px;
}

.links-media {
	max-width: 412px;
	width: 100%;
	flex-shrink: 0;
}

.links-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.links-info .title3 {
	text-transform: uppercase;
	margin-bottom: 4px;
}

.result-inners {
	max-width: 1155px;
	width: 100%;
	margin: 0 auto;
}

.result-inners .main-item {
	margin-top: 28px;
}

.pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 46px;
}

.pagination a,
.pagination span {
	width: 59px;
	height: 35px;
	border-radius: 10px;
	font-size: 24px;
	line-height: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #3B1195;
	border: 2px solid #3B1195;
	text-decoration: none;
}

.pagination a.prev, .pagination a.next {
	width: 120px;
	height: 35px;
	display: inline-block;
}

.pagination a {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.pagination a:hover,
.pagination span.current, .pagination a.current {
	background-color: #3B1195;
	border-color: #3B1195;
	color: #ffffff;
}

.section-blog {
	padding: 38px 0;
}

.blog-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 75px;
}

.blog-content {
	flex: 1;
	max-width: 800px;
	width: 100%;
}

.blog-sidebar {
	max-width: 390px;
	width: 100%;
	flex-shrink: 0;
}

.blog-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	text-decoration: none;
	margin-bottom: 34px;
}

.blog-inners .blog-item:last-child {
	margin-bottom: 0;
}

.blog-item-media {
	max-width: 247px;
	height: 164px;
	flex-shrink: 0;
}

.blog-item-media img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.blog-item-info .blog-item-info-header {
	display: flex;
	align-items: center;
	gap: 40px;
	color: #848A94;
}

.blog-item-info .blog-item-info-header p {
	font-size: 20px;
	line-height: 30px;
	color: #848A94;
	margin-top: 0;
}

.blog-item h3 {
	line-height: 30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
	margin-top: 7px;
}

.blog-item-info p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
	margin-top: 7px;
	color: #131F31;
}

.sidebar-inners {
	margin-top: 20px;
}

.sidebar-item {
	margin-bottom: 10px;
	border-radius: 10px;
	border: 2px solid #3B1195;
	padding: 7px 22px;
	font-size: 18px;
	line-height: 30px;
	color: #3B1195;
	width: 100%;
	display: flex;
	text-decoration: none;
	background-color: #ffffff;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
}

.sidebar-item:hover {
	background-color: #3B1195;
	color: #ffffff;
}

.sidebar-inners .sidebar-item:last-child {
	margin-bottom: 0;
}

.sidebar-caption {
	text-align: center;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 30px;
	color: #3B1195;
	font-weight: 600;
}

.blog-info-main {
	display: flex;
	align-items: center;
	gap: 52px;
	margin-top: 27px;
	flex-wrap: wrap;
}

.blog-info-main p, .blog-info-main a {
	font-size: 24px;
	line-height: 30px;
	color: #C1CAEF;
	text-decoration: none;
}

.section-top-post .rating{
	justify-content: flex-start;
	margin-top: 27px;
}

.section-top-post .main_media {
	margin-top: -30px;
	height: 300px;
}

.section-top-post .main_media img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.blog-content .content-block {
	margin-top: 0;
}

.blog-wrapper .blog-inners {
	margin-top: 58px;
}

.block-comments .comments-form {
	background: linear-gradient(90deg, #3B1195 0%, #210954 100%);
	padding: 23px 19px;
	border-radius: 10px;
	margin-bottom: 50px;
	margin-top: 15px;
}

.block-comments .comments-form .form-group {
	margin-bottom: 10px;
}

.block-comments .comments-form .form-group label {
	color: #ffffff;
	display: block;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
}

.block-comments .comments-form .form-group input {
	width: 100%;
	max-width: 366px;
	height: 54px;
	border: none;
	font-size: 20px;
	border-radius: 10px;
	padding: 0 13px;
	background-color: #FFFFFF;
	outline: none;
}

.comment-notes, .comment-form-cookies-consent {
	color: #ffffff;
}

.block-comments .comments-form .form-group textarea {
	width: 100%;
	border-radius: 10px;
	height: 94px;
	resize: none;
	font-size: 18px;
	padding: 13px;
	border: none;
	outline: none;
	background-color: #FFFFFF;
}

.block-comments .comments-form .buttons.buttons-group {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.rating-buttons li {
	cursor: pointer;
}

.comments-form .btn-form {
	margin: 0;
}

.block-comments .comments-items .item {
	margin-top: 15px;
	padding: 9px 19px;
}

.date-comment {
	font-size: 20px;
	color: rgba(19, 31, 49, 0.5);
	margin-top: 10px;
}

.user-name {
	font-size: 24px;
	color: #3B1195;
	font-weight: 600;
	margin-top: 10px;
}

p.user-message {
	font-size: 18px;
	margin-top: 10px;
}

.block-comments .comments-items .item .comment-info .rating {
	justify-content: flex-start;
}

.section-comments {
	padding: 30px 0;
}

.section-comments h3 {
	text-transform: uppercase;
	line-height: 30px;
}

.section-blog h4 {
	font-size: 20px;
	line-height: 25px;
	color: #131F31;
	margin-bottom: 20px;
}

.section-contacts {
	padding: 38px 0;
}

.section-contacts h3, .section-faq h3 {
	margin-top: 34px;
	line-height: 30px;
	margin-bottom: 14px;
}

.contacts-social {
	margin-top: 14px;
}

.contacts-social li a {
	font-size: 20px;
	line-height: 30px;
	text-decoration: underline;
	color: #3B1195;
}

.content-block a {
	color: #3B1195;
}

.section-form-page {
	background-image: url("../img/bg_contact_form_page.png") !important;
	padding-top: 180px;
	padding-bottom: 44px;
}

.section-form-page:after, .section-form-page:before {
	display: none!important;
}




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



.overlay-modal {
	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_main .form-group-inners {
	grid-column-gap: 20px;
}

.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;
	background-color: rgba(29, 6, 80, 0.7);
}

.modal .contacts-block {
	background-color: #ffffff !important;
	backdrop-filter: none!important;
	margin: auto;
	padding: 30px;
	border-radius: 40px;
}

.contacts-block .form-group input {
	font-size: 16px;
	border: 1px solid #000;
}


.contacts-block .form-group textarea {
	font-size: 16px;
	border: 1px solid #000;
}

.contacts-block .form-group select {
	font-size: 16px;
	border: 1px solid #000;
}

.contacts-block .form-group label {
	font-size: 16px;
	line-height: 23px;
}

.contacts-block .wpcf7-not-valid-tip {
	font-size: 14px;
}

.modal_body p {
	font-size: 24px;
	line-height: 30px;
	color: #1D0650;
}

.modal_body .title-section {
	color: #1D0650;
}

.modal_wrapper {
	width: 100%;
	height: auto;
	padding: 0;
	background: transparent;
	border-radius: 40px;
	margin: auto;
	position: relative;
	z-index: 0;
}

.modal-form .modal_main {
	max-width: 850px;
}


.section-privacy ul {
	list-style-type: disc;
	padding-left: 30px;
	margin-top: 20px;
}
.section-privacy ol {
	list-style-type: decimal;
	padding-left: 30px;
	margin-top: 20px;
}

.section-privacy ul li, .section-privacy ol li {
	margin-bottom: 15px;
}

.section-privacy ul li:last-child, .section-privacy ol li:last-child {
	margin-bottom: 0;
}

.section-error {
	height: 100%;
}

.section-error .container{
	height: 100%;
}

.block-error-page .error-page-title {
	font-size: 96px;
	line-height: 1;
	font-weight: bold;
	color: #3B1195;
	margin-bottom: 66px;
}

.block-error-page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 150px;
	font-size: 40px;
	line-height: 1;
	font-weight: normal;
	color: #3B1195;
	height: 100%;
	margin: auto;
}

.block-error-page .notfound-picture {
	width: 452px;
	height: 449px;
	background-image: url("../img/icon_404.svg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	flex-shrink: 0;
}

.btn-error {
	height: 46px;
	max-width: 195px;
	margin-top: 66px;
	padding: 0 20px;
	display: flex;
}


.lang-switcher {
	position: relative;
	font-size: 20px;
	margin-left: 20px;
}

.lang-switcher > .current-lang {
	height: 41px;
	width: 73px;
	z-index: 1;
	display: flex;
	cursor: pointer;
	align-items: center;
	position: relative;
	border-radius: 5px;
	background-color: #ffffff;
	color: #542FA2;
	font-weight: 500;
	padding: 0 0 0 12px;
	transition: all 0.3s ease-in-out;
}

.lang-switcher > .current-lang:after {
	content: "";
	position: absolute;
	width: 14px;
	height: 10px;
	top: 0;
	bottom: 0;
	right: 14px;
	margin: auto;
	background: url("../img/drop_arrow_icon.svg") no-repeat top center / contain;
	transition: all 0.3s ease-in-out;
}

.lang-switcher.active > .current-lang:after {
	transform:rotate(-180deg);
	-o-transform:rotate(-180deg);
	-ms-transform:rotate(-180deg);
	-moz-transform:rotate(-180deg);
	-webkit-transform:rotate(-180deg);
}

.lang-switcher > ul {
	top: 24px;
	left: 0;
	right: 0;
	display: none;
	overflow: hidden;
	padding-top: 20px;
	position: absolute;
	background-color: #ffffff;
	border-radius: 0 0 5px 5px;
}

.lang-switcher.active > ul {
	display: block;
}

.lang-switcher > ul > li {
	list-style: none;
}

.lang-switcher > ul > li > a {
	height: 38px;
	display: flex;
	font-weight: 500;
	align-items: center;
	color: #542FA2;
	padding: 0 0 0 12px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.headerDrop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.arrowIcon {
    cursor: pointer;
}

.headerDropList {
    display: none;
    width: max-content;
    position: absolute;
    top: 150%;
    left: 0;
	right: 0;
	margin: 0 auto;
    padding: 15px;
    border-radius: 25px;
    background: #ECF2FF;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
    z-index: 2;
	text-align: center;
}

.headerDrop.open .headerDropList {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.headerDropList li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.headerDropList li a:hover {
	color: #F2B90D;
}

@media screen and (min-width: 1600px) {
	.section-main {
		background-position: right -210px top;
	}
}

@media screen and (min-width: 2400px) {
	.section-main {
		background-position: right -210px top -90px;
	}
}

@media screen and (max-width: 1350px) {
	.section-main {
		background-position: right -40px top -50px;
	}
	.advantages-info-item:after {
		width: 50px;
		height: 50px;
		right: -15px;
		top: -25px;
	}

	.page-all .logo:after {
		width: 603px;
		height: 83px;
		left: -190px;
		top: -10px;
	}
}

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

	.btn-header {
		font-size: 16px;
	}

	.form-group-inners {
		grid-column-gap: 40px;
	}
}

@media screen and (max-width: 1200px) {
	.main-menu {
		gap: 10px;
	}

	.logo {
		width: 200px;
		height: 44px;
	}

	.section-main {
		background-position: right -100px top -50px;
		min-height: 100%;
		padding-bottom: 110px;
	}

	.main-menu li a {
		font-size: 14px;
	}

	.btn-header {
		font-size: 14px;
	}

	.advantages-info-item {
		padding: 55px 10px;
	}

	.swiper-main-item {
		padding: 22px 10px 17px;
	}

	.services-item {
		gap: 40px;
	}

	.services-media {
		max-width: 480px;
	}

	.reviews-item {
		padding: 0 8px 25px;
	}

	.section-result .swiper-main-media, .section-result .main-media {
		max-width: 500px;
	}

	.blog-wrapper {
		gap: 30px;
	}

	.blog-sidebar {
		max-width: 350px;
	}

	.block-error-page {
		gap: 50px;
	}

	.block-error-page .notfound-picture {
		width: 371px;
		height: 369px;
	}

	.block-error-page .error-page-title {
		font-size: 80px;
		margin-bottom: 40px;
	}

}

@media screen and (max-width: 1100px) {
	.reviews-inners {
		gap: 128px 20px;
	}

	.reviews-item {
		flex: 0 0 calc(25% - 15px);
	}

}

@media screen and (max-width: 1023px) {
	#menu-toggle span {
		display: block;
		background: #ffffff;
		border-radius: 5px;
		transition: .25s ease-in-out;
	}

	#menu-toggle #hamburger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	#menu-toggle #hamburger span {
		width: 31px;
		height: 3px;
		position: relative;
		border-radius: 2px;
		top: 0;
		right: 0;
		margin: 3px 0;
	}

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

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

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

	.overlay_top {
		position: fixed;
		background: #302384;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
/* 		padding: 80px 0 15px; */
		padding: 54px 0 15px;
	}

	.overlay_scroll {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: hidden;
		overflow-y: scroll;
		flex-direction: column;
		align-items: flex-end;
		text-align: end;
	}

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

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

	.main-menu {
		flex-direction: column;
		gap: 0;
		margin: 0;
		align-items: flex-end;
		margin-right: 20px;
	}

	.main-menu li a {
		padding: 13px 15px;
		font-size: 18px;
		display: block;
	}

	h1, h2, .title-section {
		font-size: 24px;
		line-height: 30px;
	}

	.main-inners {
		gap: 0;
		flex-direction: column-reverse;
		margin-top: 70px;
		align-items: center;
	}

	.page-all .main-inners {
		margin-top: 85px;
	}

	.main_media {
		max-width: 200px;
		width: 100%;
	}

	.subtitle {
		font-size: 18px;
		line-height: 25px;
		margin-top: 7px;
	}

	h1 br {
		display: none;
	}

	.section-main {
		background-position: top left 0;
		min-height: 100%;
		padding-bottom: 40px;
	}

	.section-advantages {
		padding: 17px 0;
	}

	.advantages-inners {
		margin-top: 10px;
		gap: 45px;
		flex-direction: column;
	}

	.advantages-text {
		width: 100%;
		max-width: 100%;
		flex-shrink: 0;
	}

	.section-topical-links {
		padding: 17px 0;
		background-size: 100% 60%;
	}

	.swiper-main-item {
		padding: 17px 19px;
		margin: 15px 10px;
	}

	.links-item {
		padding: 17px 19px;
		margin-top: 37px;
	}

	.links-item-body {
		align-items: center;
		gap: 18px;
		flex-direction: column;
	}

	.section-links h2 {
		display: none;
	}

	.swiper-pagination {
		display: none;
	}

	.swiper-button-prev, .swiper-button-next {
		position: relative;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

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

	.swiper-main-item-body, .main-item-body {
		align-items: center;
		gap: 18px;
		flex-direction: column;
	}

	body {
		font-size: 18px;
		line-height: 25px;
	}

	.swiper-main-info p {
		-webkit-line-clamp: 9;
	}

	.services-item {
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
		gap: 30px;
		padding: 17px 0;
	}

	.services-item .title-section {
		text-align: center;
	}

	.btn-service {
		margin: 18px auto 0;
	}

	.services-inners .services-item:nth-child(2n) {
		flex-direction: column-reverse;
	}

	.btn-cta {
		padding: 0 20px;
		margin-top: 57px;
	}

	.section-cta {
		background-position: top right;
		min-height: auto;
		padding: 75px 0;
	}

	.reviews-inners {
		margin-top: 110px;
		display: flex;
		align-items: stretch;
		justify-content: center;
		gap: 110px 30px;
		flex-wrap: wrap;
	}

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

	.section-result .swiper-main-item {
		padding: 0;
		border-radius: 0;
		margin: 0 0 0;
	}

	.section-result {
		padding: 17px 0;
	}

	.section-reviews {
		padding: 17px 0;
	}

	.trust-item {
		flex: 0 0 calc(50% - 35px);
		max-width: 250px;
	}

	.trust-inners {
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}

	.section-trust {
		padding: 17px 0;
	}

	.section-content {
		padding: 17px 0;
	}

	.section-faq {
		padding: 17px 0;
	}

	.form-group-inners {
		grid-column-gap: 0;
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.form-order {
		max-width: 700px;
		margin: 0 auto;
	}

	.section-form .subtitle {
		text-align: center;
	}

	footer {
		padding: 34px 0;
	}

	.header {
		background-color: #302384;
	}

	.logo {
		background-image: url("../img/logo_white.svg");
	}

	.section-top:after {
		background-position: top left;
		height: 118px;
	}

	.page-all .logo:after {
		display: none;
	}

	.section-top .main_media {
		margin-top: 0;
	}

	.btn-header {
		font-size: 18px;
		display: flex;
		height: 46px;
		flex-shrink: 0;
		border-radius: 0;
		width: 100%;
		align-items: center;
		justify-content: flex-end;
	}

	.blog-wrapper {
		gap: 20px;
		flex-direction: column-reverse;
		align-items: center;
	}

	.blog-sidebar {
		max-width: 550px;
	}

	.section-top-post .main-info {
		margin-top: 20px;
	}

	.blog-info-main {
		gap:10px 100px;
		margin-top: 10px;
	}

	.section-blog-post .blog-wrapper {
		flex-direction: column;
	}

	.section-form-page {
		padding-top: 110px;
		padding-bottom: 28px;
	}

	.block-error-page {
		gap: 16px;
		flex-direction: column-reverse;
		margin: 0;
		align-items: center;
		justify-content: flex-end;
		text-align: center;
	}

	.section-error {
		height: auto;
		padding: 50px 0;
	}

	.btn-error {
		margin: 40px auto 0;
	}

	.lang-switcher > .current-lang:after {
		display: none;
	}

	.lang-switcher > ul {
		top: 0;
		display: block;
		overflow: visible;
		padding-top: 0;
		position: relative;
		background-color: transparent;
		border-radius: 0;
	}

	.lang-switcher > .current-lang {
		justify-content: center;
		padding: 0;
	}

	.lang-switcher > ul > li > a {
		height: 41px;
		display: flex;
		width: 73px;
		border: 1px solid #9791C1;
		border-radius: 5px;
		align-items: center;
		justify-content: center;
		background: transparent;
		color: #9791C1;
		padding: 0;
		text-decoration: none;
		transition: all 0.3s ease-in-out;
	}

	.lang-switcher {
		margin: 16px 18px 10px 0;
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		gap: 16px;
	}
	
	.headerDrop {
		gap: 0;
	}
	
	.headerDropList {
		top: 50px;
		left: unset;
		right: 0;
	}

}

@media screen and (max-width: 767px) {
	.section-main {
		background-position: top 60px right;
		background-image: url("../img/bg_main_m.webp");
		padding-bottom: 15px;
		background-size: contain;
	}

	.main_media {
		max-width: 170px;
		width: 100%;
		height: auto;
	}

	.btn-main {
		margin-top: 12px;
	}

	.advantages-info {
		flex-direction: column;
		gap: 27px;
	}

	.advantages-info-item p {
		font-size: 20px;
	}

	.advantages-info-item:after {
		width: 42px;
		height: 42px;
		right: -15px;
		top: -16px;
	}

	.advantages-inners {
		margin-top: 10px;
		gap: 31px;
	}

	.section-services .read-more {
		margin: 30px auto 0;
		display: block;
		width: fit-content;
	}

	.section-cta {
		background-image: url("../img/bg_cta_mob.webp");
		background-size: cover;
		text-align: center;
		min-height: 100%;
		padding: 130px 0 75px;
	}

	.btn-cta {
		padding: 0 10px;
	}

	.reviews-inners {
		margin-top: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 100px;
		flex-direction: column;
	}

	.reviews-item {
		flex: 0 0 100%;
	}

	.btn-reviews {
		padding: 0 20px;
		margin: 26px auto 0;
		display: flex;
		align-items: center;
		text-align: center;
		height: auto;
		min-height: 46px;
		width: 100%;
		max-width: 350px;
	}

	.section-result .swiper-arrow {
		margin-top: 40px;
	}

	h3, .title3 {
		font-size: 24px;
		line-height: 30px;
	}

	.faq-items .faq-item .faq-item-title {
		font-size: 20px;
		cursor: pointer;
		position: relative;
		padding: 10px 30px 10px 0;
	}

	.faq-items .faq-item .faq-item-info {
		padding: 0 30px 10px 0;
	}

	.faq-items .faq-item .faq-item-title:after {
		right: 0;
	}

	.faq-items .faq-item .faq-item-title:before {
		right: 9px;
	}

	.form-group label {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 7px;
		/*display: block;*/
	}

	.form-group input {
		width: 100%;
		height: 41px;
		border-radius: 10px;
		padding: 0 13px;
		font-size: 18px;
	}

	.form-group textarea {
		height: 110px;
		font-size: 18px;
	}

	.menu-footer {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 26px;
		margin-top: 20px;
		flex-direction: column;
	}

	.section-top {
		min-height: auto;
		padding-bottom: 82px;
	}

	.section-top:after {
		height: 38px;
	}

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

	.btn-form {
		padding: 0 20px;
		height: 67px;
		max-width: 350px;
		width: 100%;
	}

	.list-check {
		margin-top: 24px;
	}

	.list-check li {
		margin-bottom: 24px;
		padding-left: 48px;
	}

	.list-check li:before {
		width: 32px;
		height: 32px;
	}

	.pagination a:not(:first-child):not(:last-child) {
		display: none;
	}

	.section-blog {
		padding: 17px 0;
	}

	.blog-item-media {
		display: none;
	}

	.blog-item h3 {
		-webkit-line-clamp: 4;
	}

	.pagination {
		margin-top: 25px;
	}
	.sidebar-item {
		padding: 11px 7px;
		font-size: 16px;
		line-height: 25px;
		-webkit-line-clamp: 4;
	}

	.form-group select {
		font-size: 18px;
	}

	.blog-item {
		margin-bottom: 15px;
	}

	.blog-item-info p {
		-webkit-line-clamp: 4;
	}

	.block-comments .comments-form .form-group input {
		max-width: 100%;
	}

	.block-comments .comments-form {
		padding: 13px 20px;
		border-radius: 10px;
		margin-bottom: 40px;
		margin-top: 15px;
	}

	.block-comments .comments-form .form-group label {
		display: none;
	}

	.block-comments .comments-form .form-group input {
		height: 40px;
		font-size: 18px;
	}

	.block-comments .comments-form .form-group textarea {
		font-size: 18px;
		height: 146px;
	}

	.block-comments .comments-form .buttons.buttons-group {
		align-items: center;
		justify-content: center;
		margin-top: 10px;
		flex-direction: column;
		gap: 10px;
	}

	.comments-form .btn-form {
		margin: 0;
		height: 57px;
		padding: 0 14px;
		font-size: 20px;
		max-width: max-content;
	}

	.section-contacts {
		padding: 17px 0;
	}

	.modal-content {
		font-size: 18px;
		line-height: 30px;
		padding: 34px  22px;
	}

	.btn-close {
		right: 8px;
		top: 8px;
	}

	.modal-content p {
		font-size: 18px;
		line-height: 25px;
	}

	.modal-content p.modal-title {
		font-size: 20px;
		margin-bottom: 2px;
	}

	.block-error-page .notfound-picture {
		width: 275px;
		height: 277px;
	}

	.block-error-page {
		font-size: 24px;
	}

	.block-error-page .error-page-title {
		font-size: 40px;
		margin-bottom: 16px;
	}

	.btn-error {
		margin: 16px auto 0;
	}

	.section-top-post .main_media {
		height: auto;
	}

	.modal .contacts-block {
		padding: 20px;
		border-radius: 20px;
	}
}

@media screen and (max-width: 500px) {
	.trust-inners {
		flex-direction: column;
		gap: 15px;
	}

	.trust-item {
		flex: 100%;
		max-width: 250px;
	}

	.pagination {
		justify-content: space-between;
	}
}
