@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
	--white: #FFFFFF;
	--blue: #214053;
	--green: #9DC03C;
	--grey: #464646;
	--black: #171717;
	--orange: #F68D51;

	--g1: linear-gradient(180deg, #9E9CFF 0%, #18162C 100%);
	--g2: linear-gradient(90deg, #242236 0%, #6B69A5 100%);

	--h1: max(36px, 66rem);
	--h2: max(32px, 52rem);
	--h3: max(24px, 40rem);
	--h4: max(24px, 32rem);
	--body: max(16px, 18rem);
	--big_body: max(18px, 20rem);
	--button: max(16px, 18rem);
	--hint: max(14px, 16rem);

	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: var(--white);
	font-size: 0.052vw;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--grey);
	font-size: var(--body);
	font-weight: 400;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	line-height: 120%;
	letter-spacing: -0.03em;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
::selection {
	background-color: var(--green);
}
/************************* common styles *************************/
.holder {
	padding: 0 max(10px, 100rem);
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
h1, .h1 {
	display: block;
	font-weight: 500;
	font-size: var(--h1);
	line-height: 110%;
	letter-spacing: -0.03em;
	color: var(--black);
}
h2, .h2 {
	display: block;
	font-weight: 400;
	font-size: var(--h2);
	line-height: 110%;
	letter-spacing: -0.05em;
	color: var(--black);
}
h3, .h3 {
	display: block;
	font-weight: 400;
	font-size: var(--h3);
	line-height: 110%;
	letter-spacing: -0.05em;
	color: var(--black);
}
h4, .h4 {
	display: block;
	font-weight: 400;
	font-size: var(--h4);
	line-height: 120%;
	letter-spacing: -0.03em;
	color: var(--black);
}
a {transition: all .3s linear;}
p {margin: 0 0 12px;}
p:last-child {margin: 0;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	min-width: max(170px, 190rem);
	padding: 16px max(34px, 44rem);
	color: var(--white);
	font-weight: 400;
	font-size: var(--button);
	line-height: 120%;
	letter-spacing: -0.03em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 50px;
	transition: all .3s linear;
}
.button:hover {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.button-border {
	color: var(--black);
	background: var(--white);
	border: 1px solid rgba(33, 64, 83, 0.7);
}
.button-border:hover {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.button-green {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.button-green:hover {
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
}
.dark-theme .button-green:hover {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
.button-white {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
.button-white:hover {
	color: var(--white);
	background: transparent;
	border: 1px solid var(--white);
}
/************************* form-block *************************/
.wpcf7-form-control-wrap input, .gfield input:not(.gfield-choice-input) {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 21px;
	margin: 0 0 max(10px, 15rem);
	font-size: max(14px, 16rem);
	color: rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(149, 149, 149, 0.6);
	border-radius: 2000px;
	background: none;
}
.wpcf7-form-control-wrap textarea, .gfield textarea {
	display: block;
	width: 100%;
	height: max(64px, 78rem);
	padding: max(20px, 26rem) 21px;
	margin: 0 0 max(10px, 15rem);
	font-size: max(14px, 16rem);
	color: rgba(0, 0, 0, 0.9);
	resize: vertical;
	border: 1px solid rgba(149, 149, 149, 0.6);
	border-radius: 2000px;
	background: none;
}
.inactive {
	opacity: 0.5;
	pointer-events: none;
}
::-webkit-input-placeholder {color: rgba(0, 0, 0, 0.9);}
:-moz-placeholder {color: rgba(0, 0, 0, 0.9); opacity: 1;}
::-moz-placeholder {color: rgba(0, 0, 0, 0.9); opacity: 1;}
:-ms-input-placeholder {color: rgba(0, 0, 0, 0.9);}
.input-line {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.input-line .wpcf7-form-control-wrap {
	width: calc(50% - 5px);
}
.textarea-big textarea, .ginput_container_textarea textarea {
	height: 160px;
	padding: 21px;
	border-radius: 30px;
}
.form-note {
	margin: 0 0 max(28px, 42rem);
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	color: var(--grey);
}
.form-button .button {
	width: 100%;
}
/*.gfield label {
display: none;
}*/
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	padding-top: max(120px, 187rem);
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 700;
	background: var(--white);
}
.header-top {
	background: var(--black);
}
.header-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: max(20px, 40rem);
	height: max(52px, 70rem);
}
.header-links-part {
	display: flex;
	gap: 10px;
}
.header-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 5px 14px 5px;
	font-size: max(12px, 16rem);
	color: var(--white);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 200px;
}
.header-link:hover {
	background: var(--green);
}
.header-link path {
	transition: all 0.3s linear;
}
.header-link:hover .fill {
	fill: #fff;
}
.header-link:hover .stroke {
	stroke: #fff;
}
.header-block {
	display: flex;
	align-items: center;
	position: relative;
	padding: max(15px, 25rem) 0 max(12px, 22rem);
	border-bottom: 1px solid rgba(33, 64, 83, 0.4);
}
.header-logo img {
	width: max(80px, 124rem);
}
.no-border .header-block {border-bottom: 0;}
.header-wrap {
	flex: 1;
	display: flex;
	align-items: center;
}
.header-nav-list {
	display: flex;
	gap: max(30px, 50rem);
	margin: 0 auto;
	list-style: none;
}
.header-nav-list > li {
	position: relative;
	font-size: max(16px, 18rem);
	line-height: 120%;
}
.header-nav-list a {
	position: relative;
	color: rgba(70, 70, 70, 0.8);
	text-decoration: none;
}
.header-nav-list > li > a:hover,
.header-nav-list > li:hover > a {
	color: var(--blue);
}
.nav-parent::after {
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: -12px;
	content: '';
	width: 7px;
	height: 7px;
	background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
}
.subnav {
	position: absolute;
	top: 100%;
	left: -35px;
	margin-top: 22px;
	display: none;
	padding: 30px 40px;
	border: 1px solid rgba(70, 70, 70, 0.2);
	border-radius: 20px;
	background: var(--white);
}
.subnav::before {
	position: absolute;
	top: -23px;
	left: 0;
	right: 0;
	height: 23px;
	content: '';
}
.subnav-block {
	display: flex;
}
.subnav-col {
	white-space: nowrap;
}
.sub-back {
	display: none;
}
.sub-tab {
	display: none;
	padding-left: 40px;
}
.sub-tab.show,
.sub-tab.fixed {
	display: block;
}
.sub {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.sub a {
	display: block;
	padding: 0 30px 0 0;
	color: #464646;
}
.sub .sub-active {
	color: var(--blue);
}
.subnav-col:last-child .sub a {
	padding-right: 0;
}
.sub-parent {
	display: block;
	position: relative;
	padding: 0 20px 0 0;
}
.sub-parent::after {
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 0px;
	content: '';
	width: 7px;
	height: 7px;
	background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
	opacity: 0.4;
}
.sub-parent.sub-active::after {
	transform: rotate(-90deg);
	opacity: 1;
}
@media screen and (min-width: 1024px) {
	.header-nav-list > li > a:hover::after,
	.header-nav-list > li:hover > a::after {
		transform: rotate(180deg);
	}
	.header-nav-list li:hover > .subnav {
		display: block;
	}
	.header-nav-list:hover > li > a {
		opacity: 0.5;
	}
	.header-nav-list:hover > li > a:hover,
	.header-nav-list:hover > li:hover > a {
		opacity: 1;
	}
}

.mob-nav-icon {
	display: none;
}
.mob-nav-block {
	position: relative;
	display: block;
	width: 32px;
	height: 3px;
	margin: 9px 0;
	border-radius: 3px;
	background: var(--blue);
	transition: all .3s linear;
}
.mob-nav-block:after {
	content: "";
	position: absolute;
	top: -9px;
	left: 0;
	width: 32px;
	height: 3px;
	border-radius: 3px;
	background: var(--blue);
	transition: all .3s linear;
}
.mob-nav-block:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 16px;
	width: 16px;
	height: 3px;
	border-radius: 3px;
	background: var(--blue);
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
	background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
	top: 0;
	left: 0;
	width: 32px;
	transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
	top: 0;
	transform: rotate(-45deg);
}
/************************* banner *************************/
@media screen and (max-width: 1024px) {
	.header-block {
		border-bottom: 0;
	}
	.header-hide {display: none;}
	.mob-nav-icon {
		display: block;
		margin: 0 0 0 auto;
	}
	.header-wrap {
		position: fixed;
		top: 124px;
		left: 100%;
		bottom: 0;
		z-index: 700;
		width: 100%;
		padding: 0 10px 13px;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		background: var(--white);
		transition: all 0.3s linear;
	}
	.header-wrap.vis {
		left: 0;
	}
	.header-nav-list {
		display: block;
		margin: 0;
		padding: 12px 0 0;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}
	.header-nav-list > li {
		position: static;
		font-size: 18px;
		line-height: 120%;
		display: flex;
	}
	.header-nav-list > li > a {
		display: block;
		padding: 12px 0;
		width: 100%;
	}
	.toggle-subnav {
        height: 50px;
        width: 50px;
        position: absolute;
        display: block;
        z-index: 99;
        right: 10px;
    }
	.benefits-list .slick-slide {
		opacity: 0;
		transition: opacity 0.5s ease;
	}
	.nav-parent::after {
		right: 0px;
		transform: rotate(-90deg);
	}
	ul.sub li {
		display: flex;
	}
	ul.sub li a {
		width: 100%;
	}
	.subnav {
		position: absolute;
		top: 1px;
		left: 0;
		right: 0;
		bottom: 80px;
		margin-top: 0;
		padding: 0 10px;
		border: 0;
		z-index: 100;
		border-radius: 0;
		background: var(--white);
	}
	.subnav.mob-vis {
		display: block;
	}
	.subnav::before {
		display: none;
	}
	.subnav-block {
		display: block;
	}
	.subnav-col {
		white-space: wrap;
	}
	.sub-back {
		display: block;
		padding: 9px 0 9px 20px;
		margin: 0 0 12px;
		color: rgba(33, 64, 83, 0.8);
		text-decoration: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	}
	.sub-back::before {
		position: absolute;
		top: 50%;
		margin-top: -3px;
		left: 0px;
		content: '';
		width: 7px;
		height: 7px;
		background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
		transform: rotate(90deg);
	}
	.sub-tab {
		padding-left: 0;
		position: absolute;
		top: 1px;
		left: 0;
		right: 0;
		bottom: 80px;
		margin-top: 0;
		padding: 0 10px;
		border: 0;
		z-index: 100;
		border-radius: 0;
		background: var(--white);
	}
	.sub-tab.mob-vis {
		display: block;
	}
	.sub {
		display: block;
	}
	.sub a {
		padding: 12px 30px 12px 0;
		color: rgba(70, 70, 70, 0.8);
	}
	.sub-parent {
		display: block;
		position: relative;
		padding: 0 20px 0 0;
	}
	.sub-parent::after {
		transform: rotate(-90deg);
		opacity: 1;
	}

}
@media screen and (max-width: 576px) {
	.header-wrap .button {
		width: 100%;
		padding: 16px max(34px, 44rem);
	}
	.header-link, .header-links-part {
		flex: 1;
	}
	.button {
		padding: 12px max(34px, 44rem);
	}
	form .button {
		padding: 16px max(34px, 44rem);
	}
}

/************************* footer *************************/
.footer {
	margin-top: auto;
	color: var(--white);
	background: #181818;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	padding: max(60px, 147rem) 0 max(66px, 127rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-top-left {
	width: 30%;
}
.footer-top h2 {
	margin: 0 0 max(15px, 34rem);
	color: var(--white);
}
.footer-form {
	width: 64%;
	max-width: max(600px, 716rem);
}
.footer-top-text {
	margin: 0 0 26px;
	font-size: max(18px, 24rem);
	line-height: 120%;
	letter-spacing: -0.03em;
}
.footer-form .wpcf7-form-control-wrap input,
.footer-form .wpcf7-form-control-wrap textarea {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.6);
}
.footer-form input::-webkit-input-placeholder {color: var(--white);}
.footer-form input:-moz-placeholder {color: var(--white); opacity: 1;}
.footer-form input::-moz-placeholder {color: var(--white); opacity: 1;}
.footer-form input:-ms-input-placeholder {color: var(--white);}
.footer-form textarea::-webkit-input-placeholder {color: var(--white);}
.footer-form textarea:-moz-placeholder {color: var(--white); opacity: 1;}
.footer-form textarea::-moz-placeholder {color: var(--white); opacity: 1;}
.footer-form textarea:-ms-input-placeholder {color: var(--white);}
.footer-form .form-note {
	color: var(--white);
}
.footer-form .button-green:hover {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
.footer-main {
	padding: max(30px, 73rem) 0 max(34px, 49rem);
}
.footer-title {
	margin: 0 0 8px;
}
.footer-block {
	display: flex;
}
.footer-contacts {
	width: 42.8%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: max(40px, 65rem) 0;
	padding: max(20px, 40rem) max(20px, 70rem) max(30px, 110rem) 0;
}
.footer-adress {
	width: 32%;
	max-width: 170px;
	display: flex;
	flex-direction: column;
}
.footer-adress-title {
	margin: 0 0 15px;
}
.footer-adress-text {
	margin: 0 0 29px;
	font-size: var(--hint);
	line-height: 120%;
}
.footer-adress-text a {
	opacity: 0.5;
	color: var(--white);
	text-decoration: none;
}
.footer-adress-text a:hover {
	opacity: 1;
}
.footer-phone {
	font-size: var(--hint);
	line-height: 120%;
}
.footer-phone-link {
	position: relative;
	color: var(--green);
	text-decoration: none;
	white-space: nowrap;
}
.footer-phone-link::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: var(--green);	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.footer-phone-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.footer-webs {
	display: flex;
	justify-content: space-between;
	width: 160px;
	margin: auto 0 10px;
}
.footer-web {
	position: relative;
}
.footer-web img {
	display: block;
	width: 28px;
	transition: all 0.3s linear;
}
.webs-normal {
	position: relative;
}
.webs-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.footer-web:hover .webs-normal {opacity: 0;}
.footer-web:hover .webs-hover {opacity: 1;}
.footer-nav {
	width: 23.7%;
	padding: max(20px, 40rem) max(20px, 70rem) max(30px, 110rem);
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-nav-title {
	margin: 0 0 14px;
}
.footer-nav-list {
	margin: 0 0 57px;
}
.footer-nav-list:last-child {margin: 0;}
.footer-nav-list li {
	margin: 0 0 12px;
	font-size: var(--hint);
	line-height: 120%;
}
.footer-nav-list li:last-child {margin: 0;}
.footer-nav-list a {
	opacity: 0.5;
	color: var(--white);
	text-decoration: none;
}
.footer-nav-list a:hover {
	opacity: 1;
}
.footer-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 33.5%;
	padding: max(20px, 40rem) 0 max(30px, 110rem) max(20px, 70rem);
}
.footer-info .footer-adress {
	width: 100%;
	max-width: none;
}
.footer-tips {
	display: flex;
	align-items: center;
}
.footer-tips-text {
	flex: 1;
	padding: 0 15px 0 0;
}
.footer-tips .button {
	width: max(200px, 270rem);
}
.footer-bottom {
	display: flex;
	padding: 13px 0 max(15px, 21rem);
	font-weight: 300;
	font-size: 14px;
	line-height: 150%;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-copy {
	opacity: 0.5;
}
.footer-links {
	display: flex;
}
.footer-links a {
	position: relative;
	margin: 0 0 0 max(50px, 200rem);
	opacity: 0.5;
	color: var(--white);
	text-decoration: none;
}
.footer-links a:hover {
	opacity: 1;
}
.footer-links a::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: var(--white);	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.footer-links a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.footer-studio {
	margin: 0 0 0 auto;
	color: var(--white);
	text-decoration: none;
}
.footer-studio span {
	opacity: 0.5;
	transition: all 0.3s linear;
}
.footer-studio:hover span {opacity: 1;}
@media screen and (max-width: 1320px) {
	.footer-adress {
		width: 48%;
	}
	.footer-contacts {
		width: 40%;
	}
	.footer-nav {
		width: 30%;
	}
	.footer-info {
		width: 30%;
	}
	.footer-links a {
		margin: 0 0 0 40px;
	}
	.footer-tips {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.footer-block {display: block;}
	.footer-contacts,
	.footer-nav,
	.footer-info {
		width: auto;
		padding: 30px 0;
	}
	.footer-nav {
		border: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}
	.footer-adress {
		width: 30%;
		max-width: none;
	}
	.footer-info {
		flex-direction: column-reverse;
	}
	.footer-info .footer-adress {
		padding: 0 0 30px;
	}
	.footer-info .footer-adress-text {
		margin: 0 0 24px;
	}
	.footer-tips {
		flex-direction: row;
		align-items: center;
		gap: 0;
		padding: 37px 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
	}
	.footer-adress-text, .footer-phone, .footer-nav-list li {
		font-size: var(--body);
		line-height: 120%;
	}
	.footer-bottom {
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		padding: 0 0 max(15px, 21rem);
		font-weight: 400;
		line-height: 120%;
		border-top: 0;
	}
	.footer-copy {
		width: 100%;
		order: 3;
		margin: 23px 0 0;
		padding: 10px 0 0;
		opacity: 1;
		color: rgba(255, 255, 255, 0.5);
		border-top: 1px solid rgba(255, 255, 255, 0.3);
	}
	.footer-links {
		flex-direction: column;
		gap: 14px;
		order: 1;
	}
	.footer-links a {
		margin: 0;
	}
	.footer-studio {
		order: 2;
	}
}
@media screen and (max-width: 576px) {
	.holder {
		padding: 0 10px;
	}
	.footer-top {
		display: block;
	}
	.footer-top-left, .footer-form {
		width: auto;
	}
	.footer-top-left br {display: none;}
	.input-line .wpcf7-form-control-wrap {width: 100%;}
	.footer-adress {
		width: calc(50% - 7px);
	}
	.footer-form .form-note {
		padding: 0 20px;
		opacity: 0.6;
	}
	.footer-title, .footer-adress-title,
	.footer-nav-title, .footer-tips-text {
		font-size: 18px;
	}
	.footer-tips .button {
		width: 180px;
		padding: 11px 25px;
		font-size: 18px;
	}
	.footer-webs {
		margin: auto 0 30px;
	}
	p {margin: 0 0 15px;}
	p:last-child {margin: 0;}
}

/************************* section *************************/
.section {
	padding: max(50px, 80rem) 0;
}
.round-all {
	border-radius: max(30px, 60rem);
}
.round-top {
	border-radius: max(30px, 60rem) max(30px, 60rem) 0 0;
}
.round-bottom {
	border-radius: 0 0 max(30px, 60rem) max(30px, 60rem);
}

/************************* hero *************************/
.hero {
	margin: 0 0 max(50px, 80rem);
}
.hero-main {
	position: relative;
	z-index: 10;
	padding: max(90px, 180rem) 0 max(105px, 210rem);
	text-align: center;
	background: var(--white);
}
.hero-1 .hero-main {
	padding: max(46px, 92rem) 0 max(34px, 140rem);
}
.hero-bg {
	overflow: hidden;
	position: relative;
	margin: min(-30px, -60rem) 0 0;
}
.hero-img, .hero-video {
	width: 100%;
	height: max(270px, 834rem);
	object-fit: cover;
}
.hero-main h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: max(500px, 940rem);
	margin: 0 auto max(25px, 30rem);
}
.gradient {
	display: block;
	padding-bottom: 8px;
	margin-bottom: -8px;
	background: linear-gradient(
		to right,
		#171717 35%,
		#9DC03C 50%,
		#171717 65%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	background-size: 300% auto;
}
.gradient.ani_start {
	animation: textShine 11s ease-in-out;
	animation-fill-mode: forwards;
}
@keyframes textShine {
	0% {
		background-position: 100% 50%;
	}
	60% {
		background-position: -100% 50%;
		background-size: 500% auto;
	}
	90% {
		background-size: 300% auto;
	}
	100% {
		background-position: 50% 50%;
		background-size: 5000% auto;
	}
}
.hero-main h4 {
	margin: 0 0 max(40px, 45rem);
	color: rgba(70, 70, 70, 0.8);
}
.hero-text {
	max-width: max(460px, 500rem);
	margin: 0 auto max(50px, 54rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
}
.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.hero-buttons .button {
	min-width: 190px;
}
.hero-adress {
	display: inline-block;
	padding: 9px 29px;
	margin: 0 0 max(27px, 32rem);
	color: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 200px;
}
.hero-bottom {
	position: relative;
	margin: max(30px, 150rem) 0 0;
}
.hero-cert {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px max(14px, 24rem);
}
.hero-cert img {
	width: max(47px, 120rem);
}
.hero-bottom .hero-chat {
	top: 0;
	right: 0;
	bottom: auto;
}
.hero-chat {
	position: absolute;
	right: max(20px, 100rem);
	bottom: max(30px, 70rem);
	display: flex;
	align-items: center;
	color: rgba(70, 70, 70, 0.8);
	text-decoration: none;
	border: 2px solid rgba(70, 70, 70, 0.2);
	border-radius: 180px;
	width: max(190px, 200rem);
	height: 54px;
}
.hero-chat-text {
	padding: 0 0 0 27px;
	text-align: left;
	font-size: var(--button);
}
.hero-chat-img {
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	width: 54px;
	min-width: 54px;
}
.hero-chat-img img {
	width: 100%;
	border-radius: 50%;
}
.hero-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-play img {
	width: max(48px, 92rem);
	height: max(48px, 92rem);
}
@media screen and (max-width: 1024px) {
	.hero-cert {
		padding: 0 60px;
	}
	.hero-chat {
		width: 54px;
	}
	.hero-chat-text {
		display: none;
	}
}
@media screen and (max-width: 576px) {
	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}
	.hero-bottom .hero-chat {
		top: 50%;
		margin-top: -27px;
	}
	.hero-main h4 {
		font-size: 18px;
	}
	.hero-buttons .button {
		padding: 16px 20px;
	}
	.hero-3 .hero-text {
		max-width: 220px;
		margin: 0 auto;
	}
}

/************************* banner *************************/
.banner {
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.banner-img, .banner-video {
	display: block;
	width: 100%;
	height: max(355px, 773rem);
	object-fit: cover;
}
.banner-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-play img {
	width: max(48px, 92rem);
	height: max(48px, 92rem);
}
.banner-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max(48px, 92rem);
	height: max(48px, 92rem);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	border-radius: 50%;
}
.play-icon img {
	width: max(22px, 40rem);
	height: max(22px, 40rem);
	margin-left: max(5px, 10rem);
}
/************************* team *************************/
.team {
	overflow: hidden;
	position: relative;
	border-radius: max(10px, 20rem);
}
.team-photo img {
	width: 100%;
}
.team-about {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	padding: max(35px, 40rem) max(24px, 50rem) max(35px, 40rem);
	color: var(--white);
	background: var(--black);
}
.team-side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: max(440px, 530rem);
}
.team-side h2 {
	margin: 0 0 33px;
	color: var(--white);
}
.team-info {
	display: flex;
	flex-direction: column;
	gap: 17px 0;
	width: max(440px, 530rem);
	padding: 5px 0 10px;
}
.team-item {
	display: flex;
	gap: 13px;
}
.team-icon {
	width: max(21px, 28rem);
	min-width: max(21px, 28rem);
}
.team-icon img {
	width: 100%;
}
.team-item:last-child .team-icon {
	padding: 0 2px;
}
.team-text {
	padding: 1px 0 0;
	font-size: var(--big_body);
	line-height: 120%;
}
@media screen and (max-width: 1440px) {
	.team-about {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin-top: min(-130px, 260rem);
	}
}
@media screen and (max-width: 1240px) {
	.team-about {
		margin-top: min(-80px, 180rem);
	}
}
@media screen and (max-width: 767px) {
	.team-about {
		display: block;
		margin-top: 0;
	}
	.team-side {
		width: auto;
	}
	.team-info {
		width: auto;
		gap: 24px 0;
		padding: 0 0 100px;
	}
	.team-text {
		opacity: 0.8;
	}
	.team-button {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 37px;
		text-align: center;
	}
}

/************************* card *************************/
.card-block {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	justify-content: center;
}
.card-col {
	width: 25%;
	padding: 0 10px;
}
.card-item {
	position: relative;
	overflow: hidden;
	height: max(400px, 448rem);
	border: 1px solid rgba(70, 70, 70, 0.4);
	border-radius: 20px;
}
.card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card-item h4 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: max(26px, 30rem) max(26px, 30rem) 0;
	color: rgba(23, 23, 23, 0.8);
}
.card-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: max(25px, 30rem);
	padding: 0 max(26px, 30rem) max(26px, 30rem);
}
.card-item .button {
	min-width: 1px;
	margin-right: auto;
	padding: 12px 20px;
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.card-item .button:hover {
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
}
.card-text {
	color: var(--grey);
}
.card-text-min {
	max-width: max(210px, 270rem);
}
.card-green {
	border: 0;
	background: var(--green);
}
.card-grey {
	border: 0;
	background: var(--grey);
}
.card-green h4,
.card-grey h4,
.card-green .card-text,
.card-grey .card-text {
	color: var(--white);
}
.card-green .button,
.card-grey .button {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
.card-green .button:hover,
.card-grey .button:hover {
	color: var(--white);
	background: transparent;
	border: 1px solid var(--white);
}
.card-3x {
	max-width: max(960px, 1284rem);
	margin: 0 auto;
}
.card-3x .card-col {
	width: 33.33%;
}
.card-line {
	display: flex;
	justify-content: space-between;
	gap: 40px;	
	margin: 0 0 max(25px, 60rem);
}
/*.card-line h2 {
max-width: max(400px, 560rem);
}*/
.card-line-text {
	max-width: max(480px, 580rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: var(--grey);
	opacity: 0.8;
}
.card-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0 0 max(25px, 65rem);
	text-align: center;
}
.card-title h4 {
	max-width: max(300px, 490rem);
	color: var(--blue);
	opacity: 0.8;
}
.card-title-text {
	max-width: max(720px, 860rem);
	font-size: max(16px, 25rem);
	line-height: 120%;
	opacity: 0.8;
}
.card-section.dark-theme {
	padding: max(60px, 180rem) 0 max(80px, 180rem);
}
.dark-theme .card-title-text {
	color: var(--white);
}
.dark-theme .card-item h4 {
	color: var(--green);
}
.dark-theme .card-text {
	color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1240px) {
	.card-col {
		width: 33.33%;
	}
	.card-3x {
		max-width: none;
	}
}
@media screen and (max-width: 1024px) {
	.card-col, .card-3x .card-col {
		width: 50%;
	}
	.card-line {
		flex-direction: column;
		gap: 15px;
	}
}
@media screen and (max-width: 576px) {
	.card-col, .card-3x .card-col {
		width: 100%;
	}
	/*
	.card-item {
	height: 264px;
}*/
	.card-text {
		overflow: visible;
		max-height: none;
	}
}

/************************* testimonials-video *************************/
.testimonials-video h2 {
	margin: 0 0 max(14px, 43rem);
	text-align: center;
}
.tv-slider {
	margin: 0 -10px;
}
.tv-slide {
	padding: 0 10px;
}
.tv-item {
	position: relative;
	overflow: hidden;
	display: block;
	color: var(--white);
	text-decoration: none;
	border-radius: max(13px, 20rem);
}
.tv-img {
	display: block;
	width: 100%;
}
.tv-label {
	position: absolute;
	top: max(16px, 25rem);
	left: max(16px, 30rem);
	padding: 3px 15px;
	font-size: var(--hint);
	line-height: 120%;
	color: var(--white);
	border-radius: 20px;
	backdrop-filter: blur(48px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.tv-title {
	position: absolute;
	top: max(51px, 79rem);
	left: max(16px, 30rem);
	font-size: var(--h4);
	line-height: 120%;
	color: var(--white);
}
.tv-plus {
	position: absolute;
	bottom: max(16px, 30rem);
	left: max(16px, 30rem);
	display: flex;
	align-items: center;
	justify-content: center;
	width: max(36px, 60rem);
	height: max(36px, 60rem);
	border-radius: 50%;
	fill: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.tv-plus img {
	width: max(17px, 28rem);
}
.tv-cover {
	position: absolute;
	inset: 0;
	z-index: 20;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: max(25px, 35rem);
	padding: 15px;
	backdrop-filter: blur(8px);
	background: rgba(49, 89, 114, 0.3);
	transition: all 0.3s linear;
}
.tv-item:hover .tv-cover {
	opacity: 1;
}
.tv-cover-text {
	max-width: max(300px, 360rem);
	font-size: var(--big_body);
	line-height: 120%;
	text-align: center;
}
.tv-cover .button {
	color: var(--white);
	background: transparent;
	border-color: var(--white);
}
.tv-cover .button:hover {
	color: var(--black);
	background: var(--white);
}
.tv-slider .slick-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin: max(20px, 43rem) 0 0;
}
.tv-slider .slick-dots li {
	height: 4px;
}
.tv-slider .slick-dots button {
	display: block;
	width: 4px;
	height: 4px;
	font-size: 0;
	border-radius: 10px;
	background: #d9d9d9;
}
.tv-slider .slick-dots .slick-active button {
	width: max(160px, 300rem);
	background: var(--blue);
}
.video-popup .fancybox-content {
	width: max(610px, 1220rem);
	height: max(320px, 640rem);
	padding: 20px;
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.1);
}
.typing .char {
	opacity: 0;
	transition: opacity .3s ease;
	transition-delay: calc( 0.1s + ( 0.05s * ( var(--char-index)) ) );
}
.typing.ani_start .char {
	opacity: 1;
}

/************************* testimonials-text *************************/
.testimonials-text h2 {
	margin: 0 0 max(14px, 115rem);
	text-align: center;
}
.tt-wrap {
	display: flex;
	gap: max(10px, 20rem);
	padding: 0 max(10px, 20rem) 0 0;
}
.tt-item {
	display: flex;
	flex-direction: column;
	width: max(230px, 415rem);
	height: max(282px, 462rem);
	padding: max(16px, 30rem);
	background: #f3f3f3;
	border-radius: max(11px, 20rem);
}
.tt-top {
	display: flex;
	align-items: center;
	gap: max(11px, 20rem);
	margin: 0 0 max(12px, 22rem);
}
.tt-ava {
	width: max(47px, 83rem);
}
.tt-ava img {
	width: 100%;
	border-radius: 50%;
}
.tt-info {
	display: flex;
	flex-direction: column;
	gap: max(3px, 10rem);
}
.tt-name {
	font-size: var(--big_body);
	line-height: 120%;
	opacity: 0.8;
}
.tt-date {
	font-size: var(--hint);
	line-height: 120%;
	opacity: 0.6;
}
.tt-rating {
	display: flex;
}
.star {
	width: max(11px, 19rem);
	height: max(11px, 19rem);
	background: url(../images/star.svg) 50% 50% no-repeat;
	background-size: contain;
}
.tt-text {
	margin: auto 0 0;
	overflow: hidden;
	height: 152px;
	font-size: var(--hint);
	line-height: 120%;
	opacity: 0.8;
}
@media screen and (max-width: 1240px) {
	.tt-name {
		font-size: var(--body);
		line-height: 120%;
	}
}
@media screen and (max-width: 1024px) {
	.tt-item {
		height: auto;
	}
	.tt-text {
		height: auto;
		margin: 18px 0 0;
	}
}

/************************* faq *************************/
.faq {
	padding: max(80px, 160rem) 0;
}
.faq-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.faq-side {
	width: 45%;
	padding: 0 40px 0 0;
}
.faq-title {
	display: flex;
	flex-direction: column;
	gap: max(20px, 25rem) 0;
	margin: 0 0 max(30px, 45rem);
}
.faq-title h2 {
	max-width: max(320px, 630rem);
}
.faq-title h4 {
	max-width: max(360px, 460rem);
	color: var(--blue);
	opacity: 0.8;
}
.faq-content {
	width: 50%;
}
.faq-list {
	margin: 0 min(-10px, -55rem);
}
.faq-item {
	position: relative;
	padding: 0 max(10px, 55rem);
}
.faq-item::before {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 70%;
	height: 40%;
	opacity: 0;
	transform: translate3d(-50%, -50%, 0);
	background: var(--blue);
	border-radius: 18px;
	transition: all 0.5s var(--ease-out-expo);
}
.faq-item.vis::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}
.faq-item.open::before {
	width: 100%;
	height: 100%;
	opacity: 1;
	background: #f3f3f3;
}
.faq-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: max(15px, 23rem) 0;
	color: rgba(23, 23, 23, 0.8);
	font-size: max(24px, 32rem);
	line-height: 120%;
	text-decoration: none;
	transition: all 0.5s var(--ease-out-expo);
}
.faq-item.vis .faq-top {
	color: var(--white);
}
.faq-item.open .faq-top {
	color: var(--black);
}
.faq-arrow {
	position: relative;
	min-width: max(30px, 54rem);
	width: max(30px, 54rem);
	height: max(30px, 54rem);
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-arrow svg {
	width: max(14px, 25rem);
	transition: all 0.5s var(--ease-out-expo);
}
.faq-item.open svg {
	transform: rotate(180deg);
}
.faq-arrow path {
	stroke: var(--black);
	transition: all 0.5s var(--ease-out-expo);
}
.faq-item.vis .faq-arrow path {
	stroke: var(--white);
}
.faq-item.open .faq-arrow path {
	stroke: var(--black);
}
.faq-arrow::before,
.faq-arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	content: '';
	width: max(9px, 15rem);
	border: 1px solid rgba(23, 23, 23, 0.2);
	transition: all 0.5s var(--ease-out-expo);
}
.faq-arrow::before {
	left: 0;
	border-right: 0;
	border-radius: 3px 0 0 3px;
}
.faq-arrow::after {
	right: 0;
	border-left: 0;
	border-radius: 0 3px 3px 0;
}
.faq-item.vis .faq-arrow::before,
.faq-item.vis .faq-arrow::after {
	border-color: rgba(255, 255, 255, 0.2);
}
.faq-item.open .faq-arrow::before,
.faq-item.open .faq-arrow::after {
	border-color: rgba(23, 23, 23, 0.2);
}
.faq-wrap {
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.2s linear;
}
.faq-hidden {
	display: none;
	max-width: max(480px, 600rem);
	padding: 0 0 max(15px, 20rem);
}
.faq-hidden.vis {
	display: block;
}
.faq-item.open .faq-wrap {
	padding-bottom: 5px;
}
.faq.dark-theme .button {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.faq.dark-theme .button:hover {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
.dark-theme .faq-wrap {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dark-theme .faq-top {
	color: rgba(255, 255, 255, 0.8);
}
.dark-theme .faq-item.vis .faq-top {
	color: var(--black);
}
.dark-theme .faq-item.open .faq-top {
	color: var(--black);
}
.dark-theme .faq-item::before {
	background: var(--white);
}
.dark-theme .faq-item.open::before {
	background: var(--white);
}
.dark-theme .faq-arrow path {
	stroke: var(--white);
}
.dark-theme .faq-item.vis .faq-arrow path {
	stroke: var(--black);
}
.dark-theme .faq-item.open .faq-arrow path {
	stroke: var(--black);
}
.dark-theme .faq-arrow::before,
.dark-theme .faq-arrow::after {
	border-color: rgba(255, 255, 255, 0.2);
}
.dark-theme .faq-item.vis .faq-arrow::before,
.dark-theme .faq-item.vis .faq-arrow::after {
	border-color: rgba(23, 23, 23, 0.2);
}
.dark-theme .faq-item.open .faq-arrow::before,
.dark-theme .faq-item.open .faq-arrow::after {
	border-color: rgba(23, 23, 23, 0.2);
}
@media screen and (max-width: 1024px) {
	.faq-block {
		position: relative;
		display: block;
		padding-bottom: 90px;
	}
	.faq-side {
		width: auto;
		padding: 0;
	}	
	.faq-content {
		width: auto;
	}
	.faq-button {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	.faq-item:first-child {
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}
}
@media screen and (max-width: 576px) {
	.faq-block {
		padding-bottom: 71px;
	}
	.faq-title h4 {
		font-size: var(--big_body);
		line-height: 120%;
	}
}

/************************* text-1 *************************/
.text-1 {
	padding: max(80px, 160rem) 0;
	text-align: center;
}
.text-1 h2 {
	margin: 0 0 max(20px, 25rem);
}
.text-1 .button {
	min-width: max(200px, 270rem);
}
.text-1-text {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	align-items: center;
	margin: 0 0 max(30px, 55rem);
}
.text-1-high {
	max-width: max(580px, 670rem);
	font-size: max(18px, 20rem);
	line-height: 120%;
	color: var(--green);
}
.text-1-normal {
	max-width: max(720px, 890rem);
	font-size: max(16px, 20rem);
	line-height: 120%;
	color: var(--black);
	opacity: 0.8;
}
.dark-theme {
	background: #171717;
}
.dark-theme h2,
.dark-theme h3,
.dark-theme h4 {
	color: var(--white);
}
.dark-theme .text-1-normal {
	color: var(--white);
}
/************************* text-2 *************************/
.text-2 {
	padding: max(70px, 147rem) 0 max(70px, 153rem);
}
.text-2 h4 {
	margin: 0 0 max(15px, 24rem);
	color: var(--blue);
}
.text-2 h2 {
	margin: 0 0 max(30px, 78rem);
	max-width: max(800px, 1600rem);
}
.text-2-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 0 0 50%;
}
.text-2-col {
	width: calc(50% - 20px);
	opacity: 0.8;
}
.text-2.dark-theme h4 {
	color: var(--green);
}
.dark-theme .text-2-col {
	color: var(--white);
}
@media screen and (max-width: 1024px) {
	.text-2-block {
		padding: 0;
	}
}
@media screen and (max-width: 576px) {
	.text-2-col {
		width: 100%;
	}
	.text-2 h2 {
		font-weight: 500;
		font-size: var(--h3);
		line-height: 120%;
	}
	.text-2 h4 {
		max-width: 260px;
	}
}
/************************* logo + text *************************/
.logo-section-img {
	margin: 0 0 max(20px, 52rem);
	text-align: center;
}
.logo-section-img img {
	width: max(143px, 209rem);
}
.logo-section h2 {
	color: var(--grey);
}
@media screen and (max-width: 576px) {
	.logo-section h2 {
		font-size: var(--h3);
		line-height: 120%;
		color: var(--black);
	}
}
/************************* 2 columns *************************/
.columns-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px 0;
	color: rgba(70, 70, 70, 0.8);
}
.columns-item {
	width: calc(50% - 25px);
	max-width: max(650px, 740rem);
}
.columns-item h2 {
	margin: 0 0 max(30px, 50rem);
}
.columns-item .list  {
	color: rgba(70, 70, 70, 0.7);
}
.columns-item .list {
	max-width: max(390px, 445rem);
}
.list {
	padding: max(5px, 12rem) 0 max(5px, 12rem);
}
.list:first-child {padding-top: 0;}
.list:last-child {padding-bottom: 0;}
.list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.list li {
	position: relative;
	padding: 0 0 0 31px;
	font-size: var(--body);
	line-height: 120%;
}
.list li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/list-icon.svg) 0 0 no-repeat;
}
@media screen and (max-width: 768px) {
	.columns-item {
		width: 100%;
		max-width: none;
	}
}
@media screen and (max-width: 576px) {
	.columns-block,
	.columns-item .list {
		color: var(--grey);
	}
}

/************************* text-4 *************************/
.text-3 {
	padding: max(80px, 160rem) 0;
}
.text-3-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 0 max(60px, 97rem);
}
.text-3-top h2 {
	max-width: max(750px, 1150rem);
}
.text-3-top h4 {
	max-width: max(1100px, 1395rem);
	color: var(--blue);
	opacity: 0.8;
}
.text-3-block {
	display: flex;
	flex-wrap: wrap;
	gap: max(40px, 80rem) 0;
	margin: 0 -10px max(50px, 70rem);
}
.text-3-item {
	width: 33.33%;
	padding: 0 10px;
}
.text-3-item .circle-icon {
	margin: 0 0 20px;
}
.text-3-item h4 {
	margin: 0 0 15px;
	opacity: 0.8;
}
.text-3-text {
	max-width: max(440px, 506rem);
	color: var(--grey);
	opacity: 0.8;
}
.dark-theme .text-3-top h4 {
	color: var(--green);
}
.dark-theme .text-3-text {
	color: var(--white);
}
.dark-theme .circle-icon span {
	border: 1px solid var(--white);
}
.dark-theme .circle-icon span:last-child {
	background: var(--green);
	border: 1px solid var(--green);
}
.text-3.dark-theme .button {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.text-3.dark-theme .button:hover {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}

.text-3-item:nth-child(1){--item-index: 1;}
.text-3-item:nth-child(2){--item-index: 2;}
.text-3-item:nth-child(3){--item-index: 3;}
.text-3-item:nth-child(4){--item-index: 4;}
.text-3-item:nth-child(5){--item-index: 5;}
.text-3-block .circle-icon {
	opacity: 0;
	transition: all 0.5s ease-out;
	transition-delay: calc( 0.1s + ( 0.2s * ( var(--item-index)) ) );
}
.text-3-item h4{
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.5s ease-out;
	transition-delay: calc( 0.3s + ( 0.2s * ( var(--item-index)) ) );
}
.text-3-text {
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.5s ease-out;
	transition-delay: calc( 0.5s + ( 0.2s * ( var(--item-index)) ) );
}
.text-3-block.ani_start .circle-icon {
	opacity: 1;
}
.ani_start .text-3-item h4{
	opacity: 1;
	transform: translateY(0px);
}
.ani_start .text-3-text {
	opacity: 1;
	transform: translateY(0px);
}

@media screen and (max-width: 1024px) {
	.text-3-item {
		width: 50%;
	}
}
@media screen and (max-width: 576px) {
	.text-3-item {
		width: 100%;
	}
	.text-3-item h4 {
		margin: 0 0 20px;
	}
}

/************************* text-4 *************************/
.text-4 {
	padding: max(80px, 160rem) 0;
}
.text-4-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.text-4-side {
	width: 48%;
	padding: 0 50px 0 0;
}
.text-4-content {
	width: 52%;
}
.text-4-block h2 {
	max-width: max(340px, 610rem);
	margin: 0 0 max(40px, 100rem);
}
.text-4-content {
	color: rgba(23, 23, 23, 0.8);
}
.text-4-content .list-big {
	gap: 22px;
}
.text-4-content .list-big li {
	padding: 0 0 0 40px;
}
.text-4-content .list-big li::before {
	top: 0px;
	margin-top: 0;
}
.dark-theme .text-4-content {
	color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
	.text-4-block {
		position: relative;
		padding-bottom: 76px;
	}
	.text-4-side {
		width: 100%;
		padding: 0;
	}
	.text-4-content {
		width: 100%;
	}
	.text-4-button {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		text-align: center;
	}
}
@media screen and (max-width: 576px) {
	.text-4-content .list-big {
		gap: 30px;
	}
	.text-4-content .list-big li {
		padding: 38px 0 0;
		font-size: var(--body);
		line-height: 120%;
	}
	.dark-theme .text-4-content {
		color: var(--white);
	}
}

/************************* list-section *************************/
/*.list-section {
padding: max(80px, 157rem) 0 max(80px, 116rem);
}*/
.list-section h2 {
	max-width: max(320px, 512rem);
	margin: 0 auto max(30px, 48rem);
	text-align: center;
}
.list-section-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.list-section .list-big {
	width: 33.33%;
	padding: 0 10px;
	gap: 0;
}
.list-section .list-big li {
	padding: max(20px, 22rem) 0 max(20px, 22rem) max(35px, 55rem);
	border-top: 1px solid rgba(23, 23, 23, 0.05);
	color: rgba(23, 23, 23, 0.8);
}
.list-section .list-big li:last-child {
	border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}
@media screen and (max-width: 768px) {
	.list-section .list-big {
		width: 100%;
	}
	.list-section .list-big li:first-child {
		border-top: 0;
	}
	.list-section .list-big:first-child li:first-child {
		border-top: 1px solid rgba(23, 23, 23, 0.05);
	}
	.list-section .list-big li {
		color: var(--black);
	}
}
@media screen and (max-width: 576px) {
	.list-section h2 {
		margin: 0 auto 68px;
	}
}

/************************* textcard-section *************************/
.textcard-section {
	padding: max(100px, 138rem) 0 max(63px, 86rem);
}
.textcard-section h2 {
	max-width: max(640px, 860rem);
	margin: 0 auto max(20px , 28rem);
	text-align: center;
}
.textcard-section-top {
	max-width: max(740px, 820rem);
	margin: 0 auto 40px;
	font-size: max(18px, 30rem);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
	text-align: center;
}
.textcard-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	gap: max(20px , 25rem) 0;
	margin: 0 0 max(45px , 80rem);
}
.textcard-section h2 + .textcard-block {
	padding-top: max(20px, 32rem);
}
.textcard-col {
	width: 50%;
	padding: 0 10px;
}
.textcard-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: max(40px , 70rem) max(35px , 75rem);
	border: 1px solid rgba(0, 0, 0, 0.4);
	border-radius: 24px;
}
.textcard-compact {
	padding: max(26px , 35rem) max(26px , 40rem);
}
.textcard-item h3 {
	margin: 0 0 max(30px, 35rem);
}
.textcard-text {
	max-width: max(580px, 670rem);
	margin: 0 0 max(30px, 40rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
}
.textcard-compact .textcard-text {
	max-width: max(480px, 540rem);
	margin: 0 0 30px;
	color: rgba(70, 70, 70, 0.8);
}
.textcard-text:last-child {margin: 0;}
.textcard-item .list-big {
	margin: 0 0 max(30px, 40rem);
	color: rgba(0, 0, 0, 0.6);
}
.textcard-item .list-big:last-child {margin: 0;}
.textcard-item .list-big li::before {
	top: 0px;
	margin-top: 0;
}
.textcard-item .button {
	margin: auto auto 0 0;
}
.textcard-compact .button {
	min-width: 1px;
	padding: 12px 20px;
}
.button-wrap {
	text-align: center;
}
.dark-theme .textcard-item {
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.dark-theme .textcard-section-top,
.dark-theme .textcard-text,
.dark-theme .textcard-item .list-big {
	color: rgba(255, 255, 255, 0.8);
}
.dark-theme .textcard-compact .textcard-text {
	color: rgba(255, 255, 255, 0.6);
}
.textcard-with-tags h3 {
	margin: 0 0 max(25px, 45rem);
}
.textcard-with-tags .textcard-text {
	margin: 0 0 max(54px, 80rem);
	font-size: var(--body);
	line-height: 120%;
}
.textcard-tags {
	display: flex;
	flex-wrap: wrap;
	gap: max(10px, 13rem);
	margin: 0 0 33px;
}
.textcard-tags-item {
	padding: 3px 15px;
	font-size: var(--hint);
	line-height: 120%;
	color: var(--black);
	border-radius: 20px;
	backdrop-filter: blur(48px);
	background: rgba(23, 23, 23, 0.1);
	border: 1px solid rgba(23, 23, 23, 0.6);
}
.dark-theme .textcard-tags-item {
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1024px) {
	.textcard-col {
		width: 100%;
	}
}
@media screen and (max-width: 576px) {
	.textcard-section h2 {
		max-width: 340px;
	}
	.textcard-section-top {
		color: rgba(23, 23, 23, 0.8);
	}
	.textcard-text {
		margin: 0 0 40px;
		font-size: var(--body);
		line-height: 120%;
		color: rgba(23, 23, 23, 0.8);
	}
	.textcard-item .list-big {
		margin: 0 0 40px;
		color: rgba(23, 23, 23, 0.8);
	}
	.textcard-compact h3 {
		color: rgba(23, 23, 23, 0.8);
	}
	.textcard-compact .textcard-text {
		margin: 0 0 37px;
		color: var(--grey);
	}
	.textcard-item .button {
		min-width: 1px;
		padding: 12px 20px;
		margin: auto auto 0;
	}
	.textcard-compact .button,
	.textcard-with-tags .button {
		margin: auto auto 0 0;
	}
	.dark-theme .textcard-compact h3 {
		color: var(--white);
	}
	.textcard-tags {
		margin: 0 0 56px;
	}
}

/************************* media sections *************************/
.media {
	padding: max(64px, 130rem) 0 max(66px, 116rem);
	background: #f3f3f3;
}
.media-white {
	background-color: white;
}
.media-block {
	display: flex;
	align-items: center;

}
.media-side {
	width: 50%;
}
.media-content {
	width: 50%;
	max-width: 540px;
	padding: 0 0 0 max(50px, 108rem);
	display: flex;
	flex-direction: column;
	gap: max(30px, 60rem);
}
.media-side h2 {
	display: none;
	margin: 0 0 max(20px, 30rem);
}
.media-img {
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.media-img-img, .media-img-video {
	display: block;
	width: 100%;
	height: max(400px, 605rem);
	object-fit: cover;
}
.media-content h4 {
	max-width: max(440px, 640rem);
}
.media-content .list-big {
	color: rgba(23, 23, 23, 0.8);
}
.media-content .list-big li::before {
	top: 0px;
	margin-top: 0;
}
.media-text {
	color: rgba(23, 23, 23, 0.8);
}
.media-reverse .media-block {
	flex-direction: row-reverse;
}
.media-reverse .media-content {
	padding: 0 max(50px, 108rem) 0 0;
}
@media screen and (max-width: 1024px) {
	.media-block {
		display: block;
	}
	.media-side {
		width: auto;
	}
	.media-content {
		width: auto;
		padding: max(20px, 60rem) 0 0;
	}
	.media-reverse .media-content {
		padding: max(20px, 60rem) 0 0;
	}
	.media-side h2 {
		display: block;
	}
	.media-content h4 {
		display: none;
	}
	.media-img-img, .media-img-video {
		height: max(270px, 1005rem);
	}
}
@media screen and (max-width: 576px) {
	.media-content .list-big li {
		font-size: var(--body);
		line-height: 120%;
	}
}

/************************* media sections 2 *************************/
.media-2 {
	padding: max(64px, 140rem) 0 max(60px, 140rem);
}
.media-2-block {
	display: flex;
}
.media-2-side {
	width: 42.5%;
}
.media-2-content {
	width: 57.5%;
	padding: 0 0 0 max(40px, 54rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.media-2 .media-img-img, .media-2 .media-img-video {
	height: max(400px, 716rem);
}
.media-2-content .media-img {
	display: none;
}
.media-reverse .media-2-block {
	flex-direction: row-reverse;
}
.media-reverse .media-2-content {
	padding: 0 max(50px, 108rem) 0 0;
}
.media-2-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 0 max(20px, 27rem);
}
.media-2-subtitle {
	margin: 0 0 max(20px, 43rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
}
.media-2-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: max(30px, 45rem) 0;
	margin: 0 0 50px;
}
.media-2-info:last-child {margin: 0;}
.media-2-item {
	width: calc(50% - 20px);
}
.media-2-title {
	position: relative;
	padding: 0 0 0 31px;
	margin: 0 0 8px;
	font-size: var(--big_body);
	line-height: 120%;
	color: var(--black);
}
.media-2-title::before {
	position: absolute;
	top: 1px;
	left: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/list-icon.svg) 0 0 no-repeat;
}
.media-2-text {
	color: rgba(70, 70, 70, 0.7);
}
.dark-theme .media-2-subtitle,
.dark-theme .media-2-text  {
	color: #e2e2e2;
	opacity: 0.8;
}
.dark-theme .media-2-title {
	color: var(--white);
}
@media screen and (max-width: 1240px) {
	.media-2-item {
		width: 100%;
	}
}
@media screen and (max-width: 1024px) {
	.media-2-block {
		display: block;
	}
	.media-2-side {
		width: auto;
	}
	.media-2-content {
		width: auto;
		padding: 0;
	}
	.media-reverse .media-2-content {
		padding: 0;
	}
	.media-2-side .media-img {
		display: none;
	}
	.media-2-content .media-img {
		display: block;
		margin: 0 0 max(20px, 60rem);
	}
	.media-2 .media-img-img, .media-2 .media-img-video {
		height: max(270px, 1005rem);
	}
}
@media screen and (max-width: 576px) {
	.media-2-title {
		padding: 40px 0 0;
		margin: 0 0 10px;
		font-size: var(--h3);
		line-height: 120%;
		color: rgba(23, 23, 23, 0.8);
	}
	.media-2-subtitle,
	.media-2-text {
		color: var(--grey);
	}
	.media-2-button {
		text-align: center;
	}
	.media-2-button .button {
		min-width: 207px;
	}
	.dark-theme .media-2-subtitle {
		color: var(--white);
		opacity: 1;
	}
	.dark-theme .media-2-text  {
		color: rgba(255, 255, 255, 0.8);
		opacity: 1;
	}
	.dark-theme .media-2-title {
		color: rgba(255, 255, 255, 0.8);
	}
}

/************************* video section *************************/
.video-section {
	padding: max(70px, 160rem) 0 max(80px, 152rem);
}
.video-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.video-media {
	width: 49.5%;
}
.video-wrap {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	border-radius: 20px;
}
.video-wrap img {
	width: 100%;
	height: max(355px, 478rem);
	object-fit: cover;
}
.video-wrap:hover .video-play-hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.video-wrap .video-play-icon {
	border: 1px solid var(--white);
}
.video-wrap .video-play-icon path {
	fill: var(--white);
}
.video-wrap .video-play-text {
	color: var(--white);
}
.video-wrap .video-play-hover::after {
	background: var(--white);	
}
.video-content {
	display: flex;
	flex-direction: column;
	width: 46%;
	max-width: max(440px, 615rem);
}
.video-content .video-wrap {display: none;}
.video-title {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	margin: 0 0 max(20px, 40rem);
}
.video-content .button {
	margin: 0 auto 0 0;
}
.video-content h4 {
	color: rgba(70, 70, 70, 0.8);
}
.video-text {
	margin: 0 0 max(30px, 40rem);
	color: rgba(70, 70, 70, 0.8);
}
.video-about {
	position: absolute;
	top: max(15px, 20rem);
	left: max(15px, 20rem);
	max-width: 264px;
	font-size: 16px;
	line-height: 120%;
	color: var(--white);
}
.dark-theme .video-content h4 {
	color: rgba(255, 255, 255, 0.8);
}
.dark-theme .video-text {
	margin: 0 0 max(30px, 40rem);
	color: rgba(255, 255, 255, 0.8);
}
.video-section.dark-theme .button {
	color: var(--black);
	background: var(--green);
	border: 1px solid var(--green);
}
.video-section.dark-theme .button:hover {
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--white);
}
@media screen and (max-width: 1024px) {
	.video-block {
		display: block;
	}
	.video-media {
		display: none;
		width: auto;
	}
	.video-content {
		width: auto;
		max-width: none;
	}
	.video-content .video-wrap {
		display: block;
		margin: 0 0 20px;
	}
	.video-wrap .video-play-text {display: none;}
	.video-wrap .video-play-icon {
		width: 50px;
		height: 50px;
		padding-left: 6px;
	}
	.video-wrap .video-play-icon svg {
		width: 17px;
		height: 17px;
	}
	.video-wrap .video-play {
		top: 50%;
		left: 50%;
		bottom: auto;
		margin: -25px 0 0 -25px;
	}
	.video-about {
		top: auto;
		bottom: max(15px, 20rem);
	}
}
@media screen and (max-width: 576px) {
	.video-text {
		margin: 0 0 35px;
	}
	.video-content .button {
		margin: 0 auto;
		min-width: 207px;
	}
	.video-title h2 {
		max-width: 320px;
	}
}

/************************* quote section *************************/
.benefits {
	padding: max(70px, 180rem) 0 max(65px, 155rem);
	background: var(--black);
}
.benefits h2 {
	max-width: max(480px, 700rem);
	margin: 0 auto max(36px, 65rem);
	color: var(--white);
	text-align: center;
}
.benefits-block {
	display: flex;
	align-items: flex-start;
}
.benefits-img {
	width: 41%;
}
.benefits-img img {
	width: 100%;
	height: 630px;
	object-fit: cover;
	border-radius: 20px;
}
.benefits-content {
	width: 59%;
	padding: 0 0 0 20px;
}
.benefits-list {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-item {
	max-width: 56%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-text {
	position: absolute;
	top: 0;
	left: 56%;
	right: 0;
	padding: 20px 0 0 max(30px, 50rem);
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s linear;
	opacity: 0;
	z-index: 10;
}
.benefits-item.vis .benefits-text {
	opacity: 1;
	z-index: 20;
}
.benefits-name {
	position: relative;
	padding: 26px max(17px, 47rem);
	cursor: pointer;
	color: var(--white);
	font-size: 18px;
	transition: all 0.3s linear;
}
.benefits-item.vis .benefits-name {
	color: var(--black);
}
.benefits-wrap {
	position: relative;
}
.benefits-name::before {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 70%;
	height: 40%;
	opacity: 0;
	transform: translate3d(-50%, -50%, 0);
	background: var(--green);
	border-radius: 18px;
	transition: all 0.5s var(--ease-out-expo);
}
.benefits-item.vis .benefits-name::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}
.benefits-list .slick-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin: 20px 0 0;
}
.benefits-list .slick-dots li {
	height: 4px;
}
.benefits-list .slick-dots button {
	display: block;
	width: 4px;
	height: 4px;
	font-size: 0;
	border-radius: 10px;
	background: #d9d9d9;
}
.benefits-list .slick-dots .slick-active button {
	width: 160px;
	background: var(--green);
}
@media screen and (max-width: 1240px) {
	.benefits-item {
		max-width: 48%;
	}
	.benefits-text {
		left: 48%;
	}
}
@media screen and (max-width: 1024px) {
	.benefits-block {
		display: block;
	}
	.benefits-img {
		width: auto;
		margin: 0 0 30px;
	}
	.benefits-img img {
		max-height: 480px;
		height: auto;
	}
	.benefits-content {
		width: auto;
		padding: 0;
	}
	.benefits-list {
		width: 100%;
		border-top: 0;
	}
	.benefits-item {
		max-width: none;
		border-bottom: 0;
	}
	.benefits-text {
		position: static;
		padding: 16px 17px 10px;
		opacity: 1;
		color: rgba(255, 255, 255, 0.8);
	}
	.benefits-name {
		color: var(--black);
	}
	.benefits-name::before {
		width: 100%;
		height: 100%;
		opacity: 1;
	}
}
@media screen and (max-width: 576px) {
	.benefits-img {
		margin: 0 0 10px;
	}
}

/************************* serv section *************************/
.serv {
	padding: max(53px, 113rem) 0 max(55px, 130rem);
	background: var(--black);
}
.serv-top h2 {
	max-width: max(480px, 700rem);
	margin: 0 auto max(33px, 100rem);
	color: var(--white);
	text-align: center;
}
.serv-block {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.serv-tabs {
	width: 45%;
	display: flex;
	flex-direction: column;
	gap: max(30px, 38rem);
}
.serv-tab {
	display: flex;
	flex-direction: column;
	gap: max(15px, 23rem);
	position: relative;
	padding: max(20px, 35rem) 100px max(20px, 35rem) max(20px, 47rem);
	color: var(--white);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 24px;
}
.serv-tab-title {
	font-size: var(--h2);
	line-height: 120%;
	opacity: 0.5;
	transition: all 0.3s linear;
}
.serv-tab-text {
	opacity: 0.2;
	transition: all 0.3s linear;
}
.serv-tab:hover {
	border-color: rgba(255, 255, 255, 0.6);
}
.serv-tab:hover .serv-tab-title {
	opacity: 1;
}
.serv-tab:hover .serv-tab-text {
	opacity: 0.6;
}
.serv-tab.active {
	color: var(--black);
	background: var(--white);
	border-color: var(--white);
}
.serv-tab.active .serv-tab-title {
	opacity: 1;
}
.serv-tab.active .serv-tab-text {
	opacity: 0.6;
}
.serv-main {
	width: 47%;
}
.serv-arrow {
	position: absolute;
	top: max(20px, 35rem);
	right: max(20px, 35rem);
	min-width: max(30px, 54rem);
	width: max(30px, 54rem);
	height: max(30px, 54rem);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	transition: all 0.3s linear;
}
.serv-arrow svg {
	width: max(14px, 25rem);
	transition: all 0.3s linear;
	opacity: 0.2;
}
.serv-arrow path {
	stroke: var(--white);
	transition: all 0.3s linear;
}
.serv-tab:hover svg {
	opacity: 0.6;
}
.serv-tab:hover .serv-arrow {
	border: 1px solid rgba(255, 255, 255, 0.6);
}
.serv-tab.active svg {
	opacity: 1;
}
.serv-tab.active .serv-arrow {
	background: rgba(21, 48, 66, 0.1);
	border: 0;
}
.serv-tab.active .serv-arrow path {
	stroke: var(--black);
}
.serv-main-wrap {
	margin: 0 min(-10px, -55rem);
}
.serv-wrap {
	display: none;
	padding: 0 max(10px, 55rem);
	opacity: 0;
	transition: opacity 0.3s linear;
}
.serv-wrap.vis {
	display: block;
}
.serv-wrap.show {
	opacity: 1;
}
.serv-mob-title {
	display: none;
}
@media screen and (max-width: 1024px) {
	.serv-block {
		display: block;
	}
	.serv-main {
		width: auto;
	}
	.serv-main-wrap {
		margin: 0;
	}
	.serv-tabs {display: none;}
	.serv-wrap {
		padding: 0;
		margin: 0 0 50px;
	}
	.serv-wrap:last-child {margin: 0;}
	.serv-mob-title {
		display: flex;
		flex-direction: column;
		gap: max(15px, 23rem);
		padding: max(20px, 35rem) max(20px, 47rem) max(20px, 35rem);
		margin: 0 0 30px;
		color: var(--black);
		background: var(--white);
		border-radius: 20px;
	}
	.serv-tab-title {
		font-size: var(--h3);
		line-height: 120%;
		opacity: 1;
	}
	.serv-tab-text {
		opacity: 0.6;
	}
	.serv-wrap {
		display: block;
		opacity: 1;
	}
	.serv-wrap .faq-top {
		color: var(--white);
		font-size: 18px;
		line-height: 120%;
	}
	/*.dark-theme .faq-item.open .faq-top {color: var(--white);}*/
	.serv-wrap .faq-hidden {
		color: rgba(255, 255, 255, 0.8);
	}
	.dark-theme .serv-wrap .faq-item.open::before {display: none;}
	.dark-theme .serv-wrap  .faq-item.vis .faq-arrow path {
		stroke: var(--white);
	}
	.dark-theme .serv-wrap  .faq-item.open .faq-arrow path {
		stroke: var(--white);
	}
	.dark-theme .serv-wrap  .faq-item.vis .faq-arrow::before,
	.dark-theme .serv-wrap  .faq-item.vis .faq-arrow::after {
		border-color: rgba(255, 255, 255, 0.2);
	}
	.dark-theme .serv-wrap  .faq-item.open .faq-arrow::before,
	.dark-theme .serv-wrap  .faq-item.open .faq-arrow::after {
		border-color: rgba(255, 255, 255, 0.2);
	}
}

/************************* quote section *************************/
.quote-block {
	display: flex;
	justify-content: space-between;
}
.quote-side {
	width: 49.5%;
	padding: max(32px, 60rem) max(40px, 80rem) 0 0;
}
.quote-side h4 {
	margin: 0 0 20px;
}
.quote-side-text {
	margin: 0 0 max(32px, 60rem);
	color: rgba(23, 23, 23, 0.8);
}
.quote-main {
	display: flex;
	flex-direction: column;
	width: 49.5%;
	min-height: max(480px, 630rem);
	padding: max(30px, 60rem) max(20px, 60rem) max(30px, 44rem);
	color: var(--white);
	background: var(--blue);
	border-radius: max(20px, 24rem);
}
.quote-text {
	margin: 0 0 40px;
	font-size: var(--big_body);
	line-height: 120%;
	opacity: 0.8;
}
.quote-author {
	margin: auto 0 0;
	display: flex;
	align-items: center;
	gap: max(20px, 40rem);
}
.quote-photo {
	width: max(94px, 200rem);
}
.quote-photo img {
	width: 100%;
	border-radius: 50%;
}
.quote-info {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.quote-name {
	font-size: var(--h3);
	line-height: 120%;
}
.quote-status {
	opacity: 0.8;
}
@media screen and (max-width: 1024px) {
	.quote-block {display: block;}
	.quote-side {
		width: auto;
		padding: 0 0 32px;
	}
	.quote-side h4 {
		font-size: var(--h2);
		line-height: 120%;
	}
	.quote-main {
		width: auto;
		min-height: 1px;
	}
	.quote-text {
		font-size: var(--body);
	}
}

/************************* numbers *************************/
.numbers {
	background: url(../images/numbers-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.numbers-block {
	display: flex;
	flex-direction: column;
	height: max(600px, 860rem);
	padding: 50px 0 0;
}
.numbers-top h2 {
	margin: 0 0 max(20px, 30rem);
}
.numbers-top-value {
	margin: 0 0 max(20px, 30rem);
	font-weight: 600;
	font-size: max(70px, 100rem);
	line-height: 85%;
	color: var(--blue);
}
.numbers-top-text {
	max-width: max(200px, 230rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: var(--grey);
	opacity: 0.8;
}
.numbers-line {
	display: flex;
	justify-content: space-between;
	gap: 70px 0;
	margin: auto 0 0;
	padding: max(26px, 40rem) 0 max(26px, 64rem);
	border-top: 1px solid rgba(23, 23, 23, 0.2);
	border-bottom: 1px solid rgba(23, 23, 23, 0.2);
}
.circle-icon {
	display: flex;
}
.circle-icon span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid var(--blue);
}
.circle-icon span:last-child {
	background: var(--blue);
}
.numbers-item .circle-icon {
	margin: 0 0 18px;
}
.numbers-value {
	font-weight: 600;
	font-size: max(32px, 54rem);
	line-height: 140%;
	letter-spacing: -0.03em;
	color: var(--blue);
}
.numbers-text {
	font-size: max(16px, 22rem);
	line-height: 140%;
	color: var(--grey);
}
@media screen and (max-width: 1024px) {
	.numbers-top {
		margin: 0 0 190px;
	}
	.numbers-block {
		height: auto;
		padding: 66px 0 90px;
	}
	.numbers-line {
		flex-wrap: wrap;
	}
	.numbers-item {
		width: calc(50% - 10px);
	}
	.numbers-value {
		font-weight: 500;
	}
}

/************************* managed *************************/
.numbers-compact {
	background: url(../images/numbers-bg-2.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.numbers-compact .numbers-block {
	display: block;
	height: auto;
	padding: max(40px, 190rem) 0 max(40px, 200rem);
}
.numbers-compact .numbers-line {
	padding: 40px max(40px, 140rem);
	border-top: 1px solid rgba(23, 23, 23, 0.1);
	border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}
.numbers-compact .numbers-item {
	max-width: max(260px, 300rem);
}
.numbers-compact .circle-icon span:last-child {
	background: none;
}
.numbers-compact .circle-icon span:first-child {
	background: var(--blue);
}
.numbers-compact .numbers-value {
	margin: 0 0 18px;
	font-weight: 600;
	font-size: max(70px, 100rem);
	line-height: 85%;
}
.numbers-compact .numbers-text {
	font-size: max(16px, 20rem);
	line-height: 120%;
	color: var(--grey);
	opacity: 0.8;
}
.numbers-compact .numbers-item h4 {
	margin: 0 0 20px;
	opacity: 0.8;
}

@media screen and (max-width: 576px) {
	.numbers-compact .numbers-line {
		flex-direction: column;
		align-items: center;
		padding: 40px 0;
	}
	.numbers-compact .numbers-item {
		max-width: 180px;
	}
	.numbers-compact .numbers-value {
		font-weight: 600;
	}
}

/************************* managed *************************/
.managed {
	padding: max(60px, 126rem) 0 max(70px, 130rem);
	color: var(--white);
	background: var(--black);
}
.managed-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 0 0 max(37px, 100rem);
	text-align: center;
}
.managed-top h2 {
	color: var(--white);
}
.managed-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.managed-side {
	width: max(316px, 686rem);
	height: max(316px, 686rem);
}
.ring-wrap, .ring-holder {
	position: relative;
	width: 100%;
	height: 100%;
}
.ring {
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 1s linear;
}
.ring-1 {
	position: absolute;
	inset: 0;
}
.ring-1 img {
	width: 100%;
}
.ring-2 {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ring-2 img {
	width: max(230px, 498rem);
	height: max(230px, 498rem);
	border-radius: 50%;
}
.ring-3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	width: max(280px, 608rem);
	height: max(280px, 608rem);
}
.ring-part {
	position: absolute;
	transition: opacity 0.6s linear;
	opacity: 0.2;
}
.ring-part-1 {
	width: max(18px, 40rem);
	height: max(92px, 200rem);
	top: max(94px, 204rem);
	right: 0;
}
.ring-part-2 {
	width: max(42px, 93rem);
	height: max(46px, 102rem);
	top: max(205px, 445rem);
	left: max(218px, 473rem);
}
.ring-part-3 {
	width: max(137px, 297rem);
	height: max(31px, 67rem);
	bottom: 0;
	left: max(68px, 148rem);
}
.ring-part-4 {
	width: max(22px, 47rem);
	height: max(22px, 47rem);
	top: max(222px, 482rem);
	left: max(32px, 71rem);
}
.ring-part-5 {
	width: max(30px, 67rem);
	height: max(133px, 287rem);
	top: max(79px, 174rem);
	left: 0;
}
.ring-part-6 {
	width: max(47px, 102rem);
	height: max(46px, 100rem);
	top: max(23px, 50rem);
	left: max(24px, 57rem);
}
.ring-part-7 {
	width: max(108px, 235rem);
	height: max(23px, 50rem);
	top: 0;
	left: max(86px, 186rem);
}
.ring-part-8 {
	width: max(54px, 117rem);
	height: max(55px, 120rem);
	top: max(23px, 50rem);
	left: max(207px, 449rem);
}
.state-1 .ring-part-1,
.state-2 .ring-part-8,
.state-3 .ring-part-7,
.state-4 .ring-part-6,
.state-5 .ring-part-5,
.state-6 .ring-part-4,
.state-7 .ring-part-3,
.state-8 .ring-part-2 {opacity: 1;}
.ring-title:hover img {
	opacity: 0.7;
}
.ring-light {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	width: max(268px, 521rem);
	height: max(210px, 508rem);
	background: url(../images/light.svg) 50% 50% no-repeat;
	background-size: contain;
}
.ring-info {
	position: absolute;
	z-index: 50;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: max(22px, 45rem);
}
.ring-title {
	font-weight: 400;
	font-size: max(18px, 40rem);
	line-height: 110%;
	letter-spacing: -0.05em;
	text-align: center;
	background: linear-gradient(83deg, #fff 0%, #9dc03c 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ring-arrows {
	display: flex;
	justify-content: space-between;
	width: max(30px, 64rem);
}
.ring-arrow {
	width: max(7px, 15rem);
	height: max(14px, 29rem);
	font-size: 0;
	background: url(../images/slider-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
}
.ring-prev {
	transform: scale(-1, 1);
}
.managed-slider {
	width: 49%;
	border: 1px solid #fff;
	border-radius: 20px;
}
.managed-slide {
	padding: max(35px, 65rem) max(30px, 80rem) max(60px, 65rem);
}
.managed-slide h4 {
	margin: 0 0 max(30px, 40rem);
	color: var(--white);
}
.managed-text {
	color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1024px) {
	.managed-block {
		display: block;
	}
	.managed-side {
		margin: 0 auto 140px;
	}
	.managed-slider {
		width: auto;
	}
	.ring-holder {
		transform: rotate(90deg);
	}
}
@media screen and (max-width: 576px) {
	.managed-top h4 {
		max-width: 310px;
	}
}

/************************* steps *************************/
.steps {
	padding: max(50px, 130rem) 0 max(70px, 170rem);
	color: var(--white);
	background: var(--black);
}
.steps-section {
	padding: 0 0 max(90px, 187rem);
}
.steps-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.steps-side {
	display: flex;
	flex-direction: column;
	gap: 22px 0;
	width: 44%;
	padding: max(20px, 30rem) 0 0;
}
.steps-side h2 {
	max-width: max(270px, 390rem);
	color: var(--white);
}
.steps-side h4 {
	max-width: max(270px, 390rem);
}
.steps-content {
	width: 49%;
}
.steps-item {
	position: relative;
	padding: max(20px, 30rem) max(30px, 50rem) max(30px, 50rem) max(80px, 290rem);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.steps-item:last-child {
	padding-bottom: 0;
}
.steps-num {
	position: absolute;
	top: max(20px, 30rem);
	left: 0;
	font-weight: 500;
	font-size: max(32px, 66rem);
	line-height: 110%;
}
.steps-content h4 {
	margin: 0 0 max(20px, 30rem);
	color: var(--white);
}
.steps-text {
	color: rgba(255, 255, 255, 0.8);
}
.steps-services {
	position: relative;
	z-index: 30;
	padding: max(40px, 65rem) 0;
	margin: min(-30px, -60rem) 0;
	color: var(--black);
	background: #F3F3F3;
}
.steps-services .services-block {
	justify-content: space-around;
}
.services-text {
	max-width: max(190px, 230rem);
	margin: 0 auto;
	padding: 12px 0 0;
	opacity: 0.8;
	font-size: max(16px, 20rem);
	line-height: 120%;
}
.steps .loc {
	padding: max(30px, 60rem) 0 0;
}
.steps .loc.dark-theme {
	border-radius: 0;
}
.loc-4 .loc-content {
	width: 47%;
	padding: max(120px, 170rem) 0 max(80px, 130rem);
}
.loc-4 .loc-map {
	width: 53%;
	align-items: flex-start;
}
.loc-4 .loc-map img {
	width: 100%;
	min-width: 600px;
}
.loc-4 .loc-content h2 {
	max-width: max(440px, 540rem);
	margin: 0 0 max(30px, 35rem);
}
.loc-4 .loc-text {
	max-width: max(440px, 510rem);
	margin: 0 0 max(30px, 40rem);
}
@media screen and (max-width: 1024px) {
	.steps-side {
		width: 35%;
	}
	.steps-content {
		width: 60%;
	}
	.steps-item {
		padding: max(20px, 30rem) max(30px, 50rem) max(30px, 50rem) max(80px, 190rem);
	}
	.loc-4 .loc-content {
		width: auto;
		padding: 92px 0 0;
	}
	.loc-4 .loc-map {
		width: auto;
	}
	.loc-4 .loc-map img {
		width: 400px;
		min-width: 1px;
	}
	.loc-4 .loc-content h2 {
		max-width: max(240px, 440rem);
		margin: 0 0 190px;
	}
	.loc-4 .loc-text {
		margin: 0 0 15px;
	}
	.steps-services {
		padding: 73px 0;
	}
}
@media screen and (max-width: 767px) {
	.steps-section {
		padding: 0 30px max(90px, 187rem);
	}
	.steps-block {
		display: block;
	}
	.steps-side {
		width: auto;
		padding: 0 0 60px;
	}
	.steps-content {
		width: auto;
	}
	.steps-item {
		padding: 10px 0 30px;
	}
	.steps-top {
		display: flex;
		align-items: center;
		gap: 22px;
		margin: 0 0 10px;
	}
	.steps-num {
		position: static;
	}
	.steps-content h4 {
		margin: 0;
	}
	.steps-services .services-block {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.services-text {
		padding: 18px 0 0;
	}
}

/************************* services *************************/
.services {
	padding: max(109px, 154rem) 0 max(73px, 135rem);
	background: #F3F3F3;
}
.services h2 {
	max-width: max(320px, 840rem);
	margin: 0 auto 17px;
	text-align: center;
}
.services h4 {
	max-width: max(440px, 740rem);
	margin: 0 auto max(42px, 83rem);
	text-align: center;
	opacity: 0.8;
}
.services-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 0;
	margin: 0 min(-10px, -20rem);
}
.services-item {
	width: 25%;
	padding: 0 max(10px, 50rem);
	text-align: center;
}
.services-icon {
	margin: 0 0 max(20px, 28rem);
}
.services-icon img {
	width: max(81px, 117rem);
}
.services-name {
	font-size: max(18px, 23rem);
	line-height: 120%;
	opacity: 0.8;
}
.services.dark-theme {
	background: var(--black);
}
.dark-theme .services-name {
	color: var(--white);
}
@media screen and (max-width: 1024px) {
	.services-item {
		width: 33.33%;
	}
}
@media screen and (max-width: 576px) {
	.services {
		padding: 109px 10px 73px;
	}
	.services h4 {
		font-size: var(--big_body);
		line-height: 120%;
	}
	.services-block {
		gap: 60px 0;
	}
	.services-item {
		width: 50%;
		padding: 0 5px;
	}
}

/************************* loc section *************************/
.loc {
	overflow: hidden;
	padding: 0 0 max(70px, 140rem);
}
.loc-block {
	display: flex;
	justify-content: space-between;
	margin: 0 0 36px;
}
.loc-block:last-child {margin: 0;}
.loc-content {
	position: relative;
	z-index: 20;
	width: 48%;
	padding: max(100px, 180rem) 0 max(60px, 120rem);
}
.loc-map {
	width: 48%;
	display: flex;
	justify-content: flex-end;
}
.loc-map img {
	margin-top: -10px;
}
.loc-1 .loc-map {
	overflow: hidden;
}
.loc-1 .loc-map img {
	width: max(1100px, 1450rem);
}
.loc-adress {
	display: flex;
	flex-wrap: wrap;
	gap: max(40px, 50rem) max(50px, 60rem);
}
.loc-content h2 {
	margin: 0 0 max(20px, 60rem);
}
.loc-text {
	margin: 0 0 max(40px, 80rem);
	color: rgba(70, 70, 70, 0.8);
}
.loc-text a {
	color: rgba(70, 70, 70, 0.8);
}
.loc-content h4 {
	margin: 0 0 max(30px, 50rem);
}
.loc-adress-item {
	color: var(--black);
}
.loc-adress .map-adress-text a {
	color: rgba(70, 70, 70, 1);
	text-decoration: none;
}
.loc-adress .map-adress-text a:hover {
	color: rgba(70, 70, 70, 0.4);
}
.loc-2 {
	flex-direction: row-reverse;
	align-items: flex-end;
}
.loc-2 .loc-content {
	width: 40%;
	padding: max(60px, 90rem) 0;
}
.loc-2 .loc-map {
	width: 48%;
}
.loc-2 .loc-map img {
	width: 100%;
	min-width: 600px;
}
.loc-3 .loc-content {
	padding: max(100px, 220rem) 0 max(60px, 120rem);
}
.loc-3 .loc-map {
	overflow: hidden;
	height: max(400px, 780rem);
	justify-content: center;
}
.loc-3 .loc-map img {
	width: max(580px, 900rem);
}
.dark-theme .loc-adress-item {
	color: var(--white);
}
.dark-theme .loc-text {
	color: rgba(255, 255, 255, 0.8);
}
.dark-theme .loc-adress .map-adress-text a {
	color: var(--white);
}
.dark-theme .loc-adress .map-adress-text a:hover {
	color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1240px) {
	.loc-2 .loc-map {
		width: 54%;
	}
}
@media screen and (max-width: 1024px) {
	.loc-block {
		position: relative;
		display: block;
		margin: 0 0 55px;
	}
	.loc-content {
		width: auto;
		padding: 216px 0 0;
	}
	.loc-map {
		position: absolute;
		top: 0;
		right: 0;
		width: auto;
	}
	.loc-1 .loc-map img {
		width: 580px;
		min-width: 1px;
	}
	.loc-1 h2 {
		max-width: max(180px, 400rem);
	}
	.loc-2 .loc-content {
		width: auto;
		padding: 180px 0 0;
	}
	.loc-2 h2 {
		max-width: max(240px, 600rem);
	}
	.loc-2 .loc-map {
		width: auto;
	}
	.loc-2 .loc-map img {
		width: 290px;
		min-width: 1px;
	}
	.loc-3 .loc-content {
		padding: 145px 0 10px;
	}
	.loc-3 .loc-map {
		height: 280px;
	}
	.loc-3 .loc-map img {
		width: 400px;
	}
	.loc-3 .loc-content h2 {
		max-width: max(280px, 600rem);
		margin: 0 0 66px;
	}
}
@media screen and (max-width: 767px) {
	.loc-adress {
		gap: max(40px, 50rem) 0;
	}
	.loc-adress-item {
		width: calc(50% - 7px);
	}
	.loc-adress .map-adress-title {
		font-size: 16px;
	}
	.loc-adress .map-adress-text,
	.loc-adress .map-phone {
		font-size: 14px;
	}
}
/************************* map section *************************/
.map-section {
	padding: max(85px, 150rem) 0 max(100px, 150rem);
}
.map-block {
	display: flex;
	justify-content: space-between;
}
.map-side {
	width: 50%;
	padding: max(20px, 40rem) max(40px, 60rem) 0 0;
	color: var(--black);
}
.map-block h2 {
	margin: 0 0 max(30px, 50rem);
}
.map-text {
	max-width: max(460px, 510rem);
	margin: min(-10px, -15rem) 0 max(15px, 40rem);
	opacity: 0.8;
}
.map-adress-title {
	margin: 0 0 15px;
	font-size: 18px;
	line-height: 120%;
}
.map-adress-text {
	margin: 0 0 29px;
	font-size: 16px;
	line-height: 120%;
}
.map-phone {
	font-size: 16px;
	line-height: 120%;
}
.map-phone-link {
	position: relative;
	font-weight: 700;
	color: var(--green);
	text-decoration: none;
	white-space: nowrap;
}
.map-phone-link::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: var(--green);	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.map-phone-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.map-wrap {
	width: 50%;
}
.map-wrap h2 {
	display: none;
}
.map-wrap iframe {
	display: block;
	width: 100%;
	height: max(385px, 450rem);
	border: 0;
}
.dark-theme .map-side {
	color: var(--white);
}
@media screen and (max-width: 1024px) {
	.map-block {
		flex-direction: column-reverse;
	}
	.map-side {
		width: 100%;
		padding: 0;
	}
	.map-wrap {
		width: 100%;
		margin: 0 0 30px;
	}
	.map-side h2 {
		display: none;
	}
	.map-wrap h2 {
		display: block;
	}
	.map-text {
		margin-top: 0;
	}
}
@media screen and (max-width: 576px) {
	.map-wrap {
		margin: 0 0 20px;
	}
	.map-block h2 {
		margin: 0 0 20px;
	}
}

/************************* tips *************************/
.tips {
	padding: max(51px, 157rem) 0 max(47px, 142rem);
	background: var(--black);
	color: var(--white);
}
.tips-block {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tips-img {
	position: absolute;
	top: 0;
	left: 32.5%;
	right: 32.5%;
	padding: max(30px, 86rem) max(30px, 50rem) 0;
}
.tips-img img {
	max-width: 100%;
}
.tips-col {
	width: 32.5%;
}
.tips-top {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 20px 0;
	margin: 0 0 max(20px, 147rem);
}
.tips-top h2 {
	max-width: max(560px, 840rem);
	margin: 0 auto;
	color: var(--white);
}
.tips-top h4 {
	max-width: max(560px, 840rem);
	margin: 0 auto;
	color: var(--white);
}
.green, .dark-theme .green, .tips-top .green {
	color: var(--green);
}
.tips-item {
	position: relative;
	padding: max(15px, 18rem) 0 max(30px, 60rem) max(57px, 200rem);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.tips-num {
	position: absolute;
	top: max(10px, 13rem);
	left: 0;
	font-weight: 500;
	font-size: max(32px, 66rem);
	line-height: 110%;
}
.tips-item h4 {
	margin: 0 0 16px;
	color: var(--white);
}
.tips-text {
	opacity: 0.8;
}
@media screen and (max-width: 1024px) {
	.tips-img {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
		padding: 0 30px max(46px, 60rem);
		text-align: center;
	}
	.tips-img img {
		max-width: max(300px, 600rem);
	}
	.tips-col {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 576px) {
	.tips {
		padding: max(51px, 157rem) 10px 17px;
	}
	.tips-top {
		justify-content: flex-start;
		text-align: left;
	}
	.tips-col {
		width: 100%;
	}
	.tips-item {
		padding: 15px 0 30px 57px;
	}
	.tips-text {
		margin: 0 0 0 -57px;
	}
}

/************************* sales *************************/
.sales {
	padding: max(62px, 152rem) 0;
	background: #F3F3F3;
}
.sales-block {
	display: flex;
	justify-content: space-between;
}
.sales-main {
	width: calc(50% - 10px);
	max-width: max(640px, 740rem);
	font-size: var(--big_body);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
}
.sales-img {
	width: calc(50% - 10px);
	padding: 0 0 0 max(30px, 48rem);
}
.sales-img img {
	max-width: 100%;
	width: max(480px, 658rem);
}
.sales-main .sales-img {
	display: none;
}
.sales-main h2 {
	margin: 0 0 max(30px, 35rem);
}
.sales-main p {
	margin: 0 0 12px;
}
.sales-main p:last-child {margin: 0;}
.sales-main .list-big {
	padding: max(20px, 30rem) 0 max(20px, 38rem);
}
.sales-main .list-big:first-child {padding-top: 0;}
.sales-main .list-big:last-child {padding-bottom: 0;}
.list-big {
	display: flex;
	flex-direction: column;
	gap: max(15px, 18rem);
}
.list-big li {
	position: relative;
	padding: 0 0 0 31px;
	font-size: var(--big_body);
	line-height: 120%;
}
.list-big li::before {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	left: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/list-icon.svg) 0 0 no-repeat;
}
@media screen and (max-width: 1024px) {
	.sales-block {
		display: block;
	}
	.sales-main, .sales-img {
		width: auto;
		max-width: none;
	}
	.sales-img {display: none;}
	.sales-main .sales-img {
		display: block;
		padding: 15px 0 10px;
	}
}
@media screen and (max-width: 576px) {
	.sales-block {
		padding: 0 15px;
	}
	.sales-main {
		font-size: var(--body);
		line-height: 120%;
	}
	.sales-main p {
		margin: 0 0 15px;
	}
}

/************************* Cybersecurity Stack *************************/
.stack h2 {
	max-width: max(540px, 760rem);
	margin: 0 auto max(30px, 63rem);
	text-align: center;
}
.stack-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.stack-col {
	width: calc(50% - 10px);
	padding: max(40px, 78rem) max(35px, 60rem) max(40px, 88rem);
	background: #f3f3f3;
	border-radius: 24px;
}
.stack-col h3 {
	margin: 0 0 max(20px, 26rem);
}
.stack-text {
	margin: 0 0 max(30px, 40rem);
	color: rgba(23, 23, 23, 0.8);
	font-size: 16px;
}
.stack-list-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px 0;
}
.stack-list-col {
	width: calc(50% - 10px);
}
.stack-list {
	display: flex;
	flex-direction: column;
	gap: 18px 0;
}
.stack-list li {
	position: relative;
	padding: 0 0 0 31px;
	font-size: var(--big_body);
	line-height: 120%;
}
.stack-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/list-icon.svg) 0 0 no-repeat;
}
.stack-list a {
	color: var(--black);
	opacity: 0.8;
	text-decoration: underline;
}
.stack-list a:hover {
	color: var(--orange);
}
.stack-year {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	gap: max(30px, 48rem) 0;
}
.stack-year-item {
	width: 33.33%;
	padding: 0 15px;
}
.stack-year-title {
	margin: 0 0 20px;
	color: rgba(70, 70, 70, 0.8);
	font-size: 16px;
}
@media screen and (max-width: 1540px) {
	.stack-year-item {
		width: 50%;
	}
}
@media screen and (max-width: 1024px) {
	.stack-block {
		flex-direction: column;
		gap: max(20px, 40rem);
	}
	.stack-col {
		width: 100%;
	}
}
@media screen and (max-width: 576px) {
	.stack-list-col,
	.stack-year-item {
		width: 100%;
	}
}

/************************* Cybersecurity Stack 2 *************************/
.stack-2 h2 {
	max-width: max(540px, 760rem);
	margin: 0 auto max(30px, 63rem);
	text-align: center;
}
.stack-2-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.stack-2-col {
	width: 33.33%;
	padding: 0 10px;
}
.stack-2 .faq-list {
	margin: 0;
}
.stack-2 .faq-item {
	position: relative;
	padding: 0 25px 0 0;
	transition: all 0.5s var(--ease-out-expo);
}
.stack-2 .faq-item.vis,
.stack-2 .faq-item.open {
	padding-left: 36px;
}
.stack-2 .faq-top {
	padding: 17px 0;
}
.stack-2 .faq-hidden {
	padding: 0 0 max(25px, 30rem);
}
.faq-icon {
	display: flex;
	align-items: center;
	gap: max(15px, 20rem);
}
.faq-icon-img {
	position: relative;
	width: max(32px, 36rem);
}
.faq-icon-img img {
	width: 100%;
	transition: all 0.5s var(--ease-out-expo);
}
.faq-icon-white {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.faq-icon-text {
	font-size: var(--big_body);
	line-height: 120%;
}
.faq-item.vis .faq-icon-green,
.faq-item.open .faq-icon-green {
	opacity: 0;
}
.faq-item.vis .faq-icon-white,
.faq-item.open .faq-icon-white {
	opacity: 1;
}
.faq-green .faq-item.open::before {
	background: var(--blue);
}
.faq-green .faq-item.open .faq-top {
	color: var(--white);
}
.faq-green .faq-item.open .faq-arrow path {
	stroke: var(--white);
}
.faq-green .faq-item.open .faq-arrow::before,
.faq-green .faq-item.open .faq-arrow::after {
	border-color: rgba(255, 255, 255, 0.2);
}
.faq-green .faq-hidden {
	color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1024px) {
	.stack-2-block {
		margin: 0;
	}
	.stack-2-col {
		width: 100%;
	}

	.stack-2 .faq-item {
		position: relative;
		padding: 0 20px;
		margin: 0 -20px;
		transition: all 0.5s var(--ease-out-expo);
	}
	.stack-2 .faq-item.vis,
	.stack-2 .faq-item.open {
		padding-left: 20px;
	}
	.stack-2 .faq-top {
		padding: 17px 0;
	}
	.stack-2 .faq-hidden {
		padding: 0 0 max(25px, 30rem);
	}

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

}

/************************* Cybersecurity Stack 3 *************************/
.stack-3 h2 {
	max-width: max(540px, 760rem);
	margin: 0 auto max(30px, 63rem);
	text-align: center;
}
.stack-3-block {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.stack-3-col {
	width: calc(50% - 20px);
	max-width: max(360px, 500rem);
}
.stack-3-item {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s linear;
}
.stack-3-item.vis,
.stack-3-item.vis + .stack-3-item {
	border-color: transparent;
}
.stack-3-link {
	position: relative;
	color: var(--black);
	text-decoration: none;
}
.stack-3-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: max(15px, 21rem);
	padding: 18px max(9px, 17rem);
}
.stack-3-link::before {
	position: absolute;
	top: 50%;
	left: 50%;
	content: '';
	width: 70%;
	height: 40%;
	opacity: 0;
	transform: translate3d(-50%, -50%, 0);
	background: var(--green);
	border-radius: 18px;
	transition: all 0.5s var(--ease-out-expo);
}
.stack-3-item.vis .stack-3-link::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}
.stack-3-blue .stack-3-link::before {
	background: #1f6478;
}
.stack-3-blue.vis .stack-3-link {color: var(--white);}
.stack-3-icon {
	min-width: max(32px, 36rem);
	width: max(32px, 36rem);
	height: max(32px, 36rem);
	background: var(--green);
	border-radius: 50%;
}
.stack-3-icon img {
	width: 100%;
}
.stack-3-blue .stack-3-icon {
	background: #1f6478;
}
.stack-3-text {
	font-size: 18px;
}
.stack-3-hidden {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: max(380px, 450rem);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--big_body);
	line-height: 120%;
	color: rgba(70, 70, 70, 0.8);
	transition: all 0.3s linear;
	opacity: 0;
	z-index: 10;
}
.stack-3-item.vis .stack-3-hidden {
	opacity: 1;
	z-index: 20;
}
.stack-3-col:last-child .stack-3-wrap {
	flex-direction: row-reverse;
	text-align: right;
}
@media screen and (max-width: 1320px) {
	.stack-3-col {
		width: 33%;
		max-width: none;
	}
	.stack-3-hidden {
		left: 33%;
		right: 33%;
		padding: 0 30px;
		transform: none;
		max-width: none;
		font-size: var(--body);
	}
}
@media screen and (max-width: 1024px) {
	.stack-3-col {
		width: 100%;
	}
	.stack-3-hidden {
		position: static;
		padding: 14px 24px 22px;
		opacity: 1;
		display: none;
		text-align: left;
		transition: none;
	}
	.stack-3-item.vis .stack-3-hidden {
		display: block;
	}
	.stack-3-col:last-child .stack-3-wrap {
		flex-direction: row;
		text-align: left;
	}
	.stack-3-item.vis + .stack-3-item {
		border-color: rgba(0, 0, 0, 0.1);
	}
}

/************************* partners *************************/
.partners h2 {
	margin: 0 0 max(30px, 72rem);
}
.partners-subtitle {
	margin: 0 0 max(30px, 43rem);
	padding: 0 0 max(7px, 13rem);
	color: var(--grey);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.partners-block {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	margin: 0 -10px max(80px, 178rem);
}
.partners-block:last-child {
	margin: 0 -10px;
}
.partners-col {
	width: 25%;
	padding: 0 10px;
}
.partners-item {
	overflow: hidden;
	position: relative;
	height: max(278px, 447rem);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: max(15px, 24rem);
}
.partners-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.partners-info {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	padding: max(19px, 30rem) max(19px, 30rem) max(21px, 40rem);
	background: #fff;
	transition: all 0.3s linear;
	opacity: 0;
}
.partners-item:hover .partners-info {
	opacity: 1;
}
.partners-info h4 {
	margin: 0 0 max(24px, 36rem);
}
.partners-text {
	max-height: max(160px, 300rem);
	overflow-y: auto;
	font-size: max(14px, 18rem);
	line-height: 120%;
	color: rgba(23, 23, 23, 0.8);
}
.partners-link {
	position: relative;
	margin: auto auto 0 0;
	font-size: max(14px, 18rem);
	line-height: 120%;
	color: var(--orange);
	opacity: 0.8;
	text-decoration: none;
}
.partners-link:hover {
	color: var(--black);
}
.partners-link::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: var(--black);	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.partners-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.partners-block .slick-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin: 20px 0 0;
}
.partners-block .slick-dots li {
	height: 4px;
}
.partners-block .slick-dots button {
	display: block;
	width: 4px;
	height: 4px;
	font-size: 0;
	border-radius: 10px;
	background: #d9d9d9;
}
.partners-block .slick-dots .slick-active button {
	width: 160px;
	background: var(--blue);
}
@media screen and (max-width: 1340px) {
	.partners-col {
		width: 33.33%;
	}
}
@media screen and (max-width: 1024px) {
	.partners-block {
		padding: 0 0 0 10px;
	}
	.partners-col {
		width: 268px;
		padding: 0 20px 0 0;
	}
}
@media screen and (max-width: 576px) {
	.partners h2 {
		max-width: 260px;
	}
	.partners-subtitle {
		font-size: var(--h3);
		line-height: 120%;
	}
}

/************************* partners-tape *************************/
.partners-tape {
	display: flex;
	flex-direction: column;
	gap: max(15px, 25rem);
	padding: max(15px, 25rem) 0;
	border-top: 1px solid rgba(70, 70, 70, 0.2);
	border-bottom: 1px solid rgba(70, 70, 70, 0.2);
}
.partners-tape-wrap {
	display: flex;
	gap: max(58px, 100rem);
	padding: 0 max(29px, 50rem);
}
.partners-tape-wrap img {
	opacity: 0.5;
}


/************************* blog page *************************/
.blog {
	padding: max(50px, 130rem) 0 max(67px, 250rem);
}
.blog h1 {
	margin: 0 0 max(44px, 70rem);
	text-align: center;
}
.blog-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	margin: 0 -10px;
}
.blog-col {
	width: 33.33%;
	padding: 0 10px;
}
.blog-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 8px 18px 18px;
	color: #212121;
	text-decoration: none;
	background: #f3f3f3;
	border-radius: 16px;
}
.blog-img {
	margin: 0 -10px max(18px, 22rem);
}
.blog-img img {
	width: 100%;
	height: max(200px, 314rem);
	object-fit: cover;
	border-radius: 11px;
}
.blog-date {
	margin: 0 0 7px;
	font-size: var(--hint);
	line-height: 120%;
	color: var(--grey);
	opacity: 0.7;
}
.blog-title {
	margin: 0 0 max(10px, 14rem);
	max-width: max(280px, 346rem);
	font-size: max(16px, 20rem);
	line-height: 120%;
}
.blog-text {
	margin: 0 0 6px;
	max-width: max(430px, 470rem);
	font-size: var(--hint);
	line-height: 120%;
	color: #3d3839;
	opacity: 0.8;
}
.blog-item .more {
	margin: auto 0 0 auto;
}
.more {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #212121;
	text-decoration: none;
}
.more-text {
	position: relative;
	font-size: 14px;
	line-height: 120%;
}
.more-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--green);
	border-radius: 50%;
	transition: all 0.3s linear;
}
.more-text::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: #212121;	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.more:hover .more-text::after,
.blog-item:hover .more-text::after {
	transform: scaleX(1);
	transform-origin: left;
}
.more:hover .more-icon,
.blog-item:hover .more-icon {
	background: var(--blue);
}
.sort {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 0 max(30px, 46rem);
}
.category {
	width: calc(33.33% - 10px);
}
.search {
	position: relative;
	width: calc(33.33% - 10px);
}
.search-button {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background: url(../images/loupe.svg) 50% 50% no-repeat;
}
.wpcf7-form-control-wrap.search-input input {
	height: max(26px, 33rem);
	padding: 0 0 10px;
	margin: 0;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0px;
}

@media screen and (max-width: 1240px) {
	.blog-col {
		width: 50%;
	}
	.category, .search {
		width: calc(50% - 10px);
	}
}
@media screen and (max-width: 576px) {
	.blog-col {
		width: 100%;
	}
	.blog-item {
		padding: 5px 11px 14px;
		border-radius: 10px;
	}
	.blog-img {
		margin: 0 -6px max(18px, 22rem);
	}
	.blog-text {margin: 0 0 18px;}
	.more-icon {
		width: 26px;
		height: 26px;
	}
	.more-icon img {
		width: 8px;
	}
	.sort {
		flex-direction: column-reverse;
		gap: 30px;
	}
	.category, .search {
		width: 100%;
	}
	.wpcf7-form-control-wrap.search-input input {
		padding: 0 26px 4px 0;
		font-size: 16px;
		text-align: right;
	}
}

/************************* article page *************************/
.article {
	padding: max(52px, 130rem) 0 max(115px, 177rem);
}
.article-main {
	max-width: max(900px, 1140rem);
	margin: 0 auto max(105px, 142rem);
}
.article-main:last-child {margin: 0 auto;}
.article-main h1 {
	margin: 0 0 max(24px, 36rem);
	text-align: center;
}
.article-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 13px;
	margin: 0 0 max(45px, 60rem);
}
.article-info-item {
	padding: 9px max(21px, 29rem);
	color: var(--black);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 200px;
}
.article-img {
	margin: 0 0 max(20px, 36rem);
	padding: max(5px, 20rem) 0 0;
}
.article-img:first-child {padding: 0;}
.article-img img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
}
.article-main h2 {
	margin: 0 0 20px;
	padding: max(50px, 90rem) 0 0;
}
.article-main h2:first-child {padding: 0;}
.article-main h4 {
	margin: 0 0 max(7px, 27rem);
}
.article-main p {
	max-width: max(900px, 970rem);
	color: #3D3839;
	opacity: 0.8;
}
.article-main p + h4 {
	padding-top: max(20px, 40rem);
}
.blog-resent {
	padding: max(10px, 42rem) 0 0;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.blog-resent h3 {
	margin: 0 0 max(10px, 42rem);
	color: #212121;
	opacity: 0.8;
}
@media screen and (max-width: 576px) {
	h1, .h1, h2, .h2 {font-weight: 500;}
	.article-main h1 {
		margin: 0 0 47px;
	}
	.article-info {
		margin: 0 0 80px;
	}
	.blog-resent h3 {
		color: var(--black);
		opacity: 1;
	}
}

/************************* contacts page *************************/
.contacts {
	padding: max(52px, 95rem) 0 max(64px, 117rem);
}
.contacts-block {
	display: flex;
	justify-content: space-between;
}
.contacts-main {
	width: calc(50% - 20px);
	max-width: max(560px, 700rem);
}
.contacts-main h1 {
	margin: 0 0 max(11px, 16rem);
}
.contacts-text {
	margin: 0 0 max(20px, 25rem);
	font-size: max(16px, 20rem);
	color: rgba(70, 70, 70, 0.8);
}
.contacts-form {
	width: calc(50% - 20px);
	max-width: max(560px, 700rem);
	padding: max(45px, 73rem) 0 0;
}
.contacts-form h4 {
	margin: 0 0 max(12px, 27rem);
	opacity: 0.8;
}
.contacts-map iframe {
	display: block;
	width: max(380px, 490rem);
	height: max(280px, 360rem);
	border: 0;
}
.contacts-item {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.contacts-top {
	display: flex;
	align-items: center;
	gap: max(14px, 38rem);
	padding: max(10px, 20rem) 0;
	font-size: var(--h4);
	color: rgba(0, 0, 0, 0.3);
	text-decoration: none;
	text-transform: uppercase;
}
.contacts-top svg {
	width: max(20px, 32rem);
	height: max(20px, 32rem);
}
.contacts-top path {
	transition: all 0.3s linear;
	opacity: 0.4;
}
.contacts-top.active {
	color: rgba(0, 0, 0, 0.8);
}
.contacts-top.active path {
	fill: var(--green);
	opacity: 1;
}
.contacts-hidden {
	display: none;
	padding: 0 0 20px max(34px, 70rem);
}
.contacts-hidden.vis {
	display: block;
}
.contacts-adress {
	margin: 0 0 14px;
	padding: 0 0 0 max(20px, 33rem);
	font-size: max(16px, 20rem);
	color: rgba(70, 70, 70, 0.8);
}
.contacts-phone {
	position: relative;
	margin: 0 0 20px;
	padding: 0 0 0 max(20px, 33rem);
	font-size: max(16px, 20rem);
	color: rgba(70, 70, 70, 0.8);
}
.contacts-phone::before {
	position: absolute;
	top: 0;
	left: 0;
	width: max(15px, 19rem);
	height: max(15px, 19rem);
	content: '';
	background: url(../images/contacts-phone.svg) 50% 50% no-repeat;
	background-size: contain;
}
.phone-link {
	position: relative;
	color: rgba(70, 70, 70, 0.8);
	text-decoration: none;
	white-space: nowrap;
}
.phone-link::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: rgba(70, 70, 70, 0.8);
	width: 100%;
	transition: all 0.3s linear;
}
.phone-link:hover {
	color: var(--black);
}
.phone-link:hover::after {
	background: var(--black);
}
.form-bottom {
	padding: max(5px, 10rem) 22px 24px;
}
.form-bottom .form-note {
	margin: 0;
}
.form-file {
	margin: 0 0 24px;
}
.form-file-text {
	margin: 0 0 8px;
	font-size: var(--hint);
	color: var(--black);
	opacity: 0.9;
}
.form-file-block {
	display: flex;
	align-items: center;
	gap: 17px;
	position: relative;
	margin: 0 0 8px;
}
.form-file-block input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.form-file-label {
	padding: 3px 16px;
	font-size: 14px;
	line-height: 150%;
	color: var(--black);
	cursor: pointer;
	background: #efefef;
	border: 1px solid rgba(70, 70, 70, 0.4);
	border-radius: 5px;
}
.form-file-name {
	font-size: 14px;
	color: var(--black);
}
.form-file-note {
	font-weight: 300;
	font-size: 14px;
	color: var(--black);
	opacity: 0.7;
}
.captcha {
	margin: 0 0 max(10px, 20rem);
}
.form-item {
	padding: 0 0 max(10px, 15rem);
}
.form-item-title {
	padding: 0 22px;
	margin: 0 0 8px;
	font-size: max(16px, 20rem);
	color: var(--black);
	opacity: 0.9;
}
.form-item-text {
	padding: 0 22px;
	margin: -5px 0 10px;
	font-size: max(14px, 16rem);
	color: var(--black);
	opacity: 0.6;
}
.form-item + .form-button {
	padding: 20px 0 0;
}
.form-wrapper {
	max-width: max(640px, 720rem);
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.contacts-block {
		display: block;
	}
	.contacts-main {
		width: auto;
		max-width: none;
	}
	.contacts-main h1 {
		text-align: center;
	}
	.contacts-text {
		margin: 0 0 30px;
		text-align: center;
	}
	.contacts-form {
		width: auto;
		max-width: none;
		padding: 50px 0 0;
	}
}
@media screen and (max-width: 576px) {
	.contacts-top {
		padding: 10px 0 8px;
		font-size: 24px;
		line-height: 120%;
	}
	.contacts-map {
		margin: 0 0 0 -34px;
	}
	.contacts-map iframe {
		width: 100%;
		height: 264px;
	}
	.form-bottom {
		padding: max(5px, 10rem) 4px 24px;
	}
	.form-item-title {
		margin: 0 0 10px;
	}
	.form-item-text {
		margin: 0 0 10px;
	}
}

/************************* 404 page *************************/
.page-404 {
	padding: 113px 0 max(103px, 154rem);
}
.page-404-num {
	font-weight: 600;
	font-size: max(150px, 300rem);
	line-height: 110%;
	letter-spacing: -0.03em;
	text-align: center;
	color: var(--green);
}
.page-404-text {
	max-width: max(400px, 520rem);
	margin: -6px auto max(50px, 60rem);
	font-size: max(24px, 32rem);
	line-height: 120%;
	text-align: center;
	color: var(--black);
	opacity: 0.8;
}
.page-404-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.page-404-buttons .button {
	width: max(170px, 190rem);
}
@media screen and (max-width: 576px) {
	.page-404-num {
		margin: 0 0 10px;
		font-weight: 700;
	}
	.page-404-text {
		margin: 0 auto 64px;
		font-weight: 500;
	}
	.page-404-buttons {
		flex-direction: column;
		gap: 15px;
	}
	.page-404-buttons .button {
		width: 100%;
	}
}

/************************* last pass page *************************/
.lp-top-block {
	position: relative;
	padding: max(104px, 192rem) 0 max(95px, 112rem);
	text-align: center;
	background: #fff;
	border-radius: 0 0 max(30px, 100rem) max(30px, 100rem);
}
.lp-bg {
	margin-top: min(-60px, -248rem);
}
.lp-bg img {
	width: 100%;
	height: max(320px, 780rem);
	object-fit: cover;
}
.lp-top-block h1 {
	max-width: max(300px, 700rem);
	margin: 0 auto max(20px, 30rem);
}
.lp-top-text {
	max-width: max(540px, 600rem);
	margin: 0 auto max(70px, 92rem);
	font-size: max(18px, 20rem);
	line-height: 120%;
	color: var(--grey);
	opacity: 0.8;
}
.lp-top-logo img {
	width: max(184px, 388rem);
}
.lp-main {
	padding: max(60px, 108rem) 0 max(90px, 185rem);
}
.lp-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: max(30px, 100rem) 0;
	margin: 0 0 max(60px, 150rem);
}
.lp-col {
	width: calc(50% - 10px);
}
.lp-col h2 {
	margin: 0 0 10px;
}
.lp-text {
	margin: 0 0 max(8px, 20rem);
	font-size: max(18px, 32rem);
	line-height: 120%;
	color: var(--black);
	opacity: 0.8;
}
.lp-video {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	border: 1px solid rgba(33, 64, 83, 0.2);
	border-radius: 20px;
}
.lp-video img {
	width: 100%;
	height: max(200px, 476rem);
	object-fit: cover;
}
.video-play {
	position: absolute;
	left: max(10px, 20rem);
	bottom: max(10px, 20rem);
	display: flex;
	align-items: center;
	gap: max(5px, 16rem);
}
.video-play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max(22px, 50rem);
	height: max(22px, 50rem);
	padding-left: max(2px, 6rem);
	border: 1px solid var(--blue);
	border-radius: 50%;
	backdrop-filter: blur(6px);
	background: rgba(255, 255, 255, 0.1);
}
.video-play-icon svg {
	width: max(8px, 17rem);
	height: max(9px, 19rem);
}
.video-play-text {
	font-size: max(12px, 20rem);
	line-height: 120%;
	color: var(--blue);
}
.video-play-hover {
	position: relative;
}
.video-play-hover::after {
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	height: 1px;
	background: var(--blue);	
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 1s var(--ease-out-expo);
	width: 100%;
}
.lp-video:hover .video-play-hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.video-dark {border: 0;}
.video-dark .video-play-icon {
	border: 1px solid var(--white);
}
.video-dark .video-play-icon path {
	fill: var(--white);
}
.video-dark .video-play-text {
	color: var(--white);
}
.video-dark .video-play-hover::after {
	background: var(--white);	
}
.lp-offer-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 45px 0;
	max-width: max(640px, 870rem);
	margin: 0 auto max(25px, 105rem);
}
.lp-offer-col {
	display: flex;
	flex-direction: column;
	width: calc(50% - 20px);
}
.lp-offer-text {
	margin: 0 0 9px;
	font-size: max(18px, 32rem);
	line-height: 120%;
	color: var(--black);
}
.lp-offer-img {
	margin: auto 0 0;
}
.lp-offer-img img {
	width: 100%;
}
.lp-offer-button {
	text-align: center;
}
.lp-offer-button .button {
	min-width: max(500px, 720rem);
}
.lp-bottom {
	padding: max(60px, 127rem) 0 0;
	background: #181818;
	border-radius: max(30px, 100rem) max(30px, 100rem) 0 0;
}
.lp-app {
	padding: 0 0 max(70px, 110rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.lp-app-title {
	margin: 0 0 max(43px, 92rem);
}
.lp-app-title h2 {
	text-align: center;
	color: var(--white);
}
.lp-app {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 0;
}
.lp-app-col {
	width: calc(50% - 10px);
}
.lp-app-top {
	position: relative;
	padding: 0 0 0 max(39px, 64rem);
}
.lp-app-icon {
	position: absolute;
	top: 3px;
	left: 0;
	width: max(31px, 44rem);
}
.lp-app-top h2 {
	margin: 0 0 10px;
	color: var(--white);
}
.lp-app-text {
	margin: 0 0 max(10px, 20rem);
	font-size: max(18px, 32rem);
	line-height: 120%;
	color: var(--white);
	opacity: 0.8;
}
.lp-app .lp-video {
	border: 0;
}
@media screen and (max-width: 767px) {
	.lp-col, .lp-offer-col, .lp-app-col {
		width: 100%;
	}
}
@media screen and (max-width: 576px) {
	.lp-offer-button .button {
		min-width: 1px;
		padding: 16px 50px;
	}
	.lp-app-top {
		position: relative;
		padding: 0 0 0 max(39px, 64rem);
	}
	.lp-app-text {
		margin: 0 0 10px min(-39px, -64rem);
	}
	.lp-app-title h2 {
		max-width: 280px;
		margin: 0 auto;
	}
}

span.wpcf7-spinner, .wpcf7-response-output {
	display: none;
	visibility: hidden;
}

.wpcf7-not-valid-tip {
	padding-bottom: 1em;
}

input.wpcf7-form-control.wpcf7-file.file-form {
	padding: 0;
	border: 0;
	border-radius: 0;
	height: auto;
}

.pop1 {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgb(44 44 44 / 80%);
	z-index: 9999;
	top: 0;
	left: 0;
	overflow: hidden;
}

.pop1-1 {
	width: 100%;
	max-width: 540rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	border-radius: max(11px, 15rem);
	overflow: hidden;
}

.close {
	position: absolute;
	top: max(11px, 15rem);
	right: max(11px, 15rem);
}

.pop1 .close svg {
	cursor: pointer;
	transition: all .3s ease;
}

.pop1 .close svg path {
	fill: #fff;
}

.pop1 .close svg:hover {
	transform: scale(1.2);
}

.pop1-2 iframe {
	margin-bottom: -10px;
}

@media (max-width:1024px) {
	.pop1-1 {
		max-width: 90%;
	}
}

.text-6 {
	padding: max(80px, 160rem) 0;
}

.text-2-custom {
	padding: max(70px, 147rem) 0 max(70px, 153rem);
}

.pagination {
	display: flex;
	margin-top: max(50px, 75rem);
	gap: max(10px, 13rem);
	justify-content: center;
}

.pagination a {
	color: rgb(33 33 33 / 40%);
	text-decoration: none;
	line-height: 1.2;
}

.pagination .active {
	position: relative;
	color: #212121;
	min-width: 10px;
	display: flex;
	justify-content: center;
}

.pagination a:hover {
	color: #212121;
}

.pagination a.next, .pagination a.last {
	margin-left: max(5px, 7rem);
	display: flex;
	align-items: flex-end;
	align-items: center;
}

.pagination a.prev, .pagination a.first {
	margin-right: max(5px, 7rem);
	display: flex;
	align-items: center;
}

.pagination .active:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--green);
}

.section.padding-min {
	padding-top: 0;
}

.section.custom_section_hover-benefits {
	padding-bottom: 0;
	margin-bottom: max(-50px, -80rem);
}

.video-section h2.video-section_title {
	max-width: max(640px, 860rem);
	margin: 0 auto max(20px, 28rem);
	text-align: center;
}

.video-section_text {
	max-width: max(550px, 650rem);
	margin: 0 auto 40px;
	font-size: var(--h4);
	line-height: 120%;
	color: var(--blue);
	text-align: center;
}

.textcard-item.textcard-item_white {
	background-color: var(--white);
}

.textcard-item_white h3 {
	color: var(--black);
}

.textcard-item_white .textcard-text {
	color: rgb(23 23 23 / 60%);
}

.textcard-item_white .button.button-green:hover {
	color: var(--white);
	background: var(--black);
	border: 1px solid var(--black);
}

.faq.grey-theme {
	background: #F3F3F3;
	border-radius: max(30px, 60rem) max(30px, 60rem);
}

h4.big-media_title {
	font-size: var(--h2);
}

.media.media-dark {
	background: var(--black);
}

.media-dark .media-side h2, .media-dark .big-media_title, .media-dark .media-text {
	color: var(--white);
}

.media-block.align-top {
	align-items: flex-start;
}

.media-block .media-text h4 {
	max-width: fit-content;
	color: var(--blue);
}

.media-text a, .textcard-item .list-big a {
	color: inherit;
}

.section.overlap .faq.grey-theme {
	padding-bottom: calc(max(80px, 160rem) + max(80px, 160rem));
}

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

.text-1-white h2 {
	margin: 0 0 max(20px, 25rem);
}

.text-1-white .button {
	min-width: max(200px, 270rem);
}

.section.overlap .services {
	padding-bottom: calc(max(73px, 135rem) + max(50px, 100rem));
}

.text-1-white a:not(.button-green) {
	color: var(--green);
}

.max-width {
	max-width: max-content;
}

.margin-button0 {
	margin-bottom: 0;
}

.textcard-section-white h2 {
	max-width: max(640px, 860rem);
	margin: 0 auto max(20px, 28rem);
	text-align: center;
}

.section.no-padding {
	margin-top: max(-130px, -160rem);
}

.section.no-border .round-top {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.section .no-padding {
	padding: 0;
}

.border-bottom0 {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.h2_center {
	text-align: center;
}

.section.no-padding.no-border .round-all {
	border-radius: 0;
}

.sub-padding_none {
	padding: 0;
}

.benefits-sub-title {
	color: var(--green);
	text-align: center;
	margin-bottom: max(40px, 54rem);
}

.benefits h2.min-margin-bottom {
	margin-bottom: max(20px, 25rem);
	max-width: max-content;
}

.textcard-section-top h4 {
	color: var(--blue);
	padding-bottom: .5em;
}

.card-section.grey-theme {
	background-color: #F3F3F3;
}

.card-section.grey-theme, .card-section.dark-theme {
	padding: max(80px, 160rem) 0;
}  

.padding-bottom0 {
	padding-bottom: 0;
}

.faq-wrap .faq-hidden ul a {
	color: inherit;
}

.text-1.grey-theme {
	background: #F3F3F3;
}

.text_cards2 {
	z-index: 2;
}

.banner iframe {
	width: 100%;
	height: max(355px, 1100rem);
}

.banner.banner-youtube iframe {
	height: max(220px, 900rem);
}

.textcard-section-top.green-text {
	color: var(--green);
}

.grey-theme {
	background: #F3F3F3;
}

.columns-section.grey-theme {
	padding: max(70px, 160rem) 0 max(80px, 152rem);
}

.row-media.grey-theme {
	padding: max(70px, 150rem) 0 max(70px, 150rem);
}

.media-text strong {
	color: var(--green);
}

.stack-text {
	font-size: max(16px, 23rem);
}
.video-poster {
	cursor: pointer;
}
.video-poster video {
	width: 100%;
}
.video-media video {
	width: 100%;
	border-radius: 20px;
}
.page-id-665 .faq-wrap a {
	color: var(--white);
}
span#input_44_6_3_container {
	width: calc(50% - 5px);
}
span#input_44_6_6_container {
	width: calc(50% - 5px);
}
/*.gform_title {
display: none;
}*/
.gf_name_has_2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.form-title {
	text-align: center;
	margin-bottom: max(50px, 54rem);
}

.gfield input[type="file"] {
	height: auto;
	padding: 0;
	border-radius: 0;
	border: 0;
}

.gform-footer {
	margin-top: 24px;
}

.gform_title {
	margin: 0 0 1em;
}

.gfield label {
	font-weight: 600;
	margin-bottom: 0.5em;
	display: block;
}

.gfield_required {
	color: red;
}

.ginput_container_select select {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 21px;
	margin: 0 0 max(10px, 15rem);
	font-size: max(14px, 16rem);
	color: rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(149, 149, 149, 0.6);
	border-radius: 2000px;
	background: none;
}

.gform_legacy_markup_wrapper .gf_invisible, .gform_legacy_markup_wrapper .gfield_visibility_hidden {
	visibility: hidden;
	position: absolute;
	left: -9999px;
}

.gchoice {
	display: flex;
	justify-content: flex-start;
	gap: 1em;
	align-items: center;
	margin-bottom: .5em;
}

.gchoice label {
	font-weight: 400;
	margin: 0;
}

.gform_legacy_markup_wrapper .screen-reader-text, .gform_legacy_markup_wrapper label.hidden_sub_label {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.gfield {
	margin: 1em 0;
}

.gform_heading {
	display: none;
}

body[class] .gform_wrapper .top_label div.ginput_container {
	margin-top: 10px;
}

.clear-multi {
	display: flex;
}

.gform_legacy_markup_wrapper .gfield_time_hour, .gform_legacy_markup_wrapper .gfield_time_minute {
	margin-right: 10px;
	display: flex;
	margin-top: 10px;
	gap: 1em;
	align-items: center;
}

.gfield .clear-multi input {
	width: fit-content;
	margin: 0;
}

.gfield_time_ampm select {
	padding: 10px;
	height: 50px;
	font-size: 14px;
}

@media (min-width:1024px) {
	.section.section_team {
		padding-bottom: calc(max(50px, 80rem) + 23px);
	}

	.video-section-white h2.video-section_title {
		max-width: max(640px, 860rem);
		margin: 0 auto max(20px, 28rem);
		text-align: center;
	}

	.video-block {
		gap: max(30px, 60rem);
		justify-content: normal;
	}

	.card-line.card-line-center {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	/*
	h2.typing.title-center {
	max-width: max(400px, 700rem);
}
	*/
	.card-line-text.text-center {
		max-width: max(480px, 1195rem);
	}

	.text-cards__item2_2_line {
		display: flex;
		justify-content: space-between;
		gap: 40px;
		margin: 0 0 max(25px, 60rem);
	}

	.text-cards__item2_2_line h2 {
		max-width: max(540px, 700rem);
		text-align: start;
		margin: 0;
	}

	.text-cards__item2_2_line .textcard-section-top {
		max-width: max(580px, 580rem);
		font-size: var(--big_body);
		line-height: 120%;
		color: var(--grey);
		opacity: 0.8;
		text-align: start;
		margin: 0;
	}

	.section_text-media__item1_1 .media-content {
		max-width: none;
		padding: 0;
	}

	.section_text-media__item1_1 .media-block {
		gap: max(50px, 108rem);
	}

	.padding-top0 {
		padding-top: 0;
	}

	.page.page-id-595 .media, .page-id-601 .media {
		padding-bottom: 0;
	}

	.section.overlap {
		margin-bottom: max(-140px, -140rem);
	}

	.section.overlap-above {
		margin-top: max(-180px, -220rem);
	}

	.media-reverse .media-block {
		justify-content: space-between;
	}

	.page-id-651 .media-content h4 {
		max-width: max(440px, 740rem);
	}

	.page-id-653 .hero-text {
		max-width: max(460px, 1150rem);
	}

	.page-id-753 .hero-text {
		max-width: max(460px, 1020rem);		
	}

	.page-id-749 .textcard-section h2 {
		max-width: max(640px, 1100rem);
	}

	.page-id-654 .hero-text {
		max-width: max(460px, 760rem);
	}

	.steps-side a {
		width: fit-content;
	}

	.page-id-749 .card-text-min {
		max-width: max-content;
	}

	.page-id-749 .card-item {
		height: calc(max(400px, 448rem) + max(50px, 50rem));
	}

	.page-id-647 .text-1-high {
		max-width: max(580px, 1000rem);
	}

	.page-id-630 .hero-main h1 {
		max-width: max(500px, 1040rem);
	}

	.video-block.video-reverse {
		flex-direction: row-reverse;
	}

	.card-section.dark-theme.sub-padding_none {
		padding: 0;
	}

	.page-id-630 .text-1 {
		border-radius: 0 0 50px 50px;
	}

	.page-id-630 .card-section {
		border-radius: 50px 50px 0 0;
	}
}

@media (min-width:1600px) {
	.section.no-padding {
		margin-top: max(-170px, -180rem);
	}
	.section.overlap-above {
		margin-top: max(-180px, -220rem);
	}
}

@media (min-width:1900px) {
	.section.no-padding {
		margin-top: max(-190px, -210rem);
	}
}

@media (min-width:2500px) {
	.section.no-padding {
		margin-top: max(-230px, -250rem);
	}
}

@media (max-width:1024px) {
	.section.overlap {
		margin-bottom: -50px;
	}

	.section.no-padding {
		margin-top: -130px;
	}

	.section.overlap-above {
		margin-top: -130px;
	}

	.video-section_text {
		text-align: start;
		margin-top: 1em;
	}

	br {
		display: none;
	}

	.media-text h4 {
		display: block;
	}

	.video-content video {
		padding-bottom: 2em;
	}
}

.ring-3 {
    width: max(270px, 588rem);
    height: max(270px, 588rem);
}
.ring-part-1 {
	width: 4.95%;
	height: 31.54%;
	top: 34.6%;
	right: 0;
}
.ring-part-2 {
	width: 13.08%;
	height: 15.02%;
	top: 11.2%;
	left: 79.9%;
}
.ring-part-3 {
	width: 48.18%;
	height: 8.23%;
	top: 0;
	bottom: auto;
	left: 25.58%;
}
.ring-part-4 {
	width: 5.36%;
	height: 5.18%;
	top: 12.27%;
	left: 13.63%;
}
.ring-part-5 {
	width: 9.56%;
	height: 44.63%;
	top: 23.34%;
	left: 0;
}
.ring-part-6 {
	width: 15.4%;
	height: 16.03%;
	top: 75.3%;
	left: 7.48%;
}
.ring-part-7 {
	width: 37.02%;
	height: 5.61%;
	top: auto;
	bottom: 0;
	left: 31.38%;
}
.ring-part-8 {
	width: 17.7%;
	height: 18.67%;
	top: 73.36%;
	left: 76.1%;
}
.state-1 .ring-part-1,
.state-2 .ring-part-8,
.state-3 .ring-part-7,
.state-4 .ring-part-6,
.state-5 .ring-part-5,
.state-6 .ring-part-4,
.state-7 .ring-part-3,
.state-8 .ring-part-2 {opacity: 0.2;}
.state-1 .ring-part-1,
.state-2 .ring-part-2,
.state-3 .ring-part-3,
.state-4 .ring-part-4,
.state-5 .ring-part-5,
.state-6 .ring-part-6,
.state-7 .ring-part-7,
.state-8 .ring-part-8 {opacity: 1;}

