/* Reset */
*,
*::before,
*::after {padding: 0; margin: 0; border: 0; -webkit-box-sizing: border-box; box-sizing: border-box;}
a {text-decoration: none; color: inherit;}
ul, ol, li {list-style: none;}
img {vertical-align: top;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}
html, body {line-height: 1; overflow-x: hidden;}
textarea, button, input, select {font-family: inherit; font-weight: inherit; font-size: inherit; color: inherit; outline: none;}
button {cursor: pointer; background-color: inherit;}

/* Variables */
:root {
	--black-color: #000000;
	--dark-color: #1B1B1B;
	--grey-color: #888888;
	--white-color: #FFFFFF;
	--light-color: #E3E3E3;
	--bg-color: #F6F6F6;
	--bg-color-08: rgb(246, 246, 246, 0.8);
	--popform-color: #9D9FA1;
	--accent-color: #00846E;
	--accent-color-hover: #007763;
	--orange-color: #FBBA18;
	--error-color: #d32525;
	--warning-color: #f3bc24;
	--success-color: #21a121;
}

/*--------Start css--------*/
/*-------------------------*/

::-webkit-input-placeholder {
	opacity: 1;
	color: var(--grey-color);
}
::-moz-placeholder {
	opacity: 1;
	color: var(--grey-color);
}
:-ms-input-placeholder {
	opacity: 1;
	color: var(--grey-color);
}
::-ms-input-placeholder {
	opacity: 1;
	color: var(--grey-color);
}
::placeholder {
	opacity: 1;
	color: var(--grey-color);
}
::selection {
	background-color: var(--accent-color-hover);
	color: var(--white-color);
}

body {
	background-color: var(--bg-color);
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
	font-style: normal;
	color: var(--black-color);
	scroll-behavior: smooth;
	min-width: 340px;
	overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	display: block;
	font-weight: 600;
	line-height: 1.25;
	color: var(--black-color);
	margin-bottom: 15px;
}

h1, .h1 {
	font-size: 34px;
	line-height: 1.2;
}

h2, .h2 {
	font-size: 30px;
}

h3, .h3 {
	font-size: 26px;
}

h4, .h4 {
	font-size: 22px;
}

h5, .h5, h6, .h6 {
	font-size: 18px;
}

.txt_page h1, .txt_page .h1 { margin-top: 0 !important;}
.txt_page h2, .txt_page .h2,
.txt_page h3, .txt_page .h3,
.txt_page h4, .txt_page .h4,
.txt_page h5, .txt_page .h5,
.txt_page h6, .txt_page .h6 {
	margin-top: 20px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 991.98px) {
	body {font-size: 16px;}
	h1, .h1 {font-size: 26px;}
	h2, .h2 {font-size: 24px;}
	h3, .h3 {font-size: 22px;}
	h4, .h4 {font-size: 18px;}
}

b, strong { font-weight: 600; }
i, em { font-style: normal; }

a {
	color: var(--black-color);
	transition: all 0.3s ease;
}

a:hover, a:active {
	color: var(--accent-color);
}

img { max-width: 100%; }
video { max-width: 100%; }

p:not(:last-child) {
	margin-bottom: 12px;
}

hr {
	border: none;
	border-top: 1px solid var(--grey-color);
	text-align: center;
	height: 1px;
	margin: 20px auto;
	max-width: 90%;
}

.txt_page ol, .txt_page ol,
.txt_page ul, .txt_page ul {
	margin: 12px 0;
	padding-left: 23px;
}

.txt_page ul li {
	list-style: disc;
}

.txt_page ol li {
	list-style: decimal;
}

input:not([type=checkbox], [type=radio]), textarea, select {
	background-color: transparent;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark-color);
	height: 46px;
	line-height: 46px;
	padding: 0;
	border-bottom: 1px solid var(--grey-color);
	border-radius: 0;
	width: 100%;
	transition: all 0.3s ease;
}

textarea {
	height: 88px;
	padding: 15px 0;
	resize: none;
	line-height: 1.4;
}

input:focus, textarea:focus, select:focus {
	border-color: var(--dark-color);
}

select.invalid,
input.invalid {
	border-color: var(--error-color);
	background-color: rgba(255,0,0,0.1);
}

figure, .f-align-fullwidth {
	position: relative;
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 20px 0;
	display: block;
}

blockquote {
	border-left: 5px solid var(--accent-color);
	margin: 0 0 12px;
	padding: 6px 12px;
	font-style: normal;
}

.table-wrap {
	overflow-x: auto;
	width: 100%;
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--grey-color);
	margin-bottom: 20px;
}

tr, td {
	border: 1px solid var(--grey-color);
	padding: 5px 10px;
	vertical-align: top;
}

.hidden {
	display: none;
}

/*------Buttons------*/

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 25px;
	min-width: 170px;
	background-color: var(--accent-color);
	border: none;
	outline: none;
	border-radius: 25px;
	white-space: nowrap;
	color: var(--white-color);
	height: 50px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn > .btn__icon {
	font-size: 16px;
	line-height: 0;
}

.btn:hover, .btn:active, .button:focus {
	background-color: var(--accent-color-hover);
	color: var(--white-color);
}

.btn.disable {
	opacity: 0.7;
	cursor: not-allowed;
}

.btn.disable:hover, .btn.disable:active, .btn.disable:focus {
	background-color: var(--accent-color);
}

.big-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	border: 1px solid var(--white-color);
	outline: none;
	border-radius: 35px;
	white-space: nowrap;
	height: 70px;
	padding: 7px 7px 7px 30px;
	font-size: 16px;
	font-weight: 700;
	background-color: transparent;
	color: var(--white-color);
	line-height: 1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.big-btn:hover, .big-btn:active, .big-btn:focus {
	background-color: transparent;
	color: var(--white-color);
}

.big-btn .big-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 28px;
	background-color: var(--white-color);
	color: var(--accent-color);
	font-size: 22px;
	line-height: 1;
	transform: rotateZ(0);
	transition: all 0.3s ease;
}

.big-btn:hover .big-btn__icon, .big-btn:active .big-btn__icon {
	transform: rotateZ(90deg);
}

@media only screen and (max-width: 1079.98px) {
	.big-btn {
		gap: 15px;
		border-radius: 30px;
		white-space: nowrap;
		height: 60px;
		padding: 7px 7px 7px 25px;
	}
	.big-btn .big-btn__icon {
		width: 46px;
		height: 46px;
		border-radius: 23px;
	}
}

/*----Header-Main-Footer----*/
/*--------------------------*/

.wrapper {
	position: relative;
	padding-top: 100px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}

.wrapper > .main-content {
	flex-grow: 1;
}

[class*="__container"] {
	position: relative;
	max-width: 1240px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}

[class*="__container-sm"] {
	position: relative;
	max-width: 1040px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}

[class*="__container-f"], [class*="__container-ff"] {
	max-width: 100%;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0;
}

[class*="__container-ff"] {
	padding: 0;
}

.fancybox__container {
	position: fixed;
	max-width: inherit;
	width: inherit;
	padding-left: inherit;
	padding-right: inherit;
	margin: inherit;
	--fancybox-bg: rgba(0,0,0,0.6);
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	height: 100px;
	padding: 7px 0;
	transition: all 0.3s ease;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-color);
	box-shadow: 0 0 0 0 rgba(0,0,0,0);
	z-index: 3;
	transition: all 0.3s ease;
}

.header.header--scroll::before {
	background: var(--bg-color-08);
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
}
.header.open-menu::before {
	background: var(--accent-color);
	box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.header__container {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.header__logo,
.header__buttons,
.header__langs,
.header__menu,
.header__mobile-nav {
	position: relative;
}

.header__logo {
	display: inline-block;
	line-height: 0;
	flex: 0 0 125px;
	z-index: 4;
}

.header__logo img {
	max-width: 125px;
}

.header__buttons {
	flex: 0 1 180px;
	z-index: 3;
	text-align: right;
}

.header__langs {
	margin-left: auto;
	z-index: 3;
}

.header__menu {
	flex-grow: 1;
	z-index: 3;
}

.header__menu-list {
	justify-content: center;
}

.header__menu-list {
	display: flex;
	column-gap: 45px;
	align-items: center;
	flex-wrap: wrap;
}

.header__langs-list .menu-item,
.header__menu-list .menu-item {
	line-height: 20px;
	font-size: 16px;
	font-weight: 600;
	position: relative;
}

.header__langs-list .menu-item > a,
.header__menu-list .menu-item > a {
	color: var(--black-color);
	padding: 7px 0;
	display: inline-block;
	transition: all 0.2s;
}

.header__langs-list .menu-item:first-child > a {
	border-radius: 12px 12px 0 0;
}

.header__langs-list .menu-item:last-child > a {
	border-radius: 0 0 12px 12px;
}

.header__langs-list .menu-item-has-children > a {
	pointer-events: none;
}

.header__langs-list .menu-item.current-lang > a,
.header__menu-list .menu-item.current-menu-item > a {
	color: var(--accent-color);
	pointer-events: none;
}

.header__langs-list .menu-item.menu-item-has-children:hover > .sub-menu,
.header__menu-list .menu-item.menu-item-has-children:hover > .sub-menu {
	display: flex;
}

.header__langs-list .menu-item:not(.current-lang):hover > a,
.header__menu-list .menu-item:not(.current-menu-item):hover > a {
	color: var(--accent-color);
}

.header__langs-list .sub-menu,
.header__menu-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-direction: column;
	width: 260px;
	padding-top: 13px;
	z-index: 2;
}

.header__langs-list .sub-menu {
	width: 50px;
	left: auto;
	left: 50%;
	transform: translateX(-50%);
}

.header__menu-list .sub-menu > li {
	position: relative;
}

.header__langs-list .sub-menu > li > a,
.header__menu-list .sub-menu > li > a {
	position: relative;
	border: 1px solid var(--light-color);
	border-bottom: none;
	background-color: var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 46px;
	gap: 20px;
	padding: 0 40px 0 20px;
	color: var(--black-color);
	line-height: 18px;
	font-size: 15px;
}

.header__langs-list .sub-menu > li > a {
	padding: 0 10px;
	justify-content: center;
}

.header__langs-list .sub-menu > li:last-child > a,
.header__menu-list .sub-menu > li:last-child > a {
	border-bottom: 1px solid var(--light-color);
}

.header__menu-list .sub-menu > li.menu-item-has-children > a::after {
	position: absolute;
	display: inline-block;
	right: 15px;
	top: 17px;
	content: '\e900';
	line-height: 1;
	font-family: 'icons_font' !important;
	font-size: 12px;
	font-weight: normal;
	pointer-events: none;
	color: var(--grey-color);
}

.header__menu-list .sub-menu .menu-item:hover > a,
.header__langs-list .sub-menu .menu-item:hover > a {
	color: var(--white-color);
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.header__menu-list .sub-menu .menu-item.current-menu-item:hover > a,
.header__langs-list .sub-menu .menu-item.current-lang:hover > a,
.header__langs-list .sub-menu .menu-item.current-lang > a,
.header__menu-list .sub-menu .menu-item.current-menu-item > a {
	color: var(--accent-color);
	background-color: var(--light-color);
	border-color: var(--light-color);
	pointer-events: none;
}

.header__mobile-nav {
	position: relative;
	display: none;
}

.header__mobile-menu {
	display: none;
}

.header__mobile-burger {
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 5;
	transition: all 0.2s ease;
}

.burger__icon {
	padding-top: 2px;
	font-size: 14px;
	line-height: 0;
	color: var(--white-color);
	transition: all 0.2s ease;
}

.burger__icon::before {
	font-family: 'icons_font';
	content: '\e909';
}

.header__mobile-burger.active .burger__icon::before {
	content: '\e908';
}

.open-menu .header__mobile-burger {
	background-color: var(--white-color);
}

.open-menu .burger__icon {
	color: var(--accent-color);
}

/*-----mobile-menu-----*/

.header__mobile-menu {
	flex-direction: column;
	justify-content: space-between;
	gap: 35px;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	overflow: auto;
	padding: 110px 20px 40px;
	transition: all 0.3s;
	z-index: 4;
}
.header__mobile-menu.active {
	top: 0;
}
.mobile-menu__list {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.mobile-menu__item,
.mobile-menu__list .menu-item {
	position: relative;
	padding: 0 38px 0 0;
}
.mobile-menu__item > a,
.mobile-menu__list .menu-item > a {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--white-color);
	display: block;
	padding: 5px 0;
}
.mobile-menu__item.current-menu-item > a,
.mobile-menu__list .menu-item.current-menu-item > a,
.mobile-menu__item:not(.menu-item-has-children):hover > a,
.mobile-menu__list .menu-item > a:hover {
	color: var(--light-color);
}
.mobile-menu__item.current-menu-item > a,
.mobile-menu__list .menu-item.current-menu-item > a,
.mobile-menu__item.menu-item-has-children > a {
	color: var(--light-hover);
	pointer-events: none;
}

/*---end mobile-menu---*/

.header__mobile-contacts {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 20px;
	font-weight: 600;
}

.header__mobile-contacts > a {
	color: var(--white-color);
}

.header__mobile-contacts > a:hover {
	color: var(--light-color);
}

.header__mobile-logo {
	position: absolute;
	width: 81px;
	height: 26px;
	line-height: 0;
	right: 20px;
	top: 25px;
}

@media only screen and (max-width: 1199.98px) {
	.header__menu-list {
		column-gap: 30px;
	}
}

@media only screen and (max-width: 1079.98px) {
	.header {
		height: 85px;
	}
	.wrapper {
		padding-top: 85px;
	}
	.home .header__logo,
	.header__menu {
		display: none;
	}
	.header__buttons {
		flex: 0 1 auto;
	}
	.pvideos__btn.btn,
	.back__btn.btn,
	.header__btn.btn {
		height: 36px;
		min-width: 135px;
	}
	.header__mobile-nav {
		display: block;
		position: relative;
	}
	.header__langs {
		margin-left: auto;
	}
	.header__mobile-nav {
		display: block;
	}
	.header__mobile-menu {
		display: flex;
	}
}
@media only screen and (max-width: 474.98px) {
	.header__container {
		gap: 25px;
	}
	.header__logo {
		flex: 0 0 90px;
	}
	.header__logo img {
		max-width: 90px;
	}
}

.footer {
	background-color: var(--dark-color);
	padding: 30px 0 100px;
	color: var(--white-color);
	font-size: 16px;
}

.footer a {
	color: var(--white-color);
}

.footer a:hover {
	opacity: 0.7;
}

.footer__top {
	margin-bottom: 30px;
}

.footer__logo {
	display: inline-block;
	line-height: 0;
	max-width: 125px;
}

.footer__middle {
	display: flex;
	gap: 50px;
	justify-content: start;
}

.footer__middle-col.fcol-4 {
	align-self: end;
	margin-left: auto;
}

.footer__widget .widget-title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 18px;
}

.footer__widget .menu .menu-item:not(:last-child) {
	margin-bottom: 7px;
}

.footer__widget .menu .menu-item > a {
	display: inline-block;
	color: var(--white-color);
	line-height: 1.2;
}

.footer__widget .menu .menu-item.current-menu-item > a,
.footer__widget .menu .menu-item > a:hover {
	opacity: 0.7;
}

.footer__widget .menu .menu-item.current-menu-item > a {
	pointer-events: none;
}

.footer__conts-list li:not(:last-child) {
	margin-bottom: 7px;
}

.footer__conts-soc {
	margin-top: 18px;
}

.socials {
	line-height: 1;
}

.socials li {
	display: inline-block;
	margin-right: 12px;
	margin-bottom: 5px;
	font-size: 35px;
}

.socials li > a,
.socials li > a span {
	display: inline-block;
	line-height: 1;
}

.footer__copy {
	color: var(--grey-color);
	text-align: right;
}

.copyright {
	text-transform: uppercase;
	color: var(--grey-color);
	line-height: 1.2;
}

@media only screen and (max-width: 1079.98px) {
	.footer {
		padding-bottom: 50px;
	}
	.footer__middle {
		flex-wrap: wrap;
		gap: 40px;
	}
	.footer__middle-col {
		flex: 0 1 calc(50% - 20px);
	}
	.footer__middle-col.fcol-4 {
  		margin-left: inherit;
	}
	.footer__copy {
		text-align: left;
	}
}

@media only screen and (max-width: 575.98px) {
	.footer__middle {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.footer__middle-col {
		flex: 0 1 100%;
	}
	.footer__middle-col.fcol-4 {
		align-self: inherit;
	}
}

/*---------All CSS----------*/
/*--------------------------*/

.sect {
	position: relative;
}

.default-sect {
	padding: 30px 0 50px;
}

.default__content-text {
	margin-top: 30px;
}

.content-404 {
	padding: 80px 0;
	text-align: center;
}

.number-404 {
	font-size: 110px !important;
	font-weight: 700;
	line-height: 1;
	color: var(--orange-color);
	margin-bottom: 25px;
}

.title-404 {
	margin-bottom: 35px;
}

.title-404 span {
	display: inline-block;
}

.hero-sect {
	padding: 20px 0 40px;
}

.hero__content-wrap {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 20px;
	padding: 90px 40px 40px;
	overflow: hidden;
}

.hero__content {
	position: relative;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	z-index: 2;
}

.hero__title {
	font-size: 60px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--white-color);
	text-transform: uppercase;
	margin: 0;
}

.hero__title span {
	color: var(--orange-color);
}

.hero__btn {
	align-self: flex-start;
}

.hero__subtext {
	background: var(--white-color);
	color: var(--accent-color);
	border-radius: 20px;
	margin-top: 10px;
	padding: 22px 35px;
	align-self: flex-start;
	font-size: 20px;
}

.hero__img {
	position: absolute;
	right: -60px;
	top: -20px;
	z-index: 1;
	opacity: 0.9;
	pointer-events: none;
}

.why-sect {
	padding: 35px 0;
}

.why__content {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 20px;
	padding: 40px 40px;
	overflow: hidden;
}

.why__title {
	font-size: 60px;
	font-weight: 700;
	margin: 0;
	color: var(--white-color);
}

.why__carousel {
	margin-top: 20px;
	overflow: hidden;
}

.why__carousel .swiper-wrapper {
	display: flex;
	align-items: stretch;
	padding-bottom: 2px;
}

.why__carousel .swiper-slide:not(:last-child) {
	margin-right: 20px;
}

.why__carousel .swiper-slide {
	width: calc(100% / 3 - 13.3px);
	display: flex;
	flex-direction: column;
	height: auto;
}

.why__pagination {
	margin-top: 20px;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.why__pagination .swiper-pagination-bullet {
	background-color: rgba(255,255,255,0.5);
	width: 10px;
	height: 10px;
	margin: 0 !important;
	opacity: 1;
	overflow: hidden;
	transition: all 0.2s ease;
}

.why__pagination .swiper-pagination-bullet:hover {
	background-color: var(--white-color);
}

.why__pagination span.swiper-pagination-bullet-active:hover,
.why__pagination span.swiper-pagination-bullet-active {
	background-color: var(--orange-color);
	opacity: 1;
}

.why__card {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 25px 20px 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	overflow: hidden;
}

.why__card-img {
	display: flex;
	justify-content: start;
	align-items: end;
	height: 82px;
	overflow: hidden;
}

.why__card-title {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}

.why__card-text {
	font-size: 18px;
	line-height: 1.3;
}

@media only screen and (max-width: 1079.98px) {
	.why__card {
		padding: 20px 20px 25px;
	}
	.why__card-title {
		font-size: 24px;
	}
	.why__card-text {
		font-size: 16px;
	}
}
@media only screen and (max-width: 991.98px) {
	.why__carousel .swiper-slide {
		width: calc(100% / 2 - 10px);
	}
}
@media only screen and (max-width: 767.98px) {
	.why__content {
		padding: 40px 20px;
	}
}
@media only screen and (max-width: 679.98px) {
	.why__carousel .swiper-slide {
		width: 100%;
	}
}
@media only screen and (max-width: 474.98px) {
	.why__content {
		padding: 40px 15px;
	}
	.why__card {
		padding: 20px 15px 25px;
	}
}

.h3-title {
	font-size: 40px;
	font-weight: 700;
	margin: 0;
}

.annuitet-sect {
	padding: 40px 0 20px;
}

.annuitet__content {
	position: relative;
	background-color: var(--white-color);
	display: flex;
	gap: 50px;
	align-items: center;
	border-radius: 20px;
	padding: 50px 40px 55px;
	overflow: hidden;
}

.annuitet__left {
	flex: 0 1 100%;
}

.annuitet__right {
	flex: 0 0 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.annuitet__text {
	margin-top: 20px;
	font-size: 20px;
}

.annuitet__img {
	pointer-events: none;
	max-width: 198px;
}

.videos-sect {
	position: relative;
	padding: 40px 0;
	overflow: hidden;
}

.videos-sect::before {
	display: block;
	position: absolute;
	background-color: var(--accent-color);
	content: '';
	width: 3200px;
	height: 580px;
	left: 50%;
	bottom: -280px;
	transform: translateX(-50%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.videos__content {
	position: relative;
	z-index: 2;
}

.videos__carousel {
	margin-top: 30px;
}

.videos__carousel .swiper-slide {
	position: relative;
	width: calc(100% / 4 - 15px);
	box-sizing: border-box;
	overflow: hidden;
}

.videos__card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	height: 500px;
	outline: none;
	overflow: hidden;
}

.videos__card-img {
	background-color: var(--light-color);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
	transform: scale(1);
	z-index: 0;
}

.videos__card:hover .videos__card-img {
	transform: scale(1.05);
}

.videos__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.videos__card-play {
	position: relative;
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	box-shadow: 0 0 7px 0 rgba(0,0,0,0.07);
	overflow: hidden;
	z-index: 1;
}

.videos__card-play span {
	font-size: 18px;
	padding-left: 3px;
}

.news__more,
.videos__more {
	margin-top: 20px;
	text-align: right;
}

.videos__more-link {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--white-color);
}

.videos__more-link:hover {
	color: var(--white-color);
	opacity: 0.7;
}

@media only screen and (max-width: 1199.98px) {
	.videos__carousel .swiper-slide {
		width: 285px;
	}
}

.anwork-sect {
	position: relative;
	padding: 55px 0 30px;
}

.anwork__steps {
	position: relative;
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}

.anwork__steps::before,
.anwork__steps::after {
	display: block;
	content: '';
	position: absolute;
	background-color: transparent;
	background-image: url('../img/lines-decor.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	height: 100%;
	width: 88px;
	top: 0;
}

.anwork__steps::before {
	background-position: right top;
	left: -107px;
}

.anwork__steps::after {
	background-position: left top;
	right: -107px;
}

.anwork__step {
	border-top: 1px solid var(--light-color);
	border-bottom: 1px solid var(--light-color);
	border-left: 1px solid var(--light-color);
}

.anwork__step:last-child {
	border-right: 1px solid var(--light-color);
}

.step__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	height: 100%;
	overflow: hidden;
}

.step__info {
	font-size: 14px;
	padding: 25px;
}

.step__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}

.step__text {
	margin-top: 10px;
}

.step__text p {
	margin-bottom: 0;
}

.step__text ul {
	margin-top: 5px;
	padding-left: 20px;
}

.step__text ul li {
	list-style: disc;
}

.step__img {
	position: relative;
	z-index: 1;
	padding: 0 10px;
}

.step__img img {
	display: inline-block;
	position: relative;
	pointer-events: none;
	z-index: 1;
}

.step-1 .step__img {
	text-align: right;
}

.step-1 .step__img img {
	margin-bottom: -25px;
	margin-right: -35px;
}

.step-2 .step__img {
	text-align: right;
}

.step-2 .step__img img {
	margin-top: -30px;
	margin-right: -40px;
}

.step-3 .step__img {
	text-align: center;
}

.step-3 .step__img img {
	margin-bottom: -20px;
}

.step-4 .step__img {
	text-align: center;
}

.step-4 .step__img img {
	margin-top: 40px;
}

.calc-sect {
	padding: 40px 0 30px;
}

.calc__subtitle {
	margin-top: 5px;
	font-size: 28px;
	line-height: 1.2;
}

.calc__form {
	margin-top: 30px;
}

/*---------------------Calc form-------------------*/

.calcform {
	display: flex;
	gap: 20px;
}

.calcform__left,
.calcform__right {
	display: flex;
	flex-direction: column;
	gap: 20px;

}

.calcform__left {
	flex: 0 1 40%;
}

.calcform__right {
	flex: 0 1 60%;
}

.calcform__wrap {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 25px 20px 30px;
}

.calcform__wrap.wrap--accent {
	background-color: var(--accent-color);
}

.calcform__wrap.wrap--grow {
	flex-grow: 1;
}

.calcform__wrap.calcform__fsubmit {
	padding: 20px;
}

.calcform__fsubmit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	color: var(--white-color);
	width: 100%;
	transition: all 0.3s ease;
}

.calcform__fsubmit:hover,
.calcform__fsubmit:active {
	background-color: var(--accent-color-hover);
}

.fsubmit__info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: start;
	text-align: left;
}

.fsubmit__name {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.fsubmit__subname {
	font-size: 14px;
	line-height: 1.2;
}

.fsubmit__icon {
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 20px;
	line-height: 1;
	color: var(--black-color);
	font-size: 16px;
}

.calcform__title {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}

.calcform__checkboxes {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.calcform__inputs {
	margin-top: 15px;
}

.check__item input {
	display: none;
}

.check__item-label {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 68px;
	min-width: 68px;
	padding: 5px;
	background-color: transparent;
	border: 1px solid var(--light-color);
	border-radius: 10px;
	color: var(--light-color);
	cursor: pointer;
	transition: all 0.2s ease;
	overflow: hidden;
}

.check__item-icon {
	font-size: 28px;
}

.check__item-text {
	font-size: 26px;
	font-weight: 600;
}

.check__item input[type=radio]:checked + .check__item-label:hover,
.check__item input[type=radio]:checked + .check__item-label {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

.calcform__inputs input {
	background-color: var(--bg-color);
	display: flex;
	height: 60px;
	max-width: 340px;
	line-height: 1;
	align-items: center;
	padding: 0 20px;
	border: none;
	border-radius: 10px;
	color: var(--black-color);
	font-size: 22px;
	font-weight: 600;
}

.calcform__inputs input.invalid {
	background-color: rgba(255,0,0,0.1);
}

.calcform__total {
	margin: 20px 0;
}

.calcform__total input {
	display: block;
	height: inherit;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
	font-size: 98px;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	pointer-events: none;
	cursor: default;
}

.calcform__subtext {
	font-size: 14px;
	color: var(--black-color);
	line-height: 1.2;
}

.calcform__text {
	margin-top: 20px;
	font-size: 14px;
	color: var(--grey-color);
}

.hidden__data {
	display: none;
}

/*-------------------end Calc form-----------------*/

.news-sect {
	padding: 40px 0 40px;
}

.news__carousel {
	margin-top: 30px;
}

.news__carousel .swiper-wrapper {
	display: flex;
	align-items: stretch;
	padding-bottom: 2px;
}

.news__carousel .swiper-slide {
	width: calc(100% / 4 - 15px);
	display: flex;
	flex-direction: column;
	height: auto;
}

.news__post {
	background-color: var(--white-color);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}

.news__post-img {
	background-color: var(--light-color);
	display: block;
	position: relative;
	aspect-ratio: 1.3 / 1;
	line-height: 0;
	overflow: hidden;
}

.news__post-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.4s ease;
}

.news__post-img:hover img {
	transform: scale(1.05);
}

.news__post-info {
	padding: 13px 15px;
}

.news__post-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.news__post-link {
	margin-top: auto;
	padding: 0 15px 15px;
	text-align: right;
}

.news__post-link > a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--accent-color);
}

.news__post-link > a:hover {
	color: var(--accent-color-hover);
}

.news__more-link {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--accent-color);
}

.news__more-link:hover {
	color: var(--accent-color-hover);
	opacity: 0.7;
}

@media only screen and (max-width: 1199.98px) {
	.news__carousel .swiper-slide {
		width: 285px;
	}
}

/*--------Pages---------*/

.blog-sect {
	padding: 30px 0 60px;
}

.blog__content {
	margin-top: 30px;
}

.blog__grid {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-auto-columns: 1fr;
	gap: 20px;
}

.blog__grid .post {
	background-color: var(--white-color);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.article__thumbnail {
	display: block;
	position: relative;
	aspect-ratio: 1.3 / 1;
	line-height: 0;
	overflow: hidden;
}

.article__thumbnail > img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.4s ease;
}

.article__thumbnail:hover > img {
	transform: scale(1.05);
}

.article__info {
	padding: 13px 15px;
}

.article__info-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 0;
}

.article__info-link {
	margin-top: auto;
	padding: 0 15px 15px;
	text-align: right;
}

.article__info-link > a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--accent-color);
}

.article__info-link > a:hover {
	color: var(--accent-color-hover);
}

.single-sect {
	padding: 30px 0 50px;
}

.post__meta {
	font-size: 16px;
	color: var(--grey-color);
	line-height: 1.2;
	margin-bottom: 10px;
}

.post__img {
	margin: 25px 0;
	border-radius: 20px;
	overflow: hidden;
}

.post__img img {
	height: auto;
}

.post__text a {
	text-decoration: underline;
}

.pagination {
	margin-top: 35px;
}

.nav-links {
	display: flex;
	gap: 3px;
	justify-content: center;
}

.nav-links > span, .nav-links > a {
	display: inline-block;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	font-weight: 600;
	font-variant-numeric: lining-nums proportional-nums;
	color: var(--dark-color);
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
}

.nav-links .prev,
.nav-links .next {
	font-size: 14px;
	line-height: 34px;
}

.nav-links > a:hover {
	color: var(--accent-color-hover);
}

.nav-links > a:hover {
	color: var(--accent-color-hover);
}

.nav-links .current,
.nav-links .current:hover {
	color: var(--accent-color);
	pointer-events: none;
}

.pvideos__more,
.post__back {
	margin-top: 30px;
	text-align: center;
}

.pvideos-sect {
	padding: 30px 0 60px;
}

.pvideos__content {
	margin-top: 30px;
}

.pvideos__grid {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-auto-columns: 1fr;
	gap: 20px;
}

.pvideos__btn.loading {
	pointer-events: none;
	opacity: 0.7;
}

/*----------------POPUPS---------------------*/

.fancybox__slide {
	padding: 15px;
}

.popup__cback {
	position: relative;
	max-width: 380px;
	width: 100%;
	padding: 40px 30px 45px;
	border-radius: 12px;
	overflow: hidden;
}

.popup-close-btn {
	position: absolute;
	right: 12px;
	top: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	font-size: 18px;
	line-height: 1;
	overflow: hidden;
	transition: all 0.2s ease;
}

.popup-close-btn:hover {
	opacity: 0.7;
}

.popup__title {
	font-size: 26px;
	font-weight: 600;
	margin: 0;
}

.popup__subtitle {
	margin-top: 7px;
	font-size: 14px;
	line-height: 1.3;
}

.popup__content {
	margin-top: 20px;
}

.cont-form__line.line-hidden {
	display: none;
}

.cont-form__line.line-btn {
	margin-top: 35px;
}

.input-wrap {
	position: relative;
	margin-bottom: 20px;
}

.cont-form__btn.btn {
	width: 100%;
	border-radius: 8px;
	font-size: 20px;
	height: 55px;
}

.wpcf7-not-valid-tip,
.cont-form__line.line-hidden,
.input-wrap.hidden {
	display: none;
}

.wpcf7 .wpcf7-response-output {
	margin: 15px 0 0 !important;
	padding: 8px 5px 0 !important;
	border-bottom: none !important;
	border-left: none !important;
	border-right: none !important;
	border-width: 1px !important;
	font-size: 12px;
}

.wpcf7 .submitting .btn {
	opacity: 0.5;
	pointer-events: none;
}

input:not([type=checkbox]).wpcf7-not-valid, textarea.wpcf7-not-valid, select.wpcf7-not-valid {
	background-color: rgba(222, 0, 0, 0.1);
	border-color: var(--error-color);
}

.fancybox__carousel .f-carousel__nav .f-button.is-prev,
.fancybox__carousel .f-carousel__nav .f-button.is-next,
.fancybox__carousel .fancybox__nav .f-button.is-prev,
.fancybox__carousel .fancybox__nav .f-button.is-next {
  	top: 10% !important;
}

/*-------------------------------------------*/
/*----------------- MEDIA -------------------*/

@media only screen and (max-width: 1499.98px) {
	
}

@media only screen and (max-width: 1199.98px) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}
	.sect__title {
		font-size: 32px;
	}
	.anwork__steps::before,
	.anwork__steps::after {
		background-image: none;
		width: 0;
		height: 0;
		display: none;
	}
	.calcform__total input {
		font-size: 72px;
	}
	.blog__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media only screen and (max-width: 1079.98px) {
	.hero__content-wrap {
		padding: 80px 40px 40px;
	}
	.hero__img {
		opacity: 0.5;
	}
	.hero__content {
		gap: 50px;
	}
	.why__title,
	.hero__title {
		font-size: 48px;
	}
	.hero__subtext {
		padding: 18px 30px;
		font-size: 18px;
	}
	.h3-title {
		font-size: 36px;
	}
	.annuitet__text {
		font-size: 18px;
	}
	.step__title {
		font-size: 22px;
	}
	.step__info {
		padding: 18px;
	}
	.calc__subtitle {
		font-size: 22px;
	}
	.fsubmit__name,
	.calcform__title {
		font-size: 24px;
	}
	.check__item-label {
		min-width: 60px;
		height: 60px;
	}
	.check__item-icon {
		font-size: 24px;
	}
	.check__item-text {
		font-size: 22px;
	}
	.article__info-title,
	.news__post-title {
		font-size: 18px;
	}
	.pvideos__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media only screen and (max-width: 991.98px) {
	.sect__title {
		font-size: 28px;
	}
	.annuitet__content {
		gap: 30px;
	}
	.annuitet__right {
		flex: 0 0 200px;
	}
	.anwork__steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.anwork__step {
		border-top: 1px solid var(--light-color);
		border-bottom: 1px solid var(--light-color);
		border-left: 1px solid var(--light-color);
	}
	.anwork__step:nth-child(2) {
		border-right: 1px solid var(--light-color);
	}
	.anwork__step:nth-child(1),
	.anwork__step:nth-child(2) {
		border-bottom: none;
	}
	.calcform__total input {
		font-size: 62px;
	}
	.calcform {
		flex-direction: column;
	}
	.calcform__left, .calcform__right {
		flex: 0 1 100%;
		width: 100%;
	}
	.blog__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 767.98px) {
	.hero__content-wrap {
		padding: 70px 20px 75px;
	}
	.hero__content {
		gap: 40px;
	}
	.hero__title {
		font-size: 42px;
	}
	.hero__subtext {
		padding: 14px 20px;
	}
	.h3-title,
	.why__title {
		font-size: 32px;
	}
	.annuitet__content {
		padding: 40px 20px 35px;
		flex-direction: column;
		gap: 25px;
	}
	.annuitet__right {
		flex: 0 1 auto;
		align-self: flex-end;
	}
	.annuitet__img {
		max-width: 120px;
	}
	.calc__subtitle {
		font-size: 18px;
	}
	.pvideos__grid {
		grid-template-columns: 1fr 1fr;
	}
	.videos__card,
	.pvideos__grid .videos__card {
		height: 450px;
	}
}

@media only screen and (max-width: 575.98px) {
	.step__content {
		gap: 4px;
	}
	.step__info {
		padding: 15px;
	}
	.step__title {
		font-size: 20px;
	}
	.step__text {
		font-size: 12px;
	}
	.step-1 .step__img img {
  		margin-bottom: -50px;
  		margin-right: 0;
	}
	.step-4 .step__img img {
		margin-top: -20px;
	}
	.blog__grid {
		grid-template-columns: 1fr;
	}
	.pvideos__grid {
		gap: 10px;
	}
	.pvideos__grid .videos__card {
		height: 300px;
	}
}

@media only screen and (max-width: 474.98px) {
	.hero__content-wrap {
		padding: 70px 15px 75px;
	}
	.hero__title {
		font-size: 34px;
	}
	.annuitet__text,
	.videos__more-link,
	.news__more-link,
	.hero__subtext {
		font-size: 16px;
	}
	.step__info {
		padding: 10px;
	}
	.step__title {
    	font-size: 18px;
	}
	.calcform__wrap {
		padding: 20px 15px 25px;
	}
	.calcform__wrap.calcform__fsubmit {
		padding: 15px;
	}
	.calcform__total input {
		font-size: 48px;
	}
	.fsubmit__icon {
		width: 56px;
		height: 56px;
	}
	.fsubmit__name, .calcform__title {
		font-size: 22px;
	}
}