.process-accordion .process-block {
	margin-bottom: 30px;
	cursor: pointer;
}
.process-accordion .process-block-title {
	transition: 0.3s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.process-accordion .process-block-title .arrow-down .icon {
	transition: 0.3s;
	position: relative;
	font-weight: 900;
	transform: rotate(0deg);
	fill: #fff;
	stroke: #ee723c;
	width: 30px;
	max-width: 30px;
	max-height: 30px;
	height: 30px;
}
.process-accordion .process-block.active .process-block-title .arrow-down .icon {
	transform: rotate(180deg);
}
.process-accordion .process-block-title h3 {
	font-weight: 900;
	color: #ee723c;
	font-size: 36px;
	padding: 0;
}
.process-accordion .process-block-text {
	font-weight: 300;
	font-size: 20px;
	line-height: 1.4;
	display: none;
}

@media only screen and (max-width: 768px) {
	.process-accordion .process-block-title .arrow-down .icon {
		width: 20px;
		max-width: 20px;
		max-height: 20px;
		height: 20px;
	}
	.process-accordion .process-block-title h3 {
		font-size: 28px;
	}
	.process-accordion .process-block-text {
		font-size: 16px;
	}
}


.faq-accordion .faq-block {
	margin-bottom: 30px;
	cursor: pointer;
	border: 1px solid #293238;
	border-radius: 14px;
	padding: 20px;
}

.faq-accordion .faq-block.active {
	border: 1px solid #ee723c;
}

.faq-accordion .faq-block-title {
	transition: 0.3s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.faq-accordion .faq-block.active .faq-block-title {
	margin-bottom: 10px;
}

.faq-accordion .faq-block-title .arrow-down .icon {
	transition: 0.3s;
	position: relative;
	font-weight: 900;
	transform: rotate(0deg);
	fill: #fff;
	stroke: #293238;
	width: 30px;
	max-width: 30px;
	max-height: 30px;
	height: 30px;
}
.faq-accordion .faq-block.active .faq-block-title .arrow-down .icon {
	transform: rotate(180deg);
	stroke: #ee723c;
}

.faq-accordion .faq-block-title h3 {
	font-weight: 900;
	color: #293238;
	font-size: 30px;
	padding: 0;
}

.faq-accordion .faq-block.active .faq-block-title h3 {
	color: #ee723c;
}

.faq-accordion .faq-block-text {
	font-weight: 300;
	font-size: 20px;
	line-height: 1.4;
	display: none;
}

@media only screen and (max-width: 768px) {
	.faq-accordion .faq-block-title .arrow-down .icon {
		width: 20px;
		max-width: 20px;
		max-height: 20px;
		height: 20px;
	}
	.faq-accordion .faq-block-title h3 {
		font-size: 28px;
	}
	.faq-accordion .faq-block-text {
		font-size: 16px;
	}
}



.overlay {
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 99999;
}

.nonebox {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 900px;
	height: auto;
	max-height: 80%;
	z-index: 999999;
	border-radius: 10px;
	background-color: #f4f3f4;
	padding: 25px;
	box-sizing: border-box;
	display: none;
	overflow: auto;
}

body.nonebox-active {
	overflow: hidden;
}

.nonebox .box-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 34px;
	height: 34px;
	border-radius: 100%;
	border: 2px solid #ee723c;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.nonebox .box-close svg {
	width: 30px;
	height: 30px;
	fill: #ee723c;
}

.team-items {
	gap: 20px;
}

.team-items .team-item {
	width: calc(25% - 15px);
	/* 	min-height: 300px; */
	aspect-ratio: 1 / 1;
	position: relative;
	transition: 0.3s;
}

.team-items .team-item:hover {
	transform: scale(1.03);
}

.team-items .team-item .team-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	border-radius: 10px;
}

.team-items .team-item .team-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.team-items .team-item .team-image::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgb(238, 114, 60, 0.5) 0%, rgba(255,255,255,0) 80%);
	opacity: 0;
	transition: 0.3s;
}

.team-items .team-item:hover .team-image::after {
	opacity: 1;
}

.team-items .team-item .team-text {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 80%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;

}

.team-items .team-item .team-title h3 {
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 0;
	color: #fff;
}
.nonebox-row {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.nonebox-team-image {
	width: 35%;
}

.nonebox-team-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}

.nonebox-team-text {
	width: 65%;
	padding-left: 25px;
}

.nonebox-team-title h3 {
	font-weight: 700;
	color: #293238;
	font-size: 38px;
}

.nonebox-team-position {
	color: #ee723c;
	font-size: 18px;
	font-weight: 700;
	padding: 0 0 10px;
}

.nonebox-team-about {
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: #293238;
}

.nonebox-team-loves {
	font-size: 16px;
	color: #293238;
}

.nonebox-team-loves span {
	color: #ee723c;
	font-weight: 700;
}

@media only screen and (max-width: 1300px) {
	.team-items .team-item {
		width: calc(33.3% - 15px);
	}
}

@media only screen and (max-width: 980px) {
	.team-items .team-item {
		width: calc(50% - 10px);
	}
}

@media only screen and (max-width: 767px) {

	.team-items .team-item {
		width: 100%;
		aspect-ratio: 5 / 4;
/* 		height: 300px; */
		position: relative;
	}
	
	.team-items .team-item .team-image img {
		object-position: top;
	}

	.nonebox-row {
		flex-direction: column;
		align-items: center;
	}

	.nonebox-team-image {
		width: 200px;
		height: 200px;
		border-radius: 100%;
		overflow: hidden;
		margin-bottom: 15px;
	}

	.nonebox-team-text {
		width: 100%;
		text-align: center;
	}

	.nonebox-team-about,
	.nonebox-team-loves {
		text-align: left;
	}

}

/* PROJECT LOOP */

.project-items {
	gap: 40px;
}

.project-items .project-item {
	display: block;
	transition: 0.3s;
}

.project-items .project-item.col-2 {
	width: calc(50% - 20px);
}

.project-items .project-item.col-3 {
	width: calc(33% - 27px);
}

.project-items .project-item.col-4 {
	width: calc(25% - 30px);
}

.project-items .project-item.full-width {
	width: 100%;
	margin-bottom: 40px;
}

.project-items .project-item.full-width:last-child {
	margin-bottom: 0;
}

.project-items .project-item .project-image {
	aspect-ratio: 2 / 1;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0);
	transition: 0.3s;
	background-color: #f1f1f1;
}

.project-items .project-item:hover .project-image {
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
	transform: translatey(-5px);
}

.project-items .project-item .project-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.project-items .project-item .project-title h3 {
	font-weight: 700;
}

.project-items .project-item.text-block h2 {
	font-size: 46px;
	font-weight: 900;
	color: #ee723c;
}

.project-items .project-item.text-block p {
	font-size: 16px;
	color: #333;
}

.project-items .project-item.text-block .button {
	margin-top: 20px;
	border-radius: 20px;
}

/* PROJECT HOME LOOP */

.home .project-items .project-item .project-text {
	color: #fff;
}

.home .project-items .project-item .project-title h3 {
	font-size: 18px;
	padding-bottom: 0;
	color: #fff;
}

.home .project-items .project-item .project-image {
	aspect-ratio: 1 / 1;
}


/* PROJECT PAGE */

.project-page .project-cover {
	max-height: 500px;
}

.project-page .project-cover video,
.project-page .project-cover iframe,
.project-page .project-cover img {
	width: 100%;
	height: 100%;
	max-height: inherit;
	object-fit: cover;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
	border-radius: 10px;
	overflow: hidden;
}

.project-page .project-cover .fluid-width-video-wrapper {
	max-height: inherit;
	position: relative;
}

.project-page .project-cover .fluid-width-video-wrapper iframe {
	aspect-ratio: 16/9;
/* 	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	height: 100%;
	max-height: inherit;
}

.project-page .project-text {
	width: 100%;
	margin-top: 40px;
}

.project-page .project-text img {
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
	border-radius: 10px;
	overflow: hidden;
}

.project-page .project-text h2 {
	font-size: 46px;
	font-weight: 800;
	color: #333;
}

.project-page .project-text p {
	color: #333;
	font-weight: 400;
	font-size: 16px;
}

.project-page .project-gallery {
	gap: 40px 4%;
	padding: 20px 10px;
	margin-top: 40px;
}

.project-page .project-gallery .gallery-item {
	width: 48%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
}

.project-page .project-gallery .gallery-item video,
.project-page .project-gallery .gallery-item img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
	border-radius: 10px;
	overflow: hidden;
}

.project-page .project-cover .ytp-chrome-top, 
.project-page .project-cover .ytp-chrome-bottom {
	display: none !important;
}


/* MEDIA QUERY */

@media only screen and (max-width: 980px) {
	.project-items .project-item.col-3,
	.project-items .project-item.col-4 {
		width: calc(50% - 20px);
	}
}

@media only screen and (max-width: 767px) {
	.project-items .project-item.col-2,
	.project-items .project-item.col-3,
	.project-items .project-item.col-4 {
		width: 100%;
	}
	.project-text {
		max-width: 100% !important;
	}
}


/* -------- HEADER -------- */

.nonebox-active .et-l--header {
	top: -110%;
}

.et-l--header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	transition: 0.4s;
}

.header {
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
	background-color: #fff;
}

.header .container {
	position: relative;
	width: 96%;
	margin: auto;
}

.header .navigation-wrap {
	width: 100%;
}

.header .custom-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	list-style: none;
}
	
.header .custom-menu > li {
	padding: 30px 10px;
}

.header .custom-menu li a {
	padding: 10px 2px;
	color: #293238;
	transition: 0.3s;
}

@media only screen and (min-width: 1180px) {
	.header .custom-menu li a {
		white-space: nowrap;
	}
}

.header .custom-menu > li > .sub-menu {
	width: 100%;
	max-width: 1200px;
	left: 50%;
	transform: translate(-50%, 0%);
	top: -300%;
	position: absolute;
	border: 2px solid #ee723c;
	border-top: none;
	border-radius: 0 0 30px 30px;
	padding: 25px;
	padding-bottom: 90px;
	background-color: #fff;
/* 	background-image: url('/wp-content/uploads/2024/01/ads_menu2-e1705921052444.webp'); */
/* 	background-size: 300px; */
/* 	background-repeat: no-repeat; */
/* 	background-position: 98% 98%; */
	list-style: none;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
	z-index: -1;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	row-gap: 20px;
	opacity: 0;
	transition: 0.6s;
}

.header .custom-menu > li span {
	display: none;
}

.header .custom-menu > li > .sub-menu > li {
	width: 18%;
	margin: 0 1%;
}

.header .custom-menu > li.menu-item-has-children:hover .sub-menu {
	top: 100%;
	opacity: 1;
}

.header .custom-menu > li.menu-item-has-children > a {
	position: relative;
	pointer-events: none;
}

.header .custom-menu > li.menu-item-has-children > span {
	position: relative;
	display: block;
	width: 100%;
}

.header .custom-menu > li.menu-item-has-children > span i {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 20px;
	bottom: -12px;
	left: calc(50% - 10px);
	font-size: 16px;
	color: #293238;
}

.header .custom-menu > li.menu-item-has-children:hover > span i {
	color: #ee723c;
}

.header .custom-menu li:hover > a {
	color: #ee723c;
}

.header .custom-menu li.current_page_item > a,
.header .custom-menu li.current_page_item span i {
	color: #ee723c !important;
	font-weight: 700;
}

.header .custom-menu > li > .sub-menu > li > a {
	border: 1px solid #ee723c;
	border-radius: 4px;
	padding: 5px 8px;
	width: 100%;
	display: block;
	font-size: 18px;
	font-weight: 700;
}

/* .header .custom-menu > li > .sub-menu > li.current-menu-item > a, */
.header .custom-menu > li > .sub-menu > li:hover > a {
	background-color: #ee723c;
	color: #333;
}

.header .custom-menu > li > .sub-menu > li ul {
	list-style: none;
}

.header .custom-menu > li > .sub-menu > li ul {
	padding: 5px 8px !important;
}

.header .custom-menu > li > .sub-menu > li.header-nav-services {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 25%;
}

.header .custom-menu > li > .sub-menu > li.header-nav-services:hover > a {
	background: none !important;
}

.header .custom-menu > li > .sub-menu > li.header-nav-services a {
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 1140px) {
	.header .custom-menu > li > .sub-menu > li > a {
		font-size: 15px;
	}
}

@media only screen and (max-width: 980px) {
	.header .container {
		padding: 5px 0;
	}
	.header .button.contacts-button {
		display: none;
	}
	.header .custom-menu > li > .sub-menu > li.header-nav-services {
		display: none !important;
	}
}

/* DARK THEME */

.header.dark .custom-menu > li > .sub-menu {
	background-color: #293238;
}

.header.dark .custom-menu > li > .sub-menu > li a {
	color: #fff;
}

.header.dark .custom-menu > li > .sub-menu > li.current-menu-item > a,
.header.dark .custom-menu > li > .sub-menu > li:hover > a {
	color: #fff;
}

.et_monarch .et_social_top li a, 
.et_monarch .et_social_media_wrapper .et_social_top li .et_social_share {
	background-color: #fff;
}

.et_monarch .et_social_top li a:hover i:before{
	color: #ee723c;
}

.blog-author {
	display: flex !important;
	flex-direction: row-reverse;
	align-items: center;
}

.blog-author .et_pb_team_member_description h4 {
	padding: 0;
}

.blog-author .et_pb_team_member_image {
	width: 60px !important;
	min-width: 60px;
	height: 60px;
	margin: 0 !important;
	border-radius: 100%;
	overflow: hidden;
}

.blog-author-info {
	margin-bottom: 20px;
}

.blog-author-info-name h2 {
	font-size: 50px;
	font-weight: 600;
}

.blog-author-info-name h6 {
	font-size: 20px;
	font-weight: 400;
}

.blog-author-info-image {
	width: 100px;
	min-width: 100px;
	height: 100px;
	border-radius: 100%;
	overflow: hidden;
}

.blog-related-posts-image {
	width: 100px;
	min-width: 100px;
	height: 100px;
	margin-right: 20px;
	border-radius: 10px;
	overflow: hidden;
	background: url('/wp-content/uploads/2023/09/ads_logo.svg') no-repeat center;
	background-size: 60%;
	background-color: #FEFEFE;
}

.blog-related-posts-title {
	font-weight: 400;
}

.blog-author-info-image img,
.blog-related-posts-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.other-blog-links article {
	padding: 0;
	aspect-ratio: 1/1;
}

.other-blog-links article .et_pb_image_container {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.blogs-items {
	gap: 30px;
}

.blogs-items .blogs-item {
	width: calc(33.3% - 20px);
}

.blogs-items .blogs-item .blogs-item-image {
	aspect-ratio: 3 / 2;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0);
	transition: 0.3s;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
	background: url('/wp-content/uploads/2023/09/ads_logo.svg') no-repeat center;
	background-size: 30%;
	background-color: #EFEFEF;
}

.blogs-items .blogs-item .blogs-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blogs-items .blogs-item:hover .blogs-item-image {
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
	transform: translatey(-5px);
}

.blogs-items .blogs-item .blogs-item-title h3 {
	font-weight: 700;
	line-height: 1.1;
}

.et_pb_blog_grid_wrapper article .entry-title {
	margin-bottom: 5px;
}

.et_pb_blog_grid_wrapper article,
.et_pb_blog_grid_wrapper article .entry-featured-image-url {
	margin-bottom: 15px !important;
}

.et_pb_blog_grid_wrapper article .et_pb_image_container {
	margin-bottom: 0 !important;
}

@media only screen and (max-width: 767px) {
	.blogs-items .blogs-item {
		width: 100%;
	}
	.blog-author {
		flex-direction: row;
	}
	.blog-author .et_pb_team_member_image {
		margin-right: 15px;
	}
}



.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.blog-row .blog-col {
	width: 48%;
	margin: 20px 0;
}

.blog-row .blog-col p {
	color: #293238;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.6em;
}

.blog-row .blog-col.full-width {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.blog-row .blog-col {
		width: 100%;
	}
}

/* -------- TOGGLE MENU --------- */

.cmn-toggle-switch {
	display: none;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 50px;
	min-width: 50px;
	height: 50px;
	font-size: 0;
	/* 	top: 0; */
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	z-index: 9999;
	align-items: center;
}

.cmn-toggle-switch:focus {
	outline: none;
}

.cmn-toggle-switch span {
	display: block;
	position: absolute;
	left: 15%;
	right: 15%;
	height: 2px;
	background-color: #fff;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	content: "";
}

.cmn-toggle-switch span::before {
	top: -10px;
}

.cmn-toggle-switch span::after {
	bottom: -10px;
}

.cmn-toggle-switch {
	background-color: #ed6b32;
}

.cmn-toggle-switch span {
	-webkit-transition: background 0s .3s;
	transition: background 0s .3s;
}

.cmn-toggle-switch span::after,
.cmn-toggle-switch span::before {
	-webkit-transition-duration: .3s, .3s;
	transition-duration: .3s, .3s;
	-webkit-transition-delay: .3s, 0s;
	transition-delay: .3s, 0s;
}

.cmn-toggle-switch span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}

.cmn-toggle-switch span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}

.cmn-toggle-switch.active {
	background-color: #cb0032;
	transform: translatey(60px);
}

.cmn-toggle-switch.active span {
	background: 0 0;
}

.cmn-toggle-switch.active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cmn-toggle-switch.active span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.cmn-toggle-switch.active span::after,
.cmn-toggle-switch.active span::before {
	-webkit-transition-delay: 0s, .3s;
	transition-delay: 0s, .3s;
}

/* -------- MOBILE MENU -------- */

@media only screen and (max-width: 980px) {
	
	.header .custom-menu > li.menu-item-has-children > span i {
		display: none;
	}
	
	.cmn-toggle-switch {
		display: flex;
	}

	.header .custom-menu {
		position: fixed;
		top: 0;
		left: -100%;
		height: 100%;
		width: 100%;
		color: #fff;
		background-color: #293238;
		z-index: 9998;
		-webkit-transition: left 0.5s;
		-moz-transition: left 0.5s;
		-o-transition: top 0.5s;
		transition: 0.5s;
		overflow-y: auto;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
		padding: 80px 70px 50px 20px;
	}
	
	.header .custom-menu::before {
		position: relative;
		content: '';
		display: block;
		margin-top: auto;
	}
	
	.header .custom-menu > li:first-child {
/* 		margin-top: auto; */
	}

	.header .custom-menu > li > .sub-menu {
		width: 100%;
		left: auto;
		transform: none;
		top: auto;
		position: relative;
		border: none;
/* 		border-left: 1px solid #ee723c; */
		border-radius: 0;
		padding: 5px 20px;
		background-color: transparent;
		background-image: none;
		list-style: none;
		box-shadow: none;
		z-index: 10;
		row-gap: 0;
		column-gap: 0;
		opacity: 1;
		transition: 0.6s;
		display: none;
	}
	
	.header .custom-menu > li.menu-item-has-children span {
		display: block;
	}
	
	.header .custom-menu > li.menu-item-has-children span i {
		display: none;
	}

	.header .custom-menu > li.menu-item-has-children > a {
		padding-bottom: 10px;
		pointer-events: all;
	}

	.header .custom-menu > li.menu-item-has-children > a::after {
		display: none;
	}
	
	.header .custom-menu .sub-menu {
		display: none;
	}
	
	.header .custom-menu > li .sub-menu {
		padding-left: 10px;
	}
	
	.header .custom-menu li .sub-menu li .sub-menu {
		padding-left: 25px !important;
	}
	
	.header .custom-menu > li.menu-item-has-children:hover .sub-menu {
		top: auto;
	}
	
	.header .custom-menu > li {
		display: flex;
		width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
		padding: 5px 0;
	}
	
	.header .custom-menu li {
		position: relative;
	}
	
	.header .custom-menu li.menu-item-has-children > a {
		position: initial;
	}
	
	.header .custom-menu li.menu-item-has-children > span {
		position: absolute;
		right: 0;
		top:0;
		width: 40px;
		height: 40px;
		z-index: 99;
		cursor: pointer;
	}
	
	.header .custom-menu li.menu-item-has-children > span::before {
		position: absolute;
		content: '+';
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ed6b32;
		font-size: 28px;
		font-weight: 300;
		right: 0;
		top: 5px;
	}
	
	.header .custom-menu li.menu-item-has-children > span.active::before {
		content: '-';
	}

	.header .custom-menu li a {
		color: #fff;
		font-weight: 300;
		padding: 5px 0;
		width: auto;
	}
	
	.header .custom-menu li:hover > a {
		color:#fff !important;
	}
	.header .custom-menu .current-menu-item > a {
		color: #ed6b32 !important;
	}
	
	.header .custom-menu > li > .sub-menu > li.current-menu-item > a,
	.header .custom-menu > li > .sub-menu > li:hover > a {
		background: none !important;
	}
	
	.header .custom-menu > li > .sub-menu li {
		width: 100%;
		padding: 3px 0;
		font-size: 18px;
	}
	
	.header .custom-menu > li > .sub-menu > li > a {
		border: none;
		font-size: 22px;
		font-weight: 300;
		width: auto;
		display: inline-block;
	}

	.header .custom-menu > li > a {
		font-size: 28px;
	}

	.move {
		overflow: hidden;
	}
	
	.move .custom-menu {
		left: 0;
	}
}