body {
	background: #000000;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	letter-spacing: .2px;
}
.hidden {
	display: none !important;
}
body, html {
	font-family: Poppins;
	color:#fff;
}
body.fixed, html.fixed {
	overflow: hidden !important;
}
.pre_header {
	background: linear-gradient(180deg, #2E2E2F -64.86%, #25272C 100%);
	padding: 8px 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
}
.pre_header .close {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 12px;
	top:50%;
	transform: translate(0,-50%);
	opacity: 0.3;
	transition: all .3s ease-out;
}
.pre_header .close:hover {
	opacity: 1;
}
.pre_header .wrap a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font:400 14px / 1.6  Poppins;
	color:#fff;
}
.pre_header a .arrow {
	width: 28px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #010101;
	border-radius: 28px;
	margin-left: 12px;
	transition: all .3s ease-out;
}
.pre_header a .arrow svg {
	transform:translate(1px,0);
}
.pre_header a:hover .arrow {
	filter:invert(1);
}
.header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	padding: 22px 0;
	z-index: 10;
	transition: all .3s linear;
}
.pre_header + .header {
	top:36px;
}	
.header .wrap {
	width: 1280px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .wrap .logo {
	display: flex;
	align-items: center;
	max-width: 115px;
	z-index: 1;
}
.header .wrap .logo img {
	width: 100%;
}
.header .wrap .menu {
	list-style-type: none;
	display: flex;
	align-items: center;
	position: relative;
}
.header .wrap .menu:before {
	content:"";
	position: absolute;
	top: -4px;
	left: -4px;
	height: calc(100% + 8px);
	width:calc(100% + 8px);
	border-radius:48px;
	background: rgba(14, 14, 14, 0.80);
	box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(7px);
	z-index: -1;
	transition:all .3s ease-out;
}
.header .wrap .menu li {
	position: relative;
}
.header .wrap .menu li .submenu {
	position: absolute;
	top:100%;
	left: 50%;
	background: rgba(14, 14, 14, 0.80);
	box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(7px);
	border-radius:12px;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transform: scale(0) translate(-50%,0);
	transition:opacity .3s ease-out, transform .3s ease-out .3s ;
	overflow: hidden;
	padding: 8px 0;
}
.header .wrap .menu li .submenu.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1) translate(-50%,0);
}
.header .wrap .menu li .submenu > li + li {
	position: relative;
}
.header .wrap .menu li .submenu > li + li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-image: repeating-linear-gradient(0deg, #ffffff00 2px,#FFFFFF24 12px);
}
.header .wrap .menu li .submenu li a {
	color:#ffffff;
	font:400 14px / 1.5 Poppins;
	white-space:nowrap;
	padding: 8px 16px;
	transition: all .3s ease-out;
}
.header .wrap .menu li .submenu li a.sub-title {
	font-size: 12px;
	color:#1B63EF;
	padding: 0 0 0 16px;
	cursor: initial;
	text-transform: capitalize;
}
.header .wrap .menu li .submenu li a.sub-title > svg {
	display: none;
}
.header .wrap .menu li .submenu li a:before {
	border-radius: 0;
}
.header .wrap .menu li .submenu li a:not(.sub-title):hover {
	color:#FFFFFF66;
}
.header .wrap .menu .has_submenu {
	padding-bottom: 8px;
	margin-bottom: -8px;
}
.header .wrap .menu .has_submenu a {
	display: flex;
	align-items: center;
}
.header .wrap .menu .has_submenu a svg {
	transition:all .3s ease-out;
	margin-left: 4px;
}
.header .wrap .menu li a.button {
	padding: 12px 24px;
	margin-top: -4px;
	margin-right: -4px;
	margin-bottom: -4px;
	font-size: 16px;
	line-height: 1.5;
}
.header .wrap .menu li a:not(.button) {
	color:#ffffff;
	padding: 8px 20px;
	font:500 16px / 24px Poppins;
	position: relative;
	transition: all .3s ease-out;
	display: flex;
}
.header .wrap .menu li a:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all .3s ease-out;
	border-radius:28px;
	background: #010101;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.header .wrap .menu li a.active:before {
	opacity: 1;
	visibility: visible;
}
main {
	flex:1;
}
section .footer {
	max-width: calc(100% - 32px);
}
.footer {
	padding: 100px 0 40px;
	background: #020001;
	position: relative;
}
.footer .wrap {
	position: relative;
}
.footer .shadow {
	width: calc(100% + 120px);
	height: calc(100% + 60px);
	top: -60px;
	left: -60px;
	border-radius: 12px;
	border: 1px dashed #C5C5C573;
	position: absolute;
	z-index: -1;
}
.footer .shadow:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: -1px;
	top: 0px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(to top, #000000, #0E0E0E00);
}
.footer .wrap {
	width: 1280px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.footer .wrap .logo {
	max-width: 115px;
	display: block;
}
.footer .wrap .logo img {
	width: 100%;
}
.footer .footer_top {
	margin-bottom: 56px;
}
.footer .main {
	display: flex;
	justify-content: space-between;
	padding-bottom: 84px;
}
.footer .main .info {
	width: 42%;
}
.footer .main .info h2 {
	font:400 32px / 1.2 Poppins;
	margin-bottom: 16px;
}
.footer .main .info a {
	font:400 20px / 1.6 Poppins;
	color:#FFFF00;
	position: relative;
}
.footer .main .info a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.footer .main .info a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.footer .main .footer_menu {
	flex:1;
	margin-left: 140px;
}
.footer .main .footer_menu h3 {
	font:500 14px / 1.2 Poppins;
	color:#FFFFFF80;
	margin-bottom: 16px;
}
.footer .main .footer_menu >ul {
	display: flex;
}
.footer .main .footer_menu >ul > li {
	padding-left: 12px;
	border-left: 1px solid #FFFFFF33;
}
.footer .main .footer_menu > ul > li + li {
	margin-left: 40px;
}
.footer .main .footer_menu .submenu li + li {
	margin-top: 12px;
}
.footer .main .footer_menu .submenu li a {
	font:500 16px / 1.3 Poppins;
	color:#FFFFFF;
}
.footer .main .footer_menu >ul h4 {
	font:500 14px/ 1.2 Poppins;
	color:#1B63EF;
	margin-bottom: 12px;
}
.footer .main .nav {
	display: flex;
	flex-direction: column;
	margin-left: 80px;
}
.footer .main .nav > li + li {
	margin-top: 32px;
}
.footer .main .nav > li h3 {
	display: block;
	margin-bottom: 16px;
	font:500 14px / 1.2 Poppins;
	color:#FFFFFF80;
}
.footer .main .nav ul li + li {
	margin-top: 16px;
}
.footer .main .nav ul .submenu {
	margin-top: 16px;
	padding-left: 12px;
	border-left: 1px solid #FFFFFF33;
}
.footer .main ul:not(.socials) li a {
	font:500 16px / 1.3 Poppins;
	color:#FFFFFF;
	position: relative;
	transition:all .3s ease-out;
	display: block;
}
.footer .main ul:not(.socials) .submenu li a {
	/*font-size: 14px;*/
	/*font-weight: 300;*/
}
.footer .main ul:not(.socials) .submenu li + li {
	margin-top: 12px;
}
.footer .main ul:not(.socials) li a:before {
	content:"";
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius:50%;
	background: #FFFF00;
	left: -16px;
	top:50%;
	transform:translate(0,-50%);
	opacity: 0;
	transition:all .3s ease-out;
}
.footer .main ul:not(.socials) li a:not(.no_hover):hover {
	transform:translate(16px,0);
}
.footer .main ul:not(.socials) li a:not(.no_hover):hover:before {
	opacity: 1;
}
.footer .main .nav .socials li a path {
	transition:all .3s ease-out;
}
.footer .main .nav .socials li a:not(.no_hover):hover path {
	fill:#FFFF00;
}
.footer .main .nav .socials li a:not(.no_hover):hover {
	transform: none;
}
.footer .main .nav .socials li a:not(.no_hover):hover:before {
	display: none;
}
.footer .wrap .copyright {
	color:#FFFFFF80;
	font:400 14px / 24px Poppins;
}
.footer .wrap .copyright a {
	color:#ffffff;
	transition: all .3s ease-out;
	text-decoration: none;
	position: relative;
}
.footer .wrap .copyright a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.footer .wrap .copyright a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.footer .wrap .menu {
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.footer .wrap .menu li {
	margin-left: 16px;
}
.footer .wrap .menu li a {
	color:#fff;
	font:400 14px / 23px Poppins;
	text-decoration: none;
	transition:  all .3s ease-out;
}
.home_hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.home_hero .video {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	overflow: hidden;
}
.home_hero .video:before {
	content:"";
	background: linear-gradient(90deg, #000 5.9%, rgba(0, 0, 0, 0.84) 48.02%, rgba(0, 0, 0, 0.00) 81.01%), linear-gradient(270deg, rgba(0, 0, 0, 0.00) 42.72%, #000 74.67%);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.home_hero .video video {
	width: 100%;
	height: 100%;
	object-fit:cover;
	right: -12vw;
	position: relative;
}
section > .wrap {
	width: 1280px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
}
section > .wrap h2 {
	font:500 56px / 1.2 Poppins;
}
.home_hero .media {
	left: 50%;
	transform: translate(-50%,0);
	position: absolute;
	z-index: -1;
	bottom: -70vh;
}
.home_hero .media canvas {
	transform: translate(0,15vh);
}
.home_hero .wrap {
	position: relative;
}
.middle_point {
	position: absolute;
	top:50%;
	transform: translate(0,-50%);
}
.home_hero .wrap h1 {
	font:500 72px / 1.2 Poppins;
	color:#fff;
	letter-spacing: .2px;
	top:0;
	margin-bottom: 16px;
	position: relative;
	width: 680px;
	max-width: 100%;
}
.home_hero .wrap p {
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
	letter-spacing: .2px;
	position: relative;
	width: 680px;
	max-width: 100%;
}
.home_hero .wrap p + p {
	margin-top: 8px;
}
.home_hero .wrap .button {
	margin-top: 48px;
	display: inline-block;
	transition:top 0s linear, background .3s ease-out;
}
.home_how {
	padding: 120px 0 80px;
	background: #0E0E0E;
}
.home_how h2 {
	margin-bottom: 60px;
}
.home_how .items {
	display: flex;
}
.home_how .items .item {
	width: calc(100% / 2 - 16px);
	border-radius: 12px;
	display: flex;
	overflow: hidden;
	position: relative;
	flex-direction: column;
	transition: all .3s ease-out;
}
.home_how .items .item:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.48%, #000000 49.35%, #000000 100%);
	z-index: 1;
}
.home_how .items .item .thumb {
	width: 100%;
	height: 360px;
	z-index: 0;
	position: relative;
}
.home_how .items .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.home_how .items .item:not(:last-child) {
	margin-right: 32px;
}
.home_how .items .item .content {
	position: relative;
	z-index: 1;
	margin-top: -50px;
	padding: 0 40px 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex:1;
}
.home_how .items .item .title {
	color:#ffffff;
	font:700 28px / 42px Poppins;
	letter-spacing: .2px;
	margin: 0 0 16px;
	text-transform: capitalize;
	transition: all .3s ease-out;
}
.home_how .items .item .descr {
	color:#B6B6B6;
	flex:1;
	transition: all .3s ease-out;
	margin-bottom: 56px;
}
.home_how .items .item .descr p {
	font:400 20px / 1.7 Poppins;
	letter-spacing: .2px;
}
.home_how .items .item .descr p + p {
	margin-top: 12px;
}
.home_how .items .item p strong {
	font-weight: 700;
	color:#ffffff;
	transition: all .3s ease-out;
}
.home_how .items .item .button {
	align-self: flex-start;
}
.home_how .items .icon {
	margin-bottom: 32px;
	max-width: calc(100% - 86px);
	max-height: 208px;
	align-self: flex-start;
	object-fit: contain;
}
.border_gradient {
	position: relative;
}
.border_gradient:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	padding: 1px;
	background: linear-gradient(180deg, rgba(197, 197, 197, 0.45) 0%, rgba(27, 99, 239, 0.42) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.home_who {
	padding: 120px 0 200px;
}
.home_who h2 {
	margin-bottom: 60px;
}
.appear_lines_list {
	list-style-type: none;
	display: flex;
	flex-direction: column;
}
.home_who .numbers {
	width: calc(100% - 234px);
	max-width: 100%;
	margin: 0 auto 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.home_who .numbers.pull_left {
	margin-left: 0;
}
.home_who .numbers .item {
	width: calc(50% - 16px);
	margin-bottom: 60px;
}
.home_who .numbers .item .num {
	color:#1B63EF;
	font:500 48px / 1.3 Poppins;
	margin-bottom: 16px;
}
.home_who .numbers .item .descr {
	color:#ffffff;
	font:500 28px / 42px Poppins;
}
.appear_lines_list li {
	position: relative;
	padding-left: 230px;
	color:#F0F0F0;
	font:400 20px / 34px Poppins;
	letter-spacing: .2px;
	width: 844px;
	max-width: 100%;
	margin-bottom: 24px;
	box-sizing: content-box;
}
.appear_lines_list li p {
	color:#F0F0F0;
	font:400 20px / 34px Poppins;
	letter-spacing: .2px;
	opacity: 0;
	visibility: hidden;
	transform: translate(0,-15px);
	transition: all .3s ease-out;
}
.appear_lines_list li.loaded p {
	opacity: 1;
	visibility: visible;
	transform: translate(0,0);
}
.appear_lines_list li .line {
	position: absolute;
	left: -120px;
	top: 15px;
	height: 3.72px;
	background: #1B1A1A;
	width: calc(26% + 45px);
	opacity: 0;
	visibility: hidden;
	transform: translate(-100px,0);
	transition: all .3s ease-out;
}
.appear_lines_list li.loaded .line {
	opacity: 1;
	visibility: visible;
	transform: translate(0,0);
}
.appear_lines_list li .line:after {
	content:"";
	position: absolute;
	right: 0;
	top: 0%;
	height: 13px;
	width: 13px;
	background: #1B63EF;
	transform: rotate(45deg) translate(0,-57%);
	border: 2.35px solid #0E0E0E;
}
.home_about {
	background: #ffffff;
	padding: 164px 0;
}
.home_about .wrap {
	display: flex;
}
.home_about .wrap .info {
	width: 56%;
}
.home_about .wrap .media {
	width: 44%;
	padding-left: 100px;
}
.home_about h2 {
	color:#0E0E0E;
	margin-bottom: 40px;
}
.home_about p {
	color:#0E0E0E;
	font:400 20px / 34px Poppins;
	letter-spacing: .2px;
	margin-bottom: 16px;
}
.home_about p strong {
	font-weight: 700;
}
.button {
	background: #000000;
	padding: 16px 32px;
	color:#fff;
	font:600 20px / 1.7 Poppins;
	border-radius: 48px;
	transition: all .3s ease-out;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
a.button.primary, .button.primary {
	background:#FFFF00;
	color:#0E0E0E;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
a.button.primary:not(.no_hover):hover, .button.primary:not(.no_hover):hover {
	background:#FFD600;
}
a.button.primary:not(.no_hover):active, .button.primary:not(.no_hover):active {
	background:#CDCD1E;
}
.button.primary.input {
	padding: 0;
}
.button.primary.input input {
	padding: 16px 32px;
	font:600 20px / 1.7 Poppins;
	color:#020202;
	border:none;
	box-shadow: none;
	outline: none;
	background: #00000000;
	text-transform: uppercase;
}
.button.primary.input:hover {
	background:#FFD600;
}
.button.primary.input:active {
	background:#CDCD1E;
}
.button.secondary {
	padding: 15px 31px;
	border: 1px solid #FFFF00;
	color:#ffffff;
	background: #00000000;
}
.button.secondary:not(.no_hover):hover {
	background: #FFD600;
	border-color:#FFD600;
	color:#0E0E0E;
}
.button.secondary:not(.no_hover):active {
	background: #CDCD1E;
	border-color:#CDCD1E;
	color:#0E0E0E;
}
.home_about .button {
	margin-top: 32px;
}
.home_next {
	background: #000;
	padding: 250px 0;
	position: relative;
	overflow: hidden;
	margin-bottom: -100px;
}
.home_next .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
	position: relative;
}
.home_next .wrap h2 {
	color:#fff;
	width: 1020px;
	max-width: 100%;
	text-align: center;
	margin: 0 0 42px;
	text-transform: none;
}
.about_next .wrap h2 {
	text-transform: none;
}
.home_next .media {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: 100%;
	height:100%;
	overflow: hidden;
	z-index: 0;
}
.home_next .media img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.about_hero {
	display: flex;
	align-items: center;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.about_hero .media {
	left: 70%;
	transform: translate(-50%,0);
	position: absolute;
	z-index: 0;
	bottom: -25vh;
}
.about_hero .bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.about_hero .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:0% 0%;
}
.footer_section {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.about_hero.hero_investors .media {
	left: 70%;
	bottom: 80%;
	transform: translate(-50%,50%);
	z-index: 0;
}
.about_hero .media canvas {
	transform: translate(0,15vh);
}
.about_hero .wrap {
	position: relative;
	z-index: 1;
}

.about_hero .wrap h1 {
	font:500 72px / 1.2 Poppins;
	color:#fff;
	letter-spacing: .2px;
	top:0;
	max-width: 100%;
	width: 680px;
	position: relative;
}
.about_hero .wrap div {
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
	letter-spacing: .2px;
	margin: 16px 0 48px;
	max-width: 100%;
	width: 600px;
	position: relative;
}
.about_hero .wrap div p {
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
	letter-spacing: .2px;
}
.about_hero .wrap div p + p {
	margin-top: 8px;
}

.about_hero .wrap a {
	display: inline-block;
	position: relative;
	transition: top 0s, background .3s ease-out, color .3s ease-out;
}
.about_step {
	display: flex;
	align-items: center;
	background: #0E0E0E;
}
.about_step .wrap {
	display: flex;
	flex-direction: row-reverse;
	padding-right: 108px;
}
.about_step:nth-child(2n) .wrap {
	flex-direction: row;
}
.about_step .wrap .media {
	width: calc(100% - 640px);
	padding-left: 80px;
}
.about_step:nth-child(2n) .wrap .media {
	padding: 0 80px 0 0;
}
.about_step .wrap .media img {
	width: 100%;
	height: 100%;
}
.about_step .wrap .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 640px;
}
.invest_models.about_step .wrap .content, .invest_testimonials.about_step .wrap .content {
	max-width: 100%;
	width: 100%;
}
.invest_testimonials .testimonials {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.invest_testimonials .testimonials .item {
	width: calc(50% - 30px);
	padding: 40px;
	border:1px solid #454545;
	background: #0E0E0E;
	border-radius:12px;
}
.invest_testimonials .testimonials .item .icon {
	display: block;
	width: 60px;
	height: 60px;
	background: url(../img/quote_wave.png) 50% / contain no-repeat;
	margin-bottom: 32px;
}
.invest_testimonials .testimonials .item .text {
	font:700 28px / 42px Poppins;
	color:#ffffff;
	margin-bottom: 16px;
}
.invest_testimonials .testimonials .item .author {
	font:400 20px / 34px Poppins;
	color:#B6B6B6;
}
.invest_models .content .sides {
	display: flex;
	justify-content: space-between;
	width: 100%;
	counter-reset: model_num;
}
.invest_models .content .sides .side {
	width: calc(50% - 30px);
	counter-increment: model_num;
}
.invest_models .content .sides .side:before {
	content:"";
	display: block;
	margin-bottom: 4px;
	height: 126px;
	background: url(../img/01_wave.png) 0% 50% / 110px no-repeat;
}
.invest_models .content .sides .side:nth-of-type(2):before {
	background: url(../img/02_wave.png) 0 50% / 136px no-repeat;
}
.invest_models .content .sides .side h3 {
	color:#ffffff;
	margin-bottom: 16px;
	font:700 32px / 1.6 Poppins;
}
.invest_models .content .sides .side p {
	max-width: 100% !important;
}
.invest_models .content .sides .side p:not(:last-child) {
	margin-bottom: 10px;
}
.about_step .wrap .content h2 {
	margin-bottom: 40px;
}
.about_step .wrap .content p {
	font: 400 20px / 1.7 Poppins;
	letter-spacing: .2px;
	color:#B6B6B6;
	max-width: 640px;
}
.about_step .wrap .content p + p {
	margin-top: 16px;
}
.about_step .wrap .content strong {
	font: 600 20px / 34px Poppins;
	letter-spacing: .2px;
	color:#FFFFFF;
}
.about_step .wrap .content ul {
	column-count: 2;
	width: 100%;
}
.about_step .wrap .content ul li {
	font:400 16px / 32px Poppins;
	letter-spacing: .2px;
	position: relative;
	padding-left: 30px;
	width: 100%;
	color:#B6B6B6;
}
.about_step .wrap .content ul li:before {
	content:"";
	position: absolute;
	left: 10px;
	top: 0.85em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #B6B6B6;
}
.about_step.requirements .wrap .content li {
	margin-bottom: 16px;
	line-height: 27px;
	padding-left: 40px;
}
.about_step.requirements .wrap .content li:before {
	content:"";
	left: 0;
	top: .5em;
	width: 15px;
	height: 11px;
	background: url(../img/check_icon.svg) 50% / contain no-repeat;
}
.about_next {
	position: relative;
	display: flex;
	align-items: center;
	background: #000000;
}
.about_next.partners_page {
	padding: 140px 0;
}
.about_next .media {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.about_next .media img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.about_next .wrap {
	z-index: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.about_next .wrap h2 {
	font:500 56px / 1.3 Poppins;
	letter-spacing: .2px;
	margin-bottom: 24px;
	color:#fff;
}
.about_next .wrap p {
	font:400 24px / 1.4 Poppins;
	letter-spacing: .2px;
	margin: 0 auto 40px;
	color:#fff;
	width: 660px;
	max-width: 100%;
}
.about_out_wrap_investors .about_next .wrap h2 {
	max-width: 100%;
	width: 1020px;
	margin: 0 auto 42px;
	text-align: center;
}
.about_out_wrap_investors .about_next .wrap {
	align-items: center;
	justify-content: center;
	padding: 140px 0;
}
.about_out_wrap_investors .about_next .wrap .info {
	max-width: 100%;
	margin-top: 0;
}
.about_next .wrap .info {

}
.about_next .wrap .info p {
	font:400 24px / 1.5 Poppins;
	letter-spacing: .2px;
	color:#fff;
	margin-bottom: 42px;
}
.about_next .wrap .info .button {
	display: inline-block;
}
.header .nav-toggle {
	display: none;
	width: 20px;
	height: 12px;
	z-index: 15;
	position: relative;
	box-sizing: content-box;
	transition:all .3s ease-out;
	padding: 10px 14px;
	border-radius:74px;
	background: #fff;
}
.header .nav-toggle span { 
	position: absolute; 
	top: 50%;
	left: calc(50% - 3px);
	transform: translate(-50%,-50%);
}
.header .nav-toggle span, 
.header .nav-toggle span:before,
.header .nav-toggle span:after {
	position: absolute;
	display: block;
	content: '';
	height: 2px;
	width: 14px;
	background: #0E0E0E;
	transition:all .3s ease-out;
	cursor: pointer;
}
.header .nav-toggle span:before {
	top: -6px;
	width: calc(100% + 6px);
}
.header .nav-toggle span:after {
	bottom: -6px; 
	width: calc(100% + 6px);
}
.header .nav-toggle span, .header .nav-toggle span:before, .nav-toggle span:after {
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.header .nav-toggle.active {
	background: #00000000;
	box-shadow: none;
}
.header .nav-toggle.active span {
	background-color: transparent;
}
.header .nav-toggle.active span:before, .header  .nav-toggle.active span:after {
	top: 0;
	background: #0E0E0E;
}
.header .nav-toggle.active span:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.header .nav-toggle.active span:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.error_section {
	display: flex;
	align-items: center;
	width: 100%;
	background: #020001;
	padding: 205px 0 186px;
}
.error_section .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.error_section .wrap h1 {
	font:400 20px / 1.7 Poppins;
	letter-spacing: .2px;
	margin: 32px 0 48px;
	color:#FFFFFF99;
}
.error_section .wrap .error_image img {
	max-width: 100%;
}
.investors_body.viewing-page-6 .op_wrap, .investors_body.viewing-page-7 .op_wrap {
	display: none;
}
.investors_body .onepage-pagination li:nth-of-type(6) {
	display: none;
}
.contacts_body main {
	display: flex;
}
.contacts_section {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 206px 0 250px;
	overflow: hidden;
	position: relative;	
}
.contacts_section .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contacts_section h1 {
	color:#ffffff;
	font:500 100px / 110px Poppins;
	margin-bottom: 16px;
	text-align: center;
}
.contacts_section .descr {
	color:#B6B6B6;
	font:400 20px / 34px Poppins;
	text-align: center;
	max-width: 100%;
	width: 600px;
}
.contacts_section .items {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 56px;
}
.contacts_section .items .item {
	padding: 48px;
	
	display: flex;
	align-items: center;
	flex-direction: column;
	transition: all .3s ease-out;
	position: relative;
	width: calc(50% - 16px);
}
.contacts_section .items .item:before {
	content:"";
	position: absolute;
	left: 0;
	border-radius: 24px;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	transition: all .3s ease-out;
	border:2px solid #000000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 29.55%, rgba(0, 0, 0, 0.50) 57.29%, rgba(0, 0, 0, 0.00) 100%), url(../img/wave_background.jpg) 50% 50% / 100% no-repeat, lightgray 50% / cover no-repeat;
}
.contacts_section .items .item:after {
	content:"";
	position: absolute;
	left: 0;
	border-radius: 24px;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	transition: all .3s ease-out;
	border:2px solid #FFD600;
	background: #00000000;
	opacity: 0;
	visibility: hidden;
}
.contacts_section .items .item:not(.no_hover):hover:before {
	height: calc(100% + 24px);
}
.contacts_section .items .item:not(.no_hover):hover:after {
	opacity: 1;
	visibility: visible;
	height: calc(100% + 24px);
}
.contacts_section .items .item:not(:last-child) {
	margin-right: 32px;
}
.contacts_section .items .item h2 {
	font:500 32px / 1.4 Poppins;
	margin-bottom: 40px;
	color:#fff;
	flex:1;
	text-align: center;
}
.contacts_section .items .item .button span {
	margin: 0 7px;
}
.investors_body main {
	background: #0E0E0E;
}
.contacts_section .media {
	left: 50%;
	transform: translate(-50%,0);
	position: absolute;
	z-index: -1;
	bottom: -20vh;
}
.about_out_wrap_investors .about_next {
	overflow: hidden;
}
.about_out_wrap_investors .about_step {
	padding: 100px 0;
}
.about_out_wrap_investors .about_step .wrap {
	align-items: center;
}
.about_out_wrap_investors .about_step .wrap .media {
	max-height: 100%;
}
.about_out_wrap_investors .about_step .wrap .media .ani_container {
	height: 100%;
}
.about_out_wrap_investors .steps {
	position: relative;
	margin-top: 154px;
}
.about_out_wrap_investors .steps .paging {
	position: absolute;
	right: calc((100vw - 1280px) / 2);
	top:0;
	bottom:auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	will-change: top, margin-top;
}
.about_out_wrap_investors .steps .paging.fixed {
	position: fixed;
}
.about_out_wrap_investors .steps .paging.stopped {
	
}
.about_out_wrap_investors .steps .paging > span {
	font:400 16px / 27px Poppins;
	color:#ffffff;
}
.about_out_wrap_investors .steps .paging ul {
	display: flex;
	flex-direction: column;
	height: 300px;
	width: 2px;
	margin: 30px 0;
	background: #323030;
}
.about_out_wrap_investors .steps .paging ul li {
	flex:1;
	position: relative;
}
.about_out_wrap_investors .steps .paging ul li:before {
	content: "";	
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background: #ffffff;
	transition: all .3s ease-out;
}
.about_out_wrap_investors .steps .paging ul li.highLighted:before {
	height: 100%;
}
.cashdrop_hero {
	position: relative;
	min-height:100vh;
	display: flex;
}
.cashdrop_hero .wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cashdrop_hero .bg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: -1;
}
.cashdrop_hero .bg:after {
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 150px;
	width: 100%;
	background: linear-gradient(to top, #0E0E0E 50%, #0000000a);
}
.cashdrop_hero.clima .bg:after {
	background: linear-gradient(to top, #0E0E0E 50%, #0E0E0E00);
}
.cashdrop_hero.bame .bg:after {
	display: none;
}
.cashdrop_hero .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:100% 0;
}
.cashdrop_hero h1 {
	margin-bottom: 16px;
	font:500 72px / 1.2 Poppins;
	color:#fff;
	width: 840px;
	max-width: 100%;
	letter-spacing: .2px;
}
.cashdrop_hero .descr {
	color:#B6B6B6;
	font:400 20px / 1.7 Poppins;
	width: 600px;
	max-width: 100%;
	letter-spacing: .2px;
	margin-bottom: 48px;
}
.cashdrop_hero .descr p {
	font:400 20px / 1.7 Poppins;
}
.cashdrop_hero .descr p + p {
	margin-top: 8px;
}
.cashdrop_hero .descr br {
	content:"";
	display: block;
	height: 16px;
}
.cashdrop_hero .descr b {
	font-weight: 700;
}
.cashdrop_hero .buttons {
	display: flex;
}
.cashdrop_hero .buttons .button + .button {
	margin-left: 16px;
}
.cashdrop_quilifies {
	padding: 80px 0 100px;
}
.cashdrop_quilifies h2 {
	letter-spacing: .2px;
	margin-bottom: 60px;
}
.cashdrop_quilifies .list {
	display: flex;
	flex-wrap: wrap;
}
.cashdrop_quilifies .descr {
	margin-top: 16px;
	color:#B6B6B6;
}
.cashdrop_quilifies .descr p {
	font:400 20px / 1.7 Poppins;
}
.cashdrop_quilifies .descr p + p {
	margin-top: 12px;
}
.cashdrop_quilifies .descr a {
	font-weight: 600;
	color:#FFFF00;
	position: relative;
}
.cashdrop_quilifies .descr a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.cashdrop_quilifies .descr a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.cashdrop_quilifies .list li {
	margin: 0 24px 24px 0;
	border-radius: 102px;
	background: #0E0E0E;
	padding: 22px 30px 22px 72px;
	color:#fff;
	font:500 20px / 1.2 Poppins;
	letter-spacing: .2px;
	transition:all .3s ease-out;
	cursor: pointer;
}
.cashdrop_quilifies .list li.bounce {
	animation: bounce .3s ease-out;
}
@keyframes bounce {
	0%, 100% {
		transform: scale(1, 1);
	}
	50% {
		transform: scale(1.02, 1.02);
	}
}
.cashdrop_quilifies .list li:hover, .cashdrop_quilifies .list li.checked {
	color:#0E0E0E;
	background: #fff;
}
.cashdrop_quilifies .list li:before {
	left: -2px;
	top: -2px;
	border-radius: inherit;
	padding: 2px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(27, 99, 239, 0.4) 100%);
}
.cashdrop_quilifies .list li.checked:before {
	background: linear-gradient(180deg, rgba(197, 197, 197, 0.45) 0%, rgba(234, 73, 234, 0.42) 100%);
}
.cashdrop_quilifies.clima .list li:before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(27, 99, 239, 0.4) 100%);
}
.cashdrop_quilifies .list li:after {
	content:"";
	position: absolute;
	left: 30px;
	width: 32px;
	height: 24px;
	top:50%;
	transform:translate(0,-50%);
	background: url(../img/check_icon_thin.svg) 50% / contain no-repeat;
	opacity: .3;
	transition:all .3s ease-out;
}
.cashdrop_quilifies .list li:not(.no_hover):hover:after, .cashdrop_quilifies .list li.checked:after {
	opacity: .3;
	filter: invert(1);
}
.clima_areas {
	padding: 100px 0;
}
.clima_areas ul {
	column-count: 2;
	column-gap: 60px;
}
.clima_areas ul li {
	padding-left: 39px;
	position: relative;
	font:400 24px / 1.7 Poppins;
	break-inside:none;
}
.clima_areas ul li:before {
	content:"";
	width: 15px;
	height: 34px;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/check_icon_blue.svg) 50% / contain no-repeat;
}
.clima_areas.femtech ul li:before {
	background: url(../img/check_icon_blue.svg) 50% / contain no-repeat;
}
.clima_areas ul li + li {
	margin-top: 24px;
}
.cashdrop_type {
	padding: 100px 0;
}
.cashdrop_type h2, .clima_areas h2 {
	width: 840px;
	max-width: 100%;
	margin-bottom: 60px;
}
.cashdrop_type.femtech h2, .clima_areas.femtech h2 {
	width: 100%;
}
.cashdrop_type .descr {
	padding-left: 100px;
	position: relative;
	width: 840px;
	max-width:calc(100% - 100px);
	box-sizing: content-box;
}
.cashdrop_type .descr:before {
	content:"";
	position: absolute;
	left: 60px;
	top: 0;
	height: 100%;
	border-left: 1px dashed #464545;
}
.cashdrop_type .descr p {
	font:400 24px / 1.7 Poppins;
	color:#B6B6B6;
	margin-bottom: 15px;
}
.cashdrop_type .descr em {
	color:#ffffff;
	font-style: italic;
	font-weight: 500;
	margin-bottom: 15px;
}
.cashdrop_type .descr a {
	color:#FFFF00;
	position: relative;
}
.cashdrop_type .descr a:after {
	content: "";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-out;
}
.cashdrop_type .descr a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.cashdrop_why_doing {
	padding: 100px 0 60px;
}
.cashdrop_why_doing .wrap {

}
.cashdrop_why_doing h2 {
	margin-bottom: 60px;
}
.cashdrop_why_doing .double {
	display: flex;
	justify-content: space-between;
	width: 1136px;
	max-width: 100%;
}
.cashdrop_why_doing .double p {
	width: calc(50% - 30px);
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
}
.clima_about {
	padding: 100px 0;
}
.clima_about + .clima_about {
	padding-top: 0;
	margin-top: -40px;
}
.clima_about h2 {
	width: 1000px;
	max-width: 100%;
	margin-bottom: 60px;
}
.clima_about h3 {
	width: 800px;
	max-width: 100%;
	margin-bottom: 40px;
	font:700 32px / 1.4 Poppins;
}
.clima_about:not(.column_1) ul {
	column-count: 2;
	column-gap: 40px;
}
.clima_about li {
	position: relative;
	color:#B6B6B6;
	font:400 20px / 1.7 Poppins;
	width: 840px;
	max-width: 100%;
	padding-left: 40px;
	break-inside: avoid;
}
.clima_about li:before {
	content:"";
	border-radius:50%;
	border: 4px solid #1B63EF;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	top:5px;
	box-sizing:border-box;
}
.clima_about li + li {
	margin-top: 16px;
}
.clima_about li b {
	color:#fff;
	font-weight: 600;
}
.clima_about li a {
	color:#FFFF00;	
	position: relative;
	display: inline-block;
}
.clima_about li a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.clima_about li a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.cashdrop_who {
	padding: 100px 0;
}
.cashdrop_who .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border-bottom: 4px solid #454545;
	border-radius:12px;
	background: #020001;
}
.cashdrop_who .wrap > div {
	width: calc(50% - 27px);
}
.cashdrop_who .wrap .content {
	padding-bottom: 60px;
	padding-top: 60px;
}

.cashdrop_who .wrap .thumbs {
	display: flex;
	flex-wrap: wrap;
}
.cashdrop_who .wrap .thumbs .img1 {
	margin: 0 62px 104px 32px;
	width: 36%;
}
.cashdrop_who .wrap .thumbs .img2 {
	margin-top: 46px;
	width: 43%;
}
.cashdrop_who .wrap .thumbs .img3 {
	margin-right: 116px;
	width: 43%;
}
.cashdrop_who .wrap .thumbs .img4 {
	margin-top: 66px;
	width: 36%;
}
.cashdrop_who .wrap h2 {
	margin-bottom: 60px;
}
.cashdrop_who .wrap p {
	color:#B6B6B6;
	font:400 20px / 1.7 Poppins;
	padding-right: 40px;
}
.cashdrop_who .wrap p + p {
	margin-top: 16px;
}
.cashdrop_about {
	padding: 100px 0;
}
.cashdrop_about h2 {
	margin-bottom: 60px;
}
.cashdrop_about .descr {
	column-count: 2;
	column-gap: 56px;
}
.cashdrop_about .descr p {
	page-break-inside: avoid;
	break-inside: avoid;
	color:#B6B6B6;
	font:400 20px / 1.7 Poppins;
}
.cashdrop_about .descr p {
	margin-bottom: 16px;
}
.cashdrop_about .descr p b {
	font-weight: 600;
	color:#fff;
}
.cashdrop_about .notice {
	margin-top: 30px;
	padding: 24px;
	position: relative;
	color:#FFFFFFE5;
	font:400 20px / 1.7 Poppins;
}
.cashdrop_about .notice:before {
	content:"";
	border-radius:16px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border:1px dashed #C5C5C573;
}
.cashdrop_expect {
	padding: 100px 0;
}
.cashdrop_expect h2 {
	margin-bottom: 60px;
	width: 840px;
	max-width: 100%;
}
.cashdrop_expect .appear_lines_list p {
	color:#B6B6B6;
}
.cashdrop_expect .appear_lines_list li {
	box-sizing:content-box;
}
.cashdrop_expect .appear_lines_list li .line {
	left: -140px;
}
.cashdrop_expect .appear_lines_list li .line:after {
	background: #1B63EF;
}
.cashdrop_expect .appear_lines_list p b {
	color:#ffffff;
	font-weight: 600;
}
.cashdrop_expect .appear_lines_list p i {
	font-style: italic;
}
.cashdrop_expect .appear_lines_list a {
	color:#FFFF00;
	position: relative;
}
.cashdrop_expect .appear_lines_list a:after {
	content: "";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-out;
}
.cashdrop_expect .appear_lines_list a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.cashdrop_why_bother {
	padding: 100px 0;
}
.cashdrop_why_bother .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}
.cashdrop_why_bother .title h2 {
	width: 740px;
	max-width: 100%;
}
.cashdrop_why_bother .items {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
.cashdrop_why_bother .items .item {
	position: relative;
	width: calc(100% / 4 - (3 * 16px) / 4);
	display: flex;
	flex-direction: column;
}
.cashdrop_why_bother .items .item:nth-of-type(2n) {
	margin-top: 43px;
}
.cashdrop_why_bother .items .item .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition:all .3s ease-out;
}

.cashdrop_why_bother .items .item .bg img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	object-position:0 0;
}
.cashdrop_why_bother .items .item .content {
	padding: 32px;
	display: flex;
	min-height:376px;
	flex-direction: column;
	justify-content: space-between;
	transition:all .3s ease-out;
	background: #020001;
	border-radius:12px;
}
.cashdrop_why_bother .items .item .content:before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #1B63EF 100%);
}
.cashdrop_why_bother .items .item .content h3 {
	font:700 28px / 1.7 Poppins;
	margin-top: 8px;
}
.cashdrop_why_bother .items .item .content p {
	font:400 16px / 1.7 Poppins;
	color:#B6B6B6;
	transition:all .3s ease-out;
}

.cashdrop_why_bother .items .item .shadow {
	width: 100%;
	height: 133px;
	border-radius:12px;
	border:1px dashed #C5C5C573;
	margin-top: 16px;
	position: relative;
}
.cashdrop_why_bother .items .item .shadow:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: -1px;
	top: 0px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(to top, #0d0d0d, #0E0E0E00);
}
.cashdrop_how_apply {
	margin-top: 92px;
	padding: 97px 0 80px;
	position: relative;
	background: #020001;
}
.cashdrop_how_apply .bg {
	position: absolute;
	right: 0;
	top:0;
	width: 70%;
	height: 100%;
	z-index: 0;
}
.cashdrop_how_apply .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:right;
}
.cashdrop_how_apply .wrap {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.mm_bg {
	display: none;
}
.cashdrop_how_apply .wrap {
	display: flex;
	flex-direction: column;
}
.cashdrop_how_apply .wrap .info {
	align-self: flex-end;
	width: 50%;
}
.cashdrop_how_apply .wrap .info h3 {
	font:500 32px / 1.2 Poppins;
	margin-bottom: 16px;
	text-align: right;
}
.cashdrop_how_apply .wrap .info p {
	font:400 16px / 1.7 Poppins;
	color:#B6B6B6;
	text-align: right;
	max-width: 70%;
	margin-left: auto;
}
.cashdrop_how_apply .wrap h2 {
	max-width: 30%;
}
.cashdrop_how_apply .wrap .content p {
	max-width: 30%;
	font:400 24px / 1.7 Poppins;
	color:#B6B6B6;
	margin: 40px 0 32px;
}
.cashdrop_how_apply .wrap .content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.event_hero {
	min-height:100vh;
	display: flex;
	position: relative;
}
.event_hero .wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.event_hero .bg {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}
.event_hero .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:100% 0%;
}
.event_hero .wrap h1 {
	font:500 72px / 1.2 Poppins;
	color:#fff;
	width: 680px;
	max-width: 100%;
	margin-bottom: 48px;
	position: relative;
}
.event_hero .wrap .button {
	position: relative;
}
.event_hero .wrap .info {
	margin-top: 24px;
	color:#FFFFFFE5;
	font:400 20px / 1.7 Poppins;
	z-index: 1;
}
.event_hero .wrap .info a {
	position: relative;
	color:#FFFF00;
	transition: all .3s ease-out;
}
.event_hero .wrap .info a {
	position: relative;
	color:#FFFF00;
	transition: all .3s ease-out;
}
.event_hero .wrap .info a:not(.no_hover):hover {
	color:#FFD600;
}
.event_hero .wrap .info a:after {
	content:"";
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #FFD600;
	transition:all .3s ease-out;
	opacity: 0;
	visibility: hidden;
}
.event_hero .wrap .info a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.event_why {
	margin: 240px 0;
}
.event_why .wrap {
	width: 1172px;
}
.event_why h2 {
	text-align: center;
	margin: 0 auto 60px;
}
.event_why .double {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.event_why .double .thumb {
	width: 452px;
	max-width: 100%;
}
.event_why .double .thumb img {
	width: 100%;
}
.event_why .double .content {
	width: calc(100% - 600px);
}
.event_why .double .content li {
	font:400 24px / 1.7 Poppins;
	padding-left: 40px;
	position: relative;
}
.event_why .double .content li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 34px;
	background: url(../img/check_icon_blue.svg) 50% / contain no-repeat;
}
.event_why .double .content li + li {
	margin-top: 24px;
}
.event_connect {
	margin: 240px 0;
}
.event_connect h2 {
	text-align: center;
}
.event_connect .descr {
	width: 800px;
	max-width: 100%;
	text-align: center;
	margin: 80px auto;
	font:500 28px / 1.5 Poppins;
}
.event_connect .steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.event_connect .steps .item {
	width: calc(100% / 3 - (40px * 2) / 3);
	text-align: center;
}
.event_connect .steps .item:before {
	content:"";
	display: block;
	margin-bottom: 4px;
	height: 126px;
	background: url(../img/01_wave.png) 50% 50% / 100px no-repeat;
}
.event_connect .steps .item:nth-of-type(2):before {
	background: url(../img/02_wave.png) 50% 50% / 120px no-repeat;
}
.event_connect .steps .item:nth-of-type(3):before {
	background: url(../img/03_wave.png) 50% 50% / 120px no-repeat;
}
.event_connect .steps .item .content {
	font:400 20px / 1.7 Poppins;
}
.event_connect .steps .item .content a {
	color:#FFFF00;
	word-wrap: break-word;
	transition: all .3s ease-out;
}
.event_connect .steps .item .content a:not(.no_hover):hover {
	color:#FFD600;
	text-decoration: underline;
}
.event_connect .notice, .event_who .notice {
	width: 800px;
	max-width: 100%;
	border-radius:12px;
	padding: 32px;
	margin: 0 auto;
	color:#FFFFFFCC;
}
.event_connect .notice {
	border:1px solid #454545;
}
.event_connect .notice p, .event_who .notice p {
	font:400 20px / 1.7 Poppins;
	color:#FFFFFFCC;
	text-align: center;
}
.event_connect .notice p {
	text-align: left;
}
.event_connect .notice p + p {
	margin-top: 16px;
}
.event_who {
	margin: 240px 0;
}
.event_who h2 {
	text-align: center;
	margin-bottom: 60px;
}
.event_who .persons {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.event_who .persons .item {
	border-radius:12px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(50% - 30px);
	border:1px solid #454545;
}
.event_who .persons .item .thumb {
	width: 250px;
	max-width: 100%;
	margin-bottom: 32px;
}
.event_who .persons .item .thumb img {
	width: 100%;
	height: 100%;
}
.event_who .persons .item .name {
	font:700 32px / 1.5 Poppins;
	margin-bottom: 24px;
}
.event_who .persons .item .contacts {
	display: flex;
	justify-content: center;
}
.event_who .persons .item .contacts .hover {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	left: 0;
	top: 0;
}
.event_who .persons .item .contacts a svg path {
	transition: all .3s ease-out;
}
.event_who .persons .item .contacts a:not(.no_hover):hover svg path {
	fill:#FFD600;
}
.event_who .persons .item .contacts li {
	position: relative;
}
.event_who .persons .item .contacts li + li {
	margin-left: 32px;
}
.event_who_we {
	margin: 240px 0 120px;
}
.event_who_we h2 {
	text-align: center;
	margin-bottom: 60px;
}
.event_who_we ul {
	column-count: 2;
	column-gap: 48px;
}
.event_who_we li {
	font:400 24px / 1.7 Poppins;
	padding-left: 40px;
	position: relative;
}
.event_who_we li + li {
	margin-top: 24px;
}
.event_who_we li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 15px;
	height: 34px;
	background: url(../img/check_icon_blue.svg) 50% / contain no-repeat;
}
.event_gallery .wrap {
	width: 1172px;
	display: flex;
}
.event_gallery {
	margin-bottom: 140px;
}
.event_gallery .wrap img:nth-of-type(1) {
	width: 62%;
	object-fit:cover;
}
.event_gallery .wrap img:nth-of-type(2) {
	width: calc(38% - 40px);
	object-fit:cover;
}
.event_gallery .wrap img + img {
	margin-left: 40px;
}
.family_hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 170px 0 30px;
}
.family_hero .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.family_hero .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:100% 0;
}
.family_hero .wrap {
	display: flex;
	align-items: center;
	position: relative;
}
.family_hero .wrap .content {
	width: 600px;
}
.family_hero .wrap .codes {
	width: calc(100% - 600px);
	padding-left: 48px;
	align-self: flex-end;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
}
.family_hero .wrap h1 {
	font:500 72px / 1.2 Poppins;
	margin-bottom: 16px;
}
.family_hero .wrap .descr {
	margin-bottom: 48px;
	color:#B6B6B6;
}
.family_hero .wrap .descr p {
	font:400 20px / 1.7 Poppins;
}
.family_hero .wrap .descr p + p {
	font:400 20px / 1.7 Poppins;
	margin-top: 8px;
}
.copied_alert {
	position: fixed;
	bottom: 32px;
	z-index: 100;
	left: 50%;
	transform:translate(-50%,0);
	padding: 8px 16px;
	border-radius:12px;
	background: #fff;
	color:#0E0E0E;
	font:500 16px / 1.5 Poppins;
}
.family_hero .wrap .codes .info {
	margin-top: 16px;
	font:400 16px / 1.7 Poppins;
	color:#fff;
	margin-right: 40px;
}
.family_hero .wrap .codes blockquote {
	width: 350px;
	max-width: 100%;
	padding: 12px 24px;
	overflow: hidden;
	position: relative;
	transition:all .3s ease-out;
	cursor: pointer;
}
.family_hero .wrap .codes blockquote + blockquote {
	margin-top: 16px;
	margin-right: 40px;
}
.family_hero .wrap blockquote .lay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.family_hero .wrap blockquote .lay svg {
	width: 100%;
	height: 100%;
}
.family_hero .wrap blockquote:hover {
	filter: drop-shadow(0px 4px 40px #000000CC);
}

.family_hero .wrap blockquote .code {
	color:#0E0E0E;
	font:600 24px / 1.5 Poppins;
	display: flex;
	align-items: center;
	position: relative;
}
.family_hero .wrap blockquote .text {
	color:#0E0E0E80;
	position: relative;
	font:400 16px / 1.7 Poppins;
}
.family_hero .wrap blockquote .text b {
	color:#0E0E0E;
	font-weight: 500;
}
.family_hero .wrap blockquote .code svg {
	margin-left: 8px;
	opacity: 0;
	transition:all .3s ease-out;
}
.family_hero .wrap blockquote:hover .code svg {
	opacity: 1;
}
.family_hero .wrap blockquote b {
	font-weight: 600;
}
.family_hero .wrap .buttons {
	display: flex;
}
.family_hero .wrap .buttons .button + .button {
	margin-left: 16px;
}
.family_hero .wrap .buttons .button.secondary {
	background: #00000000;
}
.family_recommended {
	margin: 120px 0;
}
.family_recommended .wrap {
	display: flex;
}
.family_recommended .wrap .item {
	width: calc(50% - 16px);
	padding: 40px;
	border-radius:12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border:1px solid #454545;
}
.family_recommended .wrap .item + .item {
	margin-left: 32px;
}
.family_recommended .wrap .item h3 {
	font:500 56px / 1.4 Poppins;
	margin-bottom: 32px;
}
.family_recommended .wrap .item .descr {
	flex: 1;
	margin-bottom: 64px;
}
.family_recommended .wrap .item .descr p {
	font:400 20px / 1.7 Poppins;
}
.family_recommended .wrap .item .descr p + p {
	margin-top: 8px;
}
.family_lists {
	margin-bottom: 200px;
}
section.family_lists .wrap h2 {
	font-size: 56px;
	text-align: center;
}
.family_lists h3 {
	text-align: center;
	font:700 32px / 1.3 Poppins;
	margin: 100px 0 32px;
}
.family_lists h3 b {
	color:#FFFFFF80;
}
.family_lists .appear_lines_list li .line {
	left: -120px;
}
.mobile_notice {
	display: none;
}
.vip_hero {
	position: relative;
	padding: 196px 0 300px;
	display: flex;
	align-items: center;
}
.vip_hero .bg {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.vip_hero .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.vip_hero .wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.vip_hero .wrap h1 {
	font:500 64px / 1.2 Poppins;
	filter: drop-shadow(0px 4px 14px #00000033);
	width: 1100px;
	max-width: 100%;	
	margin-bottom: 16px;
}
.vip_hero .wrap .descr {
	color:#FFFFFFE5;
	font:400 20px / 1.7 Poppins;
	margin-bottom: 48px;
}
.vip_event_body {
	padding-top: 100px;
}
.vip_event_body .descr {
	width: 840px;
	max-width: 100%;
	margin: 0 auto 80px;
	font:400 24px / 1.7 Poppins;
	color:#B6B6B6;
	text-align: center;
}
.vip_event_body .descr p {
	font:400 24px / 1.7 Poppins;
}
.vip_event_body .descr p + p {
	margin-top: 16px;
}
.vip_event_body .descr b {
	font-weight: 600;
	color:#fff;
}
section.vip_event_body h2 {
	font:700 32px / 1.4 Poppins;
	text-align: center;
	margin: 0 auto 80px;
	width: 840px;
	max-width: 100%;
}
.vip_event_body .details {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 80px;
}
.vip_event_body .details .item {
	width: calc(100% / 3 - (2*24px)/3);
	padding: 40px 32px 32px;
	border:1px solid #434343;
	border-radius:16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.vip_event_body .details .item .icon {
	margin-top: 28px;
	flex:1;
	display: flex;
	align-items: flex-end;
}
.vip_event_body .details .item img {
	width: 72px;
	height: 72px;
}
.vip_event_body .details .item h3 {
	font:700 32px / 1.4 Poppins;
}
.vip_event_body .details .item p {
	color:#BCBCBC;
	font:400 16px / 1.5 Poppins;
	margin-top: 8px;
}
.vip_event_body .buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 150px;
}
.family_bottom {
	position: relative;
	padding: 140px 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	margin-bottom: 80px;
}
.family_bottom .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.family_bottom .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}
.family_bottom .bg img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position:50% 50%;
	position: relative;
}
.family_bottom .uptitle {
	font:400 24px / 1.5 Poppins;
	color:#fff;
	width: 660px;
	max-width: 100%;
}
.family_bottom h2 {
	font:500 56px / 1.4 Poppins;
	color:#fff;
	margin: 0 0 24px;
	width: 800px;
	max-width: 100%;
}
.family_bottom h2 br {
	display: none;
}
.family_bottom .buttons {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.onepage-wrapper .section .about_hero {
	padding-top: 165px;
}
.main_blog_hero {
	padding: 176px 0 80px;
	background: #0E0E0E;
}
.main_blog_hero h1 {
	font:500 72px / 1.2 Poppins;
	color:#fff;
	text-align: center;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
}
.main_blog_subscribe {
	padding: 80px 0;
	position: relative;
}
.main_blog_subscribe .bg {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.main_blog_subscribe .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main_blog_subscribe .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_blog_subscribe h2 {
	text-shadow: 0px 4px 12px #000000CC;
	color:#fff;
	font:500 48px / 1.4 Poppins;
	margin-right: 66px;
}
.main_blog_subscribe form {
	display: flex;
	background: #0E0E0E;
	border-radius: 80px;
	position: relative;
	overflow: hidden;
}
.main_blog_subscribe form .wpcf7-form-control-wrap {
	position: relative;
	display: flex;
}
.main_blog_subscribe form .button input {
	cursor: pointer;
}
.main_blog_subscribe form .wpcf7-form-control-wrap .helper {
	position: absolute;
	left: 32px;
	top:50%;
	transform: translate(0,-50%);
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
	transition:all .3s ease-out;
	z-index: 0;
}
.main_blog_subscribe form .wpcf7-form-control-wrap:hover .helper {
	color:#fff;
}
.main_blog_subscribe form .wpcf7-form-control-wrap input {
	padding: 16px 32px;
	font:400 20px / 1.7 Poppins;
	color:#ffffff;
	background: #00000000;
	border:0;
	box-shadow: none;
	outline: none;
	z-index: 1;
	position: relative;
}
.main_blog_subscribe form .wpcf7-form-control-wrap input:active + .helper,.main_blog_subscribe form .wpcf7-form-control-wrap input:focus + .helper, .main_blog_subscribe form .wpcf7-form-control-wrap input:not(:placeholder-shown) + .helper {
	opacity: 0;
	visibility: hidden;
	transform: translate(0,-70%);
}
.main_blog_subscribe form .wpcf7-form-control-wrap input::placeholder {
	color:#ffffff00;
}
.main_blog_subscribe form .wpcf7-not-valid-tip {
	position: absolute;
	left: 33px;
	color: #E5340C;
	z-index: 1;
	font-size: 0.8em;
	bottom: 3px;
}
.main_blog_subscribe form .wpcf7-spinner, .main_blog_subscribe form .wpcf7-response-output {
	display: none;
}
.main_blog_subscribe form.error .wpcf7-form-control-wrap input {
	color:#E5340C;
}
.main_blog_subscribe form input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #ffffff00 inset;
	transition: background-color 5000s ease-in-out 0s;
}
.main_blog_subscribe form .success {
	position: absolute;
	background: #FFFF00;
	border-radius: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	color:#020202;
	text-transform: uppercase;
	font:600 20px / 1.7 Poppins;
	z-index: 1;
	transition: all .3s ease-out;
}
.main_blog_subscribe form.sent .success {
	top:0;
}
.main_blog_subscribe form .success:after {
	content:"";
	width: 24px;
	height: 24px;
	margin-left: 10px;
	background: url(../img/check_icon_subscribe.svg) 50% / contain no-repeat;
}
.blog_list {
	padding: 80px 0 100px;
	margin-bottom: 80px;
	background: #0E0E0E;
}
.blog_list .articles {
	display: flex;
	justify-content: space-between;
}
.blog_list .articles .column {
	width: calc(50% - 44px);
}
.blog_list .articles .column {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.blog_list .articles .column.column_2 {
	align-items: flex-start;
	padding-top: 80px;
}
.blog_list .articles .blog_item {
	padding: 16px;
	border-radius: 12px;
	background: #282828;
	min-height: 484px;
	display: flex;
	flex-direction: column;
}
.blog_list .articles .blog_item[data-category="2"] {
	background: #1B63EF;
}
.blog_list .articles .blog_item[data-category="3"] {
	background: #ffffff;
}
.blog_list .articles .blog_item[data-category="4"] {
	background: #EDD34C;
}
.blog_list .articles .blog_item + .blog_item {
	margin-top: 80px;
}
.blog_list .articles .blog_item .thumb {
	height: 240px;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	margin-bottom: 16px;
}
.blog_list .articles .blog_item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transition: all 1s ease-out;
}
.blog_list .articles .blog_item:hover .thumb img {
	transform: scale(1.1);
}
.blog_list .articles .blog_item .content {
	flex:1;
	display: flex;
	flex-direction: column;
}
.blog_list .articles .blog_item .cats {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4px;
	color:#FFFFFF99;
}
.blog_list .articles .blog_item[data-category="3"] .cats, .blog_list .articles .blog_item[data-category="4"] .cats {
	color:#0E0E0E99;
}
.blog_list .articles .blog_item .cats .item {
	position: relative;
	font:400 16px / 1.7 Poppins;
}
.blog_list .articles .blog_item .cats .item + .item {
	margin-left: 6px;
	padding-left: 8px;
}
.blog_list .articles .blog_item .cats .item + .item:before {
	content:"";
	position: absolute;
	left: 0;
	height: 13px;
	width: 1.5px;
	background: #FFFFFF99;
	top:50%;
	transform: translate(0,-50%);
}
.blog_list .articles .blog_item[data-category="3"] .cats .item + .item:before, .blog_list .articles .blog_item[data-category="4"] .cats .item + .item:before {
	background: #0E0E0E99;
}
.blog_list .articles .blog_item .title h4 {
	font:500 24px / 1.4 Poppins;
	color:#fff;
}
.blog_list .articles .blog_item[data-category="3"] .title h4 {
	color:#0E0E0E;
}
.blog_list .articles .blog_item[data-category="4"] .title h4 {
	color:#0E0E0E;
}
.blog_list .articles .blog_item .actions {
	flex:1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: relative;
	margin-top: 24px;
}
.blog_list .articles .blog_item .actions .categories {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	width: calc(100% - 68px);
}
.blog_list .articles .blog_item .actions .categories:after {
	content:"";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 80px;
	background: linear-gradient(270deg, #282828 44.72%, rgba(255, 255, 255, 0) 95.28%);
	z-index: 1;
}
.blog_list .articles .blog_item[data-category="2"] .actions .categories:after {
	background: linear-gradient(270deg, #1B63EF 44.72%, rgba(255, 255, 255, 0) 95.28%);
}
.blog_list .articles .blog_item[data-category="3"] .actions .categories:after {
	background: linear-gradient(270deg, #ffffff 44.72%, rgba(255, 255, 255, 0) 95.28%);
}
.blog_list .articles .blog_item[data-category="4"] .actions .categories:after {
	background: linear-gradient(270deg, #EDD34C 44.72%, rgba(255, 255, 255, 0) 95.28%);
}
.blog_list .articles .blog_item .actions .categories .item {
	border: 1px solid #fff;
	border-radius: 102px;
	padding: 11px 16px;
	color:#fff;
	text-transform: uppercase;
	font:500 16px / 1.5 Poppins;
}
.blog_list .articles .blog_item .actions .categories .item.swiper-slide {
	width: initial;
}
.blog_list .articles .blog_item .actions .categories .swiper-wrapper {
	transition-timing-function: linear;
}
.blog_list .articles .blog_item[data-category="3"] .actions .categories .item {
	border: 1px solid #0E0E0E;
	color:#0E0E0E;
}
.blog_list .articles .blog_item[data-category="4"] .actions .categories .item {
	border: 1px solid #020202;
	color:#020202;
}
.blog_list .articles .blog_item .actions .categories .item:not(.swiper-slide) + .item {
	margin-left: 8px;
}
.blog_list .articles .blog_item .actions .button {
	font:600 16px / 1.5 Poppins;
	/*padding: 12px 24px;*/
}
.blog_list .articles .column_1 .blog_item {
	width: 456px;
	max-width: 100%;
}
.blog_list .articles .column_1 .blog_item:nth-of-type(2n) {
	width: 400px;
}
.blog_list .articles .column_2 .blog_item {
	width: 400px;
	max-width: 100%;
}
.blog_list .articles .column_2 .blog_item:nth-of-type(2n) {
	width: 456px;
}
.single_hero {
	padding: 176px 0 100px;
	background: #010101;
	overflow: hidden;
}
.single_hero .wrap {
	display: flex;
}
.single_hero .wrap .content {
	width: 50%;
	margin-right: 64px;
}
.single_hero .wrap .content .breadcrumbs .breadcrumbs__link {
	font:400 14px / 1.6 Poppins;
	color:#fff;
}
.single_hero .wrap .content .breadcrumbs .breadcrumbs__current {
	font:400 14px / 1.6 Poppins;
	color:#808080;
}
.single_hero .wrap .content .breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.single_hero .wrap .content .breadcrumbs .breadcrumbs__separator {
	margin: 0 12px;
}
.single_hero .wrap .content .cats {
	margin: 16px 0 32px;
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
}
.single_hero .wrap .content .cats .item {
	padding: 8px 16px;
	border-radius: 80px;
	text-transform: uppercase;
	font:500 16px / 1.5 Poppins;
	background: #282828;
}
.single_hero .wrap .content .cats .item.swiper-slide {
	width: initial;
}
.single_hero .wrap .content .cats .item + .item {
	margin-left: 16px;
}
.single_hero .wrap .content .cats .item[data-category="2"] {
	background: #1B63EF;
}
.single_hero .wrap .content .cats .item[data-category="3"] {
	background: #ffffff;
	color:#0E0E0E;
}
.single_hero .wrap .content .cats .item[data-category="4"] {
	background: #EDD34C;
}
.single_hero .wrap .content h1 {
	font:500 56px / 1.4 Poppins;
	margin-bottom: 16px;
}
.single_hero .wrap .content .excerpt {
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
}
.single_hero .wrap .content .excerpt p {
	font:400 20px / 1.7 Poppins;
}
.single_hero .wrap .content .excerpt p + p {
	margin-top: 8px;
}
.single_hero .wrap .thumb {
	width: calc(50% + 16px);
	margin-right: -80px;
	max-height: 480px;
}
.single_hero .wrap .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 100%;
}
.single_content {
	padding: 80px 0;
	background: #0E0E0E;
}
.single_content + .main_blog_subscribe {
	margin-bottom: 65px;
}
.single_content .wrap {
	width: 840px;
}
.single_content .wrap p {
	color:#B6B6B6;
	font:400 20px / 1.7 Poppins;
}
.single_content .wrap p + p {
	margin-top: 12px;
}
.single_content .wrap .wp-block-image {
	margin: 24px 0;
}
.single_content .wrap .wp-block-image img {
	height: auto !important;
}
.single_content .wrap h2 {
	margin: 80px 0 40px;
	font:500 48px / 1.3 Poppins;
}
.single_content .wrap h3 {
	font:500 28px / 1.5 Poppins;
	margin-bottom: 24px;
	margin-top: 80px;
}
.single_content .wrap .margin-top-0 {
	margin-top: 12px;
}
.single_content .wrap h3 + h3 {
	margin-top: -12px;
}
.single_content .wrap .wp-block-group {
	padding: 24px 32px;
	background: #FFFFFF0A;
	border-radius: 12px;
	margin: 24px 0;
}
.single_content .wrap .wp-block-group h3 {
	font:600 20px / 1.7 Poppins;
	margin-bottom: 24px;
	margin-top: 0;
}
.single_content .wrap ol, .single_content .wrap ul {
	margin: 32px 0;
}
.single_content .wrap .wp-block-group ol, .single_content .wrap  .wp-block-group ul {
	margin: 0;
}
.single_content .wrap ol li {
	padding-left: 38px;
	position: relative;
	font:400 20px / 1.7 Poppins;
}
.single_content .wrap ol li + li {
	margin-top: 16px;
}
.single_content .wrap ol li:before {
	content:"";
	position: absolute;
	left: 0;
	top: .5em;
	width: 16px;
	height: 16px;
	transform: rotate(45deg);
	background: #1B63EF;
}
.single_content .wrap ul li {
	padding-left: 40px;
	position: relative;
	color: #B6B6B6;
	font:400 20px / 1.7 Poppins;
}
.single_content .wrap ul li br {
	content:"";
	display: block;
	height: 16px;
}
.single_content .wrap ul li strong {
	font-weight: 600;
	color:#fff;
}
.single_content .wrap ul li + li {
	margin-top: 20px;
}
.single_content .wrap ul li:before {
	content:"";
	position: absolute;
	left: 0;
	top: .25em;
	width: 24px;
	height: 24px;
	border:4px solid #1B63EF;
	border-radius: 50%;
	box-sizing: border-box;
}
.single_content .wrap .cta_block {
	position: relative;
	margin: 80px 0;
	padding: 40px 48px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.single_content .wrap .cta_block:after {
	content:"";
	position: absolute;
	background: linear-gradient(180deg, #0E0E0E00 33.7%, #0E0E0E 82.25%);
	bottom: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: 100px;
	z-index: 2;
}
.single_content .wrap .cta_block:before {
	content: "";
	position: absolute;
	background: linear-gradient(270deg, #0E0E0E00 0%, #0E0E0E 42%);
	bottom: 0;
	left: 1px;
	width: 60%;
	height: calc(100% - 1px);
	z-index: 2;
	border-top-left-radius: 12px;
}
.single_content .wrap .cta_block .bg {
	position: absolute;
	z-index: 1;
	right:1px;
	top: 1px;
	width: 80%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
}
.single_content .wrap .cta_block .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.single_content .wrap .cta_block h2 {
	position: relative;
	z-index: 3;
	width: 576px;
	max-width: 100%;
	color:#fff;
	font:500 32px / 1.3 Poppins;
	margin: 0 0 32px;
	text-transform: none;
}
.single_content .wrap .cta_block .button {
	position: relative;
	z-index: 3;
}
.single_content .wrap .meta {
	margin-top: 80px;
	color:#B6B6B6B2;
	font:400 20px / 1.7 Poppins;
}
.dashed_gragient {
	position: relative;
}
.dashed_gragient .border {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 1em;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23FFFF00FF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
	border-radius: 12px;
}
.dashed_gragient .border:after {
	content: "";
	position: absolute;
	left: -2px;
	bottom: 0;
	width: calc(100% + 4px);
	height: 60%;
	background: linear-gradient(to bottom, #0E0E0E00 0%, #0E0E0E 50%);
}
.cashdrop_cards {
	padding: 100px 0;
}
.cashdrop_cards .items {
	display: flex;
	justify-content: space-between;
}
.cashdrop_cards .items .item {
	display: flex;
	flex-direction: column;
	background: #020001;
	border: 1px solid #454545;
	padding: 40px;
	border-radius: 12px;
	width: calc(50% - 16px);
}
.cashdrop_cards .items .item .sub {
	font:400 20px / 1.7 Poppins;
	color:#FFFFFF66;
	margin-bottom: 16px;
}
.cashdrop_cards .items .item h3 {
	font:500 48px / 1.4 Poppins;
	margin-bottom: 32px;
}
.cashdrop_cards .items .item .content {
	flex:1;
	margin-bottom: 56px;
}
.cashdrop_cards .items .item .content p {
	font:400 20px / 1.7 Poppins;
}
.cashdrop_cards .items .item .content p + p {
	margin-top: 8px;
}
.cashdrop_cards .items .item .button {
	display: inline-block;
}
.scroll_down_modern {
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
	flex-direction: column;
	align-items: center;
	bottom: 24px;
	z-index: 1;
}
.scroll_down_modern p {
	margin-top: 28px;
	font-family: Poppins, sans-serif;
	letter-spacing: .2px;
	text-indent: 12px;
	color: #FFFF00;
	-webkit-animation: colorText 8s ease-out infinite, nudgeText 8s ease-out infinite;
	animation: colorText 8s ease-out infinite, nudgeText 8s ease-out infinite;
}
.scroll_down_modern .mouse {
	background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
	position: relative;
	width: 30px;
	height: 48px;
	border-radius: 100px;
	background-size: 100% 200%;
	-webkit-animation: colorSlide 8s linear infinite, nudgeMouse 8s ease-out infinite;
	animation: colorSlide 8s linear infinite, nudgeMouse 8s ease-out infinite;
}
.scroll_down_modern .mouse:before, .scroll_down_modern .mouse:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.scroll_down_modern .mouse:before {
	width: 27px;
	height: 45px;
	background-color: #07031a;
	border-radius: 100px;
}
.scroll_down_modern .mouse:after {
	background-color: #ffffff;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	-webkit-animation: trackBallSlide 8s linear infinite;
	animation: trackBallSlide 8s linear infinite;
}

@-webkit-keyframes colorSlide {
	0% {
		background-position: 0% 100%;
	}
	20% {
		background-position: 0% 0%;
	}
	21% {
		background-color: #4e5559;
	}
	29.99% {
		background-color: #ffffff;
		background-position: 0% 0%;
	}
	30% {
		background-color: #4e5559;
		background-position: 0% 100%;
	}
	50% {
		background-position: 0% 0%;
	}
	51% {
		background-color: #4e5559;
	}
	59% {
		background-color: #ffffff;
		background-position: 0% 0%;
	}
	60% {
		background-color: #4e5559;
		background-position: 0% 100%;
	}
	80% {
		background-position: 0% 0%;
	}
	81% {
		background-color: #4e5559;
	}
	90%, 100% {
		background-color: #ffffff;
	}
}

@keyframes colorSlide {
	0% {
		background-position: 0% 100%;
	}
	20% {
		background-position: 0% 0%;
	}
	21% {
		background-color: #4e5559;
	}
	29.99% {
		background-color: #ffffff;
		background-position: 0% 0%;
	}
	30% {
		background-color: #4e5559;
		background-position: 0% 100%;
	}
	50% {
		background-position: 0% 0%;
	}
	51% {
		background-color: #4e5559;
	}
	59% {
		background-color: #ffffff;
		background-position: 0% 0%;
	}
	60% {
		background-color: #4e5559;
		background-position: 0% 100%;
	}
	80% {
		background-position: 0% 0%;
	}
	81% {
		background-color: #4e5559;
	}
	90%, 100% {
		background-color: #ffffff;
	}
}
@-webkit-keyframes trackBallSlide {
	0% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	6% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	14% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	15%, 19% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	28%, 29.99% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	30% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	36% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	44% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	45%, 49% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	58%, 59.99% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	60% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	66% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	74% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	75%, 79% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	88%, 100% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
}
@keyframes trackBallSlide {
	0% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	6% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	14% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	15%, 19% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	28%, 29.99% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	30% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	36% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	44% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	45%, 49% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	58%, 59.99% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	60% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
	66% {
		opacity: 1;
		transform: scale(0.9) translateY(5px);
	}
	74% {
		opacity: 0;
		transform: scale(0.4) translateY(40px);
	}
	75%, 79% {
		opacity: 0;
		transform: scale(0.4) translateY(-20px);
	}
	88%, 100% {
		opacity: 1;
		transform: scale(1) translateY(-20px);
	}
}
@-webkit-keyframes nudgeMouse {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(8px);
	}
	30% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
	60% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(8px);
	}
	90% {
		transform: translateY(0);
	}
}
@keyframes nudgeMouse {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(8px);
	}
	30% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
	60% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(8px);
	}
	90% {
		transform: translateY(0);
	}
}
@-webkit-keyframes nudgeText {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(2px);
	}
	30% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(2px);
	}
	60% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(2px);
	}
	90% {
		transform: translateY(0);
	}
}
@keyframes nudgeText {
	0% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(2px);
	}
	30% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(2px);
	}
	60% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(2px);
	}
	90% {
		transform: translateY(0);
	}
}
@-webkit-keyframes colorText {
	21% {
		color: #4e5559;
	}
	30% {
		color: #FFFF00;
	}
	51% {
		color: #4e5559;
	}
	60% {
		color: #FFFF00;
	}
	81% {
		color: #4e5559;
	}
	90% {
		color: #FFFF00;
	}
}
@keyframes colorText {
	21% {
		color: #4e5559;
	}
	30% {
		color: #FFFF00;
	}
	51% {
		color: #4e5559;
	}
	60% {
		color: #FFFF00;
	}
	81% {
		color: #4e5559;
	}
	90% {
		color: #FFFF00;
	}
}
.strategy_descr {
	padding: 100px 0;
}
.strategy_descr h2 {
	width: 929px;
	max-width: 100%;
	margin-bottom: 60px;
	font:500 48px / 1.4 Poppins;
}
.strategy_descr .double {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.strategy_descr .double .icons {
	display: flex;
	align-items: center;
}
.strategy_descr .double .icons img {
	width: 80px;
	height: 80px;
}
.strategy_descr .double .icons img + img {
	margin-left: 80px;
}
.strategy_descr .double .descr {
	width: 47.5%;
	color:#B6B6B6;
}
.strategy_descr .double .descr p {
	font:400 20px / 1.7 Poppins;
}
.strategy_descr .double .descr p + p {
	margin-top: 12px;
}
.strategy_descr .double .descr p strong {
	font-weight: 500;
	line-height: 1.4;
	color:#fff;
}
.strategy_scenarios {
	padding: 100px 0 68px;
}
.strategy_scenarios h2 {
	font:500 56px / 1.4 Poppins;
	margin-bottom: 60px;
}
.strategy_scenarios .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	counter-reset: strat_scen;
}
.strategy_scenarios .items .item {
	counter-increment: strat_scen;
	box-shadow: 0px 4px 44px 0px #0000001A;
	border-radius: 12px;
	width: calc(100% / 3 - (32px * 2) / 3);
	margin-bottom: 32px;
	background: url(../img/strat_cards.jpg) 0 0 / 300% no-repeat;
	padding: 32px 32px 40px 32px;
}
.dotted_gradient {
	--d:8deg;
	--n:20;
	--b:1.5px;
	width: 56px;
	height: 56px;
	display:inline-flex;
	justify-content:center;
	align-items:center;
	position: relative;
	border-radius:50%;
}
.strategy_scenarios .items .item .num:before {
	content:"0"counter(strat_scen);
	color:#1B63EF;
	font:500 24px / 1.4 Poppins;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.dotted_gradient:after {
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:0;
	border-radius:inherit;
	background:var(--c,linear-gradient(#C5C5C5,#1B63EF));
	-webkit-mask:
	radial-gradient(farthest-side,transparent calc(100% - var(--b)),#fff calc(100% - var(--b) + 1px)),
	repeating-conic-gradient(#000 0 calc(360deg/var(--n) - var(--d)),transparent 0 calc(360deg/var(--n)));
	-webkit-mask-composite: source-in;
	mask:
	radial-gradient(farthest-side,transparent calc(100% - var(--b)),#fff calc(100% - var(--b) + 1px)),
	repeating-conic-gradient(#000 0 calc(360deg/var(--n) - var(--d)),transparent 0 calc(360deg/var(--n)));
	mask-composite: intersect;
	transition: all 10s ease-out;
}
.strategy_scenarios .items .item .title {
	font:700 28px / 1.4 Poppins;
	margin-top: 84px;
}
.strategy_toggler {
	padding: 100px 0;
}
.strategy_toggler .title {
	display: flex;
	margin-bottom: 60px;
	font:500 56px / 1.2 Poppins;
	align-items: center;
}
.strategy_toggler .title .butts {
	display: flex;
	margin: 0 24px;
	border-radius: 16px;
	background: #171717;
	padding: 8px;
}
.strategy_toggler .title .butts a {
	padding: 6px 24px;
	border-radius: 12px;
	color:#6D6D6D;
	font:500 28px / 1.5 Poppins;
	border:1px solid #00000000;
	transition: all .3s ease-out;
}
.strategy_toggler .title .butts a:hover {
	border-color:#282828;
}
.strategy_toggler .title .butts a.active {
	background: #DF1111;
	color:#fff;
	animation: zoom-in-out-animation 1s infinite;
}
.strategy_toggler .title .butts a[data-toggle="might_not"].active {
	background: #E29B10;
}
.strategy_toggler .title .butts a.active:hover {
	animation: none;
}
.strategy_toggler .title .butts a + a {
	margin-left: 8px;
}
@keyframes zoom-in-out-animation {
	0% { transform: translate(0px, 0px); }
	50% { transform: translate(0px, 0px) scale(1.05); }
	100% { transform: translate(0px, 0px); }
}
.strategy_toggler .contents .item {
	display: none;
}
.strategy_toggler .contents .item.active {
	display: block;
}
.strategy_toggler .contents .item li {
	position: relative;
	padding-left: 137px;
	transition: all .3s ease-out;
}
.strategy_toggler .contents .item li .text {
	font:400 24px / 1.7em Poppins;
	opacity: 0;
	transform: translate(0,-10px);
	will-change: opacity, transform;
	transition: all .3s ease-out;
}
.strategy_toggler .contents .item.ready li .text {
	opacity: 1;
	transform: translate(0,0);
}
.strategy_toggler .contents .item li .line {
	width: calc((100vw - 1280px) / 2 + 97px);
	height: 4px;
	background: #ffffff1c;
	will-change: opacity, transform;
	position: absolute;
	top:18px;
	opacity: 0;
	right: calc(100% + 50px);
	transition: all .3s ease-out;
}
.strategy_toggler .contents .item.ready li .line {
	opacity: 1;
	right: calc(100% - 97px);
}
.strategy_toggler .contents .item li .line:after {
	content:"";
	position: absolute;
	background: #DF1111;
	right: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	transform: rotate(45deg) translate(-5px, -6px);
	box-sizing: border-box;
}
.strategy_toggler .contents .item[data-toggle="might_not"] li .line:after {
	background: #e29b10;
}
.strategy_toggler .contents .item li + li {
	margin-top: 24px;
}
.strategy_cryteria {
	padding: 100px 0 76px;
}
.strategy_cryteria h2 {
	margin-bottom: 60px;
}
.strategy_cryteria .items {
	display: flex;
	flex-wrap: wrap;
}
.strategy_cryteria .items li {
	border-radius: 16px;
	box-shadow: 0px 4px 34px 0px #00000040;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	font:400 20px / 1.7 Poppins;
	background: #202020;
	margin-right: 24px;
	margin-bottom: 24px;
}
.strategy_cryteria .items li:before {
	content:"";
	width: 16px;
	height: 16px;
	transform: rotate(-45deg);
	background: #1B63EF;
	margin-right: 16px;
}
.strategy_how {
	padding: 100px 0;
}
.strategy_how h2 {
	margin-bottom: 16px;
}
.strategy_how .descr {
	color:#B6B6B6;
	margin-bottom: 60px;
}
.strategy_how .descr p {
	font:400 20px / 1.7 Poppins;
}
.strategy_how .items {
	display: flex;
	justify-content: space-between;
}
.strategy_how .items .item {
	background: #fff;
	border-radius: 20px;
	padding: 24px 32px 32px;
	display: flex;
	flex-direction: column;
	width: calc(100% / 3 - (32px*2) / 3);
}
.strategy_how .items .item .icon {
	align-self: flex-end;
	width: 80px;
	height: 80px;
}
.strategy_how .items .item .title {
	margin-top: 111px;
}
.strategy_how .items .item .title h3 {
	color:#0E0E0E;
	font:700 28px / 1.4 Poppins;
	margin-bottom: 4px;
}
.strategy_how .items .item .title span {
	color:#727272;
	font:400 16px / 1.5 Poppins;
}
.strategy_process {
	padding: 100px 0 200px;
	position: relative;
	overflow: hidden;
}
.strategy_process h2 {
	margin-bottom: 60px;
}
.strategy_process:before {
	content:"";
	position: absolute;
	top: 40px;
	width: 800px;
	height: 800px;
	border-radius: 800px;
	background: rgba(70, 70, 70, 0.20);
	filter: blur(102px);
	right: calc((100vw - 1280px)/2);
}
.sliding_list {
	width: 1010px;
	max-width: 100%;
	counter-reset: sl_list;
	position: relative;
}

.sliding_list .line {
	z-index: -1;
	position: absolute;
	left: calc(21.78% + 80px);
	width: 1px;
	top:12px;
	height: 100%;
	background: #A4A4A417;
}
.sliding_list .line .scroll {
	position: absolute;
	left: -.5px;
	top: 0;
	width: 2px;
	background: linear-gradient(90deg, #1C63EF 10.7%, rgba(28, 99, 239, 0) 112.09%);
	will-change: height;
	transition: all 0s linear;
	max-height: calc(100% - 12px);
}
.sliding_list .item {
	display: flex;
	align-items: center;
	counter-increment: sl_list;
}
.sliding_list .item + .item {
	margin-top: 64px;
}
.sliding_list .item h3 {
	width: 21.78%;
	text-align: center;
	font:400 20px / 1.7 Poppins;
	color:#B6B6B6;
}
.sliding_list .item .num {
	margin: 0 48px;
	background: #000;
	width: 64px;
	height: 64px;
}
.sliding_list .item .num:after {
	background: var(--c,linear-gradient(#C5C5C573,#1B63EF33 90%, #00000000));
}
.sliding_list .item .num:before {
	content:"0"counter(sl_list);
	opacity: 0.2;
	text-shadow: 0px 5.333px 16px rgba(13, 77, 200, 0.70);
	color:#1B63EF;
	font:600 26px/ 1.7 Poppins;
	transition: all .3s ease-out;
}
.sliding_list .item.visible .num:before {
	opacity: 1;
}
.sliding_list .item .descr {
	width: 62%;
	font:400 24px/ 1.7 Poppins;
}
.sliding_list .item .descr.flexed {
	display: flex;
	align-items: center;
}
.sliding_list .item .descr .button {
	margin: 0 18px;
}
.sliding_list .item .descr a:not(.button) {
	color:#FFFF00;
	display: inline-block;
	position: relative;
}
.sliding_list .item .descr a:not(.button):before {
	content: "";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-out;
}
.sliding_list .item .descr a:not(.button):hover:before {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.about_next.typical {
	padding: 140px 0;
}
.about_next.typical .wrap h2 {
	width: 1021px;
	max-width: 100%;
	margin-bottom: 42px;
}
.strategy_cryteria .more {
	display: none;
}
.appear {
	will-change: transform, opacity;
	opacity: 0;
	transition: transform .5s ease-out,opacity .5s ease-out;
}
.appear.fade_up {
	transform: translate(0,30px);
}
.appear.delay-2 {
	transition-delay: .2s;
}
.appear.delay-4 {
	transition-delay: .4s;
}
.appear.delay-6 {
	transition-delay: .6s;
}
.appear.delay-8 {
	transition-delay: .8s;
}
.appear.delay-10 {
	transition-delay: 1s;
}
.appear.done {
	transform: translate(0,0);
	opacity: 1;
}
.cashdrop_double_column {
	padding: 100px 0;
}
section.cashdrop_double_column .wrap > h2 {
	font:500 48px / 1.3 Poppins;
	width: 930px;
	max-width: 100%;
	margin-bottom: 60px;
}
.cashdrop_double_column .items {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cashdrop_double_column .items .content + .quote {
	margin-left: 62px;
	max-width: calc(50% - 31px);
}
.cashdrop_double_column .items .quote {
	flex:1;
	border: 1px solid #454545;
	padding: 40px;
	background: #0E0E0E;
	border-radius: 12px;
	font:600 20px / 1.7 Poppins;
	color:#fff;;
}
.cashdrop_double_column .items .quote:before {
	content:"";
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 32px;
	background: url('../img/bxs_quote-alt-left.png') 50% / contain no-repeat;
}
.cashdrop_double_column .items .img {
	width: 42.3%;
	margin-right: 131px;
}
.cashdrop_double_column .items .img img {
	width: 100%;
	height: initial;
	object-fit: contain;
}
.cashdrop_double_column .items .content {
	flex:1;
	color:#B6B6B6;
}
.cashdrop_double_column .items .content p {
	font:400 20px / 1.7 Poppins;
}
.cashdrop_double_column .items .content p + p {
	margin-top: 12px;
}
.cashdrop_double_column .items .content a {
	font-weight: 500;
	color:#FFFF00;
	position: relative;
}
.cashdrop_double_column .items .content a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.cashdrop_double_column .items .content a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
.cashdrop_options {
	padding: 100px 0;
}
.cashdrop_options h2 {
	margin-bottom: 60px;
}
.cashdrop_options .subtitle {
	margin-bottom: 48px;
	font:600 24px / 1.5 Poppins;
}
.cashdrop_options .items {
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}
.cashdrop_options .items .item {
	background: #0E0E0E;
	border: 1px solid #434343;
	padding: 32px;
	border-radius: 16px;
	width: calc(100% / 3 - (24px * 2) / 3);
	text-align: center;
}
.cashdrop_options .items .item h3 {
	color:#fff;
	margin-bottom: 8px;
	font:700 28px / 1.3 Poppins;
}
.cashdrop_options .items .item p {
	color:#BCBCBC;
	font:400 16px / 1.7 Poppins;
}
.cashdrop_options .descr {
	width: 800px;
	max-width: 100%;
	color:#B6B6B6;
}
.cashdrop_options .descr p {
	font:400 20px / 1.7 Poppins;
}
.cashdrop_options .descr p + p {
	margin-top: 12px;
}
.cashdrop_options .descr a {
	font-weight: 500;
	color:#FFFF00;
	position: relative;
}
.cashdrop_options .descr a:after {
	content:"";
	left: 0;
	position: absolute;
	bottom: 2px;
	height: 1px;
	width: 100%;
	background: #FFFF00;
	opacity: 0;
	visibility: hidden;
	transition:all .3s ease-out;
}
.cashdrop_options .descr a:not(.no_hover):hover:after {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
@media screen and (max-height: 600px) and (min-width: 1025px) {

	.home_hero .wrap h1 {
		font-size: 66px;
	}
	.about_hero .wrap h1 {
		font-size: 56px;
	}
}
@media screen and (min-width:1200px) and (max-height:720px) {
	.cashdrop_hero.bame {
		padding-top: 160px;
	}
}
@media screen and (min-width: 820px) {

	.cashdrop_why_bother .items .item:not(.no_hover):hover .content p,.cashdrop_why_bother .items .item:not(.no_hover):hover .content h3 {
		color:#0E0E0E;
	}
	.cashdrop_why_bother .items .item:not(.no_hover):hover .bg {
		opacity: 1;
		visibility: visible;
		transform:translate(0,-138px);
	}
	.cashdrop_why_bother .items .item:not(.no_hover):hover .content {
		transform: rotate(5.874deg);
		background: #FFFFFF;
	}
	.header .wrap .menu > li:not(.active):not(.has_button):hover > a {
		color:#FFFFFF66;
	}
	.header .wrap .menu li:hover .submenu {
		opacity: 1;
		visibility: visible;
		transform:scale(1) translate(-50%,0);
		transition:transform .3s ease-out, opacity .3s ease-out .3s;
	}
	.header .wrap .menu .has_submenu:hover a svg {
		transform:rotate(180deg);
	}
}
@media screen and (max-width: 1440px) {
	.footer .main .info {
		width: 30%;
	}
	.footer_section .footer .wrap {
		max-width: 100%;
	}
	.footer .shadow {
		width: 100vw;
		height: calc(100% + 60px);
		left: calc((1280px - 100vw) / 2);
	}
	.appear_lines_list li {
		padding-left: 20%;
	}
	.home_next {
		margin-bottom: -40vh;
	}
	
	.about_step .wrap .content {
		max-width: 60%;
		width: 60%;
	}
	.about_step .wrap .media {
		max-width: 40%;
		width: 40%;
		padding-left: 40px;
	}
	.about_step:nth-child(2n) .wrap .media {
		padding-right: 40px;
	}
	.about_step .wrap .content p {
		max-width: 100%;
	}
	.about_out_wrap_investors .steps .paging {
		right: 20px;
	}
}
@media screen and (max-width: 1200px) {
	.strategy_toggler .contents .item li .line {
		width: 116px;
	}
	.sliding_list {
		width: 100%;
	}
	.sliding_list .line {
		height: calc(100% - 24px);
	}
	.footer .shadow {
		width: calc(100% + 40px);
		height: 1px;
		top: -32px;
		left: -20px;
	}
	.about_step .wrap {
		align-items: center;
	}
	.about_step .wrap {
		padding-right: 40px;
	}
	
	.appear_lines_list li {
		padding-left: 25%;
		width: 75%;
	}
	.cashdrop_expect .appear_lines_list li {
		max-width: 75%;
	}
	.cashdrop_how_apply .wrap .info {
		width: 60%;
	}
	.cashdrop_how_apply .wrap h2 {
		max-width: 77%;
	}
	.single_hero {
		padding-top: 120px;
	}
}
@media screen and (max-width: 1024px) {
	.footer .main {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.footer .main .footer_menu {
		flex:none;
		margin-left: 0;
	}
	.footer .main .info {
		width: 70%;
		margin-bottom: 50px;
	}
	.strategy_toggler .title {
		font-size: 40px;
	}
	.strategy_toggler .title .butts a {
		font-size: 24px;
	}
	.strategy_descr .double {
		flex-direction: column;
		align-items: flex-start;
	}
	.strategy_descr .double .descr {
		width: 100%;
		margin-top: 32px;
	}
	.main_blog_subscribe .wrap {
		flex-direction: column;
		align-items: center;
	}
	.blog_list .articles .column_1 .blog_item,.blog_list .articles .column_1 .blog_item:nth-of-type(2n),.blog_list .articles .column_2 .blog_item,.blog_list .articles .column_2 .blog_item:nth-of-type(2n) {
		width: 100%;
	}
	.blog_list .articles .column {
		width: calc(50% - 16px);
	}
	.blog_list .articles .blog_item + .blog_item {
		margin-top: 32px;
	}
	.main_blog_subscribe h2 {
		margin:  0 0 24px;
	}
	.family_hero .wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.family_hero .wrap .codes .info {
		margin-right: 0;
	}
	.family_hero .wrap .codes {
		width: 100%;
		padding-left: 0;
		padding-top: 48px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.family_hero .wrap .codes .info {
		margin-bottom: 16px;
	}
	.family_hero .wrap .codes blockquote + blockquote {
		margin: 0 0 16px;
	}
	.family_hero .bg img {
		object-position:60% 0;
	}
	.cashdrop_hero {
		padding: 165px 0 20px;
	}
	.event_hero .wrap h1,.family_hero .wrap h1 {
		font-size: 50px;
	}
	.family_hero .wrap .descr {
		font-size: 18px;
	}
	.family_hero .wrap blockquote {
		font-size: 16px;
	}
	.family_recommended .wrap .item h3 {
		font-size: 30px;
	}
	section.family_lists .wrap h2 {
		font-size: 40px;
	}
	.family_lists h3 {
		font-size: 30px;
		margin-bottom: 32px;
	}
	.event_why .double .thumb, .event_why .double .content {
		width: calc(50% - 30px);
	}
	.event_why .double .content li {
		font-size: 20px;
	}
	.contacts_section .media {
		width: 100%;
		overflow: hidden;
	}
	.about_hero .wrap h1 {
		font-size: 50px;
		width: 100%;
	}

	.about_step .wrap .media {
		max-width: 40%;
	}
	.about_step .wrap .media video {
		max-width: 100%;
	}
	.home_hero .media {
		width: 100%;
	}
	.header .wrap,section > .wrap,.footer .wrap {
		width: calc(100% - 30px);
	}
	.home_next .wrap h2 {
		font-size: 56px;
		line-height: 1.2em;
	}
	.home_about .wrap .media {
		padding-left: 30px;
	}
	.home_hero .wrap h1 {
		font-size: 70px;
	}
}
@media screen and (max-width: 922px) {

	.about_out_wrap_investors .steps .paging {
		display: none;
	}
	.home_next {
		margin-bottom: 0;
	}
	.home_who .numbers {
		width: 100%;
	}
	.about_step {
		padding: 60px 0;
	}
	.about_step .wrap {
		width: calc(100% - 30px);
	}
	.home_how {
		padding: 50px 0 30px;
	}
	.about_step:nth-child(2n) .wrap .media {
		padding-right: 50px;
	}
	.about_step .wrap .media {
		padding-left: 50px;
	}
	.about_next {
		padding: 60px 0;
	}
	section > .wrap h2 {
		font-size: 50px;
		line-height: 1.2;
	}
	.home_how h2 {
		margin-bottom: 30px;
	}
	.home_how .items .item:not(:last-child) {
		margin-right: 15px;
	}
	.home_how .items .item .title {
		font-size: 24px;
		line-height: 30px;
		margin-top: 22px;
		margin-bottom: 10px;
	}
	.home_how .items .item .descr {
		font-size: 18px;
	}
	.home_about .wrap .media video {
		max-width: 100%;
	}
	.footer .wrap {
		flex-direction: column;
	}
	.footer .wrap .copyright {
		margin:20px 0;
	}
	html {
		overflow-y: visible !important;
		height: initial !important;
	}
	.cashdrop_hero .wrap {
		padding-top: 130px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 820px) {
	.header .wrap .menu {
		min-width: 255px;
	}
	.header .wrap .menu li .submenu li a.sub-title > svg {
		display: block;
		margin-left: 8px;
		transition: all .3s ease-out;
	}
	.header .wrap .menu li .submenu li a.sub-title {
		padding-top: 4px;
		padding-bottom: 4px;
	}
	.header .wrap .menu li .submenu li a.sub-title.open > svg {
		transform: rotate(-180deg);
	}
	.header .wrap .menu li .submenu li .sub-submenu {
		display: none;
		padding-left: 20px;
	}
	.cashdrop_hero.typical_hero .wrap {
		padding: 0;
	}
	section.strategy_descr > .wrap h2 {
		font-size: 32px;
	}
	.strategy_scenarios .items .item {
		width: calc(50% - 16px);
		background: url(../img/strat_cards_mobile.jpg) 0 0 / 300% no-repeat;
	}
	.cashdrop_cards .items {
		flex-direction: column;
	}
	.sliding_list .item {
		align-items: flex-start;
	}
	.sliding_list .item .slide_wrap {
		order:1;
		flex:1;
	}
	.sliding_list .item h3 {
		width: 100%;
		text-align: left;
		font-size: 14px;
		margin-bottom: 12px;
	}
	.sliding_list .item .descr {
		width: 100%;
		font-size: 20px;
	}
	.sliding_list .line {
		top:0;
		left: 22px;
	}
	.sliding_list .line .scroll {
		max-height: 100%;
	}
	.sliding_list .item .num {
		margin: 0 32px 0 0;
		width: 44px;
		height: 44px;
	}
	.strategy_toggler .title {
		flex-direction: column;
		align-items: flex-start;
	}
	.strategy_toggler .title .butts {
		margin: 12px 0;
	}
	.strategy_how .items .item {
		padding: 16px 24px 24px;
	}
	.strategy_how .items .item .title h3 {
		font-size: 24px;
	}
	.strategy_how .items .item .title {
		margin-top: 14px;
	}
	.cashdrop_cards .items .item {
		width: 100%;
	}
	.cashdrop_cards .items .item + .item {
		margin-top: 16px;
	}
	.single_hero .wrap {
		flex-direction: column;
	}
	.blog_list .articles .column.column_2 {
		padding-top: 0;
	}
	.single_hero .wrap .content {
		width: 100%;
		margin: 0 0 24px;
	}
	.single_hero .wrap .thumb {
		width: 100%;
		margin: 0;
	}
	.single_hero .wrap .thumb img {
		width: auto;
		object-fit: contain;
	}
	.single_hero {
		padding-bottom: 40px;
	}
	.single_content {
		padding: 40px 0;
	}
	.single_content .wrap p {
		font-size: 16px;
	}
	.main_blog_hero {
		padding: 96px 0 40px;
	}
	.main_blog_subscribe {
		padding: 40px 0;
	}
	.main_blog_subscribe form {
		flex-direction: column;
		align-items: center;
		background: #00000000;
		border-radius: 0;
		width: 370px;
		max-width: 100%;
	}
	.main_blog_subscribe form .button {
		width: 100%;
	}
	.main_blog_subscribe form .wpcf7-form-control-wrap {
		background: #0E0E0E;
		border-radius: 44px;
		margin-bottom: 8px;
		width: 100%;
	}
	.cashdrop_how_apply .bg:before {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		height: 100%;
		width: 120%;
		background: linear-gradient(271deg, rgba(0, 0, 0, 0) 62.72%, #000000 85.81%), linear-gradient(352deg, #000000 5.9%, rgba(0, 0, 0, 0.84) 38.02%, rgba(0, 0, 0, 0) 61.01%);
	}
	.cashdrop_why_bother .title h2 {
		flex:1;
	}
	.about_hero .bg img {
		object-position: 50% 0;
	}
	.cashdrop_hero .bg img {
		object-position: 70% 0;
	}
	.family_hero .bg:after {
		content:"";
		position: absolute;
		left: 0;
		bottom: 0;
		height: 100%;
		width: 180%;
		background: linear-gradient(271deg, rgba(0, 0, 0, 0) 62.72%, #000000 85.81%),
		linear-gradient(352deg, #000000 5.9%, rgba(0, 0, 0, 0.84) 38.02%, rgba(0, 0, 0, 0) 61.01%);
	}
	.event_who_we ul {
		column-count: 1;
	}
	.about_hero {
		flex-direction: column;
		padding: 106px 0 30px;
		height: initial;
	}
	.about_out_wrap_investors .steps {
		margin-top: 0;
	}
	.about_step .wrap {
		padding-right: 0;	
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.about_step .wrap .media {
		padding-left: 0;
		max-width: 50%;
		width: 100%;
		margin-top: 30px;
	}
	.about_step .wrap .content {
		width: 100%;
		max-width: 100%;
	}
	.about_step:nth-child(2n) .wrap {
		flex-direction: column-reverse;
	}
	.family_bottom h2 br {
		display: block;
	}
	.family_lists .appear_lines_list li {
		padding-left: 100px;
		width: calc(100% - 100px);
	}
	.family_lists .appear_lines_list li .line {
		left: -170px;
	}
	.family_lists {
		margin-bottom: 90px;
	}
	.family_bottom .bg img {
		top:0;
	}
	.family_bottom {
		padding: 60px 0;
	}
	.vip_event_body .details {
		flex-direction: column;
	}
	.vip_event_body .details .item {
		width: 100%;
	}
	.vip_event_body .details .item + .item {
		margin-top: 16px;
	}
	.header .wrap .menu li .submenu {
		opacity: 1;
		visibility: visible;
		transform:translate(0,0);
		display: flex;
		position: relative;
		left: initial;
		top:initial;
		box-shadow: none;
		background: #00000000;
		border-radius: 0;
		margin-top: 4px;
		max-height:0;
		flex-direction: column;
		padding: 0;
	}
	.header .wrap .menu li .submenu:after {
		width: 1px;
	}
	.header .wrap .menu .has_submenu > a:not(.active) svg {
		filter:invert(1);
	}
	.header .wrap .menu li .submenu li a {
		text-align: center;
		color:#fff;
		padding: 4px 14px;
	}
	.header .wrap .menu .has_submenu a.op svg {
		transform:rotate(180deg);
	}
	.header .wrap .menu li:not(.mobile_notice) {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.header .wrap .menu li .submenu.active {
		max-height:initial;
		transform: none;
	}
	.header .wrap .menu li .submenu > li + li:before {
		display: none;
	}
	.header .wrap .menu li .submenu li a:before {
		border-radius:20px;
	}
	.family_recommended .wrap {
		flex-direction: column;
	}
	.family_recommended .wrap .item {
		width: 100%;
	}
	.family_recommended .wrap .item + .item {
		margin: 16px 0 0;
	}
	.event_why,.event_connect,.event_who,.event_who_we {
		margin: 120px 0;
	}
	.event_why .double {
		flex-direction: column;
	}
	.event_why .double .thumb, .event_why .double .content {
		width: 100%;
	}
	.event_why .double .content {
		margin-bottom: 32px;
	}
	.event_why.rev .double {
		flex-direction: column-reverse;
	}
	.event_connect .steps {
		flex-direction: column;
	}
	.event_connect .steps .item {
		width: 100%;
	}
	.event_connect .steps .item + .item {
		margin-top: 40px;
	}
	.clima_about:not(.column_1) ul {
		column-count: 1;
	}
	.cashdrop_hero h1 {
		font-size: 50px;
	}

	.cashdrop_who .wrap {
		flex-direction: column-reverse;
		padding: 32px 24px;
	}
	.cashdrop_about .descr {
		column-count: 1;
	}
	.cashdrop_who .wrap > div {
		width: 100%;
	}
	.cashdrop_why_bother .items {
		flex-wrap: wrap;
	}
	.cashdrop_why_bother .items .item {
		width: calc(50% - 32px);
	}
	.footer .main {
		flex-wrap: wrap;
	}
	.footer .main .info {
		width: 100%;
		margin-bottom: 30px;
	}
	.cashdrop_who .wrap .thumbs {
		margin-top: 30px;
	}
	.contacts_section .items {
		flex-direction: column;
	}
	.contacts_section .items .item {
		width: 100%;
	}
	.contacts_section .items .item:not(:last-child) {
		margin: 0 0 16px;
	}
	.about_step .wrap .content ul li {
		white-space: normal;
	}
	.home_hero .wrap h1 {
		font-size: 60px;
	}
	.home_who .numbers .item {
		width: 100%;
		margin-bottom: 30px;
	}
	.about_next .wrap .info {
		margin-top: 30px;
	}
	.about_next .wrap {
		align-items: initial;
	}
	.home_about .wrap {
		flex-direction: column;
	}
	.home_how .items {
		flex-direction: column;
	}
	.home_how .items .item:not(:last-child) {
		margin-bottom: 15px;
	}
	.home_how .items .item {
		width: 100%;
	}
	.home_how .items .icon {
		align-self: flex-start;
	}
	.home_about .wrap .info {
		width: 100%;
	}
	.home_about {
		padding: 40px 0;
	}
	.home_about .wrap .media {
		padding-left: 0;
		padding-top: 30px;
		width: 100%;
	}
	.invest_models .content .sides,.invest_testimonials .testimonials {
		flex-direction: column;
	}
	.invest_models .content .sides .side,.invest_testimonials .testimonials .item {
		width: 100%;
		background: #0E0E0E;
		border-radius: 12px;
	}
	.invest_models .content .sides .side:first-child,.invest_testimonials .testimonials .item:first-child {
		margin-bottom: 16px;
	}
	.header .nav-toggle {
		display: flex;
	}
	.header .wrap .menu {
		display: flex;
		flex-direction: column;
		position: fixed;
		right: 0;
		top: 0;
		width: initial;
		max-width: calc(100vw - 62px);
		height: 100vh;
		background: #ffffff;
		padding: 110px 20px 20px;
		align-items: flex-start;
		opacity: 0;
		visibility: hidden;
		transform: translate(30px,0);
		transition: all .3s ease-out;
		z-index: 10;
	}
	.header .wrap .menu li a:not(.button):not(.active) {
		color:#010101;
	}
	.header .wrap .menu.active {
		opacity: 1;
		visibility: visible;
		transform: translate(0,0);
	}
	.header .wrap .logo img {
		width: 39px;
		height: 42px;
		object-fit: cover;
		object-position: left top;
	}
	.header .wrap .menu:before {
		display: none;
	}
	.header .wrap .menu li a:not(.button) {
		padding: 4px 16px;
	}
	.header .wrap .menu > li + li {
		margin: 8px 0 0;
	}
	.cashdrop_why_doing .double {
		flex-direction: column;
	}
	.cashdrop_why_doing .double p {
		width: 100%;
		margin-bottom: 20px;
	}
	.header .wrap .menu li a.button {
		margin: 20px 0 0;
	}
}
@media screen and (max-width: 600px) {
	.footer .main .nav {
		margin-left: 0;
		margin-top: 30px;
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.cashdrop_double_column .items .content + .quote {
		width: 100%;
		max-width: 100%;
		margin: 12px 0 0;
	}
	.cashdrop_double_column .items .quote {
		padding: 16px;
		font-size: 16px;
	}
	.cashdrop_double_column .items .quote:before {
		width: 40px;
		height: 40px;
		margin-bottom: 16px;
	}
	.footer .main .footer_menu >ul {
		flex-direction: column;
	}
	.footer .main .footer_menu >ul h4 {
		font-size: 12px;
	}
	.footer .main .footer_menu > ul > li + li {
		margin: 16px 0 0 0;
	}
	.header .wrap .menu {
		min-width: 100vw;
	}
	.cashdrop_double_column .items {
		flex-direction: column;
	}
	.cashdrop_double_column {
		padding: 60px 0 30px;
	}
	.cashdrop_double_column .items .img {
		width: 100%;
		margin: 0 0 32px;
	}
	.cashdrop_double_column .items .content p {
		font-size: 16px;
	}
	.cashdrop_who .wrap .content {
		padding: 0;
	}
	.cashdrop_options .items {
		flex-direction: column;
	}
	.cashdrop_options .items .item {
		width: 100%;
	}
	.cashdrop_options .items .item + .item {
		margin-top: 24px;
	}
	.cashdrop_options .items .item h3 {
		font-size: 18px;
	}
	.cashdrop_options .items .item p {
		font-size: 14px;
	}
	.cashdrop_options .descr p {
		font-size: 16px;
	}
	.cashdrop_options {
		padding: 30px 0 60px;
	}
	section.cashdrop_double_column > .wrap h2 {
		font-size: 24px;
	}
	.strategy_how .descr {
		margin-top: -16px;
		margin-bottom: 32px;
	}
	.strategy_how .items .item {
		width: 100%;
	}
	.strategy_how .items .item + .item {
		margin-top: 16px;
	}
	.strategy_how .items .item .icon {
		width: 48px;
		height: 48px;
	}
	.strategy_how .items .item .title h3 {
		font-size: 20px;
	}
	.strategy_how .items .item .title span {
		font-size: 14px;
	}
	.strategy_process {
		padding: 30px 0 60px;
	}
	.sliding_list .item .num:before {
		font-size: 16px;
	}
	.sliding_list .item .descr {
		font-size: 16px;
	}
	.sliding_list .item + .item {
		margin-top: 24px;
	}
	.sliding_list .item .descr.flexed {
		flex-direction: column;
		align-items: flex-start;
	}
	.sliding_list .item .descr .button {
		margin: 8px 0 0;
	}
	.strategy_how .descr p {
		font-size: 16px;
	}
	.strategy_how .items {
		flex-direction: column;
	}
	.strategy_cryteria .items li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 12px;
		padding: 12px 24px;
		font-size: 16px;
	}
	.strategy_cryteria .items li.overflow {
		display: none;
	}
	.strategy_cryteria .items li.overflow.show {
		display: flex;
	}
	.strategy_how {
		padding: 30px 0;
	}
	.strategy_how h2 {
		margin-bottom: 16px;
	}
	.strategy_cryteria .more {
		display: inline-block;
		margin-top: 12px;
	}
	.strategy_cryteria .more .l {
		display: none;
	}
	.strategy_cryteria .more.active .l {
		display: inline-block;
	}
	.strategy_cryteria .more.active .m {
		display: none;
	}
	.strategy_cryteria .items li.overflow.shown {
		display: flex;
	}
	.strategy_toggler .contents .item li .text {
		font-size: 16px;
	}
	.strategy_toggler .contents .item li .line {
		width: 35px;
		right: calc(100%);
		top: 11px;
	}
	.strategy_toggler .contents .item li + li {
		margin-top: 16px;
	}
	.strategy_cryteria .items li:before {
		width: 11.64px;
		height: 11.64px;
	}
	.strategy_cryteria {
		padding: 30px 0;
	}
	.strategy_toggler .contents .item.ready li .line {
		right: calc(100% - 15px);
	}
	.strategy_toggler .contents .item li .line:after {
		border:2px solid #0E0E0E;
	}
	.strategy_scenarios {
		padding: 30px 0 6px;
	}
	.strategy_scenarios .items .item {
		width: 100%;
		margin-bottom: 24px;
		padding: 24px 24px 32px;
	}
	.strategy_scenarios .items .item .num {
		width: 48px;
		height: 48px;
	}
	.strategy_scenarios .items .item .title {
		font-size: 20px;
		margin-top: 32px;
	}
	.strategy_toggler {
		padding: 30px 0;
	}
	.strategy_toggler .title {
		font-size: 28px;
		margin-bottom: 32px;
	}
	.strategy_toggler .title .butts a {
		font-size: 16px;
	}
	.strategy_toggler .contents .item li {
		padding-left: 30px;
	}
	.pre_header .close {
		display: none;
	}
	.pre_header .wrap a {
		font-size: 12px;
		text-align: left;
	}
	.cashdrop_hero .wrap {
		padding-top: 0;
	}
	.scroll_down_modern {
		position: relative;
		margin-top: 64px;
	}
	.cashdrop_hero.typical_hero .bg img {
		object-position: 90% 0;
	}
	.cashdrop_hero.typical_hero .bg:after {
		content: "";
		position: absolute;
		left: -20%;
		top: 0;
		width: 150%;
		height: 100%;
		background: linear-gradient(255deg, rgba(0, 0, 0, 0) 42.72%, #000000 65.81%), linear-gradient(350.58deg, #000000 3.48%, rgba(0, 0, 0, 0.84) 17.96%, rgba(0, 0, 0, 0) 29.31%), linear-gradient(88deg, #000000 5.9%, rgba(0, 0, 0, 0.84) 48.02%, rgba(0, 0, 0, 0) 81.01%);
	}
	.cashdrop_hero.typical_hero .descr p {
		font-size: 16px;
	}
	section.strategy_descr > .wrap h2 {
		font-size: 24px;
		line-height: 1.5;
	}
	.strategy_descr .double .icons img {
		width: 40px;
		height: 40px;
	}
	.strategy_descr .double .icons img + img {
		margin-left: 24px;
	}
	.strategy_descr .double .descr p {
		font-size: 16px;
	}
	.strategy_descr {
		padding: 60px 0 30px;
	}
	.cashdrop_cards {
		padding: 30px 0;
	}
	.cashdrop_cards .items .item {
		padding: 16px;
	}
	.cashdrop_cards .items .item .sub {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.cashdrop_cards .items .item h3 {
		font-size: 28px;
		margin-bottom: 24px;
	}
	.cashdrop_cards .items .item .content p {
		font-size: 16px;
	}
	.cashdrop_cards .items .item .content {
		margin-bottom: 40px;
	}
	.blog_list .articles .blog_item .actions .categories:after {
		width: 40px;
	}
	.blog_list .articles .blog_item .actions .categories {
		width: calc(100% - 38px);
	}
	.single_hero {
		padding-top: 106px;
	}
	.single_hero .wrap .content .breadcrumbs .breadcrumbs__link, .single_hero .wrap .content .breadcrumbs .breadcrumbs__current {
		font-size: 12px;
	}
	.single_hero .wrap .content .breadcrumbs .breadcrumbs__separator {
		margin: 0 8px;
	}
	.single_hero .wrap .content h1 {
		font-size: 36px;
	}
	.single_hero .wrap .content .excerpt {
		font-size: 16px;
	}
	.single_content .wrap h2 {
		margin: 40px 0 24px;
		font-size: 28px;
	}
	.single_content .wrap .wp-block-group {
		padding: 16px;
	}
	.single_content .wrap .wp-block-group h3 {
		font-size: 16px;
		margin-bottom: 16px;
	}
	.single_content .wrap ol li {
		font-size: 16px;
		padding-left: 34px;
	}
	.single_content .wrap ol li + li {
		margin-top: 8px;
	}
	.single_content .wrap ol li:before {
		width: 12px;
		height: 12px;
	}
	.single_content .wrap ul li {
		font-size: 16px;
		padding-left: 36px;
	}
	.single_content .wrap ul li:before {
		width: 20px;
		height: 20px;
	}
	.single_content .wrap ol, .single_content .wrap ul {
		margin: 16px 0;
	}
	.single_content .wrap .cta_block {
		padding: 24px;
		margin: 40px 0;
	}
	.single_content .wrap .cta_block h2 {
		font-size: 20px;
	}
	.single_content .wrap .meta {
		margin-top: 40px;
		font-size: 14px;
	}
	.main_blog_hero h1 {
		font-size: 32px;
	}
	.main_blog_subscribe .wrap > h2 {
		font-size: 32px;
		margin-bottom: 24px;
	}
	.main_blog_subscribe form .wpcf7-form-control-wrap input,.main_blog_subscribe form .wpcf7-form-control-wrap .helper {
		font-size: 16px;
	}
	.main_blog_subscribe form .wpcf7-form-control-wrap .helper {
		left: 24px;
	}
	.main_blog_subscribe form .button.primary.input input {
		padding: 12px 24px;
		font-size: 16px;
		line-height: 1.5;
	}
	.blog_list {
		padding: 30px 0 60px;
	}
	.blog_list .articles .blog_item {
		padding: 8px;
		min-height: initial;
	}
	.blog_list .articles .blog_item .thumb {
		height: 45vw;
	}
	.blog_list .articles .blog_item .title h4 {
		font-size: 18px;
	}
	.blog_list .articles {
		flex-direction: column;
	}
	.blog_list .articles .blog_item .content {

	}
	.main_blog_subscribe .wpcf7 {
		width: 100%;
	}
	.blog_list .articles .blog_item .actions .categories .item {
		padding: 8.5px 16px;
		font-size: 14px;
	}
	.blog_list .articles .blog_item .actions .button {
		padding: 8px 10px;
	}
	.blog_list .articles .blog_item .actions .button span {
		display: none;
	}
	.blog_list .articles .blog_item .actions .button:before {
		content:"";
		display: block;
		width: 10px;
		height: 24px;
		background: url(../img/blog_arrow_right.svg) 50% / contain no-repeat;
	}
	.main_blog_subscribe form .wpcf7-form-control-wrap input {
		padding: 12px 24px;
	}
	.cashdrop_hero .bg:after {
		z-index: 1;
	}
	.clima_about + .clima_about {
		padding-top: 60px;
	}
	.clima_about h3 {
		font-size: 20px;
		margin-bottom: 32px;
	}
	.cashdrop_why_bother .title {
		z-index: 2;
		position: relative;
	}
	.cashdrop_quilifies .list li:not(.checked):hover {
		background: #0E0E0E;
		color:#fff;
	}
	.family_hero {
		padding: 0;
	}
	.error_section .wrap h1 {
		font-size: 16px;
		margin: 16px 0 32px;
	}
	.contacts_section {
		padding: 106px 0 40px;
		margin-bottom: 50px;
	}
	.contacts_section h1 {
		font-size: 36px;
		line-height: 1.1;
	}
	.contacts_section .items .item {
		padding: 16px;
	}
	.contacts_section .items .item .button span {
		display: none;
	}
	.about_next {
		padding: 140px 0;
		margin-bottom: 50px;
	}
	.about_step .wrap .content p + p {
		margin-top: 12px;
	}
	.about_step {
		padding: 30px 0;
	}
	.about_hero {
		height: initial;
		padding: 105px 0 30px;
		flex-direction: column;
	}
	.about_step .wrap .content strong {
		font-size: 16px;
		font-weight: 500;
	}
	.about_step .wrap .media {
		margin-top: 40px;
	}
	.cashdrop_hero .bg {
		top:55px;
	}
	.cashdrop_hero {
		flex-direction: column;
		min-height:initial;
	}
	.cashdrop_hero .bg img {
		position: relative;
		object-position:70% 0;
		z-index: 1;
	}
	.cashdrop_hero.clima .bg img {
		object-position:50% 0;
	}
	.cashdrop_hero.clima .bg:before {
		content:"";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(358deg, #000000 3.48%, rgba(0, 0, 0, 0.84) 17.96%, rgba(0, 0, 0, 0) 29.31%);

	}	
	.cashdrop_quilifies {
		padding: 30px 0;
	}
	.home_hero .video {
		top:55px;
	}
	.home_hero {
		flex-direction: column;
	}
	.home_hero .wrap {
		margin-bottom: 40px;
	}
	.home_hero .video video {
		right: 0;
	}
	.home_hero .video:before {
		background: linear-gradient(358deg, #000 5.9%, rgba(0, 0, 0, 0.84) 18%, rgba(0, 0, 0, 0.00) 50.01%), linear-gradient(267deg, rgba(0, 0, 0, 0.00) 44.72%, #000 84.67%);
	}
	.header .wrap .menu .has_button {
		flex:1;
		justify-content: flex-end;
		margin-bottom: 16px;
	}
	.family_bottom .buttons {
		justify-content: center;
		display: flex;
	}
	.family_bottom .uptitle {
		font-size: 14px;
	}
	.family_bottom h2 {
		font-size: 24px !important;
		line-height: 36px !important;
	}
	.clima_about ul {
		column-count: 1;
	}
	
	.event_hero {
		min-height:initial;
		padding: 107px 0 30px;
		flex-direction: column;
	}
	.vip_hero {
		padding: 106px 0 30px;
		flex-direction: column;
	}
	.vip_hero .wrap h1 {
		font-size: 36px;
	}
	.vip_hero .wrap .descr {
		font-size: 16px;
		margin-bottom: 48px;
	}
	.vip_hero .bg img {
		object-position: 0 0;
	}
	.vip_event_body {
		padding-top: 30px;
	}
	.vip_event_body .descr {
		font-size: 18px;
		margin-bottom: 40px;
	}
	section.vip_event_body > .wrap h2 {
		font-size: 24px;
		margin-bottom: 40px;
	}
	.vip_event_body .details {
		margin-bottom: 40px;
	}
	.vip_event_body .details .item {
		padding: 24px 16px;
	}
	.vip_event_body .details .item h3 {
		font-size: 20px;
	}
	.vip_event_body .details .item p {
		font-size: 14px;
	}
	.vip_event_body .buttons {
		margin-bottom: 90px;
	}
	.vip_event_body .buttons .button {
		padding: 12px 24px;
	}
	.header .wrap .logo img {
		width: initial;
		height: 28px;
	}
	.clima_areas ul {
		column-count: 1;
	}
	.clima_areas ul li {
		font-size: 18px;
	}
	.clima_areas ul li + li {
		margin-top: 16px;
	}
	.clima_areas, .clima_about {
		padding: 30px 0;
	}
	.clima_about li {
		font-size: 16px;
	}
	.cashdrop_who .wrap p {
		padding: 0;
		font-size: 16px;
	}
	.cashdrop_about .notice {
		padding: 16px;
		font-size: 16px;
	}
	.mm_bg {
		display: block;
		position: fixed;
		z-index: 9;
		cursor: pointer;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		opacity: 0;
		visibility: hidden;
		transition:all .3s ease-out;
		background: #00000000;
	}
	.mm_bg.active {
		opacity: 1;
		visibility: visible;
	}
	.header .wrap .menu {
		width: 100%;
		padding: 96px 20px 16px;
	}
	.family_hero .wrap {
		padding: 80px 0 0;
	}
	
	.family_hero .wrap h1 {
		font-size: 36px;
	}
	.family_hero .wrap .descr {
		font-size: 16px;
	}
	.family_hero .wrap blockquote {
		font-size: 16px;
		margin-bottom: 40px;
	}
	.family_hero .wrap .buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	.family_hero .wrap .buttons .button + .button {
		margin: 16px 0 0;
	}
	.event_hero .bg {
		top:55px;
		overflow: hidden;
	}
	.event_hero .bg:before {
		content:"";
		position: absolute;
		width: 180%;
		right: -48px;
		top:0;
		height: 100%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.72%, #000000 75.81%),
		linear-gradient(90deg, #000000 5.9%, rgba(0, 0, 0, 0.84) 38.02%, rgba(0, 0, 0, 0) 71.01%);
	}
	.event_hero .bg img {
		object-fit:cover;
	}
	.family_hero .bg {
		top:55px;
		overflow: hidden;
	}
	.family_hero .bg img {
		top: -1px;
		position: relative;
		object-position: 80% 0;
	}
	.family_hero {
		flex-direction: column;
	}
	
	.family_recommended {
		margin: 40px 0 80px;
	}
	.family_recommended .wrap .item {
		padding: 16px;
	}
	.family_recommended .wrap .item h3 {
		font-weight: 500;
		font-size: 28px;
		margin-bottom: 8px;
	}
	.family_recommended .wrap .item .descr p {
		font-size: 16px;
	}
	.family_recommended .wrap .item .descr {
		margin-bottom: 40px;
	}
	section.family_lists .wrap h2 {
		font-size: 32px;
		text-align: left;
	}
	.family_lists h3 {
		margin: 40px 0 24px;
		font-size: 20px;
		text-align: left;
	}
	.family_lists .appear_lines_list li {
		padding-left: 27px;
		margin-bottom: 16px;
		width: calc(100% - 30px);
	}
	.family_lists .appear_lines_list li .line {
		left: -25px;
	}
	.family_lists .buttons {
		margin-top: 16px;
		justify-content: flex-start;
	}
	.event_hero .wrap h1 {
		max-width: 100%;
		font-size: 36px;
	}
	.event_hero .wrap .info {
		font-size: 16px;
	}
	.event_why h2 {
		max-width: 100%;
	}
	.event_why, .event_connect, .event_who, .event_who_we {
		margin: 60px 0;
	}
	.event_why h2 {
		margin-bottom: 32px;
	}
	.event_why .double .content li {
		font-size: 16px;
	}
	.event_why .double .content li + li {
		margin-top: 16px;
	}
	.event_connect .descr {
		margin: 32px 0;
		font-size: 18px;
	}
	.event_connect .steps .item:before {
		height: 66px;
		background-size: 70px;
	}
	.event_connect .steps .item:nth-of-type(2):before {
		background-size: 85px;
	}
	.event_connect .steps .item:nth-of-type(3):before {
		background-size: 85px;
	}
	.event_connect .steps .item .content {
		text-align: center;
		font-size: 16px;
	}
	.event_connect .notice p {
		text-align: left;
	}
	.event_connect .steps .item {
		text-align: left;
	}
	.event_connect .steps .item .num {
		font-size: 56px;
	}
	.event_connect .steps {
		margin-bottom: 32px;
	}
	.event_connect .notice, .event_who .notice {
		padding: 16px;
	}
	.event_connect .notice p, .event_who .notice p {
		font-size: 16px;
	}
	.event_who h2 {
		margin-bottom: 32px;
	}
	.event_who .persons .item .name {
		font-size: 20px;
	}
	.event_who .persons .item .thumb {
		width: 200px;
	}
	.event_who .notice {
		padding: 0;
	}
	.event_who .persons {
		flex-direction: column;
		margin-bottom: 32px;
	}
	.event_who .persons .item {
		width: 100%;
	}
	.event_who .persons .item + .item {
		margin-top: 32px;
	}
	.event_who_we h2 {
		margin-bottom: 32px;
	}
	.event_who_we li {
		font-size: 16px;
	}
	.event_gallery .wrap {
		flex-direction: column;
	}
	.event_gallery .wrap img:nth-of-type(1),.event_gallery .wrap img:nth-of-type(2) {
		width: 100%;
	}
	.event_gallery .wrap img + img {
		margin: 24px 0 0 0;
	}
	.cashdrop_why_bother .items .item .content {
		min-height:initial;
		padding: 30px 24px 40px;
	}
	.cashdrop_why_bother .items .item .content h3 {
		margin-top: 0;
		margin-bottom: 24px;
		font-size: 20px;
	}
	.cashdrop_why_bother .items .item:nth-of-type(2n) {
		margin-top: 0;
	}
	.cashdrop_why_bother .items .item + .item {
		margin-top: 16px;
	}
	.cashdrop_why_bother .items .item .content p {
		font-size: 14px;
	}
	.cashdrop_how_apply {
		margin-top: 34px;
		padding-top: 0;
	}
	.cashdrop_how_apply .wrap h2 {
		max-width: 100%;
		margin-bottom: 16px;
	}
	
	.cashdrop_how_apply .wrap .info {
		width: 100%;
		margin-top: 280px;
	}
	.cashdrop_how_apply .wrap .info h3 {
		font-size: 20px;
		margin-bottom: 24px;
	}
	.cashdrop_how_apply .wrap .info p {
		max-width: 100%;
		font-size: 14px;
	}
	.cashdrop_how_apply .bg {
		width: 100%;
		top: 50%;
		bottom: initial;
		height: 40%;
		transform: translate(0,-50%);
	}
	.cashdrop_how_apply.without_date {
		display: flex;
		flex-direction: column-reverse;
	}
	.cashdrop_how_apply.without_date .bg {
		position: relative;
		top: 0;
		transform: none;
		margin-top: 24px;
	}
	.footer .footer_top {
		margin-bottom: 32px;
	}
	.footer .main .info h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}
	.footer .main .info a {
		font-size: 16px;
	}
	.footer .main .info {
		margin-bottom: 60px;
	}
	.footer .main .nav {
		flex-wrap: wrap;
	}
	.footer .main .nav > li {
		width: 100%;
	}
	.footer .main .nav > li + li {
		margin: 32px 0 0;
	}
	.footer .main .nav > li:last-child {
		margin-top: 32px;
	}
	.footer .main {
		padding-bottom: 56px;
	}
	.footer .wrap .copyright {
		margin: 0;
		font-size: 10px;
	}
	.cashdrop_how_apply .wrap .content p {
		font-size: 18px;
		margin: 0 0 24px;
		max-width: 100%;
	}
	.cashdrop_quilifies h2 {
		margin-bottom: 32px;
	}
	.cashdrop_quilifies .list li {
		padding: 16px 24px 16px 52px;
		font-size: 14px;
		margin: 0 12px 12px 0;
	}
	.cashdrop_quilifies .list li:after {
		width: 18px;
		height: 14px;
		left: 24px;
	}
	.cashdrop_quilifies .list li:not(.checked):hover:after {
		filter: none;
	}
	.cashdrop_type {
		padding: 68px 0 40px;
	}
	.cashdrop_type h2 {
		margin-bottom: 32px;
	}
	.cashdrop_hero h1 {
		font-size: 36px;
	}
	.cashdrop_hero .descr {
		font-size: 16px;
		margin-bottom: 48px;
	}
	.cashdrop_hero .buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	.cashdrop_hero .wrap {
		padding-bottom: 40px;
	}
	.cashdrop_hero .buttons .button + .button {
		margin: 16px 0 0;
	}
	.cashdrop_type .descr {
		padding-left: 36px;
		width: calc(100% - 36px);
		max-width: calc(100% - 36px);
	}
	.cashdrop_type .descr:before {
		left: 12px;
	}
	.cashdrop_type .descr p {
		font-size: 18px;
	}
	.cashdrop_why_doing {
		padding: 40px 0;
	}
	.cashdrop_why_doing h2 {
		margin-bottom: 32px;
	}
	.cashdrop_why_doing .double p {
		font-size: 16px;
	}
	.cashdrop_who {
		padding: 40px 0;
	}
	.cashdrop_who .wrap .thumbs {
		display: none;
	}
	.cashdrop_who .wrap {
		padding: 32px 24px 40px;
		border-color:#B6B6B6;
	}
	.cashdrop_about {
		padding: 40px 0;
	}
	.cashdrop_about h2 {
		margin-bottom: 32px;
	}
	.cashdrop_about .descr p {
		font-size: 16px;
	}
	.cashdrop_expect {
		padding: 30px 0;
	}
	.cashdrop_expect h2 {
		margin-bottom: 32px;
	}
	.cashdrop_expect .appear_lines_list li .line {
		left: -10px;
	}
	.cashdrop_why_bother {
		padding: 30px 0;
	}
	.cashdrop_why_bother .title {
		flex-direction: column;
		align-items: flex-start;
	}
	.cashdrop_why_bother .title h2 {
		margin-bottom: 24px;
	}
	.cashdrop_why_bother .title {
		margin-bottom: 32px;
	}
	.cashdrop_why_bother .items .item {
		width: 100%;
	}
	.cashdrop_why_bother .items .item .shadow {
		display: none;
	}
	.button {
		font-size: 16px;
		padding: 12px 24px;
		line-height: 24px;
	}
	.button.secondary {
		padding: 12px 24px;
	}
	.home_hero {
		padding-top: 110px;
	}
	.about_out_wrap_investors .about_hero .wrap h1 br {
		display: none;
	}
	.about_out_wrap_investors .about_step {
		padding: 30px 0;
	}
	.about_hero.hero_investors .media {
		bottom: 50%;
	}
	.about_out_wrap_investors .about_next .wrap h2 {
		margin-bottom: 42px;
	}
	.invest_testimonials .testimonials .item {
		padding: 16px;
	}
	.invest_testimonials .testimonials .item .icon {
		width: 32px;
		height: 32px;
		margin-bottom: 16px;
	}
	.invest_testimonials .testimonials .item .text {
		font-size: 18px;
		line-height: 27px;
	}
	.invest_testimonials .testimonials .item .author {
		font-size: 16px;
		line-height: 27px;
	}
	.invest_models .content .sides .side:before {
		height: 84px;
		background-size: 74px;
	}
	.invest_models .content .sides .side:nth-of-type(2):before {
		background-size: 84px;
	}
	.about_out_wrap_investors .about_next .wrap {
		padding: 0;
	}
	.invest_models .content .sides .side:first-child {
		margin-bottom: 32px;
	}
	.about_step .wrap .content h2 {
		margin-bottom: 32px;
	}
	.invest_models .content .sides .side h3 {
		font-size: 20px;
	}
	.contacts_section .media {
		bottom: 10vh;
	}
	.contacts_section .descr {
		font-size: 16px;
		line-height: 27px;
	}
	.contacts_section .items .item h2 {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 24px;
	}
	.contacts_section .items {
		margin-top: 32px;
	}
	.about_step .wrap .content {
		width: 100%;
		max-width: 100%;
	}
	
	.about_hero .bg {
		top:55px;
		bottom: initial;
		height: 75%;
	}
	.about_hero .bg:before {
		content:"";
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(272deg, rgba(0, 0, 0, 0) 92.72%, #000000 95.81%),
		linear-gradient(358deg, #000000 3.48%, rgba(0, 0, 0, 0.84) 17.96%, rgba(0, 0, 0, 0) 29.31%),
		linear-gradient(85deg, #000000 5.9%, rgba(0, 0, 0, 0.84) 8.02%, rgba(0, 0, 0, 0) 31.01%);
	}
	.about_hero .bg img {
		object-position:70% 0;
	}
	.about_hero.hero_investors .bg img {
		object-position:50% 0;
	}
	.about_hero .media {
		left: 50%;
		transform: translate(-30%,40%);
		bottom: 40%;
		width: 200%;
	}
	.about_step .wrap,.about_step:nth-child(2n) .wrap {
		flex-direction: column-reverse;
	}
	.about_step .wrap .content {
		margin-bottom: 32px;
	}
	.about_step .wrap .media {
		width: 200px;
		height: 200px;
		padding: 0 !important;
		max-width: 100%;
	}
	.about_step h2 {
		font-weight: 500 !important;
	}
	.about_step .wrap .content p {
		font-size: 16px;
		line-height: 27px;
	}
	.about_next .wrap h2 {
		font-size: 28px;
	}
	.about_next .wrap .info {
		margin-top: 0;
	}
	.about_next .wrap .info p {
		font-size: 18px;
	}
	
	.about_step .wrap .content ul {
		column-count: 1;
	}
	.about_step .wrap .media video {
		width: 100%;
		height: 100%;
	}
	
	.header {
		padding: 12px 0;
	}
	.home_hero .wrap h1 {
		font-size: 36px;
	}
	.home_who h2 {
		margin-bottom: 32px;
	}
	.home_who .numbers .item {
		margin-bottom: 32px;
	}
	.home_who .numbers .item .num {
		font-size: 28px;
	}
	.home_who .numbers .item .descr {
		font-size: 18px;
		line-height: 1.5;
	}
	.appear_lines_list li p {
		font-size: 16px;
		line-height: 27px;
	}
	.home_hero .wrap p {
		font-size: 16px;
		line-height: 27px;
		color:#fff;
	}
	.home_how {
		padding-top: 60px;
	}
	.home_hero {
		min-height:initial;
	}
	.about_hero .wrap h1 {
		font-size: 36px;
	}
	section > .wrap h2 {
		font-size: 28px;
		margin-bottom: 32px;
	}
	.home_how .items .item .thumb {
		height: 240px;
	}
	.home_how .items .item .content {
		padding: 0 16px 24px;
	}
	.home_how .items .item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 16px;
	}
	.home_how .items .item .subtitle {
		font-size: 14px;
		line-height: 21px;
	}
	.home_how .items .item .title {
		font-size: 18px;
		margin-top: 0;
		margin-bottom: 16px;
	}
	.home_how .items .item .descr p {
		font-size: 16px;
	}
	.home_how .items .item .descr p + p {
		margin-top: 8px;
	}
	.home_how .items .item:before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.48%, #000000 39.35%, #000000 100%);
	}
	.home_how .items .item .descr {
		margin-bottom: 16px;
	}
	.home_how .items .icon {
		align-self: center;
		margin-top: 16px;
	}
	.home_who {
		padding-top: 60px;
		padding-bottom: 20px;
	}
	.appear_lines_list li {
		padding-left: 42px;
	}
	.appear_lines_list li .line {
		left: -15px;
		width: 30px;
	}
	.home_about {
		padding-top: 80px;
		padding-bottom: 130px;
	}
	.header .wrap, section > .wrap, .footer .wrap {
		width: calc(100% - 40px);
	}
	.home_about .wrap .media {
		display: none;
	}
	.home_next .wrap h2 {
		font-size: 28px;
		margin-bottom: 42px;
	}
	.home_next {
		padding: 170px 0;
		margin-bottom: 48px;
	}
	.home_next .wrap .info {
		margin-top: 0;
		font-size: 16px;
		line-height: 27px;
	}
	.home_next .wrap .info .button span,.home_hero .wrap .button span {
		display: none;
	}
	.footer .wrap {
		align-items: flex-start;
	}
	.footer .wrap .copyright a.apply {
		margin-left: 0;
		margin-top: 16px;
		display: inline-block;
	}
	.footer .wrap .menu li {
		margin-left: 0;
	}
	.footer .wrap .menu {
		width: 100%;
		justify-content: space-between;
	}
	.footer {
		padding: 20px 0;
	}
	.header .wrap .menu li {
		margin-left: 0;
		display: flex;
	}
	.header .wrap .menu .has_submenu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.header .wrap .menu .mobile_notice {
		display: block;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 1;
		background: #fff;
		padding: 16px 0;
		font:500 12px / 20px Poppins;
		font-style: italic;
		color:#0E0E0E;
	}
	.header .wrap .menu .mobile_notice:before {
		content:"";
		position: absolute;
		top: 0;
		left: 0;
		top: 0;
		width: 100%;
		border-bottom: 1px dashed #C5C5C5;
	}
	.event_who {
		margin-top: 25px;
	}
}