html {
	scroll-padding-top: 83px;
	overflow-x: hidden;
}

body {
	min-width: 320px;
	font-family: 'Gilroy', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	overflow-x: hidden;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(26, 52, 126, 0.9);
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 12;
}

.bg_header {
	background: url(../img/header_img.png) no-repeat;
	padding-top: 78px;
	background-size: cover;
	margin-bottom: 40px;
}

header {
	width: 100%;
	background: rgba(26, 52, 126, 0.9);
	padding-top: 15px;
	padding-bottom: 15px;
}

header .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

header .wrap .col_1 {
	width: 25%;
}

header .wrap .col_2 {
	width: 34%;
	margin-top: 20px;
}

header .wrap .col_2 nav > ul {
	display: flex;
	flex-wrap: wrap;
	font-weight: 600;
	line-height: 19px;
}

header .wrap .col_2 nav > ul > li {
	margin-right: 32px;
}

header .wrap .col_2 nav > ul > li:last-child {
	margin-right: 0;
}

header .wrap .col_2 nav > ul > li > a {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

header .wrap .col_2 nav > ul > li:hover > a {
	color: #10EE5A;
}

header .wrap .col_2 nav > ul > li:hover > .sub-menu {
	display: block;
}

header .wrap .col_2 nav .sub-menu {
	display: none;
	position: absolute;
	background: #ECF1F7;
	border-radius: 5px;
	padding: 15px 10px 15px 10px;
	margin-top: 10px;
}

header .wrap .col_2 nav .sub-menu > li {
	margin-bottom: 10px;
}

header .wrap .col_2 nav .sub-menu > li:last-child {
	margin-bottom: 0;
}

header .wrap .col_2 nav > ul > li.menu-item-has-children {
	background: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right;
}

header .wrap .col_2 nav > ul > li:hover.menu-item-has-children {
	background: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%2310EE5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right;
}

header .wrap .col_2 nav > ul > li.menu-item-has-children > a {
	padding-bottom: 10px;
	padding-right: 25px;
}

header .wrap .col_2 nav .sub-menu > li > a {
	color: #222222;
	font-size: 14px;
	text-decoration: none;
}

header .wrap .col_2 nav .sub-menu > li > a:hover {
	text-decoration: underline;
}

.burger_menu_button {
	display: none;
	cursor: pointer;
}

.burger_menu_background {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.2);
	position: fixed;
	display: none; /* display: block;*/
}

.burger_menu_content {
	max-width: 300px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0px;
	height: 100%;
	z-index: 2;
	background: #1c418e;
	overflow-y: auto;
	color: #fff;
	transform: translateX(-100%);
}

.burger_menu_content > ul {
	margin-top: 40px;
	margin-left: 20px;
}

.burger_menu_content > ul > li {
	margin-bottom: 15px;
}

.burger_menu_content > ul > li > a {
	text-decoration: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	letter-spacing: 0.1em;
}

.burger_menu_content > ul > li > a:hover {
	text-decoration: underline;
}

.burger_menu_content .sub-menu {
	margin-top: 15px;
	margin-left: 10px;
}

.burger_menu_content .sub-menu > li {
	margin-bottom: 10px;
}

.burger_menu_content .sub-menu > li > a {
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	letter-spacing: 0.1em;
}

.burger_menu_content .sub-menu > li > a:hover {
	text-decoration: underline;
}

.burger_menu_close {
	cursor: pointer;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
}

.burger_menu_in_left {
	animation-name: burger_menu_in_left;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}

.burger_menu_out_left {
	animation-name: burger_menu_out_left;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}

@keyframes burger_menu_out_left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@keyframes burger_menu_in_left {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0);
	}
}

header .wrap .col_3 {
	width: 15%;
	margin-top: 18px;
}

header .wrap .col_3 .tel a {
	background: url(../img/i_tel.svg) no-repeat 0px center;
	display: inline-block;
	padding-left: 30px;
	text-decoration: none;
	color: #fff;
	line-height: 19px;
	font-weight: 700;
}

header .wrap .col_4 {
	width: 20%;
}

header .wrap .col_4 .button a {
	border: 1px solid #fff;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	padding: 16px 40px 16px 40px;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
	border-radius: 5px;
}

header .wrap .col_4 .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

header .wrap .col_5 {
	width: 6%;
	margin-top: 15px;
	display: flex;
}

header .wrap .col_5 .telegram {
	display: inline-block;
	margin-right: 16px;
}

header .wrap .col_5 .whatsapp {
	display: inline-block;
}

header .wrap .col_5 .whatsapp img {
	padding-top: 3px;
}

.top {
	background: url(/wp-content/uploads/2025/03/photo-1.webp) no-repeat right top, url(../img/header_img_3.png) no-repeat right top;
	max-width: 1280px;
	margin: 0 auto;
	margin-top: 80px;
	background-size: contain;
	position: relative;
	z-index: 8;
}

.top .tex_1 {
	max-width: 900px;
	font-size: 55px;
	color: #fff;
	line-height: 77px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.top .tex_1 span {
	color: #99AECC;
}

.top .tex_2 {
	max-width: 490px;
	font-size: 27px;
	color: #fff;
	line-height: 34px;
	margin-top: 20px;
	margin-bottom: 57px;
}

.top .button {
	padding-bottom: 68px;
}

.top .button a,
.marketing .button a,
.strategy .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	transition: all .3s ease-in-out;
}

.top .button a:hover,
.marketing .button a:hover,
.strategy .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.top .info {
	padding-bottom: 110px;
}

.top .info .items {
	display: flex;
	flex-wrap: wrap;
}

.top .info .items .item {
	background: #fff;
	padding: 20px 95px 44px 26px;
	margin-right: 20px;
	border-radius: 5px;
	position: relative;
	box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 55px 33px 0px #00000008, 0px 98px 39px 0px #00000003, 0px 153px 43px 0px #00000000;
}

.top .info .items .item .number {
	font-size: 48px;
	color: #395172;
	font-weight: 800;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
}

.top .info .items .item .text {
	width: 180px;
	color: #090C11;
	font-weight: 600;
}

.top .info .items .item .green {
	background: #10ee5a;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 63px;
	height: 157px;
}

.top .info .items .item .logo {
	position: absolute;
	bottom: 14px;
	right: 12px;
	width: 39px;
	height: 39px;
}

.top .badge {
	margin: 20px;
	padding: 20px;
	max-width: 350px;
	float: right;
	border-radius: 5px;
	background: #fff;
}

.specificity {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	min-height: 793px;
	position: relative;
	z-index: 1;
	margin-bottom: 100px;
}

.specificity .col_1 {
	width: 55%;
	position: relative;
}

.specificity .col_1 img {
	left: -180px;
	position: absolute;
	max-width: none;
}

.specificity .col_2 {
	width: 45%;
	margin-top: 130px;
}

.specificity .col_2 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 500;
	line-height: 38px;
}

.specificity .col_2 .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
}

.specificity .col_2 p {
	color: #616161;
	line-height: 28px;
	margin-bottom: 25px;
}

.specificity .col_2 p span {
	font-weight: 700;
}

.specificity .col_2 ul {
	color: #616161;
	line-height: 28px;
	list-style-type: disc;
	padding-left: 25px;
	margin-bottom: 25px;
}

.specificity .col_2 ul span {
	font-weight: 700;
	color: #616161;
}

.specificity table {
	width: 100%;
	color: #616161;
}

.specificity table td {
	padding: 10px;
}

.specificity table td span {
	font-weight: 700;
}

.benefit {
	position: relative;
	min-height: 698px;
	margin-top: -115px;
	margin-bottom: 100px;
}

.benefit .bg {
  width: 50%;
  height: 100%;
	background: url(../img/img_benefit.png) no-repeat left 200px top,
	url(../img/bg_fff.png) no-repeat left top,
	#1a347e;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
}

.benefit .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-top: 180px;
}

.benefit .col_1 {
	width: 45%;
	margin-right: 10%;
}

.benefit .col_2 {
	width: 45%;
}

.benefit .col_1 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 500;
	line-height: 20px;
	margin-right: 12px;
}

.benefit .col_1 .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
}

.benefit .col_1 p {
	color: #616161;
	line-height: 28px;
	margin-bottom: 25px;
}

.benefit .col_1 p span {
	font-weight: 500;
}

.benefit .col_1 .button {
	margin-top: 43px;
}

.benefit .col_1 .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.benefit .col_1 .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.benefit .col_1 ul {
	color: #616161;
	line-height: 28px;
	list-style-type: disc;
	padding-left: 25px;
	margin-bottom: 25px;
}

.benefit .col_1 ul span {
	font-weight: 700;
	color: #616161;
}

.benefit .col_2 .items {
	display: flex;
	flex-wrap: wrap;
}

.benefit .col_2 .items .item {
	width: 47%;
	margin-right: 3%;
	background: #fff;
	padding: 20px 85px 30px 25px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
	box-shadow: 0px 5px 11px 0px #0000000D, 0px 20px 20px 0px #0000000A, 0px 47px 28px 0px #00000008, 0px 84px 33px 0px #00000003, 0px 131px 36px 0px #00000000;
}

.benefit .col_2 .items .item .price {
	font-size: 32px;
	color: #395172;
	font-weight: 700;
	margin-bottom: 15px;
}

.benefit .col_2 .items .item .text {
	color: #090C11;
	font-weight: 600;
}

.benefit .col_2 .items .item .green {
	background: #10ee5a;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	top: 22px;
	right: 0px;
	width: 54px;
	height: 102px;
}

.benefit .col_2 .items .item .logo {
	position: absolute;
	bottom: 12px;
	right: 10px;
	width: 34px;
	height: 34px;
}

.advantages {
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.advantages .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: center;
	font-weight: 500;
	line-height: 28px;
}

.advantages .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 75px;
	text-align: center;
}

.advantages .items {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 55px;
}

.advantages .items .item {
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	background: #ECF1F7;
	padding: 121px 25px 35px 30px;
	border-radius: 5px;
	position: relative;
}

.advantages .items .item:nth-child(2n) {
	position: relative;
	bottom: -55px;
}

.advantages .items .item:last-child {
	margin-bottom: 0;
}

.advantages .items .item .tx_1 {
	font-size: 20px;
	line-height: 28px;
	color: #222222;
	font-weight: 700;
	margin-bottom: 20px;
}

.advantages .items .item .tx_2 {
	line-height: 20px;
	color: #616161;
}

.advantages .items .item .img {
	position: absolute;
	top: -20px;
	right: 0px;
	width: 168px;
	height: 115px;
}

.marketing {
	background: url(../img/img_5_marketing.jpg) no-repeat right -60px bottom -40px;
	position: relative;
	min-height: 698px;
	margin-bottom: 100px;
}

.marketing .bg {
  width: 50%;
  height: 100%;
	background: url(../img/img_1_marketing.png) no-repeat right 200px top,
	url(../img/bg_fff.png) no-repeat right top,
	#1a347e;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
}

.marketing .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-top: 59px;
}

.marketing .col_1 {
	width: 50%;
	margin-right: 5%;
	padding-top: 37px;
	position: relative;
}

.marketing .col_2 {
	width: 40%;
	margin-left: 5%;
	position: relative;
}

.marketing .col_1 .ball_1 {
	width: 72px;
	height: 88px;
	background: url(../img/img_2_marketing.png) no-repeat;
	position: absolute;
	top: -95px;
	left: -35px;
}

.marketing .col_1 .ball_2 {
	width: 250px;
	height: 325px;
	background: url(../img/img_3_marketing.png) no-repeat;
	position: absolute;
	bottom: -225px;
	left: -240px;
}

.marketing .col_2 .ball_3 {
	width: 138px;
	height: 169px;
	background: url(../img/img_4_marketing.png) no-repeat;
	position: absolute;
	top: -65px;
	right: -60px;
}

.marketing .col_2 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 500;
	margin-right: 167px;
	line-height: 35px;
}

.marketing .col_2 .text_2 {
	width: 420px;
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
}

.marketing .col_2 p {
	width: 520px;
	color: #616161;
	line-height: 28px;
	margin-bottom: 25px;
}

.marketing .col_1 .items {
	display: flex;
	flex-wrap: wrap;
}

.marketing .col_1 .items .item {
	width: 47%;
	margin-right: 3%;
	background: #fff;
	padding: 20px 95px 44px 26px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
	box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 55px 33px 0px #00000008, 0px 98px 39px 0px #00000003, 0px 153px 43px 0px #00000000;
}

.marketing .col_1 .items .item .number {
	font-size: 48px;
	color: #395172;
	font-weight: 800;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
}

.marketing .col_1 .items .item .text {
	width: 190px;
	color: #090C11;
	font-weight: 600;
}

.marketing .col_1 .items .item .green {
	background: #10ee5a;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 63px;
	height: 157px;
}

.marketing .col_1 .items .item .logo {
	position: absolute;
	bottom: 14px;
	right: 12px;
	width: 39px;
	height: 39px;
}

.supervisor {
	position: relative;
	min-height: 900px;
	margin-bottom: 100px;
}

.supervisor .bg {
	width: 50%;
	height: 100%;
	background: url(../img/strategy/strategy_bg.png) no-repeat left 350px top,
	url(../img/bg_fff.png) no-repeat left top,
	#dce4f6;
	position: absolute;
	right: 0;
	top: 0;
	max-height: 900px;
}

.supervisor .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding-top: 100px;
}

.supervisor .col_1 {
	width: 50%;
	margin-right: 10%;
}

.supervisor .col_2 {
	width: 40%;
}

.supervisor .col_1 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 500;
	line-height: 35px;
}

.supervisor .col_1 .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
}

.supervisor .col_1 p {
	color: #616161;
	line-height: 28px;
	margin-bottom: 25px;
}

.supervisor .col_1 p span {
	font-weight: 500;
}

.supervisor .col_1 .pictures {
	display: flex;
}

.supervisor .col_1 .pictures .img_1 {
	margin-top: 25px;
	margin-right: 23px;
}

.supervisor .col_2 .img {
  position: relative;
}

.supervisor .col_2 .img .green .name {
  font-size: 20px;
  color: #223044;
  margin-left: 30px;
  margin-top: 16px;
	font-weight: 700;
}

.supervisor .col_2 .img .green {
  background: #10ee5a;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	opacity: 0.9;
	position: absolute;
	bottom: 33px;
	left: 0px;
	width: 285px;
	height: 60px;
}

.supervisor .col_2 .img img {
	border-radius: 300px 300px 5px 5px;
	box-shadow: 7px 13px 33px 0px #3951722E, 30px 52px 60px 0px #39517229, 67px 117px 81px 0px #39517217, 120px 207px 96px 0px #39517208, 187px 324px 105px 0px #39517200;
}

.team {
	position: relative;
	min-height: 737px;
	margin-bottom: 100px;
}

.team .bg {
  width: 50%;
  height: 100%;
	background: url(../img/img_1_team.png) no-repeat right top,
	url(../img/bg_fff.png) no-repeat right top,
	#1a347e;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
}

.team .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}

.team .col_1 {
	width: 35%;
	margin-right: 10%;
}

.team .col_2 {
	width: 52%;
	padding-top: 100px;
}

.team .col_1 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 400;
	line-height: 37px;
	margin-top: 62px;
}

.team .col_1 .text_2 {
	font-size: 46px;
	font-weight: 700;
	line-height: 47px;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.team .col_1 .text_3 {
	font-size: 16px;
	line-height: 28px;
	color: #FFFFFF;
	margin-bottom: 50px;
}

.team .col_2 .owl-item {
	display: flex;
	justify-content: center;
}

.team .col_2 .item {
	margin-right: 10px;
	margin-left: 10px;
	position: relative;
}

.team .col_2 .item img {
	border-radius: 10px;
}

.team .col_2 .item .bg_team {
	background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0.8;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 223px;
	max-width: 305px;
	border-radius: 0 0 10px 10px;
}

.team .col_2 .item .info {
	position: absolute;
	width: 100%;
	max-width: 305px;
	top: 0;
	left: 0;
	padding: 0 24px 23px 32px;
	display: flex;
	height: 100%;
	align-items: flex-end;
}

.team .col_2 .item .info .user {
	margin-right: 26px;
}

.team .col_2 .item .info .user .name {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.5px;
	color: #fff;
	margin-bottom: 3px;
}

.team .col_2 .item .info .user .job {
	font-size: 14px;
	line-height: 22px;
	color: #D4D4D8;
}

.team .col_2 .item .info .more {
	color: #D4D4D8;
}

.team .col_2 .item .info .more .more_info {
	display: none;
	padding: 40px 27px 0 32px;
	background: #19347EE5;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 305px;
	border-radius: 5px 5px 10px 10px;
}

.team .col_2 .item .info .more:hover .more_info {
	display: block;
}

.team .col_2 .item .info .more .more_info .more_name {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.5px;
	color: #fff;
	margin-bottom: 3px;
}

.team .col_2 .item .info .more .more_info .more_job {
	font-size: 14px;
	line-height: 22px;
	color: #fff;
	padding-bottom: 27px;
	border-bottom: 1px solid #FFFFFF33;
	margin-bottom: 25px;
}

.team .col_2 .item .info .more .more_info .more_exp {
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	color: #fff;
}

.team .col_2 .item .info .more .more_info .more_txt {
	max-height: 350px;
	overflow: auto;
}

.team .col_2 .item .info .more .more_info .more_txt p {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-top: 22px;
	margin-bottom: 22px;
}

.team .col_1 .nav_team .owl-prev {
	width: 85px;
	height: 60px;
	background: url(../img/team_prev.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
	margin-right: 22px;
}

.team .col_1 .nav_team .owl-next {
	width: 85px;
	height: 60px;
	background: url(../img/team_next.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.services {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.services .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 38px;
	text-align: center;
}

.services .text_2 {
	max-width: 930px;
	margin: 0 auto;
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 24px;
	text-align: center;
}

.services .text_3 {
	max-width: 1010px;
	margin: 0 auto;
	color: #616161;
	line-height: 28px;
	text-align: center;
	margin-bottom: 62px;
}

.services .text_4 {
	width: 660px;
	color: #395172;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	text-align: left;
	margin-bottom: 32px;
}

.services .slider_services {
	margin-bottom: 80px;
}

.services .slider_services .info {
	background: #ECF0F7;
	padding: 30px 30px 0px 90px;
	border-radius: 5px;
	height: 100%;
	min-height: 248px;
	position: relative;
	margin-right: 10px;
	margin-left: 10px;
}

.services .slider_services .info .tx_1 {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: #222222;
	margin-bottom: 15px;
}

.services .slider_services .info .tx_2 {
	line-height: 20px;
	color: #616161;
	padding-bottom: 70px;
}

.services .slider_services .info .button {
	position: absolute;
	bottom: 26px;
}

.services .slider_services .info .button a {
	color: #223044;
	padding-right: 28px;
	text-decoration: none;
	line-height: 19px;
	font-weight: 600;
	background: url(../img/i_services.svg) no-repeat top -2px right;
}

.services .slider_services .info .green {
  background: #10ee5a;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 63px;
  height: 211px;
}

.services .slider_services .info .logo {
  position: absolute;
  bottom: 14px;
  left: 12px;
  width: 39px;
  height: 39px;
}

.services .slider_services .owl-stage {
	display: flex;
}

.services .slider {
	position: relative;
}

.services .owl-prev {
	position: absolute;
	right: 128px;
	top: -90px;
	cursor: pointer;
	width: 85px;
	height: 60px;
	background: url(../img/i_left.svg) no-repeat;
	padding: 0;
	border: none;
}

.services .owl-next {
	position: absolute;
	right: 20px;
	top: -90px;
	cursor: pointer;
	width: 85px;
	height: 60px;
	background: url(../img/i_right.svg) no-repeat;
	padding: 0;
	border: none;
}

.strategy {
	margin-top: 100px;
	margin-bottom: 100px;
	padding-top: 142px;
	position: relative;
	padding-bottom: 120px;
}

.strategy .bg {
	width: calc(50% + 108px);
	height: 100%;
	background: url(../img/strategy/strategy_bg.png) no-repeat left top,
	url(../img/bg_fff.png) no-repeat left top,
	#dce4f6;
	position: absolute;
	right: 0;
	top: 0;
	max-height: 900px;
}

.strategy .wrap {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.strategy-title {
	max-width: 1280px;
	margin: 0 auto;
}

.strategy-title .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 35px;
	text-align: center;
}

.strategy-title .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: center;
}

.strategy .item:first-child {
	width: 48%;
	margin-right: 2%;
	margin-top: -37px;
}

.strategy .item:first-child .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 37px;
	text-align: right;
	width: 480px;
}

.strategy .item:first-child .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	width: 480px;
}

.strategy .item:first-child .text_3 {
	color: #616161;
	line-height: 28px;
	margin-bottom: 25px;
	width: 480px;
}

.strategy .item {
	width: 23%;
	margin-right: 2%;
	margin-bottom: 20px;
}

.strategy .item .img {
	position: relative;
}

.strategy .item .img img {
	border-radius: 10px;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.strategy .item .img .order {
	background: #10ee5a;
	opacity: 0.9;
	position: absolute;
	top: 18px;
	right: 16px;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	text-align: center;
}

.strategy .item .img .order .number {
	font-size: 24px;
	padding-top: 16px;
	font-weight: 500;
	color: #fff;
}

.strategy .item .text {
	position: absolute;
	bottom: 22px;
	padding: 0px 15px 0px 27px;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
}

.strategy .item .bg_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	border-radius: 5px;
	opacity: 1;
}

.strategy .cube_2 {
  width: 356px;
	height: 353px;
	background: url(../img/strategy/img_1.png) no-repeat;
	position: absolute;
	bottom: -155px;
	right: 40px;
	display: none !important;
}

.strategy .cube_3 {
  width: 150px;
	height: 149px;
	background: url(../img/strategy/img_2.png) no-repeat;
	position: absolute;
	bottom: 220px;
	right: -185px;
}

.work {
	position: relative;
	min-height: 670px;
	margin-bottom: 100px;
}

.work .bg {
  width: 50%;
  height: 100%;
  background: #1a347e;
  border-radius: 0 300px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
}

.work .wrap {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.work .title {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 400;
	line-height: 37px;
	padding-top: 62px;
	width: 35%;
}

.work .bottom {
	width: 35%;
	display: flex;
	margin-top: 20px;
	padding-bottom: 40px;
	position: relative;
}

.work .bottom .nav_work {
	margin-right: 45px;
}

.work .bottom .nav_work .owl-prev {
	width: 85px;
	height: 60px;
	background: url(../img/team_prev.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
	margin-right: 22px;
}

.work .bottom .nav_work .owl-next {
	width: 85px;
	height: 60px;
	background: url(../img/team_next.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.work .bottom .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
}

.work .bottom .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.work .bottom .cube_1 {
	width: 202px;
	height: 201px;
	background: url(../img/work_cube.png) no-repeat;
	position: absolute;
	bottom: -130px;
	left: -230px;
}

.work .item {
	display: flex;
	padding-left: 5px;
	padding-right: 5px;
}

.work .col_1 {
	width: 40%;
	margin-right: 5%;
	position: relative;
}

.work .col_2 {
	width: 55%;
}

.work .col_1 .text_2 {
	font-size: 38px;
	font-weight: 700;
	line-height: 44px;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.work .col_1 .text_3 {
	font-size: 16px;
	line-height: 28px;
	color: #FFFFFF;
	margin-bottom: 20px;
}

.work .col_2 img {
	border-radius: 10px;
}

.work .video {
	padding-left: 30px;
	background: url() no-repeat left top;
}

.work .col_1 ul {
	color: #fff;
	line-height: 28px;
	list-style-type: disc;
	padding-left: 25px;
	margin-bottom: 25px;
}

.work .col_1 .video {
	background: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Cpath fill='red' d='M14.712 4.633a1.754 1.754 0 00-1.234-1.234C12.382 3.11 8 3.11 8 3.11s-4.382 0-5.478.289c-.6.161-1.072.634-1.234 1.234C1 5.728 1 8 1 8s0 2.283.288 3.367c.162.6.635 1.073 1.234 1.234C3.618 12.89 8 12.89 8 12.89s4.382 0 5.478-.289a1.754 1.754 0 001.234-1.234C15 10.272 15 8 15 8s0-2.272-.288-3.367z'/%3E%3Cpath fill='%23ffffff' d='M6.593 10.11l3.644-2.098-3.644-2.11v4.208z'/%3E%3C/svg%3E") no-repeat left center;
	color: #fff;
}


.faq {
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.faq .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 35px;
	text-align: center;
}

.faq .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: center;
}

.faq .accordion_body {
	margin-top: 60px;
	margin-bottom: 60px;
}

.faq .accordion {
	max-width: 1280px;
	margin: 0 auto;
}

.faq .accordion .container {
	position: relative;
	border-bottom: 1px solid #10EE5A;
	padding: 10px 0px 10px 0px;
}

.faq .accordion .container:last-child {
	border-bottom: 0;
}

.faq .accordion .label {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	position: relative;
	padding: 10px 70px 10px 5px;
	color: #222222;
	cursor: pointer;
}

.faq .accordion .label::before {
	content: '';
	background: url(../img/i_plus.svg) center no-repeat;
	border-radius: 4px;
	position: absolute;
	width: 30px;
  height: 30px;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
}

.faq .accordion .content {
	position: relative;
	line-height: 20px;
	height: 0;
	text-align: justify;
	overflow: hidden;
	transition: 0.5s;
	margin: 10px 40px 0px 35px;
	color: #616161;
}

.faq .accordion .content p {
	margin-bottom: 10px;
}

.faq .accordion .container.active .content {
	height: auto;
}

.faq .accordion .container.active .label::before {
	content: '';
	background: url(../img/i-minus.svg) center no-repeat;
}

.faq .button_faq {
	text-align: center;
}

.faq .button_faq a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.faq .button_faq a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.stock {
	position: relative;
	margin-bottom: 100px;
}

.stock .title_stock {
	margin-bottom: 60px;
}

.stock .title_stock .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 38px;
	text-align: center;
}

.stock .title_stock .text_2 {
	max-width: 930px;
	margin: 0 auto;
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	text-align: center;
}

.stock .title_stock .text_3 {
	text-align: center;
	margin-top: 30px;
	font-size: 22px;
	font-weight: 500;
}

.stock .body_stock {
	position: relative;
	min-height: 592px;
}

.stock .body_stock .bg {
	width: calc(50% + 100px);
	height: 100%;
	background: url(../img/stock/img_1_stock.png) no-repeat right top, url(../img/bg_fff.png) no-repeat right top, #1a347e;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
}

.stock .body_stock .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.stock .col_1 {
	width: 43%;
	position: relative;
}

.stock .col_1 .form {
	margin-top: 50px;
}

.stock .col_1 .text {
	font-size: 30px;
	font-weight: 500;
	line-height: 33px;
	color: #fff;
	margin-bottom: 50px;
	max-width: 500px;
}

.stock .col_1 .cube_stock {
	width: 271px;
	height: 272px;
	background: url(../img/stock/img_3_stock.png) no-repeat;
	position: absolute;
	top: -177px;
	left: -260px;
	z-index: 1;
}

.stock .col_1 .form input[type="text"] {
	background: url(../img/stock/img_1_form.svg) no-repeat top 20px left 24px,
	url(../img/stock/img_1_form_line.svg) no-repeat top 20px left 63px;
	width: 100%;
	padding: 21px 0px 21px 80px;
	border: 1px solid #10EE5A;
	margin-bottom: 30px;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	max-width: 413px;
}

.stock .col_1 .form input[type="tel"] {
	background: url(../img/stock/img_2_form.svg) no-repeat top 21px left 24px,
	url(../img/stock/img_1_form_line.svg) no-repeat top 20px left 63px;width: 100%;
	padding: 21px 0px 21px 80px;
	border: 1px solid #10EE5A;
	margin-bottom: 14px;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	max-width: 413px;
}

.stock .col_1 .form ::-webkit-input-placeholder {opacity: 1; color: #fff;}
.stock .col_1 .form ::-moz-placeholder {opacity: 1; color: #fff;}
.stock .col_1 .form :-moz-placeholder {opacity: 1; color: #fff;}
.stock .col_1 .form :-ms-input-placeholder {opacity: 1; color: #fff;}

.stock .col_1 .form :focus::-webkit-input-placeholder {opacity: 0; color: transparent;}
.stock .col_1 .form :focus::-moz-placeholder          {opacity: 0; color: transparent;}
.stock .col_1 .form :focus:-moz-placeholder           {opacity: 0; color: transparent;}
.stock .col_1 .form :focus:-ms-input-placeholder      {opacity: 0; color: transparent;}

.stock .col_1 .data {
	position: relative;
}

.stock .col_1 .form .metka {
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	background: #10347e;
	padding: 0 7px;
	position: absolute;
	top: -8px;
	left: 24px;
}

.stock .col_1 .form label {
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	max-width: 413px;
	display: flex;
	padding-bottom: 24px;
	cursor: pointer;
	align-items: flex-start;
}

.stock .col_1 .form label input {
	margin: 3px 12px 0 0;
}

.stock .col_1 .form input[type="submit"] {
	width: 100%;
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
	max-width: 413px;
}

.stock .col_1 .form input[type="submit"]:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.stock .col_1 .text-1 {
	color: #fff;
	margin-top: 20px;
}

.stock .col_2 {
	width: 57%;
	margin-top: 99px;
}

.stock .col_2 img {
	border-radius: 10px;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.map {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	margin-bottom: -190px;
}

.map .cube_1 {
  width: 328px;
	height: 326px;
	background: url(../img/img_footer_3.png) no-repeat;
	position: absolute;
	top: -5px;
	right: -228px;
}

.map .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 38px;
	text-align: center;
}

.map .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.map .img img {
	border-radius: 10px;
}

.bg_footer {
	background: url(../img/img_footer_2.jpg) no-repeat;
	background-size: cover;
	padding-bottom: 50px;
}

footer {
	max-width: 1280px;
	margin: 0 auto;
}

footer .wrap {
	display: flex;
	flex-wrap: wrap;
	padding-top: 243px;
}

footer .wrap .col_1 {
	width: 17%;
	margin-right: 9%;
}

footer .wrap .col_2 {
	width: 22%;
	margin-right: 4%;
}

footer .wrap .col_3 {
	width: 22%;
	margin-right: 9%;
}

footer .wrap .col_4 {
	width: 17%;
}

footer .wrap .col_1 .img {
	margin-bottom: 20px;
}

footer .wrap .col_1 .copyright {
	width: 170px;
	color: #8c99bf;
	line-height: 24px;
}

footer .wrap .col_2 .data {
	font-weight: 700;
	color: #ffffff;
	line-height: 19px;
	margin-bottom: 16px;
}

footer .wrap .col_2 .ip {
	color: #ffffff;
	line-height: 24px;
	margin-bottom: 25px;
}

footer .wrap .col_2 .confidentiality a {
	color: #ffffff;
	line-height: 24px;
	text-decoration: none;
}

footer .wrap .col_2 .confidentiality a:hover {
	text-decoration: underline;
}

footer .wrap .col_3 .contact {
	color: #ffffff;
	line-height:19px;
	font-weight: 700;
	margin-bottom: 21px;
}

footer .wrap .col_3 .tel a {
  background: url(../img/i_tel.svg) no-repeat 0px center;
  display: inline-block;
  padding-left: 30px;
  text-decoration: none;
  color: #fff;
  line-height: 19px;
	margin-bottom: 10px;
}

footer .wrap .col_3 .mail a {
  background: url(../img/i_email.svg) no-repeat 0px center;
  display: inline-block;
  padding-left: 30px;
  text-decoration: none;
  color: #fff;
  line-height: 19px;
	margin-bottom: 10px;
}

footer .wrap .col_4 .button a {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 16px 40px 16px 40px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
	margin-bottom: 14px;
}

footer .wrap .col_4 .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

footer .wrap .col_4 .social {
  text-align: center;
}

footer .wrap .col_4 .social .telegram {
  display: inline-block;
  margin-right: 16px;
}

footer .wrap .col_4 .social .whatsapp {
  display: inline-block;
}

footer .wrap .col_4 .social .whatsapp img {
  padding-top: 3px;
}

.modal_backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.modal_wrap {
	position: relative;
	overflow: auto;
	max-height: 100vh;
}

.popup {
	max-width: 640px;
	margin: 0 auto;
	box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 55px 33px 0px #00000008, 0px 98px 39px 0px #00000003, 0px 153px 43px 0px #00000000;
	border-radius: 10px;
	background: #fff;
	position: relative;
}

.popup h3 {
	font-size: 24px;
	line-height: 26px;
	font-weight: 500;
	color:#395172;
	padding-top: 37px;
	margin-left: 30px;
}

.popup .text_3 {
	font-size: 24px;
	line-height: 26px;
	font-weight: 500;
	color:#395172;
	padding-top: 37px;
	margin-left: 30px;
}

.popup .wrap {
  padding: 39px 74px 52px 142px;
  position: relative;
}

.popup .wrap .green {
  background: #10ee5a;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 66px;
  height: 346px;
}

.popup .wrap .green .logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
}

.popup .wrap .data {
  position: relative;
}

.popup .wrap .form_2 input[type="text"] {
	background: url(../img/popup/img_1_form_black.svg) no-repeat top 20px left 24px,
	url(../img/popup/img_1_form_line.svg) no-repeat top 20px left 63px;
	width: 100%;
	padding: 21px 0px 21px 80px;
	border: 1px solid #10EE5A;
	margin-bottom: 30px;
	border-radius: 5px;
	color: #333333;
	font-size: 18px;
	max-width: 413px;
}

.popup .wrap .form_2 input[type="tel"] {
	background: url(../img/popup/img_2_form_black.svg) no-repeat top 21px left 24px,
	url(../img/popup/img_1_form_line.svg) no-repeat top 20px left 63px;width: 100%;
	padding: 21px 0px 21px 80px;
	border: 1px solid #10EE5A;
	margin-bottom: 30px;
	border-radius: 5px;
	color: #333333;
	font-size: 18px;
	max-width: 413px;
}

.popup .wrap .form_2 input[type="email"] {
	background: url(../img/popup/img_3_form_black.svg) no-repeat top 21px left 24px,
	url(../img/popup/img_1_form_line.svg) no-repeat top 20px left 63px;width: 100%;
	padding: 21px 0px 21px 80px;
	border: 1px solid #10EE5A;
	margin-bottom: 30px;
	border-radius: 5px;
	color: #333333;
	font-size: 18px;
	max-width: 413px;
}

.popup .wrap .form_2 .metka {
	font-size: 14px;
	line-height: 16px;
	color: #333333;
	background: #fff;
	padding: 0 7px;
	position: absolute;
	top: -8px;
	left: 24px;
}

.popup .wrap .form_2 label {
	font-size: 12px;
	line-height: 18px;
	color: #333333;
	max-width: 413px;
	display: flex;
	padding-bottom: 24px;
	cursor: pointer;
	align-items: flex-start;
}

.popup .wrap .form_2 label input {
	margin: 3px 12px 0 0;
}

.popup .wrap .form_2 input[type="submit"] {
	width: 100%;
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
	max-width: 413px;
}

.popup .wrap .form_2 input[type="submit"]:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.popup .close {
  top: 20px;
  right: 17px;
  width: 24px;
  height: 24px;
  position: absolute;
  padding: 0;
  background: url(../img/window_close.svg) no-repeat center center;
}

.popup .text_1 {
	color: rgba(97, 97, 97, 1);
	line-height: 28px;
	margin: 20px 0 20px 30px;
}

.popup .text_2 {
	color: rgba(97, 97, 97, 1);
	margin: 20px 0 0 30px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.window {
	max-width: 1064px;
	margin: 0 auto;
	box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 55px 33px 0px #00000008, 0px 98px 39px 0px #00000003, 0px 153px 43px 0px #00000000;
	border-radius: 10px;
	background: #fff;
	position: relative;
}

.window h3 {
	font-size: 36px;
	line-height: 39px;
	font-weight: 500;
	color:#395172;
	padding-top: 54px;
	margin-left: 150px;
	padding-bottom: 34px;
}

.window .wrap {
  padding: 0px 89px 60px 217px;
  position: relative;
}

.window .wrap .green {
  background: #10ee5a;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 109px;
  height: 100%;
}

.window .wrap .green .logo {
  position: absolute;
  bottom: 24px;
  left: 23px;
  width: 67px;
  height: 67px;
}

.window .wrap p {
  color: #616161;
	line-height: 28px;
	margin-bottom: 34px;
	font-weight: 600;
}

.window .wrap ul {
  color: #616161;
  line-height: 28px;
  list-style-type: disc;
  padding-left: 25px;
	font-weight: 700;
	column-count: 2;
	column-gap: 50px;
	margin-bottom: 34px;
}

.window .wrap ol {
	color: #616161;
	line-height: 28px;
	list-style-type: decimal;
	padding-left: 25px;
	  font-weight: 700;
	  margin-bottom: 34px;
  }

.window .wrap ul li,
.window .wrap ol li {
	margin-bottom: 10px;
}

.window .close {
  top: 20px;
  right: 17px;
  width: 24px;
  height: 24px;
  position: absolute;
  padding: 0;
  background: url(../img/window_close.svg) no-repeat center center;
}

.reviews {
	position: relative;
	min-height: 805px;
	margin-bottom: 100px;
}

.reviews .bg {
  width: calc(50% + 100px);
  height: 100%;
	background: url(../img/img_1_reviews.png) no-repeat left top,
	url(../img/bg_fff.png) no-repeat left top,
	#dce4f6;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.reviews .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	position: relative;
	z-index: 1;
	padding-top: 126px
}

.reviews .col_1 {
	width: 50%;
	margin-right: 10%;
}

.reviews .col_1 .item {
	margin-right: 10px;
	margin-left: 10px;
}

.reviews .col_2 {
	width: 40%;
	position: relative;
}

.reviews .col_2 .cube_reviews {
	width: 469px;
	height: 468px;
	background: url(../img/cube_reviews.png) no-repeat;
	position: absolute;
	top: -450px;
	right: -250px;
	z-index: 1;
}

.reviews .col_2 .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: right;
	font-weight: 400;
	line-height: 37px;
}

.reviews .col_2 .text_2 {
	font-size: 46px;
	font-weight: 700;
	line-height: 47px;
	color: #395172;
	margin-bottom: 30px;
}

.reviews .col_2 .text_3 {
	font-size: 16px;
	line-height: 28px;
	color: #616161;
	margin-bottom: 30px;
}

.reviews .col_2 .nav_reviews {
	position: absolute;
	bottom: 16px;
}

.reviews .col_2 .nav_reviews .owl-prev {
	width: 85px;
	height: 60px;
	background: url(../img/reviews_prev.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
	margin-right: 22px;
}

.reviews .col_2 .nav_reviews .owl-next {
	width: 85px;
	height: 60px;
	background: url(../img/reviews_next.svg) no-repeat;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.reviews iframe {
	width: 100%;
	border-radius: 40px;
}


.up_arrow {
	background: url("data:image/svg+xml,%3Csvg width='30px' height='30px' fill='Lime' enable-background='new 0 0 330 330' viewBox='0 0 330 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m325.606 229.393-150.004-150c-2.812-2.813-6.628-4.393-10.606-4.393-3.979 0-7.794 1.581-10.607 4.394l-149.996 150c-5.858 5.858-5.858 15.355 0 21.213 5.857 5.857 15.355 5.858 21.213 0l139.39-139.393 139.397 139.393c2.929 2.929 6.768 4.393 10.607 4.393s7.678-1.464 10.607-4.394c5.857-5.858 5.857-15.355-.001-21.213z'/%3E%3C/svg%3E");
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	left: 20px;
	  z-index: 5;
  }

.specificity .button {
	margin-top: 43px;
}

.specificity .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.specificity .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.reviews .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.reviews .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.stages {
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.stages .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: center;
	font-weight: 500;
	line-height: 28px;
}

.stages .text_2 {
	max-width: 500px;
	margin: 0 auto;
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 85px;
	text-align: center;
}

.stages .items {
	position: relative;
	min-height: 450px;
}

.stages .items .item {
	width: 25%;
	background: #ECF1F7;
	padding: 121px 25px 35px 30px;
	border-radius: 5px;
	position: relative;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.stages .items .item .text {
	font-size: 20px;
	line-height: 28px;
	color: #222222;
	font-weight: 700;
}

.stages .items .item .img {
	position: absolute;
	top: -20px;
	left: 0px;
	width: 168px;
	height: 115px;
}

.stages .items .item .img_2 {
	position: absolute;
	top: 10px;
	left: 0px;
	width: 168px;
	height: 115px;
}

.stages .items .item:nth-child(1)::after {
  content: "01";
  position: absolute;
  top: 12px;
  right: 17px;
  color: #99AECC;
  font-size: 36px;
  font-weight: 700;

}

.stages .items .item:nth-child(2)::after {
  content: "02";
  position: absolute;
  bottom: 12px;
  right: 17px;
  color: #99AECC;
  font-size: 36px;
  font-weight: 700;
}

.stages .items .item:nth-child(3)::after {
  content: "03";
  position: absolute;
  top: 12px;
  right: 17px;
  color: #99AECC;
  font-size: 36px;
  font-weight: 700;
}

.stages .items .item:nth-child(4)::after {
  content: "04";
  position: absolute;
  bottom: 12px;
  right: 17px;
  color: #99AECC;
  font-size: 36px;
  font-weight: 700;
}

.stages .items .item:nth-child(5)::after {
  content: "05";
  position: absolute;
  top: 12px;
  right: 17px;
  color: #99AECC;
  font-size: 36px;
  font-weight: 700;
}

 .stages .items .item:nth-child(1) {
	left: 3%;
	top: 0px;
	position: absolute;
	height: 241px;
}

.stages .items .item:nth-child(2) {
  position: absolute;
  left: 20%;
	top: 180px;
	padding: 147px 25px 35px 30px;
	height: 241px;
}

.stages .items .item:nth-child(3) {
  position: absolute;
  left: 38%;
	top: 0px;
	height: 241px;
}

.stages .items .item:nth-child(4) {
  position: absolute;
  left: 55%;
	top: 180px;
	padding: 147px 81px 35px 30px;
	height: 241px;
}

.stages .items .item:nth-child(5) {
  position: absolute;
  left: 73%;
	top: 0px;
	height: 241px;
}

.advertising {
	position: relative;
	min-height: 809px;
  margin-bottom: 100px;
}

.advertising .bg {
  width: 50%;
  height: 100%;
	background: url(../img/img_advertising_2.png) no-repeat, url(../img/bg_fff.png) no-repeat left top, #1a347e;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-size: cover;
}

.advertising .wrap {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.advertising .col_1 {
	width: 40%;
  position: relative;
	margin-right: 10%;
  margin-top: 131px;
}

.advertising .col_2 {
	width: 40%;
  margin-left: 10%;
  margin-top: 161px;
}

.advertising .col_2 p {
	color: #fff;
  line-height: 28px;
  margin-bottom: 40px;
}

.promo {
  background: url(../img/bg_table.png) no-repeat;
  background-size: cover;
  max-width: 1280px;
	margin: 0 auto;
  margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
  padding: 0px 50px 35px 50px;
  border-radius: 5px;
  box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
}

.promo .col_1 {
	width: 45%;
  margin-right: 5%;
  padding-top: 35px;
}

.promo .col_2 {
	width: 45%;
  margin-left: 5%;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 26px;
}

.promo .col_1 .text_1 {
	font-size: 24px;
  color: #10EE5A;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.promo .col_1 .text_2 {
  color: #fff;
  line-height: 28px;
}

.promo .col_2 .title {
	font-family: 'Ouvality', Arial, sans-serif;
  font-size: 24px;
  line-height: 25px;
  color: #10EE5A;
  text-align: right;
}

.promo .col_2 .name {
  font-size: 32px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.promo .col_2 .price {
  font-size: 24px;
  line-height: 29px;
  color: #10EE5A;
  font-weight: 700;
  letter-spacing: 0.05em
}

.promo_price {
  max-width: 1280px;
	margin: 0 auto;
}

.promo_price table {
  width: 100%;
	margin: 0 auto;
  margin-bottom: 100px;
}

.promo_price table .colhead {
  font-size: 20px;
  color: #090C11;
	background: #d1d6e5;
  font-weight: 700;
  text-align: center;
  padding: 18px;
}

.promo_price table .coltext {
  width: 620px;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  padding-top: 10px;
  padding-bottom: 10px;
}

.promo_price table .coltext_2 {
  color: #333333;
  text-align: center;
}

.promo_price table .col_img {
  text-align: center;
}

.promo_price table .colcentr {
  font-size: 16px;
  background: none;
  color: #333333;
  text-align: center;
  padding: 18px 0px 15px 0px;
}

._top1 {
	background: url(../img/header_audit.png) no-repeat right top;
	background-size: contain;
	margin-bottom: 40px;
}

._top2 {
	background: url(../img/konkurent_img_1.png) no-repeat right top;
	background-size: contain;
	margin-bottom: 40px;
}

._top3 {
	background: url(../img/strategy_img_1.png) no-repeat right top;
	background-size: contain;
	margin-bottom: 40px;
}

._top4 {
	background: url(../img/kompleksnoe_1.png) no-repeat right top;
	background-size: contain;
	margin-bottom: 40px;
}

.specificity .col_1._specificity1 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
  }

.specificity .col_1._specificity1 img {
	position: static;
	max-width: 400px;
	width: 100%;
}

.specificity._specificity2 {
	min-height: auto;
	margin-bottom: 100px;
}

.specificity._specificity3 .col_1 {
	order: 2;
}

.specificity._specificity3 .col_2 {
	order: 1;
}

.specificity .col_2._specificity4 {
	margin-top: 0;
}

.specificity .col_1._specificity5 {
	flex-direction: column;
	align-items: center;
}

.specificity .col_1._specificity5 img {
	max-width: 500px;
}

.specificity .col_1._specificity6 img {
	max-width: none;
}

footer .wrap._footer1 {
	padding-top: 40px;
}

.advantages ._advantages1 .item {
	width: 31%;
	padding-top: 101px;
}

.advantages ._advantages1 .item .img {
	top: -40px;
}

.advantages .items._advantages1 {
	padding-bottom: 55px;
}

.advantages ._advantages2 .item {
	width: 23%;
}

._bg_header1 {
	margin-bottom: 100px;
	overflow: hidden;
}

._reviews1 {
	display: none;
}

._supervisor1 {
	padding-bottom: 100px;
	min-height: auto;
}

._supervisor1 .bg {
	background: url(../img/img_1_reviews.png) no-repeat left 350px top, url(../img/bg_fff.png) no-repeat left top, #dce4f6;
}

.supervisor .col_2 .img._supervisor2 img {
	border-radius: 5px;
}

.bg_specificity {
	background: #ECF1F7;
	padding-top: 100px;
	margin-bottom: 100px;
	overflow: hidden;
}

.content {
	max-width: 1280px;
	margin: 0 auto 100px auto;
}

.content .posts {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
}

.content .posts .post {
	width: 46%;
	margin-right: 2%;
	margin-left: 2%;
	background: #ECF1F7;
	padding-bottom: 30px;
	border-radius: 5px;
	margin-bottom: 30px;
}

.content .posts .post .img {
	margin-bottom: 25px;
}

.content .posts .post .img img {
	height: auto;
	border-radius: 5px 5px 0 0;
}

.content .posts .post .info {
	padding-left: 30px;
	padding-right: 30px;
}

.content .posts .post .title {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 15px;
}

.content .posts .post .title a {
	color: #222222;
	text-decoration: none;
}

.content .posts .post .intro {
	line-height: 20px;
	color: #616161;
	margin-bottom: 15px;
}

.content .posts .post .more a {
	color: #223044;
	padding-right: 28px;
	text-decoration: none;
	line-height: 19px;
	font-weight: 600;
	background: url(../img/i_services.svg) no-repeat top -2px right;
}

.content .posts .post .date {
	margin-bottom: 15px;
	font-size: 13px;
}

.content .navigation {
	display: flex;
	justify-content: center;
	font-size: 15px;
	flex-wrap: wrap;
}

.content .navigation a {
	color: #000;
	text-decoration: none;
}

.content .navigation .next-posts {
	order: 2;
	margin-bottom: 10px;
}

.content .navigation .prev-posts {
	order: 1;
	margin-right: 20px;
	margin-bottom: 10px;
}

.content .page {
	display: flex;
	flex-wrap: wrap;
}

.content .page .col-1 {
	width: 67%;
	margin-right: 5%;
}

.content .page .col-2 {
	width: 27%;
}

.content > h1 {
	font-size: 36px;
	line-height: 39px;
	font-weight: 500;
	color: #395172;
	margin-bottom: 40px;
}

.content .page .col-1 h1 {
	font-size: 36px;
	line-height: 39px;
	font-weight: 500;
	color: #395172;
	margin-bottom: 40px;
}

.content .page .col-1 h2 {
	font-size: 32px;
	line-height: 39px;
	font-weight: 500;
	color: #395172;
	margin-bottom: 34px;
}

.content .page .col-1 h2 b {
	font-weight: 500;
}

.content .page .col-1 p {
	color: #616161;
	line-height: 28px;
	margin-bottom: 34px;
	font-weight: 400;
}

.content .page .col-1 table {
	margin-bottom: 34px;
}

.content .page .col-1 table.formula td {
	padding: 5px;
	text-align: center;
}

.content .page .col-1 .formula-output .formula-row {
	display: flex;
	margin-bottom: 15px;
	align-items: center;
}

.content .page .col-1 .formula-output .formula-row .formula-col-1 {
	width: 40%;
	margin-right: 5%;
}

.content .page .col-1 .formula-output .formula-row .formula-col-2 {
	width: 30%;
	display: flex;
}

.content .page .col-1 .formula-output .formula-row .formula-col-2 .red {
	color: tomato;
	display: inline-block;
	width: 5px;
}

.content .page .col-1 .formula-output .red-text {
	color: tomato;
	font-size: 12px;
}

.content .page .col-1 .formula-output output {
	font-weight: bold;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px;
	display: inline-block;
	height: 30px;
	min-width: 200px;
	width: 100%;
}

.content .page .col-1 .formula-output input {
	border: 1px solid #10EE5A;
	border-radius: 5px;
	padding: 5px;
	height: 30px;
	min-width: 200px;
	width: 100%;
}

.content .page .col-1 .nobr {
	white-space: nowrap;
}

.content .page .col-1 ul {
	color: #616161;
	line-height: 28px;
	list-style-type: disc;
	padding-left: 25px;
	font-weight: 400;
	margin-bottom: 34px;
}
  
.content .page .col-1 ol {
	color: #616161;
	line-height: 28px;
	list-style-type: decimal;
	padding-left: 25px;
	font-weight: 700;
	margin-bottom: 34px;
}
  
.content .page .col-1 ul li,
.content .page .col-1 ol li {
	margin-bottom: 10px;
}

.content .page .col-1 h3 {
	font-size: 26px;
	line-height: 39px;
	font-weight: 500;
	color: #395172;
	margin-bottom: 34px;
}

.content .page .col-1 h3 b {
	font-weight: 500;
}

.content .page .col-1 img {
	height: auto;
}

.content .page .col-1 .lwptoc_header {
	margin-bottom: 10px !important;
}

.content .page .col-1 .lwptoc_item {
	margin-top: 5px !important;
	margin-bottom: 5px !important;
}

.posts-right .title {
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: bold;
}

.posts-right .item {
	margin-bottom: 25px;
	background: #ECF0F7;
	padding: 15px;
	border-radius: 5px;
}

.posts-right .item .img {
	margin-bottom: 10px;
}

.posts-right .item .img img {
	width: auto !important;
	height: auto !important;
	border-radius: 5px;
}

.posts-right .item .date {
	font-size: 14px;
	margin-bottom: 10px;
}

.posts-right .item h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.posts-right .item h2 a {
	text-decoration: none;
	color: #223044;
}

.posts-main {
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 75px;
}

.posts-main .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 38px;
	text-align: center;
}

.posts-main .text_2 {
	max-width: 930px;
	margin: 0 auto;
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 24px;
}

.posts-main .items {
	display: flex;
	flex-wrap: wrap;
}

.posts-main .item {
	margin-bottom: 25px;
	background: #ECF0F7;
	padding: 15px;
	border-radius: 5px;
	width: 31%;
	margin-left: 1%;
	margin-right: 1%;
}

.posts-main .item .img {
	margin-bottom: 10px;
}

.posts-main .item .img img {
	width: auto !important;
	height: auto !important;
	border-radius: 5px;
}

.posts-main .item .date {
	font-size: 14px;
	margin-bottom: 10px;
}

.posts-main .item h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.posts-main .item h2 a {
	text-decoration: none;
	color: #223044;
}

.dg__social-widget {
	z-index: 100 !important;
}

.tg-right {
	display: block;
	background: #1a347e;
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
	position: sticky;
	top: 103px;
	padding: 30px;
}

.tg-right:hover {
	background: #0088cc;
}

.tg-right .title {
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 20px;
}

.tg-right .des {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
}

.tg-right .img {
	text-align: center;
	margin-bottom: 20px;
}

.tg-right .link {
	text-align: center;
	font-weight: bold;
}

.tg-main {
	display: flex;
	background: #1a347e;
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
	padding: 40px;
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 100px;
	position: relative;
	flex-wrap: wrap;
}

.tg-main .col-1 {
	width: 65%;
	margin-right: 5%;
}

.tg-main .col-2 {
	width: 30%;
	text-align: center;
	padding-top: 20px;
}

.tg-main .title {
	font-size: 35px;
	font-weight: 700;
	line-height: 44px;
	margin-bottom: 30px;
}

.tg-main .des {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 30px;
}

.tg-main ul {
	list-style-type: circle;
	padding-left: 10px;
	margin-left: 40px;
	font-size: 16px;
	margin-bottom: 30px;
}

.tg-main ul li {
	margin-bottom: 10px;
}

.tg-main ul li:last-child {
	margin-bottom: 0;
}

.tg-main .button {
	text-align: center;
}

.tg-main .button a {
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
  }

.tg-main .button a:hover {
	border: 1px solid #ECF1F7;
	background: #ECF1F7;
	color: #222222;
}

.tg-main .img {
	margin-bottom: 30px;
}

.tg-main .link {
	font-weight: bold;
}

.tg-main .link a {
	color: #fff;
	text-decoration: none;
}

.tg-main .tg-i {
	width: 90px;
	height: 75px;
	background: url(../img/tg-i.png) no-repeat;
	position: absolute;
	top: -35px;
	left: -50px;
	content: "";
	display: block;
}

.window_reserve {
	max-width: 630px;
	margin: 0 auto;
	box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 55px 33px 0px #00000008, 0px 98px 39px 0px #00000003, 0px 153px 43px 0px #00000000;
	border-radius: 10px;
	background: #fff;
	position: relative;
}

.window_reserve h3 {
	max-width: 400px;
	font-size: 24px;
	line-height: 26px;
	font-weight: 500;
	color:#395172;
	padding-top: 35px;
	margin-left: 35px;
	padding-bottom: 34px;
}

.window_reserve .wrap {
	padding: 0px 85px 60px 145px;
	position: relative;
}

.window_reserve .wrap .expert {
	display: flex;
	margin-bottom: 40px;
}

.window_reserve .wrap .expert .info {
	max-width: 235px;
	margin-top: 18px
}

.window_reserve .wrap .expert .foto {
	margin-right: 30px;
}

.window_reserve .wrap .expert .name {
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	color: rgba(34, 48, 68, 1);
}

.window_reserve .wrap .expert .function {
	color: rgba(97, 97, 97, 1);
	line-height: 20px;
}

.window_reserve .wrap p {
	max-width: 400px;
	color: rgba(97, 97, 97, 1);
	line-height: 28px;
	margin-bottom: 40px;
}

.window_reserve .wrap .green {
	background: #10ee5a;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 66px;
	height: 471px;
}

.window_reserve .wrap .green .logo {
	position: absolute;
	bottom: 14px;
	left: 14px;
	width: 42px;
	height: 38px;
}

.window_reserve .wrap .button a {
	width: 100%;
	background: #10EE5A;
	border: 1px solid #10EE5A;
	color: #223044;
	display: inline-block;
	text-decoration: none;
	padding: 20px 42px 20px 42px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0px 3px 7px 0px #22304424, 0px 13px 13px 0px #2230441F, 0px 30px 18px 0px #22304412, 0px 54px 21px 0px #22304405, 0px 84px 23px 0px #22304400;
	max-width: 413px;
}

.window_reserve .wrap .button a:hover {
	border: 1px solid #ECF1F7;
  	background: #ECF1F7;
  	color: #222222;
}

.window_reserve .close {
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	position: absolute;
	padding: 0;
	background: url(../img/window_close.svg) no-repeat center center;
}

.b-unisender-form {
	margin-bottom: 34px;
}
  
.b-unisender-form,
.b-unisender-form input,
.b-unisender-form .b-unisender-form__submit-button {
	border-radius: 5px;
}

.b-unisender-form .b-unisender-form__footer .b-unisender-form__button-box {
	justify-content: center;
}

.b-unisender-form .row {
	display: flex;
	flex-wrap: wrap;
}

.b-unisender-form .row .col-1-f {
	width: 50%;
}

.b-unisender-form .row .col-2-f {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.b-smi {
	max-width: 1422px;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 75px;
}

.b-smi .text-1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	text-align: center;
	font-weight: 500;
	line-height: 28px;
}

.b-smi .text-2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 37px;
	text-align: center;
}

.b-smi .items {
	display: flex;
	align-items: flex-start;
}

.b-smi .items img {
	min-width: 0;
}

@media all and (max-width: 600px) {

	.b-smi .items {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.b-smi .text-1 {
	  font-size: 28px;
	  line-height: 30px;
	}
	
	.b-smi .text-2 {
	  font-size: 32px;
	  line-height: 36px;
	  margin-bottom: 20px;
	}

}


.page-template-template-smi footer .wrap._footer1,
.page-template-template-service-page  footer .wrap._footer1 {
	padding-top: 243px;
}

.page-template-template-smi .container {
	max-width: 1280px;
	margin: 0 auto;
}

.page-template-template-smi .container .text_1 {
	font-family: 'Ouvality', Arial, sans-serif;
	font-size: 36px;
	color: #10EE5A;
	font-weight: 500;
	line-height: 38px;
	text-align: center;
}

.page-template-template-smi .container .text_2 {
	font-size: 46px;
	color: #395172;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 50px;
	text-align: center;
}

.page-template-template-smi .smi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 80px;
}

.page-template-template-smi .smi-logo {
	max-width: 60%;
	margin-bottom: 16px;
	max-height: 50px;
}

.page-template-template-smi .smi-logo img {
	max-height: 50px;
}

.page-template-template-smi .smi-grid a {
	text-decoration: none;
	display: inline-block;
	padding-bottom: 8px;
}

.page-template-template-smi .smi-grid h3 {
	color: #395172;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	text-align: left;
	padding-bottom: 8px;
	text-decoration: none;
}

.page-template-template-smi .smi-grid h3:after {
	content: '';
	display: inline-block;
	background-image: url(../img/target_link_black.svg);
	width: 15px;
	height: 15px;
	background-size: contain;
	vertical-align: -2px;
	margin-left: 5px;
}

.page-template-template-smi .smi-grid p {
	color: #616161;
	line-height: 28px;
}

@media all and (max-width: 1280px) {
	.page-template-template-smi .smi-grid {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media all and (max-width: 600px) {

	.page-template-template-smi .smi-grid {
		grid-template-columns: repeat(1, 1fr);
	}

}

header .wrap {
	justify-content: space-between;
}

header .wrap .col_1,
header .wrap .col_2 {
	width: auto;
}

.bg_header {
	position: relative;
}

.bg_header .bg {
	position: absolute; 
	inset:0; 
	top:0; 
	left:0;
	z-index: 9;
	pointer-events: none;
}

.top.no_bg, .top.one_bg {
	background: none;
	z-index: 10;
}

@media all and (max-width: 1000px) {
	.bg_header .bg {
		background: none !important;
	}
}

.page-template-template-service-page .bg_header._bg_header1 {
	margin-bottom: 0;
}

.section .wrapper {
	max-width: 1280px;
	margin: 0 auto;
}

/*Sections Common Styles*/

.section .title {
	color: var(--Dark-Blue-500, #395172);
	font-family: Gilroy;
	font-size: 46px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.section .subtitle {
	color: #10EE5A;
	font-family: Ouvality;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 102.023%;
}

.section .button {
	user-select: none;
	transition: all .3s ease-in-out;
	cursor: pointer;
	display: flex;
	min-width: 305px;
	padding: 24px 40px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	border: 1px solid var(--bigidea-agency-ru-malachite, #10EE5A);
	background: var(--bigidea-agency-ru-malachite, #10EE5A);
	box-shadow: 0px 84px 23px 0px rgba(34, 48, 68, 0.00), 0px 54px 21px 0px rgba(34, 48, 68, 0.02), 0px 30px 18px 0px rgba(34, 48, 68, 0.07), 0px 13px 13px 0px rgba(34, 48, 68, 0.12), 0px 3px 7px 0px rgba(34, 48, 68, 0.14);
}

.section .button-secondary {
	border: 1px solid #DCE4F6;
	background: #DCE4F6;
}

.section .button:hover {
	border-color: #ECF1F7;
	background: #ECF1F7;
}

.section .button a {
	color: var(--bigidea-agency-ru-pickled-bluewood, #223044);
	text-align: center;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.section .button {
		min-width: min(100%, 305px);
	}
}

.section .slider-arrows {
	display: flex;
	align-items: center;
	gap: 12px;
}

.section .slider-arrows .arrow-left, 
.section .slider-arrows .arrow-right {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.section .slider-arrows .arrow-left .arrow, 
.section .slider-arrows .arrow-right .arrow {
	transition: all .3s ease-in-out;
}

.section .slider-arrows .arrow-left.disabled, 
.section .slider-arrows .arrow-right.disabled {
	cursor: not-allowed;
	opacity: 0.8;
}

.section .slider-arrows .arrow-left .arrow-round, 
.section .slider-arrows .arrow-right .arrow-round {
	z-index: -1;
}

.section .slider-arrows .arrow-left .arrow-round {
	transform: translateX(50%);
}

.section .slider-arrows .arrow-right .arrow-round {
	transform: translateX(-50%);
}

.section .slider-arrows .arrow-left:hover .arrow {
	transform: translateX(-5px);
}

.section .slider-arrows .arrow-right:hover .arrow {
	transform: translateX(5px);
}

.section .title .big_green {
	color: #10EE5A;
	font-family: Gilroy;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

@media screen and (max-width: 768px) {
	.section .title {
		font-size: 32px;
	}

	.section .title .big_green {
		font-size: 36px;
	}
}

/*
.section {
	.title {
		color: var(--Dark-Blue-500, #395172);
		font-family: Gilroy;
		font-size: 46px;
		font-style: normal;
		font-weight: 500;
		line-height: 110%;
	}
	.subtitle {
		color: #10EE5A;
		font-family: Ouvality;
		font-size: 36px;
		font-style: normal;
		font-weight: 400;
		line-height: 102.023%;
	}
	.button {
		user-select: none;
		transition: all .3s ease-in-out;
		cursor: pointer;
		display: flex;
		min-width: 305px;
		padding: 24px 40px;
		justify-content: center;
		align-items: center;
		gap: 10px;
		border-radius: 5px;
		border: 1px solid var(--bigidea-agency-ru-malachite, #10EE5A);
		background: var(--bigidea-agency-ru-malachite, #10EE5A);
		box-shadow: 0px 84px 23px 0px rgba(34, 48, 68, 0.00), 0px 54px 21px 0px rgba(34, 48, 68, 0.02), 0px 30px 18px 0px rgba(34, 48, 68, 0.07), 0px 13px 13px 0px rgba(34, 48, 68, 0.12), 0px 3px 7px 0px rgba(34, 48, 68, 0.14);
		&.button-secondary {
			border: 1px solid #DCE4F6;
			background: #DCE4F6;
		}
		&:hover {
			border-color: #ECF1F7;
    	background: #ECF1F7;
		}
		a {
			color: var(--bigidea-agency-ru-pickled-bluewood, #223044);
			text-align: center;
			font-family: Gilroy;
			font-size: 16px;
			font-style: normal;
			font-weight: 600;
			line-height: normal;
			text-decoration: none;
		}
	}
	.slider-arrows {
		display: flex;
		align-items: center;
		gap: 12px;
		.arrow-left, .arrow-right {
			display: flex;
			align-items: center;
			cursor: pointer;
			&.disabled {
				cursor: not-allowed;
				opacity: 0.8;
			}
			.arrow-round {
				z-index: -1;
			}
			.arrow {
				transition: all .3s ease-in-out;
			}
		}
		.arrow-left {
			.arrow-round {
				transform: translateX(50%);

			}
		}
		.arrow-right {
			.arrow-round {
				transform: translateX(-50%);
			}
		}
		.arrow-left:hover {
			.arrow {
				transform: translateX(-5px);
			}
		}
		.arrow-right:hover {
			.arrow {
				transform: translateX(5px);
			}
		}
	}
} */

/*PRODVIZHENIE*/

.section-prodvizhenie {
	padding-top: 100px;
	position: relative;
}

.section-prodvizhenie .wrapper {
	display: flex;
	width: 1280px;
	padding-left: 64px;
	align-items: center;
	gap: 80px;
}

.section-prodvizhenie .wrapper .col-left img {
	width: 490.227px;
	height: 636px;
	flex-shrink: 0;
	object-fit: contain;
}

.section-prodvizhenie .wrapper .col-right {
	display: flex;
	width: 555px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 32px;
	flex-shrink: 0;
}

.section-prodvizhenie .wrapper .col-right .section-heading {
	display: flex;
	width: 368px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.section-prodvizhenie .wrapper .col-right .section-heading .subtitle {
	align-self: stretch;
	text-align: right;
}

.section-prodvizhenie .wrapper .col-right .section-heading .title {
	align-self: stretch;
	height: 142px;
}

.section-prodvizhenie .wrapper .col-right .section-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 48px;
	align-self: stretch;
}

.section-prodvizhenie .wrapper .col-right .section-text-content .section-text-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-prodvizhenie .wrapper .col-right .section-text-content .section-text-text p.text {
	align-self: stretch;
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.section-prodvizhenie .wrapper .col-right .section-text-content .section-text-text ul {
	list-style-type: disc;
	padding-left: 15px;
	align-self: stretch;
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.section-prodvizhenie .wrapper .col-right .section-text-content .section-text-text p.big-text {
	color: #395172;
	font-family: Gilroy;
	font-size: 46px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

/*
.section-prodvizhenie {
	padding-top: 100px;
	position: relative;
	.wrapper {
		display: flex;
		width: 1280px;
		padding-left: 64px;
		align-items: center;
		gap: 80px;
		.col-left {
			img {
				width: 490.227px;
				height: 636px;
				flex-shrink: 0;
				object-fit: contain;
			}
		}
		.col-right {
			display: flex;
			width: 555px;
			flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			gap: 32px;
			flex-shrink: 0;
			.section-heading {
				display: flex;
				width: 368px;
				flex-direction: column;
				align-items: flex-start;
				gap: 8px;
				.subtitle {
					align-self: stretch;
					text-align: right;
				}
				.title {
					align-self: stretch;
					height: 142px;
				}
			}
			.section-text-content {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				gap: 48px;
				align-self: stretch;
				.section-text-text {
					display: flex;
					flex-direction: column;
					align-items: flex-start;
					gap: 32px;
					align-self: stretch;
					p.text {
						align-self: stretch;
						color: #616161;
						font-family: Gilroy;
						font-size: 16px;
						font-style: normal;
						font-weight: 400;
						line-height: 28px;
					}
					ul {
						list-style-type: disc;
						padding-left: 15px;
						align-self: stretch;
						color: #616161;
						font-family: Gilroy;
						font-size: 16px;
						font-style: normal;
						font-weight: 700;
						line-height: 28px;
					}
					p.big-text {
						color: #395172;
						font-family: Gilroy;
						font-size: 46px;
						font-style: normal;
						font-weight: 500;
						line-height: 28px;
					}
				}
			}
		}
	}
} */

@media screen and (max-width: 1199px) {
	.section-prodvizhenie .wrapper {
		flex-direction: column-reverse;
		width: 100%;
		max-width: 100vw;
		padding-left: 32px;
		padding-right: 32px;
	}
	.section-prodvizhenie .wrapper .col-right {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.section-prodvizhenie .wrapper .col-right .section-heading {
		width: auto;
	}
	.section-prodvizhenie .wrapper .col-left img {
		height: auto;
	}
}

/*
@media screen and (max-width: 1199px) {
	.section-prodvizhenie {
		.wrapper {
			flex-direction: column-reverse;
			width: 100%;
    	max-width: 100vw;
			padding-left: 32px;
			padding-right: 32px;
			.col-right {
				width: 100%;
			}
		}
	}
}*/

/*marketingovye_uslugi*/

.section-marketingovye_uslugi {
	padding-top: 100px;
}

.section-marketingovye_uslugi .wrapper {
	display: flex;
	width: 1280px;
	flex-direction: column;
	align-items: flex-start;
	gap: 56px;
}

.section-marketingovye_uslugi .wrapper .row-top {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	gap: 20px;
}

.section-marketingovye_uslugi .wrapper .row-top .row-top-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	max-width: 76%;
}

.section-marketingovye_uslugi .wrapper .row-top .row-top-title .subtitle {
	text-align: center;
}

.section-marketingovye_uslugi .wrapper .row-top .row-top-title .title {
	text-align: center;
}

.section-marketingovye_uslugi .wrapper .row-top p {
	color: #616161;
	text-align: center;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 175% */
	max-width: 80%;
}

.section-marketingovye_uslugi .wrapper .row-bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading {
	display: flex;
	width: 1280px;
	justify-content: space-between;
	align-items: center;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading span {
	width: 660px;
	flex-shrink: 0;
	color: var(--Dark-Blue-500, #395172);
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 140% */
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .owl-stage-outer {
	overflow: initial;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item {
	display: flex;
	align-items: flex-start;
	width: 413.33px;
	height: 248px;
	padding: 36px 24px 0px 0px;
	border-radius: 5px;
	box-shadow: 0px 284px 80px 0px rgba(0, 0, 0, 0.00), 0px 182px 73px 0px rgba(0, 0, 0, 0.01), 0px 102px 61px 0px rgba(0, 0, 0, 0.05), 0px 45px 45px 0px rgba(0, 0, 0, 0.09), 0px 11px 25px 0px rgba(0, 0, 0, 0.10);
	background: #ECF0F7;
	gap: 24px;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-left {
	display: flex;
	flex-direction: column;
	width: 64px;
	height: 212px;
	padding-bottom: 20px;
	border-radius: 5px 0px 0px 5px;
	background: #10EE5A;
	justify-content: flex-end;
	gap: 10px;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-left span {
	color: var(--base-white, #FFF);
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: Gilroy;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 100% */
	letter-spacing: -0.5px;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-right h3 {
	color: #222;
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-right p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

@media screen and (max-width: 1199px) {
	.section-marketingovye_uslugi .wrapper {
		width: 100%;
		max-width: 100vw;
	}

	.section-marketingovye_uslugi .wrapper .row-top {
		padding-left: 32px;
		padding-right: 32px;
	}

	.section-marketingovye_uslugi .wrapper .row-top .row-top-title,
	.section-marketingovye_uslugi .wrapper .row-top p {
		max-width: 100%;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom {
		width: 100%;
		max-width: 100vw;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading {
		padding-left: 32px;
		padding-right: 32px;
		flex-direction: column;
		justify-content: flex-start;
		max-width: 100%;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading .slider-text {
		width: auto;
		max-width: 100%;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading .slider-arrows {
		align-self: end;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media screen and (max-width: 768px) {
	.section-marketingovye_uslugi .wrapper .row-bottom .slider-heading {
		gap: 24px;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item {
		max-width: calc(100vw - 64px);
		margin-right: 32px;
		height: 300px;
	}

	.section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-left {
		align-self: end;
	}
}

/*nash_podhod*/

.section-nash_podhod {
	margin-top: 80px;
	position: relative;
}

.section-nash_podhod .bg {
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	/*max-width: 54%;*/
	z-index: -1;
	border-radius: 0 300px 5px 0;
	background-blend-mode: lighten, normal;
	width: calc(((100vw - 1280px) / 2) + 722px + 15px);
}

.section-nash_podhod .wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-top: 92px;
}

.section-nash_podhod .wrapper .col-left img {
	width: 722px;
	height: 637px;
	flex-shrink: 0;
}

.section-nash_podhod .wrapper .col-right {
	display: flex;
	width: 518px;
	flex-direction: column;
	align-items: flex-start;
	gap: 48px;
	flex-shrink: 0;
}

.section-nash_podhod .wrapper .col-right .section-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-nash_podhod .wrapper .col-right .section-text-content .section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	align-self: stretch;
}

.section-nash_podhod .wrapper .col-right .section-text-content .section-heading .subtitle {
	text-align: center;
}

.section-nash_podhod .wrapper .col-right .section-text-content .section-text-text {
	display: flex;
	width: 486px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.section-nash_podhod .wrapper .col-right .section-text-content .section-text-text p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

.section-nash_podhod .wrapper .col-right .section-text-content .section-text-text ul {
	list-style-type: disc;
	padding-left: 15px;
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; 
}

@media screen and (max-width: 1199px) {
	.section-nash_podhod .bg {
		background-size: contain !important;
		background-position: right bottom !important;
	}

	.section-nash_podhod .wrapper {
		flex-direction: column-reverse;
		width: 100%;
		max-width: 100vw;
		padding-left: 32px;
		padding-right: 32px;
		
		
	}

	.section-nash_podhod .wrapper .col-left img {
		height: 300px;
		object-fit: contain;
	}

	.section-nash_podhod .wrapper .col-right {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.section-nash_podhod {
		margin-top: 0;
	}

	.section-nash_podhod .wrapper .col-right .section-text-content .section-text-text {
		max-width: 100vw;
		width: 100%;
	}
}

/*prodvizhenie_kartochki*/

.section-prodvizhenie_kartochki {
	padding-top: 100px;
}

.section-prodvizhenie_kartochki .wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 48px;
	align-self: stretch;
}

.section-prodvizhenie_kartochki .wrapper .row-top {
	display: flex;
	width: 852px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.section-prodvizhenie_kartochki .wrapper .row-top .section-heading {
	display: flex;
	padding-right: 132px;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	align-self: stretch;
	
}

.section-prodvizhenie_kartochki .wrapper .row-top .section-heading .subtitle {
	text-align: right;
	padding-right: 152px;
}

.section-prodvizhenie_kartochki .wrapper .row-top .section-description {
	width: 553px;
	color: #395172;
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}

.section-prodvizhenie_kartochki .wrapper .row-middle {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card {
	display: flex;
	width: 302px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 24px;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card:nth-child(even) {
	padding-top: 70px;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card img {
	height: 280px;
	width: 100%;
	align-self: stretch;
	border-radius: 10px;
	object-fit: cover;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card .card-texts {
	display: flex;
	width: 254px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card .card-texts h3 {
	color: #222;
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}

.section-prodvizhenie_kartochki .wrapper .row-middle .card .card-texts p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.section-prodvizhenie_kartochki .wrapper .row-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}

.section-prodvizhenie_kartochki .wrapper .row-bottom p {
	width: 751px;
	color: var(--Dark-Blue-500, #395172);
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

@media screen and (max-width: 1199px) {
	.section-prodvizhenie_kartochki .wrapper {
		width: 100%;
		max-width: 100vw;
		padding-left: 32px;
		padding-right: 32px;
	}

	.section-prodvizhenie_kartochki .wrapper .row-top {
		width: 100%;
	}

	.section-prodvizhenie_kartochki .wrapper .row-top .section-heading {
		padding-right: 0;
	}

	.section-prodvizhenie_kartochki .wrapper .row-top .section-description {
		width: 100%;
	}

	.section-prodvizhenie_kartochki .wrapper .row-middle {
		flex-wrap: wrap;
		height: auto;
	}
}

@media screen and (max-width: 768px) {
	.section-prodvizhenie_kartochki .wrapper .row-middle .card,
	.section-prodvizhenie_kartochki .wrapper .row-middle .card:nth-child(even) {
		padding-top: 32px;
	}

	.section-prodvizhenie_kartochki .wrapper .row-bottom {
		flex-direction: column;
		gap: 32px;
	}

	.section-prodvizhenie_kartochki .wrapper .row-bottom p {
		width: 100%;
		max-width: 100vw;
	}

	.section-prodvizhenie_kartochki .wrapper .row-middle .card.mobile-hidden {
		display: none;
	}
}

/*nashi_kejsy*/

.section-nashi_kejsy {
	margin-top: 100px;
	padding-bottom: 40px;
	position: relative;
}

.section-nashi_kejsy .bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	height: 100%;
	border-radius: 300px 0 0 5px;
	background: var(--bigidea-agency-ru-jacksons-purple, #1A347E);
	width: calc(((100vw - 1280px) / 2) + 515px + 223px);
}

.section-nashi_kejsy .wrapper {
	display: flex;
	flex-direction: column;
	gap: 48px;
	
	
}

.section-nashi_kejsy .wrapper .row-top {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 8px;
}

.section-nashi_kejsy .wrapper .row-top .subtitle {
	padding-top: 62px;
	text-align: right;
	padding-right: 72px;
}

.section-nashi_kejsy .wrapper .row-top .item {
	width: 100%;
	display: inline-flex;
	overflow: hidden;
	align-items: flex-end;
	gap: 64px;
}

.section-nashi_kejsy .wrapper .row-top .item img {
	width: 701px;
	height: 500px;
	aspect-ratio: 701/500;
	border-radius: 10px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right {
	display: flex;
	width: 515px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .title {
	color: var(--bigidea-agency-ru-white, #FFF);
	font-family: Gilroy;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content .case-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content .case-text-content p,
.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content .case-text-content li {
	color: var(--bigidea-agency-ru-white, #FFF);
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content .case-text-content ul {
	padding-left: 24px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content a {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 6px;
}

.section-nashi_kejsy .wrapper .row-top .item .col-right .case-content a span {
	color: var(--bigidea-agency-ru-white, #FFF);
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.section-nashi_kejsy .wrapper .row-bottom {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
}

@media screen and (max-width: 1199px) {
	.section-nashi_kejsy .wrapper .row-top,
	.section-nashi_kejsy .wrapper .row-bottom {
		padding-left: 32px;
		padding-right: 32px;
	}

	.section-nashi_kejsy .wrapper .row-topimg {
			object-fit: contain;
		}
}

@media screen and (max-width: 768px) {
	.section-nashi_kejsy .bg {
		width: 100%;
	}

	.section-nashi_kejsy .wrapper .row-top .cases-slider .item{
		flex-direction: column;
		gap: 32px;
	}

	.section-nashi_kejsy .wrapper .row-top .cases-slider .col-left img {
		height: auto;
	}

	.section-nashi_kejsy .wrapper .row-top .cases-slider .col-right {
		width: auto;
	}
}

/*vygoda*/

.section-vygoda {
	padding-top: 100px;
}

.section-vygoda .wrapper {
	display: flex;
	width: 1280px;
	justify-content: flex-end;
	align-items: center;
	gap: 48px;
}

.section-vygoda .wrapper .col-left img {
	width: 367px;
	height: 376px;
	flex-shrink: 0;
}

.section-vygoda .wrapper .col-right {
	display: flex;
	width: 847px;
	flex-direction: column;
	align-items: flex-start;
	gap: 48px;
	flex-shrink: 0;
}

.section-vygoda .wrapper .col-right .row-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-vygoda .wrapper .col-right .row-top .section-heading {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding-right: 54px;
}

.section-vygoda .wrapper .col-right .row-top .section-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-vygoda .wrapper .col-right .row-top .section-content p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.section-vygoda .wrapper .col-right .row-top .section-content p strong {
	font-weight: 500;
}

.section-vygoda .wrapper .col-right .row-bottom {
	display: flex;
	align-items: center;
	gap: 24px;
}

@media screen and (max-width: 1199px) {
	.section-vygoda .wrapper {
		width: 100%;
		max-width: 100vw;
		padding-left: 32px;
		padding-right: 32px;
		flex-direction: column-reverse;
	}

	.section-vygoda .wrapper .col-right {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.section-vygoda .wrapper .col-right .row-bottom {	
		flex-direction: column;
	}
}

/*nasha_komanda*/

.section-nasha_komanda {
	position: relative;
	margin-top: 100px;
}

.section-nasha_komanda .bg {
	position: absolute;
	z-index: -1;
	border-radius: 0 300px 5px 0px;
	top: 0;
	left: 0;
	bottom: 110px;
	width: calc(((100vw - 1280px) / 2) + 413px + 325px);
}

.section-nasha_komanda .wrapper {
	display: flex;
	align-items: end;
	gap: 125px;
	padding-top: 64px;
}

.section-nasha_komanda .wrapper .col-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
	gap: 48px;
	align-self: stretch;
	max-width: 413px;
}

.section-nasha_komanda .wrapper .col-left .row-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.section-nasha_komanda .wrapper .col-left .row-top .section-heading {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	align-self: stretch;
}

.section-nasha_komanda .wrapper .col-left .row-top .section-heading .title {
	color: #FFF;
}

.section-nasha_komanda .wrapper .col-left .row-top .description {
	color: #FFF;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.section-nasha_komanda .wrapper .col-left .row-bottom .slider-arrows .arrow-left,
.section-nasha_komanda .wrapper .col-left .row-bottom .slider-arrows .arrow-right {
	transform: translateX(-25%);
}

.section-nasha_komanda .wrapper .col-right .employees-slider .owl-stage-outer {
	padding-bottom: 60px;
	margin-top: 160px;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item {
	margin-right: 20px;
	display: flex;
	width: 305px;
	height: 533px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	border-radius: 10px;
	box-shadow: 0px 84px 23px 0px rgba(34, 48, 68, 0.00), 0px 54px 21px 0px rgba(34, 48, 68, 0.02), 0px 30px 18px 0px rgba(34, 48, 68, 0.07), 0px 13px 13px 0px rgba(34, 48, 68, 0.12), 0px 3px 7px 0px rgba(34, 48, 68, 0.14);
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info {
	cursor: pointer;
	display: flex;
	width: 305px;
	height: 223px;
	padding: 24px 24px 24px 32px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 0px 0px 10px 10px;
	background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
	transition: all .3s ease-in-out;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info .item-info-content {
	display: flex;
	width: 249px;
	justify-content: space-between;
	align-items: center;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info .item-info-content .col-left {
	display: flex;
	width: 165px;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	flex-shrink: 0;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info .item-info-content .col-left .name {
	color: var(--base-white, #FFF);
	font-family: Gilroy;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 133.333% */
	letter-spacing: -0.5px;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info .item-info-content .col-left .job {
	color: var(--gray-300, #D4D4D8);
	font-family: Gilroy;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info .item-info-content .col-right {
	display: flex;
	width: 60px;
	height: 60px;
	padding: 13px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 5px;
	background: rgba(16, 238, 90, 0.80);
	backdrop-filter: blur(2px);
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info:hover {
	border-radius: 10px;
	background: rgba(25, 52, 126, 0.90);
	backdrop-filter: blur(4px);
	height: 100%;
	justify-content: flex-start;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info:hover .item-info-content.col-right {
	visibility: hidden;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info:hover .item-description {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 24px;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info:hover .item-description p {
	color: #FFF;
	font-family: Gilroy;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.section-nasha_komanda .wrapper .col-right .employees-slider .item .item-info:hover .item-description p strong {
	font-weight: 500;
}

@media screen and (max-width: 1199px) {
	.section-nasha_komanda .wrapper {
		padding-left: 32px;
		padding-right: 32px;
		max-width: 100vw;
		width: 100%;
		flex-direction: column;
		gap: 24px;
	}

	.section-nasha_komanda .wrapper .col-right {
		max-width: 100vw;
	}

	.section-nasha_komanda .wrapper .col-right .employees-slider .owl-stage-outer {
		padding-bottom: 60px;
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	.section-nasha_komanda .bg {
		width: 100%;
	}

	.section-nasha_komanda .wrapper .col-right {
		width: 100%;
	}
}

/*tarify*/

.section-tarify {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.section-tarify > .wrapper {
	width: 100%;
}

.section-tarify > .wrapper .row-top {
	display: flex;
	width: 755px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}

.section-tarify > .wrapper .row-top .section-heading {
	display: flex;
	width: 626px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.section-tarify > .wrapper .row-top .section-heading .subtitle {
	width: 100%;
	text-align: right;
}

.section-tarify > .wrapper .row-top p {
	color: #395172;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px; 
}

.section-tarify .row-bottom .tariffs-tabs {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-heading {
	width: fit-content;
	justify-content: center;
	display: flex;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-heading .tab-heading {
	min-width: 305px;
	cursor: pointer;
	height: 60px;
	padding: 20px 92px;
	border-radius: 5px 5px 0px 0px;
	box-shadow: 0px 2px 23px 4px rgba(34, 48, 68, 0.25), 0px 54px 21px 0px rgba(34, 48, 68, 0.02), 0px 30px 18px 0px rgba(34, 48, 68, 0.07), 0px 13px 13px 0px rgba(34, 48, 68, 0.12), 0px 3px 7px 0px rgba(34, 48, 68, 0.14);
	gap: 10px;
	text-align: center;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	background: #0F347E;
	color: #FFF;
	transition: all .3s ease-in-out;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-heading .tab-heading.active {
	background: #10EE5A;
	color: var(--Dark-Blue-800, #223044);
} 

.section-tarify .row-bottom .tariffs-tabs .tabs-heading .tab-heading:hover {
	border-color: #ECF1F7;
	background: #ECF1F7;
	color: var(--Dark-Blue-800, #223044);
} 

.section-tarify .row-bottom .tariffs-tabs .tabs-content {
	width: 100vw;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper {
	padding-bottom: 54px;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group {
	display: none;
	flex-direction: column;
	gap: 20px;
	transition: opacity .3s;
	opacity: 0;
	@starting-style {
		opacity: 0;
	}
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group.flex {
	opacity: 0.5;
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	transition: opacity .3s;
} 

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group.active {
	@starting-style {
		opacity: 0.5;
	}
	opacity: 1;
	transition: opacity 1s;
} 

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-top {
	width: 100%;
	border-radius: 5px;
	background: #FFF;
	box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: row;
	padding: 12px 0px;
	justify-content: space-between;
	align-items: center;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-top .tariff-name {
	width: 33.333%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-top .tariff-name span {
	color: #10EE5A;
	text-align: right;
	font-family: Ouvality;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 102.023%; 
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-top .tariff-name h3 {
	color: #0F347E;
	text-align: center;
	font-family: Gilroy;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom {
	width: 100%;
	display: flex;
	align-items: stretch;
	gap: 20px;
	align-self: stretch;
} 

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 32px 24px;
	align-items: center;
	gap: 48px;
	border-radius: 5px;
	background: #FFF;
	flex-basis: 33%;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex-grow: 1;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item {
	display: flex;
	width: 100%;
	align-items: flex-start;
	gap: 20px;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item svg {
	width: 27px;
	height: 27px;
	flex-shrink: 0;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item p {
	color: #222;
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item p strong {
	font-weight: 500;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item.disabled svg {
	opacity: 0.5;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item.disabled p {
	color: #C2C2C2;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-bottom .price {
	color: #10EE5A;
	text-align: center;
	font-family: Gilroy;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 3.2px;
	text-transform: uppercase;
}

.page-id-8106 .section-tarify {
	padding-top: 100px;
}

.page-id-8106 .section-tarify > .wrapper .row-top {
	align-items: center;
	width: 100%;
}

.page-id-8106 .section-tarify > .wrapper .row-top .section-heading {
  align-items: center;
}

.page-id-8106 .section-tarify > .wrapper .row-top .section-heading .subtitle {
  text-align: center;
}

@media screen and (max-width: 1199px) {
	.section-tarify {
		padding-left: 32px;
		padding-right: 32px;
		max-width: 100vw;
		width: 100%;
	}

	.section-tarify .wrapper .row-bottom {
		align-items: start;
		max-width: 100vw;
	}

	.section-tarify .wrapper .row-bottom .price {
		font-size: 48px !important;
	}

	.section-tarify .wrapper .row-bottom .button {
		min-width: auto;
	}
}

@media screen and (max-width: 768px) {
	.section-tarify .wrapper > .row-top {
		max-width: 100vw;
		width: 100%;
	}

	.section-tarify .wrapper > .row-top .section-heading {
		max-width: 100vw;
		width: 100%;
	}

	.section-tarify .row-bottom .tariffs-tabs .tabs-heading .tab-heading {
    height: auto;
    padding: 20px;
    min-width: auto;
    display: flex;
    align-items: center;
	}

	.section-tarify .row-bottom .tariffs-tabs .tariff-group {
		flex-direction: row !important;
		align-items: stretch !important;
	}

	.section-tarify .row-bottom .tariffs-tabs .tariff-group .row-top {
		flex-direction: column !important;
		gap: 40px;
	}

	.section-tarify .row-bottom .tariffs-tabs .tariff-group .row-top .tariff-name {
		height: 33.333%;
	}

	.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-top .tariff-name h3 {
		font-size: 18px;
	}

	.section-tarify .row-bottom .tariffs-tabs .tariff-group > .row-top {
		max-width: 25%;
	} 

	.section-tarify .row-bottom .tariffs-tabs .tariff-group .row-bottom {
		flex-direction: column;
	}

	.section-tarify .row-bottom .tariffs-tabs .tariff-group .row-bottom .tariff-item {
		min-width: 100%;
		gap: 32px;
	}

	.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item p {
		font-size: 16px;
		line-height: 120%;
	}

	.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-top .service-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
	}

	.section-tarify .row-bottom .tariffs-tabs .tabs-content .wrapper .tariff-group > .row-bottom .tariff-item .row-bottom .price {
		font-size: 36px !important;
	}
}

/*rukovoditel*/

.section-rukovoditel {
	position: relative;
	margin-top: 100px;
}

.section-rukovoditel .bg {
	position: absolute;
	top: 32px;
	right: 0;
	bottom: 0;
	width: calc(((100vw - 1280px) / 2) + 500px);
	z-index: -1;
	border-radius: 300px 0px 0px 5px;
	opacity: 0.4;
	background: rgba(80, 120, 211, 0.50);
}

.section-rukovoditel .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.section-rukovoditel .wrapper .col-left {
	padding-top: 76px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 110px;
	flex-shrink: 0;
	max-width: 630px;
}

.section-rukovoditel .wrapper .col-left .row-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
}

.section-rukovoditel .wrapper .col-left .row-top p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; 
}

.section-rukovoditel .wrapper .col-left .row-top p strong {
	color: #395172;
	font-family: Gilroy;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}

.section-rukovoditel .wrapper .col-left .row-bottom {
	display: flex;
	justify-content: flex-start;
}

.section-rukovoditel .wrapper .col-right {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-bottom: 53px;
}

.section-rukovoditel .wrapper .col-right img {
	height: 485px;
	border-radius: 500px 500px 5px 5px;
	box-shadow: 187px 324px 105px 0px rgba(57, 81, 114, 0.00), 120px 207px 96px 0px rgba(57, 81, 114, 0.03), 67px 117px 81px 0px rgba(57, 81, 114, 0.09), 30px 52px 60px 0px rgba(57, 81, 114, 0.16), 7px 13px 33px 0px rgba(57, 81, 114, 0.18);
}

@media screen and (max-width: 1199px) {
	.section-rukovoditel .wrapper {
		padding-left: 32px;
		padding-right: 32px;
		max-width: 100vw;
		width: 100%;
		flex-direction: column;
		gap: 40px;
	}

	.section-rukovoditel .wrapper .col-left  {
		max-width: 100%;
		width: 100%;
		padding-top: 0;
		gap: 32px;
	}

	.section-rukovoditel .wrapper .col-right img {
    object-fit: contain;
    height: auto;
	}
}

@media screen and (max-width: 768px) {
	.section-rukovoditel .bg {
    width: 95%;
    border-radius: 40px 0 0 5px;
    top: -32px;
	}
}

/*forma*/ 

.section-forma {
	margin-top: 200px;
	margin-bottom: 100px;
	position: relative;
}

.section-forma .bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 100px;
	z-index: -1;
	border-radius: 0 300px 5px 0;
	width: calc(((100vw - 1280px) / 2) + 630px + 102px);
}

.section-forma .wrapper {
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.section-forma .wrapper .col-left {
	padding-left: 100px;
	padding-top: 132px;
	position: relative;
}

.section-forma .wrapper .col-right {
	display: flex;
	flex-direction: column;
	max-width: 413px;
	gap: 40px;
}

.section-forma .wrapper .col-right .row-top .section-heading {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.section-forma .wrapper .col-right .row-bottom {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.section-forma .wrapper .col-right .row-bottom p {
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.section-forma .wrapper .col-right .row-bottom p strong {
	font-weight: 500;
}

.section-forma .wrapper .col-right .row-bottom ul {
	list-style-type: disc;
	padding-left: 16px;
	color: #616161;
	font-family: Gilroy;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

@media screen and (max-width: 1199px) {
	.section-forma .bg {
		width: 50%;
		background-position: bottom right;
		background-size: contain;
		right: 0;
		left: auto;
		border-radius: 300px 5px 5px 5px;
	}

	.section-forma .wrapper {
		flex-direction: column-reverse;
		padding-left: 32px;
		padding-right: 32px;
		gap: 32px;
	}

	.section-forma .wrapper .title, 
	.section-forma .wrapper p,
	.section-forma .wrapper li {
		mix-blend-mode: plus-lighter;
	} 

	.section-forma .wrapper .col-left  {
		padding-left: 0;
		padding-top: 0;
	}

	.section-forma .wrapper .col-right {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.section-forma {
		margin-top: 80px;
	}

	.section-forma .bg {
		width: 95%;
		border-radius: 40px 0 0 5px;
		top: -32px;
	}

	.section-forma .wrapper .title, 
	.section-forma .wrapper p, 
	.section-forma .wrapper p strong, 
	.section-forma .wrapper li {
		mix-blend-mode: normal;
		color: #fff;
	}
}

.section-tekst_i_foto_sprava .wrapper {
  padding-top: 100px;
  display: flex;
  align-items: start;
  gap: 24px;
}
.section-tekst_i_foto_sprava .wrapper .col-left {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-text-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-text-content .section-text-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-text-content .section-text-text p, .section-tekst_i_foto_sprava .wrapper .col-left .section-text-content .section-text-text li {
  color: #616161;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-text-content .section-text-text ul {
  list-style-type: disc;
  padding-left: 16px;
}
.section-tekst_i_foto_sprava .wrapper .col-left .section-text-content .button {
  align-self: start;
  margin-bottom: 32px;
}
.section-tekst_i_foto_sprava .wrapper .col-right {
  align-self: end;
}

@media screen and (max-width: 1199px) {
  .section-tekst_i_foto_sprava .wrapper {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  .section-tekst_i_foto_sprava .wrapper .col-left .section-heading .title {
    position: absolute;
    top: 138px;
  }
  .section-tekst_i_foto_sprava .wrapper .col-left .section-text-content {
    padding-top: 150px;
  }
}

@media screen and (max-width: 768px) {
  .section-tekst_i_foto_sprava .wrapper {
    flex-direction: column;
  }
  .section-tekst_i_foto_sprava .wrapper .col-left .section-heading .title {
    top: 90px;
  }
  .section-tekst_i_foto_sprava .wrapper .col-left .section-heading .subtitle {
    margin-top: -55px;
  }
  .section-tekst_i_foto_sprava .wrapper .col-left .section-text-content {
    padding-top: 200px;
  }
}

.section-blok_na_fone_kartinka_sleva {
  position: relative;
}
.section-blok_na_fone_kartinka_sleva .bg {
  position: absolute;
  inset: 0;
  border-radius: 300px 0px 0px 0px;
  opacity: 0.4;
  background: rgba(80, 120, 211, 0.5);
}
.section-blok_na_fone_kartinka_sleva .wrapper {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-top: 55px;
  padding-bottom: 48px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-left {
  position: relative;
  width: calc(1280px - 720px);
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-left img {
  position: absolute;
  left: -212px;
  width: 768px;
  height: 695px;
  object-fit: contain;
  min-width: 768px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right {
  flex-basis: 719px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .section-text-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .section-text-text p, .section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .section-text-text li {
  color: #616161;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .section-text-text ul {
  list-style-type: disc;
  padding-left: 16px;
}
.section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .button {
  align-self: start;
  margin-bottom: 32px;
}

@media screen and (max-width: 1199px) {
  .section-blok_na_fone_kartinka_sleva .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-blok_na_fone_kartinka_sleva .wrapper .col-left img {
    width: 650px;
    height: auto;
    min-width: 650px;
  }
}

@media screen and (max-width: 768px) {
  .section-blok_na_fone_kartinka_sleva .wrapper .col-left {
    display: none;
  }
  .section-blok_na_fone_kartinka_sleva .wrapper .col-right .subtitle {
    text-align: right;
  }
  .section-blok_na_fone_kartinka_sleva .wrapper .col-right .section-text-content .button {
    min-width: min(100%, 305px);
  }
}

.section-razrabotka_preimushhestva .wrapper {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: start;
}
.section-razrabotka_preimushhestva .wrapper .row-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 851px;
  align-items: end;
  flex-grow: 0;
}
.section-razrabotka_preimushhestva .wrapper .row-top .section-heading {
  width: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-razrabotka_preimushhestva .wrapper .row-top .section-heading .title {
  text-align: center;
}
.section-razrabotka_preimushhestva .wrapper .row-top .section-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-razrabotka_preimushhestva .wrapper .row-top .section-text-content p, .section-razrabotka_preimushhestva .wrapper .row-top .section-text-content li {
  color: #616161;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.section-razrabotka_preimushhestva .wrapper .row-top .section-text-content ul {
  list-style-type: disc;
  padding-left: 16px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom {
  display: flex;
  align-self: end;
  justify-content: end;
  gap: 20px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item {
  flex-basis: 25%;
  padding: 120px 30px 30px;
  border-radius: 5px;
  background: #ECF1F7;
  position: relative;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item:nth-child(even) {
  margin-top: 55px;
  margin-bottom: -55px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item .card-item-top {
  position: absolute;
  top: -12px;
  right: 26px;
  padding: 20px;
  width: 100px;
  height: 100px;
  border-radius: 4.301px;
  background: #10EE5A;
  box-shadow: 0px 131.62px 36.991px 0px rgba(0, 0, 0, 0), 0px 84.306px 33.55px 0px rgba(0, 0, 0, 0.01), 0px 47.314px 28.389px 0px rgba(0, 0, 0, 0.03), 0px 20.646px 20.646px 0px rgba(0, 0, 0, 0.04), 0px 5.162px 11.183px 0px rgba(0, 0, 0, 0.05);
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item .card-item-top img {
  width: 60px;
  height: 60px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item .card-item-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item .card-item-bottom h3 {
  color: #222;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.section-razrabotka_preimushhestva .wrapper .row-bottom .card-item .card-item-bottom p {
  color: #616161;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media screen and (max-width: 1199px) {
  .section-razrabotka_preimushhestva .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-razrabotka_preimushhestva .wrapper .row-top {
    max-width: 100%;
  }
  .section-razrabotka_preimushhestva .wrapper .row-top .section-heading {
    max-width: 100%;
  }
  .section-razrabotka_preimushhestva .wrapper .row-bottom {
    flex-direction: column;
  }
  .section-razrabotka_preimushhestva .wrapper .row-bottom .card-item {
    margin-top: 20px;
  }
  .section-razrabotka_preimushhestva .wrapper .row-bottom .card-item:nth-child(even) {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.section-karta .wrapper {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-karta .wrapper .row-top .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section-nashi_kejsy_slajder_sprava, .section-nashi_kejsy_galereya {
  position: relative;
  margin-top: 100px;
}
.section-nashi_kejsy_slajder_sprava .bg,
.section-nashi_kejsy_galereya .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  border-radius: 0 300px 5px 0;
  background: var(--bigidea-agency-ru-jacksons-purple, #1A347E);
  width: calc(((100vw - 1280px) / 2) + 515px + 223px);
}
.section-nashi_kejsy_slajder_sprava .wrapper,
.section-nashi_kejsy_galereya .wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top,
.section-nashi_kejsy_galereya .wrapper .row-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .subtitle,
.section-nashi_kejsy_galereya .wrapper .row-top .subtitle {
  text-align: right;
}
.section-nashi_kejsy_galereya .wrapper .row-top .title {
	text-align: right;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-left {
  flex-grow: 0;
  flex-basis: 522px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-left .case-text-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-left .case-text-content p, .section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-left .case-text-content li {
  color: var(--bigidea-agency-ru-white, #FFF);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-left .case-text-content ul {
  list-style-type: disc;
  padding-left: 16px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: end;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-top .item .col-right .title {
  max-width: 533px;
  color: #1A347E;
  font-family: Gilroy;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}
.section-nashi_kejsy_galereya .wrapper .row-top .cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.section-nashi_kejsy_galereya .wrapper .row-top .cases-grid img {
	border-radius: 10px;
}
.section-nashi_kejsy_slajder_sprava .wrapper .row-bottom,
.section-nashi_kejsy_galereya .wrapper .row-bottom {
  display: flex;
  justify-content: end;
  gap: 100px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .section-nashi_kejsy_slajder_sprava .bg,
	.section-nashi_kejsy_galereya .bg {
    width: 100%;
    border-radius: 0;
  }
  .section-nashi_kejsy_slajder_sprava .wrapper,
	.section-nashi_kejsy_galereya .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top,
	.section-nashi_kejsy_galereya .wrapper .row-top {
    padding-top: 30px;
  }
	.section-nashi_kejsy_galereya .wrapper .row-top .title {
		text-align: center;
		color: #fff;
	}
	.section-nashi_kejsy_galereya .wrapper .row-top .subtitle {
		text-align: center;
	}
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top .cases-slider .item {
    padding-right: 10px;
  }
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top .cases-slider .item .col-right .title {
    color: #fff;
  }
	.section-nashi_kejsy_galereya .wrapper .row-bottom {
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top .cases-slider .item {
    flex-direction: column-reverse;
  }
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top .cases-slider .item .col-right h3 {
    font-size: 24px;
    line-height: 120%;
  }
  .section-nashi_kejsy_slajder_sprava .wrapper .row-top .cases-slider .item .col-right img {
    display: none;
  }
	.section-nashi_kejsy_galereya .wrapper .row-top .cases-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 500px) {
	.section-nashi_kejsy_galereya .wrapper .row-top .cases-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.section-faq {
  padding-top: 100px;
}
.section-faq .wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.section-faq .wrapper .section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 626px;
}
.section-faq .wrapper .section-heading .subtitle, .section-faq .wrapper .section-heading .title {
  text-align: center;
}
.section-faq .wrapper .faq-item {
  padding-bottom: 40px;
  border-bottom: 2px solid #0C347E;
}
.section-faq .wrapper .faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.section-faq .wrapper .faq-item .faq-question h3 {
  color: var(--Dark-Blue-500, #395172);
  font-family: Gilroy;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.section-faq .wrapper .faq-item .faq-question::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCAyOSAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3Ljg2NCAxMS4zMzZIMjguNjhWMTcuODY0SDE3Ljg2NFYyOC42OEgxMS4zMzZWMTcuODY0SDAuNTJWMTEuMzM2SDExLjMzNlYwLjUxOTk5N0gxNy44NjRWMTEuMzM2WiIgZmlsbD0iIzUyNjc4MyIvPgo8L3N2Zz4K");
}
.section-faq .wrapper .faq-item .faq-question.active h3 {
  color: #10EE5A;
}
.section-faq .wrapper .faq-item .faq-question.active::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDI1IDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yNC4xNiA2Ljg3MkgwLjQ4VjAuMjE2SDI0LjE2VjYuODcyWiIgZmlsbD0iIzUyNjc4MyIvPgo8L3N2Zz4K");
}
.section-faq .wrapper .faq-item .faq-question:hover h3 {
  color: #10EE5A;
}
.section-faq .wrapper .faq-item .faq-answer {
  display: none;
}
.section-faq .wrapper .faq-item .faq-answer p {
  color: #616161;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-top: 40px;
}
.section-faq .wrapper .faq-item .faq-question.active ~ .faq-answer {
  display: flex;
}

@media screen and (max-width: 1199px) {
  .section-faq .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-faq .wrapper {
    gap: 24px;
  }
  .section-faq .wrapper .row-bottom .faq-item .faq-question h3 {
    font-size: 24px;
  }
}

.section-forma_sprava {
  position: relative;
  margin-top: 164px;
  margin-bottom: 65px;
}
.section-forma_sprava .bg {
  position: absolute;
  top: -64px;
  right: 0;
  height: 100%;
  width: 100%;
  width: calc(((100vw - 1280px) / 2) + 575px);
  border-radius: 300px 0 0 5px;
}
.section-forma_sprava .wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
.section-forma_sprava .wrapper .col-left {
  max-width: 630px;
}
.section-forma_sprava .wrapper .col-left .row-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-forma_sprava .wrapper .col-left .row-top .subtitle {
  padding-left: 111px;
}
.section-forma_sprava .wrapper .col-right .popup h3 {
  color: var(--Dark-Blue-500, #395172);
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-right: 74px;
}

@media screen and (max-width: 1199px) {
  .section-forma_sprava .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-forma_sprava .wrapper .col-left {
    max-width: 42%;
  }
  .section-forma_sprava .wrapper .col-left .row-top .section-heading .title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .section-forma_sprava .bg {
    width: 100%;
    z-index: -1;
    border-radius: 150px 0 0 5px;
  }
  .section-forma_sprava .wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .section-forma_sprava .wrapper .col-left {
    max-width: 100%;
  }
  .section-forma_sprava .wrapper .col-left .title, .section-forma_sprava .wrapper .col-left ul, .section-forma_sprava .wrapper .col-left p {
    color: #fff;
  }
  .section-forma_sprava .wrapper .col-left .title {
    text-align: right;
  }
  .section-forma_sprava .wrapper .col-right .popup h3 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.page-id-8106 .map {
  display: none;
}

.page-id-8106.page-template-template-service-page footer .wrap._footer1 {
  padding-top: 40px;
}

@media screen and (max-width: 1199px) {
	.page-id-8106 .bg_header .bg {
		background: url(http://localhost:10041/wp-content/uploads/2025/03/review_2-1.webp) no-repeat 168% bottom, url(/wp-content/themes/bigidea/img/header_img_3.png) no-repeat 80% bottom / 48% !important;
	}
}

@media screen and (max-width: 1199px) {
	.page-id-8106 .bg_header .bg {
		background: none !important;
	}
}

@media screen and (max-width: 768px) {
  .page-id-8106 .section-marketingovye_uslugi .wrapper .row-bottom .slider .services-slider .item .col-right p {
    font-size: 12px;
  }
}

.menu-item-121 > a:hover {
	text-decoration: none !important;
}