@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--white: #F9F9F9;
	--grey: #F1F1F1;
	--black: #1B1E14;
	--green: #A9BF5D;
	--green_light: #C0E140;
	--yellow: #E7B20E;
	--orange: #F5833D;

	--h1: max(50px, 110rem);
	--h2: max(36px, 80rem);
	--h3: max(32px, 60rem);
	--h4: max(24px, 40rem);
	--h5: max(24px, 30rem);
	--h6: max(20px, 24rem);

	--text_1: max(14px, 24rem);
	--text_2: max(12px, 24rem);
	--text_3: max(14px, 22rem);
	--text_4: max(14px, 20rem);

	--caption_1: max(14px, 30rem);
	--caption_2: max(12px, 18rem);
	--caption_3: max(12px, 16rem);

	--number_1: max(36px, 120rem);
	--number_2: max(16px, 40rem);

	--field_1: max(16px, 24rem);
	--field_2: max(14px, 20rem);

	--button_1: max(16px, 24rem);
	--button_2: max(16px, 20rem);

	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: var(--grey);
	font-size: 0.052vw;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: var(--text_1);
	font-weight: 400;
	font-family: 'Archivo', Arial, Helvetica, sans-serif;
	line-height: 120%;
	letter-spacing: -0.01em;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, 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: 'Archivo', 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: #C0E140;
}
/************************* common styles *************************/
.holder {
	padding: 0 16px;
}
@media (min-width: 1024px){
	.holder {
		padding: 0 20px;
	}
}
h1, .h1 {
	display: block;
	font-weight: 600;
	font-size: var(--h1);
	line-height: 100%;
	letter-spacing: -0.04em;
}
h2, .h2 {
	display: block;
	font-weight: 600;
	font-size: var(--h2);
	line-height: 110%;
	letter-spacing: -0.04em;
}
h3, .h3 {
	display: block;
	font-weight: 600;
	font-size: var(--h3);
	line-height: 100%;
	letter-spacing: -0.04em;
}
h4, .h4 {
	display: block;
	font-weight: 600;
	font-size: var(--h4);
	line-height: 100%;
	letter-spacing: -0.04em;
}
h5, .h5 {
	display: block;
	font-weight: 400;
	font-size: var(--h5);
	line-height: 110%;
	letter-spacing: -0.04em;
}
h6, .h6 {
	display: block;
	font-weight: 500;
	font-size: var(--h6);
	line-height: 100%;
	letter-spacing: -0.04em;
}
a {transition: all .3s linear;}
p {margin: 0 0 24px;}
p a, .article li a {color: var(--black);}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 14px 49px;
	color: var(--black);
	font-weight: 400;
	font-size: var(--button_1);
	line-height: 130%;
	letter-spacing: -0.01em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: var(--green);
	border: 1px solid var(--green);
	border-radius: 10px;
	transition: all .3s linear;
}
.button:hover {
	background: transparent;
}
/************************* form-block *************************/
.wpcf7-form-control-wrap input {
	display: block;
	width: 100%;
	height: 54px;
	padding: 0 max(16px, 20rem);
	margin: 0 0 max(12px, 20rem);
	font-size: var(--field_1);
	line-height: 100%;
	letter-spacing: -0.01em;
	color: var(--black);
	border-radius: 10px;
	background: rgba(27, 30, 20, 0.03);
	transition: all 0.3s linear;
}
.wpcf7-form-control-wrap textarea {
	display: block;
	width: 100%;
	height: max(120px, 173rem);
	padding: 16px max(16px, 20rem);
	margin: 0 0 max(12px, 20rem);
	font-size: var(--field_1);
	color: var(--black);
	resize: vertical;
	border-radius: 10px;
	background: rgba(27, 30, 20, 0.03);
	transition: all 0.3s linear;
}
.wpcf7-form-control-wrap input:hover,
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:hover,
.wpcf7-form-control-wrap textarea:focus {
	background: rgba(27, 30, 20, 0.06);
}
.inactive {
	opacity: 0.5;
	pointer-events: none;
}
::-webkit-input-placeholder {color: rgba(27, 30, 20, 0.4);}
:-moz-placeholder {color: rgba(27, 30, 20, 0.4); opacity: 1;}
::-moz-placeholder {color: rgba(27, 30, 20, 0.4); opacity: 1;}
:-ms-input-placeholder {color: rgba(27, 30, 20, 0.4);}
.wpcf7-form-control-wrap.error {
	color: rgba(224, 36, 36, 0.4);
}
.wpcf7-form-control-wrap.error ::-webkit-input-placeholder {color: rgba(224, 36, 36, 0.4);}
.wpcf7-form-control-wrap.error :-moz-placeholder {color: rgba(224, 36, 36, 0.4); opacity: 1;}
.wpcf7-form-control-wrap.error ::-moz-placeholder {color: rgba(224, 36, 36, 0.4); opacity: 1;}
.wpcf7-form-control-wrap.error :-ms-input-placeholder {color: rgba(224, 36, 36, 0.4);}
.error-text, span.wpcf7-not-valid-tip {
	margin: min(-6px, 10rem) 0 max(12px, 20rem);
	font-size: max(12px, 16rem);
	line-height: 110%;
	color: #e02424;
}
.input-line {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.input-line .wpcf7-form-control-wrap {
	width: calc(50% - 10px);
}
.form-note {
	font-size: var(--caption_2);
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(27, 30, 20, 0.4);
}
.check-item {
	position: relative;
}
.check-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.check-label {
	display: block;
	padding: max(3px, 4rem) 0 max(3px, 4rem) max(26px, 32rem);
	font-size: var(--caption_2);
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(27, 30, 20, 0.4);
	transition: all 0.3s linear;
	cursor: pointer;
}
.check-label:hover {
	color: rgba(27, 30, 20, 1);
}
.check-label a {color: rgba(27, 30, 20, 1);}
.check-label a:hover {
	color: rgba(27, 30, 20, 0.5);
}
.check-label::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: max(18px, 24rem);
	height: max(18px, 24rem);
	box-sizing: border-box;
	background: var(--white);
	border: 1px solid rgba(27, 30, 20, 0.2);
	border-radius: 5px;
}
.check-label::after {
	position: absolute;
	top: max(3px, 4rem);
	left: max(3px, 4rem);
	display: block;
	content: '';
	width: max(12px, 16rem);
	height: max(12px, 16rem);
	background: url(../images/check.svg) 50% 50% no-repeat;
	background-size: contain;
	opacity: 0;
}
.check-input:checked + .check-label::before {
	background: var(--green);
	border: 1px solid var(--green);
}
.check-input:checked + .check-label::after {opacity: 1;}
.check-input:checked + .check-label {color: rgba(27, 30, 20, 1);}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	padding-top: calc(20px + max(61px, 93rem));
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	padding: 20px 0 0;
	transition: top 0.4s ease-out;
}
.header.hidden {
	top: -130px;
}
.header-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	height: max(61px, 93rem);
	padding: 0 max(12px, 32rem);
	background: var(--white);
	border-radius: 10px;
}
.header-logo img {
	width: max(158px, 268rem);
}
.header-nav-list {
	display: flex;
	gap: max(50px, 70rem);
}
.header-nav-list li {
	font-size: max(16px, 20rem);
	line-height: 130%;
	letter-spacing: -0.02em;
}
.header-nav-list a {
	color: var(--black);
	text-decoration: none;
}
.header-nav-list a:hover {
	opacity: 0.5;
}
.header-button {
	position: relative;
	display: inline-block;
	padding: max(10px, 14rem) max(35px, 49rem);
	color: var(--black);
	font-weight: 400;
	font-size: var(--button_2);
	line-height: 130%;
	letter-spacing: -0.02em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
	border: 1px solid var(--black);
	border-radius: 10px;
	transition: all .3s linear;
}
.header-button:hover {
	background: var(--green);
	border: 1px solid var(--green);
}
.mob-nav-icon {
	z-index: 250;
	width: 24px;
	height: 24px;
	padding: 5px 2px;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 20px;
    height: 2px;
    margin: 6px 0;
	background: var(--black);
	border-radius: 2px;
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 20px;
    height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 20px;
    height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
}
/************************* hero *************************/
.hero {
	padding: 20px 0 max(80px, 180rem);
}
.hero-block {
	position: relative;
	height: max(540px, 900rem);
	height: calc(100dvh - 60px - max(61px, 93rem));
}
.hero-bg-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 10px;
}
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-wrap {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding-bottom: 120px;
}
.hero h1 {
	max-width: max(340px, 900rem);
	margin: 0 auto max(20px, 30rem);
}
.hero-text {
	font-size: var(--text_1);
	line-height: 120%;
	opacity: 0.7;
}
.hero-button {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 50;
	bottom: max(30px, 40rem);
    transition: opacity 0.4s ease;
	text-align: center;
}
.hero-button .button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.hero-button .button:hover {
	background: var(--white);
}
.button-point {
	position: relative;
	width: 10px;
	height: 10px;
	margin: 0 0 2px;
}
.button-point::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 10px;
	height: 10px;
	background: rgba(27, 30, 20, 0.2);
	border-radius: 50%;
	animation: pulse-2 2s infinite;
}
.button-point-round {
	width: 10px;
	height: 10px;
	background: rgba(27, 30, 20, 0.2);
	border-radius: 50%;
	animation: pulse-1 2s infinite;
}
@keyframes pulse-1 {
	0% {transform: scale(1);}
	50% {transform: scale(0.6);}
	100% {transform: scale(1);}
}
@keyframes pulse-2 {
	0% {transform: scale(1);}
	50% {transform: scale(1.4);}
	100% {transform: scale(1);}
}

/************************* stat *************************/
.stat {
	padding: 0 0 max(80px, 180rem);
}
.stat-block {
	display: flex;
}
.stat-side {
	width: 30%;
	padding: 0 30px 0 0;
}
.stat-side h3 {
	margin: 0 0 max(12px, 14rem);
}
.stat-side-text {
	max-width: max(240px, 370rem);
	font-weight: 500;
	font-size: var(--text_1);
	line-height: 110%;
	opacity: 0.4;
}
.stat-content {
	width: 70%;
	display: flex;
	flex-direction: row-reverse;
}
.stat-big {
	width: 71%;
}
.stat-col {
	display: flex;
	flex-direction: column;
	width: 29%;
	padding: 0 20px 0 0;
	gap: 20px;
}
.stat-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: max(12px, 30rem);
	background: var(--white);
	border-radius: 10px;
}
.stat-big .stat-item {
	height: max(400px, 647rem);
}
.stat-col .stat-item {
	flex: 1;
}
.stat-num {
	font-weight: 600;
	font-size: var(--number_1);
	line-height: 90%;
	letter-spacing: -0.04em;
	color: var(--green);
}
.stat-text {
	font-size: var(--text_1);
	line-height: 120%;
	opacity: 0.4;
}

/************************* info *************************/
.info {
	padding: 0 0 max(80px, 180rem);
}
.info-block {
	overflow: hidden;
	position: relative;
	height: max(637px, 814rem);
	padding: max(60px, 85rem) 20px 20px;
	color: var(--white);
	text-align: center;
	background: url(../images/info-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
	border-radius: 10px;
}
.info-block-text {
	position: relative;
	z-index: 20;
	max-width: max(400px, 680rem);
	margin: 0 auto max(12px, 26rem);
	font-weight: 500;
	font-size: var(--text_1);
	line-height: 110%;
}
.info-block-title {
	position: relative;
	z-index: 20;
	max-width: max(700px, 1500rem);
	margin: 0 auto;
	font-weight: 600;
	font-size: max(30px, 70rem);
	line-height: 120%;
}
.info-tag {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: max(50px, 70rem);
	padding: 0 max(30px, 50rem);
	font-size: var(--caption_1);
	line-height: 130%;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--black);
	background: var(--yellow);
	border-radius: 10px;
	z-index: 30;
}
.info-tag img {
	width: max(24px, 40rem);
}
.tag1 {
	top: 3%;
	left: max(12px, 20rem);
}
.tag2 {
	top: 88%;
	left: max(40px, 80rem);
	background: var(--green);
}
.tag3 {
	top: 100%;
	right: max(15px, 35rem);
	background: var(--orange);
}


/************************* serv *************************/
.serv {
	padding: 0 0 max(80px, 180rem);
}
.serv h3 {
	margin: 0 0 max(24px, 50rem);
}
.card-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	gap: 20px 0;
}
.card-col {
	width: 33.33%;
	padding: 0 10px;
}
/************************* main-pros *************************/
.main-pros {
	overflow: hidden;
	padding: 0 0 max(80px, 180rem);
}
.main-pros .pros-num {
    border: 1px solid var(--yellow);
}
.main-pros-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 max(36px, 60rem);
}
.title-left {
	margin-left: min(-160px, -360rem);
}
.title-right {
	margin-left: max(150px, 300rem);
}

/************************* review *************************/
.review {
	padding: 0 0 max(80px, 180rem);
}
.review-wrap {
	position: relative;
}
.review-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 max(24px, 50rem);
}
.review-slider {
	margin: 0 -10px;
}
.review-slide {
	padding: 0 10px;
}
.review-item {
	display: flex;
	flex-direction: column;
	height: max(280px, 520rem);
	padding: max(12px, 30rem);
	background: var(--white);
	border-radius: 10px;
}
.review-text {
	max-width: max(260px, 450rem);
	font-size: var(--text_1);
	line-height: 120%;
}
.review-bottom {
	display: flex;
	align-items: center;
	margin: auto 0 0;
}
.review-ava {
	width: max(54px, 80rem);
	min-width: max(54px, 80rem);
	height: max(54px, 80rem);
	margin: 0 20px 0 0;
}
.review-ava img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.review-info {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.review-name {
	font-size: var(--h6);
	line-height: 90%;
	letter-spacing: -0.04em;
}
.review-status {
	font-size: max(14px, 18rem);
	line-height: 90%;
	letter-spacing: -0.04em;
	opacity: 0.4;
}
.review-arrows {
	display: flex;
	gap: 10px;
}
.slick-arrow {
	position: relative;
	z-index: 10;
	width: max(32px, 40rem);
	height: max(32px, 40rem);
	font-size: 0;
	background: url(../images/arrow.svg) 50% 50% no-repeat;
	background-size: contain;
}
.slick-prev, .review-prev {
	transform: scale(-1, 1);
}

/************************* case *************************/
.case {
	padding: 0 0 max(80px, 180rem);
}
.case h3 {
	margin: 0 0 max(36px, 50rem);
	text-align: center;
}
.case .blog-col {
	width: 50%;
}
.case .blog-date {
   	max-width: max(200px, 380rem);
	line-height: 120%;
	letter-spacing: -0.01em;
}

/************************* start *************************/
.start {
	padding: 0 0 max(80px, 180rem);
}
.start-block {
	display: flex;
}
.start-side {
	width: calc(50% - 10px);
}
.start-side-text {
	margin: 0 0 max(8px, 10rem);
	font-weight: 500;
	font-size: var(--text_1);
	line-height: 110%;
	opacity: 0.4;
}
.start-side h3 {
	max-width: max(340px, 610rem);
}
.start-content {
	width: calc(50% - 10px);
	padding: max(30px, 46rem) 0 0;
}
.start-item {
	max-width: max(480px, 613rem);
}
.start-img {
	margin: 0 0 max(24px, 30rem);
}
.start-img img {
	width: 100%;
	border-radius: 10px;
}
.start-text {
	max-width: max(420px, 580rem);
	margin: 0 0 20px;
	font-size: var(--text_1);
	line-height: 120%;
}

/************************* video *************************/
.video {
	padding: 0 0 max(80px, 180rem);
}
.video h3 {
	max-width: max(320px, 620rem);
	margin: 0 auto max(36px, 50rem);
	text-align: center;
}
.video-block {
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	height: max(480px, 810rem);
}
.video-tag {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-play img {
	width: max(93px, 141rem);
}

/************************* main-blog *************************/
.main-blog {
	padding: 0 0 max(80px, 180rem);
}
.main-blog-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 max(36px, 50rem);
}
.main-blog-link {
	font-size: max(22px, 30rem);
	line-height: 100%;
	letter-spacing: -0.04em;
	color: var(--green);
	text-decoration: none;
	border-bottom: 1px solid var(--green);
}
.main-blog-link:hover {
	border-bottom: 1px solid transparent;
}
.main-blog .blog-list {
	margin: 0;
}

/************************* about page *************************/
.about-top {
	padding: 20px 0 0;
}
.about-top-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: max(637px, 882rem);
	padding: 12px;
	gap: max(20px, 40rem);
	text-align: center;
	background: var(--white);
	border-radius: 10px;
}
.about-top-block h2 {
	max-width: max(500px, 800rem);
}
.about-top-text {
	max-width: max(370px, 520rem);
	font-size: var(--text_4);
	line-height: 120%;
	opacity: 0.5;
}
/************************* about-card *************************/
.about-card {
	padding: max(80px, 180rem) 0;
}
.about-card-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 max(24px, 100rem);
}
.about-card-col {
	width: calc(50% - 10px);
}
.about-card-col h3 {
	max-width: max(380px, 640rem);
}
.about-card-text {
	max-width: max(340px, 580rem);
	font-size: var(--text_1);
	line-height: 120%;
}
.card-slider {
	width: calc(100% + 20px);
}
.card-slide {
	padding: 0 20px 0 0;
}
.card-slide .card-item {
	width: max(343px, 607rem);
}
.card-item {
	display: flex;
	flex-direction: column;
	height: max(287px, 583rem);
	padding: max(12px, 30rem);
	background: var(--white);
	border-radius: 10px;
}
.card-icon {
	margin: 0 0 auto;
}
.card-icon img {
	width: max(86px, 150rem);
}
.card-item h4 {
	margin: 0 0 max(12px, 20rem);
}
.card-text {
	font-size: var(--text_3);
	line-height: 120%;
	opacity: 0.5;
}

/************************* pros *************************/
.pros-block {
	padding: max(64px, 100rem) 12px;
	color: var(--white);
	background: var(--black);
	border-radius: 10px;
}
.pros-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: max(24px, 30rem);
	margin: 0 0 max(36px, 100rem);
}
.pros-top h2 {
	max-width: max(600px, 1360rem);
}
.pros-top-text {
	max-width: max(340px, 580rem);
	font-size: var(--text_1);
	line-height: 120%;
	opacity: 0.5;
}
.pros-list {
	display: flex;
	flex-direction: column;
	gap: max(36px, 80rem);
	max-width: max(400px, 636rem);
	margin: 0 auto;
}
.pros-item {
	display: flex;
}
.pros-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max(48px, 122rem);
	min-width: max(48px, 122rem);
	height: max(48px, 122rem);
	margin: 0 22px 0 0;
	font-weight: 600;
	font-size: var(--number_2);
	line-height: 100%;
	letter-spacing: -0.04em;
	border: 1px solid #bed459;
	border-radius: max(10px, 20rem);
}
.pros-content {
	flex: 1;
}
.pros-content h4 {
	margin: 0 0 max(12px, 20rem);
}
.pros-text {
	font-size: var(--text_4);
	line-height: 120%;
	opacity: 0.7;
}

/************************* team *************************/
.team {
	padding: max(80px, 180rem) 0;
}
.team-block {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.team-side {
	position: sticky;
	top: max(45px, 65rem);
	left: 0;
	width: calc(50% - 10px);
	transition: top 0.3s linear;
}
.team-side.up {
	top: calc(20px + max(61px, 93rem) + max(45px, 65rem));
}
.team-side h3 {
	margin: 0 0 max(12px, 50rem);
}
.team-side-text {
	max-width: max(340px, 580rem);
	font-size: var(--text_1);
	line-height: 120%;
	opacity: 0.4;
}
.team-content {
	width: calc(50% - 10px);
}
.team-section {
	margin: 0 0 max(36px, 70rem);
}
.team-section:last-child {
	margin: 0;
}
.team-section h4 {
	margin: 0 0 max(16px, 30rem);
}
.team-slider {
	width: calc(100% + 20px);
}
.team-slide {
	width: max(244px, 308rem);
	padding: 0 20px 0 0;
}
.team-photo {
	margin: 0 0 18px;
}
.team-photo img {
	width: 100%;
	border-radius: 10px;
}
.team-name {
	margin: 0 0 max(6px, 10rem);
	font-size: var(--h6);
	font-weight: 500;
	line-height: 90%;
	letter-spacing: -0.04em;
}
.team-status {
	font-size: max(14px, 18rem);
	line-height: 90%;
	letter-spacing: -0.04em;
	opacity: 0.4;
}

/************************* contacts *************************/
.contacts {
	padding: max(74px, 90rem) 0 max(80px, 180rem);
}
.contacts-block {
	position: relative;
}
.contacts-content {
	position: relative;
	max-width: max(640px, 930rem);
	margin: 0 auto;
}
.contacts-main h2 {
	margin: 0 0 max(20px, 22rem);
	text-align: center;
}
.contacts-top-text {
	max-width: max(320px, 500rem);
	margin: 0 auto max(40px, 50rem);
	font-size: var(--text_4);
	line-height: 120%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--black);
	opacity: 0.5;
}
.contacts-side {
	position: absolute;
	top: max(160px, 206rem);
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contacts-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.contacts-info-title {
	margin: 0 0 5px;
	font-size: var(--text_4);
	line-height: 120%;
	opacity: 0.4;
}
.contacts-info-link {
	font-size: var(--text_4);
	line-height: 120%;
	color: var(--black);
	text-decoration: none;
}
.contacts-info-link:hover {
	opacity: 0.5;
}
.contacts-main .button {
	width: 100%;
}
.contacts-main .form-button {
	padding: 10px 0 0;
}
.contacts-main .wpcf7-form-control-wrap input {
    height: 50px;
}
.contacts-main .wpcf7-form-control-wrap textarea {
	height: 110px;
}
.check-block {
	display: flex;
	flex-direction: column;
	gap: max(8px, 12rem) 0;
	margin: 0 0 max(16px, 20rem);
}
.contacts-thanks {
	display: none;
}
.form-sent .contacts-main {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.form-sent .contacts-thanks {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	text-align: center;
	flex-direction: column;
	gap: max(20px, 22rem);
	padding-top: max(160px, 206rem);
}
.contacts-thanks-text {
	font-size: var(--text_4);
	line-height: 120%;
	opacity: 0.5;
}

/************************* blog *************************/
.blog {
	padding: max(64px, 150rem) 0 max(80px, 180rem);
}
.blog h2 {
	margin: 0 0 max(64px, 142rem);
	text-align: center;
}
.blog-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px max(36px, 40rem);
	gap: max(24px, 50rem) 0;
}
.blog-col {
	width: 33.33%;
	padding: 0 10px;
}
.blog-item {
	display: block;
	color: var(--black);
	text-decoration: none;
}
.blog-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 0 15px;
}
.blog-img img {
	width: 100%;
}
.blog-item h5 {
	margin: 0 0 8px;
}
.blog-date {
	font-size: var(--text_4);
	line-height: 100%;
	letter-spacing: -0.04em;
	color: rgba(0, 0, 0, 0.4);
}
.img-hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 10px;
	background: rgba(27, 30, 20, 0.5);
	transition: all 0.5s var(--ease-out-expo);
	opacity: 0;
}
.blog-item:hover .img-hover {
	opacity: 1;
}
.hover-icon {
	max-width: 15px;
}
.hover-text {
	font-size: var(--text_1);
	line-height: 130%;
	color: var(--white);
}

/************************* article *************************/
.article-page {
	padding: max(72px, 180rem) 0 max(80px, 180rem);
}
.info-page {
	padding: max(64px, 150rem) 0 max(80px, 180rem);
}
.article {
	position: relative;
}
.article-side {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
.article-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: max(210px, 290rem);
	gap: 12px 0;
	position: sticky;
	top: max(45px, 65rem);
	left: 0;
	transition: top 0.3s linear;
}
.article-list.up {
	top: calc(20px + max(61px, 93rem) + max(45px, 65rem));
}
.article-list a {
	font-size: var(--text_4);
	line-height: 120%;
	color: var(--black);
	opacity: 0.5;
	text-decoration: none;
}
.article-list a:hover {
	opacity: 1;
}
.article-content {
	max-width: max(400px, 613rem);
	margin: 0 auto;
}
.article-wrap {
	width: max(440px, 740rem);
}
.article-wrap p {
	margin: 0;
}
.article-wrap h2 {
	margin: 0 0 max(40px, 80rem);
}
.article-wrap h4 {
	margin: max(40px, 60rem) 0 max(12px, 20rem);
}
.article-wrap h4:first-child {
	margin-top: 0;
}
.article-wrap ol {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: max(12px, 20rem) 0;
}
.article-wrap ul {
	display: flex;
	flex-direction: column;
	gap: max(12px, 20rem) 0;
	padding-left: max(20px, 40rem);
}
.article-wrap ul li {
	list-style-type: disc;
}
.article-banner {
	margin: 0 0 max(24px, 60rem);
}
.article-banner img {
	width: 100%;
	height: max(454px, 882rem);
	object-fit: cover;
	border-radius: 10px;
}
.article-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: max(500px, 1140rem);
	margin: 0 0 max(24px, 50rem);
}
.article-top-text {
	max-width: max(490px, 870rem);
	opacity: 0.7;
}
.article-img {
	max-width: max(520px, 613rem);
	margin: max(40px, 60rem) 0 0;
}
.article-img img {
	width: 100%;
	min-height: 368px;
	object-fit: cover;
	border-radius: 10px;
}
.blog-more {
	padding: 0 0 max(80px, 180rem);
}
.blog-more h3 {
	margin: 0 0 max(36px, 50rem);
}
.blog-more .blog-list {
	margin: 0;
}

/************************* faq *************************/
.faq {
	padding: max(64px, 150rem) 0 max(80px, 180rem);
}
.faq h2 {
	margin: 0 0 max(64px, 142rem);
	text-align: center;
}
.faq-block {
	max-width: max(800px, 1246rem);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
.faq-item {
	padding: max(12px, 30rem);
	background: var(--white);
	border-radius: 10px;
	transition: background 0.3s linear;
}
.faq-item.active {
	background: var(--green_light);
}
.faq-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding-right: max(54px, 78rem);
	color: var(--black);
	text-decoration: none;
}
.faq-top::after {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: min(-12px, -24rem);
	display: block;
	content: '';
	width: max(24px, 48rem);
	min-width: max(24px, 48rem);
	height: max(24px, 48rem);
	background: url(../images/plus.svg) 50% 50% no-repeat;
	background-size: contain;
	transition: all 0.3s linear;
}
.faq-top.active::after {
	top: 0;
	margin-top: 0;
	transform: rotate(45deg);
}
.faq-top-text {
	max-width: max(480px, 740rem);
	font-size: max(20px, 36rem);
	line-height: 120%;
	letter-spacing: -0.04em;
}
.faq-hidden {
	display: none;
	max-width: max(480px, 740rem);
	padding: max(12px, 20rem) 0 0;
	font-size: var(--text_1);
	line-height: 120%;
	letter-spacing: -0.01em;
	opacity: 0.6;
}
.faq-hidden p {
	margin: 0 0 10px;
}
.faq-hidden p:last-child {
	margin: 0;
}

/************************* 404 *************************/
.page-404 {
	padding: 37px 0 max(80px, 180rem);
}
.page-404-block {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-404-img {
	width: max(200px, 272rem);
}
.page-404-wrap {
	position: absolute;
	top: max(203px, 266rem);
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: max(36px, 40rem);
}

/************************* footer *************************/
.footer {
	margin: auto 0 0;	
}
.footer-form {
	position: relative;
	padding: max(64px, 100rem) max(12px, 25rem);
	margin: 0 0 max(40px, 50rem);
	background: var(--black);
	border-radius: 10px;
}
.footer-form-main {
	display: flex;
	justify-content: space-between;
}
.footer-form-side {
	width: 40%;
	max-width: max(420px, 620rem);
	color: var(--white);
}
.footer-form-side .green {
	display: block;
}
.green {
	color: var(--green_light);
}
.sign-icon {
	display: inline-block;
	vertical-align: middle;
	width: max(9px, 15rem);
	margin-bottom: max(4px, 6rem);
}
.footer-form-content {
	width: 55%;
	max-width: max(500px, 900rem);
	padding: 10px 0 0;
}
.footer-form .wpcf7-form-control-wrap input {
	margin: 0 0 10px;
	height: max(52px, 70rem);
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
}
.footer-form .wpcf7-form-control-wrap textarea {
	margin: 0 0 10px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
}
.footer-form .wpcf7-form-control-wrap input:hover,
.footer-form .wpcf7-form-control-wrap input:focus,
.footer-form .wpcf7-form-control-wrap textarea:hover,
.footer-form .wpcf7-form-control-wrap textarea:focus {
	background: rgba(255, 255, 255, 0.2);
}
.footer-form ::-webkit-input-placeholder {color: rgba(249, 249, 249, 0.4);}
.footer-form :-moz-placeholder {color: rgba(249, 249, 249, 0.4); opacity: 1;}
.footer-form ::-moz-placeholder {color: rgba(249, 249, 249, 0.4); opacity: 1;}
.footer-form :-ms-input-placeholder {color: rgba(249, 249, 249, 0.4);}
.footer-form .form-button {
	padding: 10px 0 0;
}
.footer-form .button {
	width: 100%;
	background: var(--green_light);
	border: 1px solid var(--green_light);
}
.footer-form .button:hover {
	color: var(--green_light);
	background: transparent;
}
.footer-form-thanks {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--white);
}
.form-sent .footer-form-main {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.form-sent .footer-form-thanks {
	display: flex;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	padding: 0 0 max(36px, 74rem);
}
.footer-side {
	width: max(256px, 296rem);
}
.footer-content {
	flex: 1;
	display: flex;
	max-width: calc(max(500px, 900rem) + max(12px, 25rem));
}
.footer-sign {
	position: relative;
}
.footer-sign-title {
	margin: 0 0 10px;
	font-size: var(--text_4);
	line-height: 120%;
}
.footer-sign-text {
	max-width: max(220px, 270rem);
	margin: 0 0 20px;
	font-size: var(--caption_3);
	line-height: 110%;
	opacity: 0.4;
}
.footer-sign-wrap {
	position: relative;
}
.sign-button {
	position: absolute;
	top: 12px;
	right: 20px;
	cursor: pointer;
	opacity: 0.4;
	transition: all 0.3s linear;
}
.sign-button:hover {
	opacity: 1;
}
.footer-sign .wpcf7-form-control-wrap input {
    height: 44px;
    font-size: var(--field_2);
}
.footer-col {
	width: 33.33%;
}
.footer-title {
	margin: 0 0 5px;
	font-size: var(--text_4);
	line-height: 120%;
	opacity: 0.4;
}
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.footer-nav li {
	font-size: var(--text_4);
	line-height: 120%;
}
.footer-nav a {
	color: var(--black);
	text-decoration: none;
}
.footer-nav a:hover {
	opacity: 0.5;
}
.footer-link {
	margin: 0 0 20px;
	font-size: var(--text_4);
	line-height: 120%;
}
.footer-link:last-child {
	margin: 0;
}
.footer-link, .footer-nav {
    padding-top: 10px;
}
.footer-link a {
	color: var(--black);
	text-decoration: none;
}
.footer-link a:hover {
	opacity: 0.5;
}
.footer-webs {
	display: flex;
	gap: 15px;
	padding: 10px 0 0;
}
.footer-web:hover {
	opacity: 0.5;
}
.footer-web img {
	display: block;
	width: max(24px, 28rem);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding: 0 0 max(16px, 20rem);
}
.footer-logo img {
    width: max(158px, 268rem);
}
.footer-copy {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
	max-width: 60%;
	font-size: var(--text_4);
	line-height: 120%;
	letter-spacing: -0.01em;
	color: rgba(27, 30, 20, 0.3);
}
.footer-copy a {
	color: rgba(27, 30, 20, 0.3);
}
.footer-copy a:hover {
	color: rgba(27, 30, 20, 1);
	text-decoration: underline;
}
.footer-studio {
	margin: 0 0 0 auto;
	width: 33.33%;
	font-size: var(--text_4);
	line-height: 120%;
	letter-spacing: -0.01em;
	color: rgba(27, 30, 20, 0.3);
}
.footer-studio a {
	color: rgba(27, 30, 20, 0.3);
	text-decoration: none;
}
.footer-studio a:hover {
	color: rgba(27, 30, 20, 1);
}
.footer-sign-thanks {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	font-size: var(--text_4);
	line-height: 120%;
}
.form-sent .footer-sign-form {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.form-sent .footer-sign-thanks {
	display: flex;
}

/************************* media *************************/
@media screen and (max-width: 1200px) {
	.contacts-block {
		max-width: 640px;
		margin: 0 auto;
	}
	.contacts-content {
		max-width: none;
	}
	.contacts-side {
		position: relative;
		top: auto;
		left: auto;
		padding: 36px 0 0;
	}
	.stat-big {
		width: 65%;
	}
	.stat-col {
		width: 35%;
	}

}
@media screen and (max-width: 1024px) {
	.header-button {display: none;}
	.mob-nav-icon {display: block;}
	body.lock {overflow: hidden;}
	.header-block {
		display: block;
		padding: 0;
	}
	.hero-button {
		z-index: 550;
	}
	.header-wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 600;
		height: max(61px, 93rem);
		padding: 0 max(12px, 32rem);
		background: var(--white);
		border-radius: 10px;
	}
	.header-nav {
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		width: 100%;
		padding: 93px 16px 12px;
		z-index: 540;
		overflow-y: auto;
		box-sizing: border-box;
		display: block;
		background: var(--grey);
		box-shadow: none;
		transition: all 0.5s ease;
	}
	.header-nav.vis {
		left: 0;
	}
	.header-nav-list {
		flex-direction: column;
		gap: 12px 0;
		padding: 24px 12px;
		background: var(--white);
		border-radius: 10px;
	}
	.header-nav-list li {
		font-weight: 600;
		font-size: 24px;
		line-height: 110%;
		letter-spacing: -0.04em;
	}
	.footer-form-main {
		display: block;
	}
	.footer-form-side {
		width: auto;
		margin: 0 0 36px;
	}
	.footer-form-content {
		width: auto;
		max-width: none;
		padding: 0;
	}
	.footer-top, .footer-bottom {
		display: block;
	}
	.footer-content {
		max-width: none;
	}
	.footer-logo {
		margin: 0 0 17px;
	}
	.footer-sign {
		margin: 0 0 24px;
	}
	.blog-col {
		width: 50%;
	}
	.card-slider {
		width: calc(100% + 16px);
	}
	.team-slider {
		width: calc(100% + 16px);
	}
	.team-block {
		display: block;
	}
	.team-side {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		margin: 0 0 36px;
	}
	.team-side.up {
		top: auto;
	}
	.team-content {
		width: auto;
	}
	.card-col {
		width: 50%;
	}
	.stat-block {display: block;}
	.stat-side {
		width: auto;
		padding: 0 0 36px;
	}
	.stat-side-text {
		font-weight: 400;
		line-height: 120%;
	}
	.stat-content {
		width: auto;
		display: block;
	}
	.stat-big {
		width: auto;
		margin: 0 0 8px;
	}
	.stat-col {
		width: auto;
		padding: 0;
		gap: 8px;
	}
	.stat-col .stat-item {
		flex: none;
	}
	.stat-item {
		height: max(148px, 300rem);
	}
	.stat-big .stat-item {
		height: max(148px, 300rem);
	}
	.info-tag {display: none;}
	.article-side {
		display: none;
	}
	
}
@media screen and (max-width: 767px) {
	.article-content {
		max-width: none;
	}
	.article-wrap {
		width: auto;
	}
	.about-card-top {
		display: block;
	}
	.about-card-col {
		width: auto;
	}
	.about-card-col h3 {
		margin: 0 0 12px;
	}
	.about-card-text {
		opacity: 0.4;
	}
	.start-block {
		display: block;
	}
	.start-side {
		width: auto;
	}
	.start-content {
		width: auto;
		padding: 36px 0 0;
	}
	.article-top {
		width: auto;
	}

}
@media screen and (max-width: 576px) {
	.footer-form .wpcf7-form-control-wrap input {
		margin: 0 0 12px;
	}
	.footer-form .form-button {
		padding: 0;
	}
	.footer-content {
		display: block;
	}
	.footer-col {
		width: auto;
		margin: 0 0 24px;
	}
	.footer-col:last-child {
		margin: 0;
	}
	.footer-link {
		margin: 0 0 24px;
	}
	.footer-copy {
		max-width: none;
	}
	.footer-studio {
		margin: 0;
		width: auto;
		padding: 17px 0 0;
	}
	.blog-col {
		width: 100%;
	}
	.faq-hidden {
		padding-right: 34px;
	}
	.footer-sign-title {
		font-size: var(--h6);
		line-height: 90%;
	}
	.footer-sign-text {
		max-width: 250px;
		font-size: var(--text_2);
		line-height: 120%;
	}
	.page-404 {
		padding-top: 60px;
	}
	.page-404-wrap h1 {
		font-size: var(--h2);
		line-height: 100%;
	}
	.button {width: 100%;}
	.article-wrap h2 {
		margin: 0 0 64px;
	}
	.article-wrap h4 {
		margin: 64px 0 max(12px, 20rem);
	}
	.article-img {
		max-width: none;
		margin: 64px 0 0;
	}
	.input-line .wpcf7-form-control-wrap {
		width: 100%;
	}
	.check-block {
		padding: 4px 0 0;
	}
	.contacts-main .form-button {
		padding: 0;
	}
	.about-top {
		padding: 12px 0 0;
	}
	.about-top-block h2 {
		max-width: 240px;
	}
	.card-slider {
		width: auto;
		display: flex;
		flex-wrap: wrap;
		gap: 12px 0;
	}
	.card-slide {
		width: 100%;
		padding: 0;
	}
	.card-slide .card-item {
		width: auto;
	}
	.team-slide {
		padding: 0 12px 0 0;
	}
	.card-block {
		gap: 12px 0;
	}
	.card-col {
		width: 100%;
	}
	.hero {
		padding: 12px 0 144px;
	}
	.hero-block {
		height: calc(100dvh - 116px - max(61px, 93rem));
	}
	.hero-wrap {
		padding-bottom: 0;
	}
	.hero-button {
		left: 16px;
		right: 16px;
		bottom: 18px;
	}
	footer {
		padding-bottom: 75px;
	}
	.info-block {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 12px;
		background: url(../images/info-bg-mob.jpg) 50% 50% no-repeat;
    	background-size: cover;
	}
	.info-block-text {
		max-width: 230px;
		margin: 0 auto max(12px, 26rem);
		font-weight: 400;
		font-size: 12px;
		line-height: 120%;
	}
	.info-block-title {
		line-height: 100%;
	}
	.title-left {
		margin-left: 0;
	}
	.title-right {
		margin-left: 0;
	}
	.review-wrap {
		padding: 0 0 56px;
	}
	.review-arrows {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		justify-content: center;
	}
	.review-top h3 {
		max-width: 320px;
	}
	.case .blog-col {
		width: 100%;
	}
	.case .blog-img img {
		height: 343px;
		object-fit: cover;
	}
	.case .blog-img .hover-icon {
		height: auto;
		object-fit: contain;
	}
	.start-item {
		max-width: none;
	}
	.main-blog .blog-list {
		margin: 0 0 88px;
	}
	.main-blog .holder {
		position: relative;
		padding-bottom: 1px;
	}
	.main-blog-link {
		position: absolute;
		bottom: 0;
		left: 16px;
		right: 16px;
		padding: 14px 49px;
		color: var(--black);
		font-weight: 400;
		font-size: var(--button_1);
		line-height: 130%;
		letter-spacing: -0.01em;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
		background: var(--green);
		border: 1px solid var(--green);
		border-radius: 10px;
		transition: all .3s linear;
	}
	.main-blog-link:hover {
		background: transparent;
		border: 1px solid var(--green);
	}
	.form-sent .contacts-main {
		display: none;
	}
	.form-sent .contacts-thanks {
		position: static;
		padding: 0 0 40px;
	}
	.hover-icon {
		max-width: 12px;
	}


}



/*Custom*/
span.wpcf7-spinner, .wpcf7-response-output {
	display: none !important;
	visibility: hidden;
}

.hero-button a {
    z-index: 999;
}

.footer-bottom {
    z-index: 99;
    position: relative;
}
.hero-button.hidden {
    opacity: 0;
    pointer-events: none; 
}
.top-information_team {
    display: flex;
    justify-content: space-between;
}
.arrow-slider_team {
    display: flex;
    gap: 1em;
}
.arrow-left_team, .arrow-right_team, .arrow-left_card, .arrow-right_card {
    cursor: pointer;
    transition: all .3s ease;
}
.arrow-slider_card {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    gap: 1em;
}
@media (min-width:1024px) {
	.arrow-left_team:hover, .arrow-right_team:hover, .arrow-left_card:hover, .arrow-right_card:hover {
		scale: 1.1;
	}
}
@media (max-width:576px) {
	.arrow-slider_card {
		display: none;
	}
}


@media (min-width:1024px) {
	.post-image-rel {
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.archive-blog-img {
		aspect-ratio: 1.5 / 1;
		object-fit: cover;
	}
	
	.team-block-new {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		row-gap: 20px;
	}
}

@media (max-width: 1024px) {
	.team-block-new {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.team-block-new .team-slide {
		padding: 0;
		width: 100%;
	}
}
