
		img:is([sizes="auto" i], [sizes^="auto," i]) {
			contain-intrinsic-size: 3000px 1500px
		}
	

		.wp-block-button__link {
			color: #fff;
			background-color: #32373c;
			border-radius: 9999px;
			box-shadow: none;
			text-decoration: none;
			padding: calc(.667em + 2px) calc(1.333em + 2px);
			font-size: 1.125em
		}

		.wp-block-file__button {
			background: #32373c;
			color: #fff;
			text-decoration: none
		}

		:root {
			--wp--preset--aspect-ratio--square: 1;
			--wp--preset--aspect-ratio--4-3: 4/3;
			--wp--preset--aspect-ratio--3-4: 3/4;
			--wp--preset--aspect-ratio--3-2: 3/2;
			--wp--preset--aspect-ratio--2-3: 2/3;
			--wp--preset--aspect-ratio--16-9: 16/9;
			--wp--preset--aspect-ratio--9-16: 9/16;
			--wp--preset--color--black: #000000;
			--wp--preset--color--cyan-bluish-gray: #abb8c3;
			--wp--preset--color--white: #ffffff;
			--wp--preset--color--pale-pink: #f78da7;
			--wp--preset--color--vivid-red: #cf2e2e;
			--wp--preset--color--luminous-vivid-orange: #ff6900;
			--wp--preset--color--luminous-vivid-amber: #fcb900;
			--wp--preset--color--light-green-cyan: #7bdcb5;
			--wp--preset--color--vivid-green-cyan: #00d084;
			--wp--preset--color--pale-cyan-blue: #8ed1fc;
			--wp--preset--color--vivid-cyan-blue: #0693e3;
			--wp--preset--color--vivid-purple: #9b51e0;
			--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
			--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
			--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
			--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
			--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
			--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
			--wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
			--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
			--wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
			--wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
			--wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
			--wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
			--wp--preset--font-size--small: 13px;
			--wp--preset--font-size--medium: 20px;
			--wp--preset--font-size--large: 36px;
			--wp--preset--font-size--x-large: 42px;
			--wp--preset--spacing--20: 0.44rem;
			--wp--preset--spacing--30: 0.67rem;
			--wp--preset--spacing--40: 1rem;
			--wp--preset--spacing--50: 1.5rem;
			--wp--preset--spacing--60: 2.25rem;
			--wp--preset--spacing--70: 3.38rem;
			--wp--preset--spacing--80: 5.06rem;
			--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
			--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
			--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
			--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
		}

		:where(.is-layout-flex) {
			gap: 0.5em;
		}

		:where(.is-layout-grid) {
			gap: 0.5em;
		}

		body .is-layout-flex {
			display: flex;
		}

		.is-layout-flex {
			flex-wrap: wrap;
			align-items: center;
		}

		.is-layout-flex> :is(*, div) {
			margin: 0;
		}

		body .is-layout-grid {
			display: grid;
		}

		.is-layout-grid> :is(*, div) {
			margin: 0;
		}

		:where(.wp-block-columns.is-layout-flex) {
			gap: 2em;
		}

		:where(.wp-block-columns.is-layout-grid) {
			gap: 2em;
		}

		:where(.wp-block-post-template.is-layout-flex) {
			gap: 1.25em;
		}

		:where(.wp-block-post-template.is-layout-grid) {
			gap: 1.25em;
		}

		.has-black-color {
			color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-color {
			color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-color {
			color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-color {
			color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-color {
			color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-color {
			color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-color {
			color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-color {
			color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-color {
			color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-color {
			color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-color {
			color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-color {
			color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-black-background-color {
			background-color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-background-color {
			background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-background-color {
			background-color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-background-color {
			background-color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-background-color {
			background-color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-background-color {
			background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-background-color {
			background-color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-background-color {
			background-color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-background-color {
			background-color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-background-color {
			background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-background-color {
			background-color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-black-border-color {
			border-color: var(--wp--preset--color--black) !important;
		}

		.has-cyan-bluish-gray-border-color {
			border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
		}

		.has-white-border-color {
			border-color: var(--wp--preset--color--white) !important;
		}

		.has-pale-pink-border-color {
			border-color: var(--wp--preset--color--pale-pink) !important;
		}

		.has-vivid-red-border-color {
			border-color: var(--wp--preset--color--vivid-red) !important;
		}

		.has-luminous-vivid-orange-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-amber-border-color {
			border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
		}

		.has-light-green-cyan-border-color {
			border-color: var(--wp--preset--color--light-green-cyan) !important;
		}

		.has-vivid-green-cyan-border-color {
			border-color: var(--wp--preset--color--vivid-green-cyan) !important;
		}

		.has-pale-cyan-blue-border-color {
			border-color: var(--wp--preset--color--pale-cyan-blue) !important;
		}

		.has-vivid-cyan-blue-border-color {
			border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
		}

		.has-vivid-purple-border-color {
			border-color: var(--wp--preset--color--vivid-purple) !important;
		}

		.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
			background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
		}

		.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
			background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
		}

		.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
		}

		.has-luminous-vivid-orange-to-vivid-red-gradient-background {
			background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
		}

		.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
			background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
		}

		.has-cool-to-warm-spectrum-gradient-background {
			background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
		}

		.has-blush-light-purple-gradient-background {
			background: var(--wp--preset--gradient--blush-light-purple) !important;
		}

		.has-blush-bordeaux-gradient-background {
			background: var(--wp--preset--gradient--blush-bordeaux) !important;
		}

		.has-luminous-dusk-gradient-background {
			background: var(--wp--preset--gradient--luminous-dusk) !important;
		}

		.has-pale-ocean-gradient-background {
			background: var(--wp--preset--gradient--pale-ocean) !important;
		}

		.has-electric-grass-gradient-background {
			background: var(--wp--preset--gradient--electric-grass) !important;
		}

		.has-midnight-gradient-background {
			background: var(--wp--preset--gradient--midnight) !important;
		}

		.has-small-font-size {
			font-size: var(--wp--preset--font-size--small) !important;
		}

		.has-medium-font-size {
			font-size: var(--wp--preset--font-size--medium) !important;
		}

		.has-large-font-size {
			font-size: var(--wp--preset--font-size--large) !important;
		}

		.has-x-large-font-size {
			font-size: var(--wp--preset--font-size--x-large) !important;
		}

		:where(.wp-block-post-template.is-layout-flex) {
			gap: 1.25em;
		}

		:where(.wp-block-post-template.is-layout-grid) {
			gap: 1.25em;
		}

		:where(.wp-block-columns.is-layout-flex) {
			gap: 2em;
		}

		:where(.wp-block-columns.is-layout-grid) {
			gap: 2em;
		}

		:root :where(.wp-block-pullquote) {
			font-size: 1.5em;
			line-height: 1.6;
		}
	

		#top #header_main>.container,
		#top #header_main>.container .main_menu ul:first-child>li>a,
		#top #header_main #menu-item-shop .cart_dropdown_link {
			height: 80px;
			line-height: 80px;
		}

		.html_top_nav_header .av-logo-container {
			height: 80px;
		}

		.html_header_top.html_header_sticky #top #wrap_all #main {
			padding-top: 80px;
		}
	

	
		.serv_blk_dark p,
		.serv_blk_dark h3 {
			color: #fff;
		}

		#scroll-top-link {
			display: none !important;
		}

		#top .avia-post-nav {
			display: none;
		}

		.serv_grid_title {
			text-align: center;
			font: 36px "AvenirLTStd-Book", sans-serif;
		}

		#portfolio_fj_item_descr_block,
		div[id*=header_wrap_] {
			height: 600px;
			max-height: 600px;
			min-height: 600px;
		}

		div#header_wrap_services_full,
		div#header_wrap_services_full .container {
			height: 640px;
			max-height: 640px;
			min-height: 640px;
		}

		div#header_wrap_services_full .container {
			position: relative;
		}

		div#header_wrap_services_full {
			display: flex;
			align-items: flex-start;
		}

		div#header_wrap_services_full .content {
			padding-top: 130px;
		}

		div#header_wrap_services_full .content .header_content_blue {
			position: relative;
			z-index: 2;
		}

		div#header_wrap_services_full .content .header_content_image {
			position: absolute;
			top: 50%;
			width: 740px;
			height: 494px;
			transform: translateY(-50%);
			right: 0;
			z-index: 1;
		}

		div#header_wrap_services_full .content .header_content_image img:nth-child(1) {
			position: absolute;
			top: 0;
			right: 0;
		}

		div#header_wrap_services_full .content .header_content_image img:nth-child(2) {
			position: absolute;
			top: 364px;
			right: 397px;
		}

		div#header_wrap_about_full .image__big {
			display: flex;
			align-items: center;
		}

		div#header_wrap_about_full .image__big .header_content_prtf_l {
			width: calc(100% - 600px);
		}

		div#header_wrap_about_full .image__big .header_content_image {
			width: 600px;
		}

		div#header_wrap_about_full .image__big .header_content_image img {
			border-radius: 37px;
		}

		div[id^='header_wrap_cont'],
		div[id*='header_wrap_resources'],
		div[id*='header_wrap_policy'],
		div[id*='header_wrap_blog'],
		div[id*='header_wrap_ind'] {
			height: 300px !important;
			max-height: 300px !important;
			min-height: 300px !important;
		}

		div[id*='header_wrap_cont_case'] {
			max-height: 440px !important;
			height: 440px !important;
			min-height: 440px !important;
		}

		#top form.wpcf7-form.init {
			margin-bottom: 0;
		}

		header .btn-storalyze {
			display: block;
			position: absolute;
			right: 0;
			bottom: 0;
			margin-top: -23px;
			top: 0;
			margin: auto;
			height: 46px;
			max-height: 100%;
			text-align: center;
			color: #fff;
			background-color: #415669;
			width: 238px;
			border: 2px solid #415669;
			letter-spacing: .3px;
			font: normal 16px 'AvenirLTStd-Book', sans-serif;
			transition: all 0.3s ease-out;
			line-height: 2.5;
		}

		.home_header_content {
			display: table-cell;
			vertical-align: middle;
			min-width: 360px;
		}

		#top .header_title_servit {
			color: #fff;
			font: 60px/1.7 "AvenirLTStd-Heavy", sans-serif;
		}

		#top .header_title_re {
			color: #fff;
			position: absolute;
			font: 70px "AvenirLTStd-Heavy", sans-serif;
			margin: auto;
			top: 30%;
			right: 0;
			left: 0;
			bottom: 0;
		}

		.re_row_wr .ov_descr ul li {
			list-style: none;
			position: relative;
			margin: 0;
			padding: 0 0 0 15px;
			font: 18px/29px 'AvenirLTStd-Book', sans-serif;
		}

		.re_row_wr .ov_descr li:before {
			content: "";
			position: absolute;
			top: 10px;
			left: 0;
			width: 7px;
			height: 7px;
			border-radius: 50%;
			vertical-align: middle;
			margin-right: 8px;
			background-color: #729ebe;
		}

		@media (min-width: 1921px) {
			.home_header_content {
				height: 640px;
			}
		}

		@media (max-width: 1200px) {
			#top .header_title_re {
				font-size: 60px;
			}

			#header_wrap_services_full,
			#header_wrap_services_full .container {
				min-height: 600px !important;
				max-height: 600px !important;
			}

			#main #page_ms-trust-your-project-service {
				padding-top: 0;
			}

			#main #page_ms-trust-your-project-service .service__vantages_items {
				padding-left: 0;
			}

			div#header_wrap_about_full .image__big .header_content_prtf_l {
				width: 100%;
			}
		}

		@media (max-width: 1024px) {
			#top .header_title_re {
				font-size: 50px;
			}
		}

		@media (max-width: 890px) {
			#top .header_title_re {
				font-size: 45px;
			}
		}

		@media (max-width: 989px) {
			header .btn-storalyze {
				display: none;
			}
		}

		.container,
		.container_wrap {
			clear: both;
			position: relative
		}

		.container,
		.container_wrap,
		.inner-container,
		.units {
			position: relative
		}

		.links_list li,
		ul {
			list-style: none
		}

		body,
		html {
			margin: 0;
			padding: 0;
			border: 0;
			font-style: inherit;
			font-variant: inherit;
			font-weight: inherit;
			font-stretch: inherit;
			font-size: inherit;
			line-height: inherit;
			font-family: inherit;
			vertical-align: baseline
		}

		html {
			min-width: 910px
		}

		html.responsive {
			min-width: 0
		}

		.container {
			width: 100%;
			margin: 0 auto;
			padding: 0 50px;
			max-width: 1010px
		}

		.inner-container {
			height: 100%;
			width: 100%
		}

		.container_wrap {
			border-top-style: solid;
			border-top-width: 1px
		}

		.units {
			float: left;
			display: inline;
			margin-left: 50px;
			z-index: 1;
			min-height: 1px
		}

		#wrap_all {
			width: 100%;
			position: static;
			z-index: 2;
			overflow: hidden
		}

		.header_content {
			position: absolute
		}

		body .units.alpha {
			margin-left: 0;
			clear: left;
			width: 100%
		}

		.clearfix::after,
		.container::after {
			clear: both
		}

		.container .av-content-full.units {
			width: 100%
		}

		#mobile-advanced {
			display: none
		}

		@media only screen and (max-width: 989px) and (min-width: 768px) {
			.responsive #top {
				overflow-x: hidden
			}

			.responsive .container {
				max-width: 782px
			}
		}

		@media only screen and (max-width: 767px) {
			#top .header_title_re {
				font-size: 38px;
			}

			body#top .logo a img {
				display: none
			}

			.responsive #top {
				overflow-x: hidden
			}

			.responsive #top #wrap_all .container {
				width: 91%;
				max-width: 91%;
				margin: 0 auto;
				padding-left: 0;
				padding-right: 0;
				float: none
			}

			.responsive .units {
				margin: 0
			}

			.responsive .content .entry-content-wrapper {
				padding: 0
			}

			.responsive .content {
				border: none
			}

			.responsive #top #wrap_all #header {
				position: relative;
				width: 100%;
				float: none;
				height: auto;
				opacity: 1;
				min-height: 0;
				margin: 0 !important
			}

			.responsive #top #main {
				margin: 0;
				padding-top: 0 !important
			}

			.responsive #top #main .container_wrap:first-child {
				border-top: none
			}

			.responsive .phone-info {
				float: none;
				width: 100%;
				clear: both;
				text-align: center
			}

			.responsive #header_main .inner-container,
			.responsive .main_menu {
				position: static
			}

			.responsive #top .logo {
				position: static;
				display: table;
				float: none;
				padding: 0;
				border: none;
				width: 80%;
				height: 80px !important
			}

			.responsive #header_main .container,
			.responsive .logo img {
				height: auto !important
			}

			.responsive .logo a {
				display: table-cell;
				vertical-align: middle
			}

			.responsive .logo img {
				width: auto;
				max-width: 100%;
				display: block;
				max-height: 80px;
				margin: 0
			}

			.responsive #top .header_bg {
				opacity: 1
			}

			.widget li {
				line-height: 1.8em;
				font-size: 15px
			}

			.main_menu .avia-menu,
			.responsive #scroll-top-link {
				display: none
			}

			#advanced_menu_hide {
				display: block
			}

			.links_list {
				top: 43%
			}

			[id*=header_wrap] {
				height: 580px
			}

			.links_list ul,
			.links_list_sticky ul {
				width: 280px;
				margin: 0 auto
			}

			#top .header_title_servit {
				top: 20%;
				font-size: 40px;
				line-height: 36px
			}

			#header_wrap_mag .links_list {
				top: 52%
			}

			.header_content {
				width: 330px;
				height: 120px;
				left: 50px;
				top: 100px
			}
		}

		a,
		a img,
		img {
			max-width: 100%
		}

		.clearfix::after,
		.clearfix::before,
		.container::after {
			content: "\0020";
			height: 0;
			display: block;
			visibility: hidden
		}

		.clearfix::after,
		.clearfix::before {
			overflow: hidden;
			width: 0
		}

		header,
		nav,
		section {
			display: block
		}

		* {
			box-sizing: border-box
		}

		.responsive body,
		html.responsive {
			overflow-x: hidden
		}

		a {
			text-decoration: none;
			outline: 0
		}

		#top .avia_hidden_link_text {
			display: none
		}

		a img,
		img {
			border: none;
			padding: 0;
			margin: 0;
			display: inline-block;
			height: auto
		}

		#header {
			z-index: 501;
			width: 100%;
			background: 0 0
		}

		.html_header_top.html_header_sticky #main {
			padding-top: 88px
		}

		.html_header_top.html_header_sticky #header {
			position: fixed
		}

		.header_bg,
		div .logo {
			position: absolute;
			left: 0
		}

		.phone-info {
			float: left;
			font-weight: 700;
			line-height: 20px;
			font-size: 11px;
			padding: 5px 0
		}

		#header_main {
			z-index: 1
		}

		.header_bg {
			top: 0;
			width: 100%;
			height: 100%;
			opacity: .95;
			z-index: 0;
			perspective: 1000px;
			backface-visibility: hidden
		}

		.html_header_searchicon_disabled #top .av_header_border_disabled.av_bottom_nav_disabled .main_menu .menu>li:last-child>a .avia-menu-fx {
			padding-right: 13px;
			box-sizing: content-box
		}

		div .logo {
			float: left;
			z-index: 1
		}

		.logo,
		.logo a,
		.logo img {
			display: block;
			position: relative
		}

		.logo,
		.logo a {
			overflow: hidden;
			height: 100%
		}

		.logo img {
			padding: 0;
			width: auto;
			height: auto;
			max-height: 100%;
			image-rendering: auto;
			z-index: 2
		}



		#top div[id*=header_wrap_] .header_txt {
			color: #fff;
			font-size: 30px
		}

		div[id*=header_wrap_] {
			display: flex;
			align-items: center;
			background-size: cover;
			float: none;
			z-index: 3;
			background-color: transparent;
			position: relative;
		}

		.header_content {
			height: 44%;
			width: 39.5%;
			top: 24%;
			padding: 2.5% 0 0 0;
		}

		.av-main-nav-wrap ul {
			margin: 0;
			padding: 0
		}

		.av-masonry-sort {
			text-align: center;
			overflow: visible;
		}

		.av-main-nav ul li a,
		.content {
			border-right-style: solid;
			border-right-width: 1px
		}



		.av-main-nav ul li {
			margin: 0;
			padding: 0;
			width: 100%
		}

		.av-main-nav ul li a {
			border-left-style: solid;
			border-left-width: 1px
		}

		.av-main-nav ul li:last-child>a {
			border-bottom-style: solid;
			border-bottom-width: 1px
		}



		.av-main-nav>li>ul {
			border-top-width: 2px;
			border-top-style: solid
		}

		.av-main-nav>li {
			line-height: 30px
		}

		.av-main-nav li a {
			max-width: none
		}

		.av-main-nav>li>a {
			display: block;
			text-decoration: none;
			font-weight: 600
		}

		#top:not(.page-template-page-sh):not(.page-template-page-m):not(.page-template-page-m-pos) .av-main-nav ul a {
			background-color: #223343;
			width: 100%;
			height: auto;
			float: left;
			text-align: left;
			line-height: 17px;
			padding: 8px 15px;
			font-size: 14px;
			min-height: 23px;
			max-width: none;
			text-decoration: none;
			font-family: "AvenirLTStd-Heavy";
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: #ffffff;
			border: none;
		}

		.html_main_nav_header.html_logo_left #top .main_menu .menu>li:last-child>a {
			padding-right: 0
		}

		.main_menu .avia-bullet {
			display: none
		}

		.content {
			padding-top: 50px;
			padding-bottom: 50px;
			box-sizing: content-box;
			min-height: 1px;
			z-index: 1;
			margin-right: -1px
		}

		.content .entry-content-wrapper {
			padding-right: 50px
		}

		.fullsize .content {
			margin: 0;
			border: none
		}

		.fullsize .content .entry-content-wrapper {
			padding-right: 0
		}

		.no_sidebar_border .content {
			border-left: none;
			border-right: none
		}

		#top .widget ul {
			padding: 0;
			margin: 0;
			width: 100%;
			float: left
		}

		.widget li {
			clear: both
		}

		.widget ul ul li {
			margin-bottom: 0
		}

		.widget_nav_menu a {
			display: block;
			padding: 0;
		}

		#top .widget_nav_menu ul {
			margin: 0;
			padding: 0;
			float: none;
			list-style-type: none
		}

		#top .widget_nav_menu li {
			position: relative;
			box-sizing: content-box;
			clear: both;
			font-size: 13px
		}

		#top .widget_nav_menu ul ul li::before {
			content: "\2219";
			position: absolute;
			top: 5px
		}

		#advanced_menu_toggle::before,
		#header::after,
		.clearfix,
		.home_header_content .header_btn::before,
		.title_underl::after {
			content: ""
		}

		#top .widget_nav_menu ul ul li a {
			padding: 6px 0 7px 12px
		}

		.widget_nav_menu ul ul {
			display: block
		}

		#top .row_serv_blk .col .icon_block .icon_block_description {
			color: #223343;
			font: 14px/21px "AvenirLTStd-Book";
			margin-top: 10px
		}

		.avia-menu-fx {
			opacity: 0;
			visibility: hidden
		}

		#top .av-main-nav li.current-menu-ancestor>a span {
			color: #B4DBEA !important;
		}

		#top .av-main-nav li.current-menu-ancestor>a:after {
			content: '';
			width: calc(100% - 25px);
			height: 2px;
			background: #B4DBEA;
			position: absolute;
			bottom: 1px;
			left: 0;
			z-index: 1;
		}

		#top #mobile-advanced .visible_sublist,
		#top #mobile-advanced .avia_mega_div.visible_sublist>ul {
			width: 100%;
		}

		.menu_card-block {
			display: none;
		}

		.menu_card-label {
			border-radius: 3px;
			background: #34495E;
			color: #729EBE;
			padding: 6px 4px 4px;
			font-size: 7px;
			margin-left: 10px;
			line-height: 1;
			position: absolute;
			bottom: 23px;
			width: 25px;
			text-align: center;
		}

		#mobile-advanced ul li.menu-item-has-children ul a {
			padding-left: 83px;
		}

		.avia-bullet {
			display: none;
		}

		#mobile-advanced .units {
			margin-left: 0;
		}

		#mobile-advanced .menu-item-top-level-5 .menu-item-has-children .toogle_submenu {
			display: none;
		}

		@media (min-width: 991px) {
			.menu_card-label {
				position: relative;
				bottom: unset;
			}

			.avia_mega_div.avia_mega1.three.units {
				opacity: 0;
				display: none;
			}

			body#top .avia_mega_text_block div.menu_card-block {
				position: absolute;
				color: #fff;
				bottom: 50px;
				left: -361px;
				border: 1px solid rgba(255, 255, 255, 0.1);
				;
				padding: 37px 60px 37px 27px;
				width: 321px;
				background: url("{$theme_path}/static/picture/services_magento_img4_6.webp") center/cover no-repeat;
				border-radius: 20px;
				display: block;
			}

			div.menu_card-block p {
				padding-bottom: 23px;
			}

			.header_color .main_menu .av-main-nav .sub-menu {
				width: 167px;
				padding: 0;
			}

			#header .three.units,
			.avia-menu.av-main-nav-wrap {
				width: 100% !important;
			}

			#header .three.units.avia_mega_div {
				width: 800px !important;
				padding: 20px 10px;
				border: 1px solid rgba(255, 255, 255, 0.1);
				border-top: none;
				border-radius: 0 0 2px 2px;
			}

			.main_menu .menu-item-top-level>a {
				position: relative;
			}

			#header div.three.units {
				height: 467px;
				background: #223343;
			}

			#header div.three.units:before {
				content: "";
				width: 1px;
				height: 90%;
				background: rgba(255, 255, 255, 0.1);
				display: block;
				left: 400px;
				position: absolute;
				top: 5%;
			}

			#header .menu-item-top-level-5 div.three.units {
				height: 276px;
			}

			#header .menu-item-top-level-2 div.three.units {
				height: 343px;
			}

			#header .menu-item-top-level-2 .avia_mega_div.avia_mega1 {
				columns: 2;
			}

			#top .menu-item-top-level-2 .avia_mega_div.avia_mega1>.sub-menu>.menu-item {
				width: 389px !important;
			}

			#header.header_color .main_menu .menu-item-top-level-5 ul.sub-menu ul.sub-menu {
				position: unset;
			}

			body#top .menu-item-top-level-5 div.menu_card-block {
				left: 42px;
				bottom: 30px;
			}

			#top .menu-item-top-level-5 .avia_mega_div.avia_mega1 .sub-menu>.menu-item {}

			#top .menu-item-top-level-5 .avia_mega_div .sub-menu>li.menu-item-has-children .mega_menu_title a:before {
				display: none;
			}

			#top .menu-item-top-level-5 .avia_mega_div.avia_mega1>.sub-menu>.menu-item {
				width: 787px !important;
				display: flex;
				flex-direction: row-reverse;
				justify-content: space-between;
			}

			#top:not(.page-template-page-sh):not(.page-template-page-m):not(.page-template-page-m-pos) .av-main-nav .menu-item-top-level-2 ul .mega_menu_title a,
			#top:not(.page-template-page-sh):not(.page-template-page-m):not(.page-template-page-m-pos) .av-main-nav .menu-item-top-level-5 ul .mega_menu_title a,
			#top .av-main-nav .menu-item-top-level-5 ul a {
				font-weight: 400;
				font-size: 14px;
				text-transform: none;
				font-family: AvenirLTStd-Book;
			}

			#top .menu-item-top-level-5 .avia_mega_div.avia_mega1 .sub-menu .mega_menu_title {
				width: 50%;
			}

			#top #header_main>.container {
				height: 79px;
			}

			#header div.three.units>.sub-menu {
				height: 37px;
				position: unset;
			}

			#header div.three.units>.sub-menu .units {
				position: unset;
			}

			.av-main-nav ul {
				box-shadow: none;
			}

			.header_color .main_menu .av-main-nav ul.sub-menu ul.sub-menu,
			.avia_mega1 li .sub-menu {
				position: absolute;
				left: 402px;
				top: 0;
				padding-top: 20px;
			}

			#top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item>a {
				color: #fff;
			}

			.avia_mega_text_block {
				display: flex;
			}

			.avia_mega_text_block p {
				color: #fff;
			}

			body#top .logo {
				z-index: 50;
			}

			.header_color .main_menu ul ul,
			.header_color .main_menu ul li {
				background: #223343;
			}

			.menu.av-main-nav {
				display: flex;
				justify-content: end;
				height: 79px;
			}

			#header .three.units .main-menu-item_link {
				width: 100%;
			}

			.avia_mega_div.avia_mega1 {
				right: 0 !important;
				position: absolute;
			}

			.avia_mega1 li .sub-menu {
				display: none;
				width: 49% !important;
				height: 100%;
			}

			.sub-menu .mega_menu_title {
				width: 20%;
			}

			#top .sub-menu a.button {
				color: #223343 !important;
				height: 48px !important;
				line-height: 24px !important;
				border: 2px solid #b4dbea !important;
				text-align: center !important;
				width: 180px !important;
			}

			.main-menu-item_content {
				position: absolute;
				right: 0;
				height: 467px;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
			}

			.main-menu-item_content {
				width: 50%;
				padding-left: 43px;
			}

			.main-menu-item_content p {
				width: 65%;
			}

			#top .sub-menu a.button.button-hover-white:hover {
				color: #b4dbea !important;
			}

			.sub-menu .content-dark-block img {
				position: absolute;
				bottom: 0;
				right: 0 !important;
				margin: 0;
				left: unset !important;
			}

			.avia_mega1 .menu-item-has-children {
				display: flex;
			}

			#top .avia_mega_div.avia_mega1>.sub-menu>.menu-item>.sub-menu .avia-menu-text {
				font-size: 14px;
				text-transform: none;
				font-family: AvenirLTStd-Book;
			}

			#top .avia_mega_div.avia_mega1>.sub-menu>.menu-item {
				width: 399px !important;
				display: block;
			}

			#top .av-main-nav .sub-menu:first-child li>ul {
				display: block;
			}

			#top .avia_mega_div .sub-menu>li .mega_menu_title a:hover,
			#top .avia_mega_div .sub-menu>li.menu-item-has-children .mega_menu_title a:hover::before,
			#top .avia_mega_div .sub-menu>li.menu-item-has-children .mega_menu_title a:hover {
				color: #729EBE;
			}

			.avia_mega_div .sub-menu>li.menu-item-has-children .mega_menu_title a:before {
				content: '\E879';
				font-family: 'entypo-fontello';
				position: absolute;
				color: #fff;
				left: 363px;
				font-size: 20px;
			}

			#top .avia_mega_div .sub-menu>li.menu-item-has-children.highlight a:before,
			#top .avia_mega_div>.sub-menu>li.menu-item-has-children.highlight>span a {
				color: #729EBE !important;
			}

			.menu-item-top-level-2 {}

		}

		@media only screen and (max-width: 989px) and (min-width: 768px) {
			.responsive .main_menu ul:first-child>li>a {
				padding: 0 10px
			}

			.responsive #top .header_bg {
				opacity: 1
			}

			.responsive #main .container_wrap:first-child {
				border-top: none
			}

			.responsive .logo {
				float: left
			}

			.responsive .logo img {
				margin: 0
			}

			.responsive .av_mobile_menu_tablet .main_menu .avia-menu {
				display: none
			}
		}

		#advanced_menu_hide,
		#advanced_menu_toggle {
			position: absolute;
			border-radius: 2px;
			height: 46px;
			width: 46px;
			line-height: 46px;
			text-decoration: none;
			text-align: center;
			right: 0;
			top: 50%;
			margin-top: -23px;
			z-index: 10000;
			border-style: solid;
			border-width: 1px;
			font-size: 30px;
			display: none
		}

		.avia-section,
		.template-page {
			position: static
		}

		#advanced_menu_hide {
			z-index: 10050;
			visibility: hidden;
			opacity: 0;
			top: 44px;
			right: 23px
		}

		@media only screen and (max-width: 989px) {
			.responsive.html_mobile_menu_tablet #advanced_menu_hide {
				display: block
			}
		}

		.avia_textblock {
			clear: both;
			line-height: 1.65em
		}

		.avia-section {
			clear: both;
			width: 100%;
			float: left;
			min-height: 100px
		}

		#top #main .avia-section .template-page {
			width: 100%;
			border: none;
			margin-left: auto;
			padding-left: 0;
			margin-right: auto
		}

		.avia-section .template-page .entry-content-wrapper {
			padding-right: 0
		}

		.clearfix {
			zoom: 1;
			clear: both
		}

		body {
			background-color: #fcfdfe
		}

		#header {
			position: relative
		}

		#header::after {
			display: block;
			height: 35px;
			width: 100%;
			background: url({$theme_path}/static/picture/header_edge.png) 0 0/contain no-repeat;
			margin-top: -3px
		}

		.main_color {
			background-color: #ffffff
		}

		#header .header_bg {
			background-color: transparent
		}

		body#top div {
			border: 0
		}

		.header_color .avia-menu-fx,
		.header_color .avia-menu-fx .avia-arrow {
			background-color: #729ebe
		}

		.html_header_top .header_color .main_menu ul:first-child>li>ul {
			border-top: 0
		}

		#top .av-main-nav>li>a span,
		#top .home_header_title {
			text-align: left;
			font-family: "AvenirLTStd-Heavy", sans-serif;
		}

		#top .home_header_title {
			font-size: 26px;
		}

		.sprite {
			display: block
		}

		.sprite-icon-phone {
			display: inline-block;
			width: 25px;
			height: 25px;
			background: url({$theme_path}/static/picture/icon_phone.svg) 0 0/contain no-repeat;
			margin: 0 5px -7px 0
		}

		.responsive .container {
			max-width: 1170px
		}

		body#top #header_main {
			background-color: #223343;
			max-height: 80px;
			border-bottom: 0.5px solid rgba(255, 255, 255, 0.1)
		}

		.av-main-nav>li>a {
			font-size: 16px;
			padding: 0 10px 0 17px
		}

		#top .av-main-nav>li>a span {
			font-size: 14px;
			line-height: normal;
			font-family: "AvenirLTStd-Heavy";
			line-height: 17px;
			letter-spacing: 0.08em !important;
			text-transform: uppercase;
			color: #ffffff;
			font-weight: normal;
		}

		h2[class*="_title"],
		p[class*="_title"],
		h1[class*="_title"] {
			text-align: center;
			font-family: "AvenirLTStd-Heavy", sans-serif
		}

		.text-hide {
			position: absolute;
			font-size: 36px;
			line-height: 150%;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			font-family: "AvenirLTStd-Heavy";
		}

		.home_header_txt {
			margin: 10px 0 56px;
			font-size: 30px;
			color: #5c89a1;
			font-family: 'AvenirLTStd-Book', sans-serif;
		}

		.home_header_content .header_btn {
			font-size: 20px;
			font-family: "AvenirLTStd-Book", sans-serif;
			padding: 17px 0;
			width: 218px;
			display: inline-block;
			text-align: center;
			border: 2px solid #415669;
			border-radius: 0;
			overflow: hidden;
			position: relative;
			z-index: 1
		}

		.home_header_content .header_btn.btnf {
			color: #729ebe;
			background-color: #fff;
			margin-right: 23px
		}

		.home_header_content .header_btn.btns {
			background-color: #415669;
			color: #fff
		}

		.home_header_content .header_btn::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 150%;
			height: 100%;
			z-index: -1;
			transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
			transform-origin: 0 100% 0
		}

		.home_header_content .header_btn.btns::before {
			background-color: #fff
		}

		#top #scroll-top-link,
		.home_header_content .header_btn.btnf::before {
			background-color: #223343;
		}

		#home_blk_f .blk_title {
			margin-top: 42px
		}

		#header_main .phone-info {
			clear: none;
			position: absolute;
			z-index: 100;
			height: 100%;
			margin: 0;
			right: 0;
			font-weight: 700;
			font-style: normal;
			font-size: 17px;
			display: table
		}

		body#top .logo {
			top: 25%;
			max-height: 40px;
		}

		body#top .logo a img {
			display: inline;
			vertical-align: bottom;
			padding: 0;
			width: auto;
			height: auto;
			max-height: 100%;
			image-rendering: auto;
		}

		body#top #wrap_all .container .template-page {
			border: none
		}

		body#top #wrap_all .container .template-page .entry-content-wrapper {
			padding-right: 0
		}

		#home_blk_f {
			padding-bottom: 60px
		}

		#top #scroll-top-link {
			color: #eee;
			border: 1px solid #223343;
			opacity: .7;
			right: 50px;
			left: auto;
		}

		#advanced_menu_hide,
		#advanced_menu_toggle {
			border-color: transparent
		}

		#advanced_menu_toggle::before {
			display: inline-block;
			width: 28px;
			height: 18px;
			background: url({$theme_path}/static/picture/menu.svg) 0 0/contain no-repeat
		}

		.blk_title {
			font-size: 36px
		}

		.links_list ul,
		.links_list_sticky ul {
			display: block;
			text-align: center;
			margin: 0
		}

		.links_list li {
			display: inline-block;
			text-align: center;
			margin: 0 25px 0 0
		}

		.links_list li a {
			border: 1px solid #fff;
			background-color: rgba(0, 0, 0, .5);
			display: block;
			font: 20px "AvenirLTStd-Book";
			color: #fff;
			transition: all .3s;
			padding: 14px 52px
		}

		.links_list_sticky {
			opacity: 0;
			position: fixed;
			margin: auto;
			top: auto;
			left: 0;
			right: 0;
			bottom: 0;
			width: 1400px;
			-webkit-transition: all 1s;
			transition: all 1s
		}

		.pr_txt_top {
			padding-right: 10px;
			margin-top: 10px;
		}

		#top .txt_blk_br {
			width: auto;
			max-width: 440px;
			padding: 35px 15px;
			border: 3px solid #435669;
			margin-top: -15px;
			margin-left: 27px;
		}

		#top .txt_blk_br.dt {
			padding: 35px 15px;
			margin-top: -5px;
		}

		#top .pr_del_txt {
			max-width: 350px;
			margin: 0 auto;
		}

		#top .txt_blk_br.dt .pr_del_txt {
			max-width: 366px;
		}

		.row_serv_blk .col {
			float: left;
			width: 31.62%;
			margin-right: 2.57%;
			margin-bottom: 30px;
		}

		.row_serv_blk .col.colh {
			width: 48.71%;
		}

		@media (max-width: 1199px) {
			.serv_grid_title {
				font-size: 28px;
			}

			.pr_txt_top {
				font-size: 20px;
				padding-right: 15px;
			}

			#top .txt_blk_br {
				padding-top: 6%;
			}

			.row_serv_blk .col,
			.row_serv_blk .col.colh {
				float: left;
				width: 44%;
				margin: 0 1% 30px 5%;
			}

			.row_serv_blk .col:nth-child(3) {
				margin-right: 1%;
			}

			.row_serv_blk .col:nth-child(5) {
				margin-left: 0;
				width: 100%;
			}
		}

		@media (max-width: 767px) {
			.menu_card-label {
				bottom: 19px;
			}

			#top .row_serv_blk .col {
				float: none;
				display: block;
				width: 100%;
				margin: 0 0 30px 0;
			}

			.pr_txt_top {
				font-size: 19px;
				padding-right: 0;
			}

			#top .txt_blk_br {
				margin: 0 auto 50px;
				padding: 25px 15px;
				min-height: 0;
			}
		}

		#top .row_serv_blk .col .icon_block {
			padding: 40px 30px;
			background: 0 0;
			border: 0;
			box-sizing: border-box;
			box-shadow: inset 0 0 0 2px #BDC4CB;
			position: relative;
			vertical-align: middle;
			min-height: 290px;
			max-width: 370px;
			margin: 0 auto
		}

		@media only screen and (min-width: 1200px) {
			body .container {
				padding: 0
			}
		}

		@media only screen and (max-width: 1199px) {
			body#top #header_main .container {
				padding: 0 20px
			}
		}

		@media only screen and (max-width: 989px) {
			#advanced_menu_toggle {
				border-radius: 0;
				height: 40px;
				width: 40px
			}

			#advanced_menu_hide {
				background-color: #fff;
				border-color: transparent
			}
		}

		@media only screen and (max-width: 990px) and (min-width: 767px) {
			#top .home_header_title {
				font-size: 26px;
				line-height: normal
			}
		}

		@media only screen and (max-width: 1130px) and (min-width: 990px) {
			body#top .logo a img {
				width: 200px
			}

			.logo,
			.logo a {
				height: auto
			}
		}

		@media only screen and (max-width: 989px) {
			#header_main .phone-info {
				right: 100px;
				width: auto
			}
		}

		@media only screen and (max-width: 767px) {
			.serv_grid_title {
				font-size: 26px;
			}

			.title_underl::after {
				margin: 7px auto 0;
			}

			.header_content {
				width: 330px;
				height: 120px;
				left: 50px;
				top: 100px
			}

			.links_list li,
			.links_list_sticky li {
				margin: 0;
				display: block
			}

			.links_list ul,
			.links_list_sticky ul {
				width: 280px;
				margin: 0 auto
			}

			[id*=header_wrap_eng] .links_list li a,
			.links_list li a,
			.links_list_sticky li a {
				font-size: 14px;
				padding: .3em .8em
			}

			#home_blk_f .template-page {
				padding: 0 0 90px
			}

			.responsive #scroll-top-link {
				display: block;
				right: 20px;
				bottom: 20px;
				left: auto;
			}

			body#top .logo a img {
				display: none
			}

			body#top .logo a {
				background: url({$theme_path}/static/picture/logo_mobile.svg) 0 0/93px 80px no-repeat
			}

			#header_wrap_policy .container {
				margin-top: 23%;
			}

			.responsive #top .logo {
				width: 156px;
				position: relative;
				top: 7px
			}

			#header::after {
				content: none;
				display: block;
				min-height: 60px;
				width: 100%;
				background: url({$theme_path}/static/picture/header_edge_mobile.png) 0 0/100% no-repeat;
				margin-top: -2px
			}

			.responsive #top #main {
				padding-top: 60px !important
			}

			.responsive #header_main .container {
				height: 60px !important
			}

			#header_main .phone-info {
				height: 60px;
				line-height: 60px;
				top: 50%;
				margin-top: -30px
			}

			.responsive #top #wrap_all #header {
				position: fixed;
			}

			#home_blk_f {
				padding-bottom: 0
			}

			.work_cont_blk br {
				display: none
			}

			.blk_title {
				font-size: 25px
			}
		}

		@media only screen and (max-width: 650px) {
			#top .header_title_re {
				max-width: 350px;
			}

			.header_btn {
				font-size: 14px;
				width: 130px
			}
		}

		@media only screen and (max-width: 600px) {
			#header_main .phone-info {
				right: 70px
			}
		}

		@media only screen and (max-width: 560px) {
			.home_header_content .header_btn {
				font-size: 16px;
				width: 176px
			}
		}

		@media only screen and (max-width: 450px) {
			.home_header_content .header_btn {
				font-size: 14px;
				width: 130px
			}

			.home_header_content .header_btn.btnf {
				margin-right: 8px
			}

			.links_list {
				top: 40%
			}

			#top .header_title_servit {
				font-size: 26px
			}

			.header_content {
				padding: 4% 0 0 9%;
				left: 16px;

				width: 320px;
				height: 110px;
				padding-left: 0;
			}

			#top div[id*=header_wrap_] .header_title {
				font-size: 22px
			}
		}

		@media only screen and (max-width: 400px) {
			.serv_grid_title {
				font-size: 22px;
			}

			#top .header_title_re {
				font-size: 32px;
			}

			.responsive #header_main .container {
				height: 60px !important
			}

			.responsive #top .logo {
				top: 7px;
				width: 66px;
				height: 60px !important
			}

			.sprite-icon-phone {
				width: 17px;
				height: 17px;
				margin: 0 2px -4px 0
			}

			#header_main .phone-info a {
				font-size: 12px
			}

			body#top .logo a {
				background-size: 66px 56px
			}

			#header_main .phone-info {
				right: 53px
			}
		}

		@media (max-width: 1700px) {
			#top .home_header_title {
				font-size: 26px;
			}
		}

		@media (max-width: 1360px) {
			#top .home_header_title {
				font-size: 26px;
			}

			.home_header_txt {
				margin: 8px 0 35px;
			}
		}

		@media (max-width: 1200px) {
			#top .home_header_title {
				font-size: 26px;
				line-height: 1;
			}

			.home_header_txt {
				font-size: 25px;
				margin: 8px 0 25px;
			}
		}

		@media (max-width: 990px) {
			#top .home_header_title {
				font-size: 26px;
			}

			.home_header_txt {
				font-size: 20px;
			}

			.home_header_content .header_btn {
				padding: 12px 0;
				font-size: 15px;
				width: 165px;
			}
		}

		@media (max-width: 840px) {
			#top .home_header_title {
				font-size: 26px;
			}

			.home_header_txt {
				margin: 8px 0 15px;
			}

			.home_header_content .header_btn {
				padding: 10px 0;
				width: 160px;
			}

			.home_header_content .header_btn.btnf {
				margin-right: 10px;
			}
		}

		@media (max-width: 767px) {
			#top .home_header_title {
				font-size: 22px;
				margin-top: 55px;
				line-height: normal;
			}

			.home_header_txt {
				font-size: 14px;
				margin: 8px 0 15px;
			}

			.home_header_content .header_btn {
				padding: 10px 0;
			}

			.home_header_content {
				justify-content: flex-end;
				display: flex;
				flex-direction: column;
			}

			.home_header_content .header_btn.btnf {
				margin-right: 7px
			}

			.home_header_content .header_btn {
				padding: 10px 0;
				font-size: 12px;
				width: 116px;
			}
		}

		@media only screen and (min-width: 1921px) {
			#home_blk_f {
				background-image: url({$theme_path}/static/picture/bg3840n.png)
			}
		}

		@media only screen and (max-width: 1920px) and (min-width: 768px) {
			#home_blk_f {
				background-size: 100% auto;
			}
		}

		@media only screen and (max-width: 767px) {
			#home_blk_f {
				background-image: url({$theme_path}/static/picture/home-top-m.png);
				background-size: auto 351px;
			}
		}

		body#top .logo.logo-magento-developer {
			display: block;
			width: 226px;
			height: auto;
			float: none;
			position: static;
		}

		.header-magento-developer .inner-container {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		#header.header-magento-developer {
			background-image: url({$theme_path}/static/picture/magento-developer-top.webp);
			background-attachment: scroll;
			background-repeat: no-repeat;
			background-position: top right;
			padding: 35px 0 65px;
			position: static !important;
			background-size: cover;
		}

		body.webp-no-support #header.header-magento-developer {
			background-image: url({$theme_path}/static/picture/magento-developer-top.png);
		}

		.header-magento-developer .main_menu {
			position: static;
			line-height: normal;
			height: 100%;
		}

		.header-magento-developer .main_menu .av-main-nav-wrap {
			float: none;
		}

		.header-magento-developer .main_menu .av-main-nav-wrap {
			float: none;
		}

		.header-magento-developer .av-main-nav {
			display: flex;
			align-content: center;
		}

		.header-magento-developer .av-main-nav li {
			float: none;
			line-height: normal;
			padding: 0;
			margin-right: 36px;
		}

		.header-magento-developer .main_menu ul:first-child>li a {
			height: 100%;
			line-height: normal;
			padding: 0;
		}

		#top .header-magento-developer .av-main-nav>li>a .avia-menu-text {
			font-size: 14px;
			line-height: 41px;
			font-family: "AvenirLTStd-Book";
			color: #fff;
			text-transform: uppercase;
			letter-spacing: 1px;
		}

		.header-magento-developer .av-main-nav li a[title='contact us'] {
			height: 40px !important;
			max-height: 100%;
			text-align: center;
			color: #fff;
			background-color: transparent;
			width: 170px;
			border: 2px solid #f17407;
			line-height: normal !important;
			padding: 0;
			margin-top: 0;
			margin-left: 0;
			border-radius: 50px;
		}

		.header-magento-developer .av-main-nav li:last-child {
			margin-right: 0;
		}

		.header-magento-developer .top-block {
			display: flex;
			margin-top: 100px;
			justify-content: space-between;
			flex-wrap: wrap;
			position: relative;
		}

		.header-magento-developer .top-block .txt-container .title {
			color: #fff;
			font-size: 50px;
			font-family: "AvenirLTStdBlack";
			margin-bottom: 20px;
		}

		.header-magento-developer .top-block .txt-container .txt {
			color: #fff;
			font-size: 20px;
			line-height: 36px;
			font-family: "AvenirLTStd-Book";
			max-width: 697px;
		}

		.wrap_request_form {
			background-color: #fff;
			border-radius: 10px;
			max-width: 402px;
			padding: 45px 30px 10px;
		}

		.wrap_request_form .title {
			text-align: center;
			font-size: 20px;
			font-family: "AvenirLTStd-Heavy";
			letter-spacing: 3.2px;
			margin-bottom: 36px;
		}

		#top .wrap_request_form input[type="email"],
		#top .wrap_request_form input[type="text"],
		#top .wrap_request_form textarea {
			border: 1px solid #acacac;
			border-radius: 10px;
			background: transparent;
			color: #39393f;
		}

		.wrap_request_form input[type="submit"],
		.wrap_request_form input[type="button"] {
			width: 100%;
			border-radius: 10px;
			background-color: #4560a4;
			color: #fff;
			text-transform: uppercase;
			font-size: 16px;
			font-family: "AvenirLTStd-Book";
			letter-spacing: 1px;
			margin-top: 6px;
			border-radius: 30px;
			outline: none;
			border: 2px solid #4560a4;
			height: 38px;
			transition: all 0.3s ease-out;
		}

		.header-magento-developer .mc {
			position: absolute;
			background-color: #fff;
			border-top-right-radius: 80px;
			border-bottom-right-radius: 80px;
			padding: 33px 70px 33px 0;
			bottom: -18px;
			left: calc(-1 * (100vw - 100%) / 2);
			width: calc((100vw - 100%) / 2 + 423px);
			text-align: right;
		}

		.list-logo {
			background-color: #f6f5f5;
		}

		.list-logo ul {
			display: flex;
			height: 131px;
			align-items: center;
			margin-left: 0;
			justify-content: center;
		}

		.list-logo ul li {
			text-align: center;
			margin: 0 53px;
			max-height: 41px;
		}

		.list-logo ul li img {
			display: block;
			max-height: 41px;
		}

		.features .md-title {
			margin-bottom: 6px;
			text-align: center;
		}

		.md-sub-t {
			font-family: "AvenirLTStd-Book";
			font-size: 30px;
			text-align: center;
			line-height: 50px;
		}

		body#top.page-template-page-m-php [class*='f-underl'] {
			position: relative;
			z-index: 0;
		}

		.page-template-page-m-php [class*='f-underl']:after {
			content: "";
			position: absolute;
			width: 100%;
			background-color: #f17407;
			bottom: 0;
			left: 0;
			z-index: -1;
		}

		.page-template-page-m-php .f-underl-5:after {
			height: 5px;
		}

		.feature .md-m-title {
			margin-bottom: 7px;
		}

		.list-features {
			margin: 80px 0 30px;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
		}

		.features .wr-image {
			width: 127px;
			height: 168px;
			border-radius: 10px;
			float: left;
			-webkit-box-shadow: 0px 0px 11px 2px rgba(201, 199, 201, 1);
			-moz-box-shadow: 0px 0px 11px 2px rgba(201, 199, 201, 1);
			box-shadow: 0px 0px 11px 2px rgba(201, 199, 201, 1);
			display: flex;
			align-items: center;
			justify-content: center;
			margin-right: 30px;
		}

		@media only screen and (max-width: 1200px) {
			.header-magento-developer .top-block .txt-container .title {
				font-size: 40px;
			}

			.header-magento-developer .top-block .txt-container .txt {
				max-width: 510px;
			}

			.md-m-txt {
				line-height: 24px;
			}

			#header.header-magento-developer {
				padding: 35px 0 205px;
			}

			.header-magento-developer .mc {
				bottom: -170px;
			}

			.md-m-title {
				font-size: 18px;
			}
		}

		@media only screen and (max-width: 1040px) {
			.header-magento-developer .top-block .txt-container .txt {
				max-width: 100%;
			}

			.wrap_request_form {
				margin: 50px auto 0;
			}
		}

		@media only screen and (max-width: 989px) {
			.responsive.html_mobile_menu_tablet .page-template-page-m .container #advanced_menu_toggle {
				line-height: 39px;
				margin-top: -20px;
			}
		}

		@media only screen and (max-width: 767px) {
			body#top.page-template-page-m .logo a {
				background: transparent;
			}

			body#top.page-template-page-m .logo a img {
				display: block;
			}

			.responsive #top.page-template-page-m .logo {
				height: auto !important;
			}

			.header-magento-developer .top-block {
				margin-top: 55px;
			}

			.header-magento-developer .top-block .txt-container .title {
				font-size: 35px;
			}

			.wrap_request_form .title {
				font-size: 18px;
				letter-spacing: 2.2px;
			}

			.header-magento-developer .mc {
				right: 0;
				width: auto;
			}

			.list-logo ul li {
				width: auto;
				margin: 0 10px;
			}

			#main .md-sub-t {
				font-size: 25px;
				line-height: 35px;
			}

			.list-features {
				margin: 40px 0 10px;
			}

			.features .wr-image {
				float: none;
				margin: 0 auto 20px;
			}

			.service .md-m-title,
			.feature .md-m-title {
				text-align: center;
			}
		}

		@media only screen and (max-width: 540px) {
			.header-magento-developer .mc {
				padding: 33px 30px 33px 0;
			}

			.header-magento-developer .mc img {
				max-width: 300px;
			}
		}

		@media only screen and (max-width: 400px) {
			.av-sort-by-term .category-title {
				font-size: 18px;
			}

			.header-magento-developer .mc img {
				max-width: 230px;
			}
		}

		@media only screen and (max-width: 1030px) and (min-width: 990px) {
			.av-main-nav>li>a {
				padding: 0 10px;
			}
		}

		@media only screen and (max-width: 1199px)and (min-width: 990px) {
			.header-magento-developer .av-main-nav li {
				margin-right: 20px;
			}

			#top .header-magento-developer .av-main-nav>li>a .avia-menu-text {
				font-size: 12px;
			}

			body#top .logo.logo-magento-developer {
				width: 180px;
			}
		}

		.av-sort-by-term {
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
		}

		.av-sort-by-term>div {
			width: 275px;
		}

		body .main_color .list-options a {
			padding: 7px 18px;
			height: 45px;
			width: 100%;
			text-align: left;
			display: flex;
			margin: 0 0 9px 0;
			cursor: pointer;
			font-size: 14px;
			align-items: center;
		}

		body .main_color .list-options a.active-sort {
			font-family: "AvenirLTStd-Heavy";
		}

		.av-sort-by-term .category-title {
			font-family: "AvenirLTStd-Heavy";
			letter-spacing: 0.05em;
			text-transform: uppercase;
			margin-bottom: 15px;
			text-align: left;
		}

		.av-sort-by-term .c_select {
			position: relative;
			cursor: pointer;
		}

		body#top .av-sort-by-term .active-option {
			border: 1px solid #223343;
			height: 48px;
			font-size: 14px;
			text-align: left;
			line-height: 47px;
			padding-left: 20px;
			border-radius: 2px;
			transition-property: all;
			transition-duration: 1s;
		}

		body#top .av-sort-by-term .active-option:after {
			content: url('{$theme_path}/static/picture/arrow_forward_ios_24px.svg');
			display: inline-block;
			position: absolute;
			right: 18px;
		}

		body#top .av-sort-by-term .list-options {
			display: none;
			position: absolute;
			top: 64px;
			border: 1px solid #223343;
			border-radius: 2px;
			padding: 5px 0;
			margin: 0;
			list-style: none;
			background-color: #fff;
			width: 100%;
			z-index: 4;
		}

		.av-masonry-sor .country .sprite {
			vertical-align: middle;
		}

		@media (min-width: 1200px) {
			.av-masonry-container {
				margin: 0 -15px auto;
				width: calc(100% + 30px);
			}

			#header_wrap_home_banner {
				min-height: 580px;
			}
		}

		body#top .av-sort-by-term .active-option.active-select:after {
			content: url('{$theme_path}/static/picture/arrow_up_ios_24px.svg');
		}

		@media (max-width: 1200px) {
			.av-sort-by-term {
				justify-content: space-around;
			}

			.av-sort-by-term>div {
				margin-bottom: 35px;
			}
		}

		.info-label .arrow {
			margin-right: 7px;
		}

		@media (min-width: 2200px) {

			#portfolio_fj_item_descr_block,
			div[id*=header_wrap_] {
				height: 800px;
				max-height: 800px;
				min-height: 800px;
			}
		}
	