/*
Theme Name: Divi - Child theme
Theme URI: 
Version: 0.8
Description: Divi - Child 
Author: Social Mind
Author URI: http://www.socialmind.gr
Template: Divi
*/
/*@import url(../Divi/style.css);*/
/* =Theme customization starts here

------------------------------------------------------- */

:root {
	--main-color: #a41d3a;
	--second-color: #e5e5e5;
}

@font-face {
	  font-family: 'AC-Nixie';
	  src: URL('/wp-content/themes/Divi-child/fonts/AC-Nixie.otf') format('truetype');
}

@font-face {
	  font-family: 'AkaAcidDosisRegular';
	  src: URL('/wp-content/themes/Divi-child/fonts/AkaAcidDosisRegular.otf') format('truetype');
}

@font-face {
	  font-family: 'PFIsotextPro-Regular';
	  src: URL('/wp-content/themes/Divi-child/fonts/PFIsotextPro-Regular.ttf') format('truetype');
}

@font-face {
	  font-family: 'Calibri';
	  src: URL('/wp-content/themes/Divi-child/fonts/Calibri.ttf') format('truetype');
}

#main-content .et_pb_section {
    padding: 81px 0;
}

/* title */

.et_pb_section .et_pb_column .et_pb_module.main-title.et_pb_text {
	height: 179px;
    display: flex;
    align-items: center;
	margin-bottom: 40px;
}

.main-title h2 {
    font-weight: bold;
    max-width: 290px;
    position: relative;
    line-height: 1.3em;
    padding: 0px;
	font-family: 'Helvetica';
    font-weight: 800;
}

.main-title h2 span {
	color: #a41d3a;
}

.main-title:before {
	content: '';
    width: 165px;
    position: absolute;
    border: 7px solid #e5e5e5;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 11%;
    z-index: -1;
    right: 0;
    aspect-ratio: 1/1;
}

.main-title.light:before {
	border: 7px solid #4e4c4c;
}

.main-title.light h2 {
    color: white;
}

.main-title.light h2 span {
    color: #bd3955;
}

.main-title.centered {
	justify-content: center;
}

.main-title.centered h2 {
    text-align: center;
}

.main-title.centered:before {
    left: 0;
    margin: auto;
}

/* main button */

.main-button.et_pb_text a {
	display: block;
}

.contact-form input.wpcf7-submit, .main-button.et_pb_text a {
    background: no-repeat;
    border: 5px solid;
    font-size: 15px;
    border-color: #e5e5e5;
    color: var(--main-color);
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
	background-image: linear-gradient(var(--main-color), var(--main-color));
  	background-repeat: no-repeat;
	transition: all 0.5s ease;
	background-position: 50% 50%;
	width: fit-content;
	background-size: 0% 0%;
	max-width: 200px;
    text-align: center;
}

.main-button.small.et_pb_text a {
	padding: 12px;
}

.contact-form input.wpcf7-submit:hover, .main-button.et_pb_text a:hover {
	border-color: var(--main-color);
	background-size: 100% 100%;
	color: white;
}

.main-button.centered {
	width: fit-content;
	margin: 0 auto;
}

/* main banner */

.main-banner h1 {
	color: white;
    font-size: 3em;
    letter-spacing: 5px;
    padding-bottom: 0;
    font-weight: 600;
    position: relative;
}

.main-banner h1:before, .main-banner .et_pb_text_inner:before {
    content: '';
    width: 210px;
    position: absolute;
    border: 14px solid #ffffff42;
    top: 0;
    bottom: 0;
    margin: auto !important;
    z-index: -1;
    right: 0;
    box-sizing: border-box;
    left: 0;
    height: 210px;
}

.main-banner {
	min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.main-banner.company {
    background-position: center 61%;
}

.main-banner.homepage {
	background-position: top;
}

.main-banner.clients {
	background-position-x: 29%;
}


.main-banner.news {
	background-position-x: 100%;
}

/* section style */

.section-style-dashed:before {
	content: '';
    width: 20%;
    height: 80%;
    position: absolute;
    top: 0;
    left: 0%;
    border-top: 3px dashed #a41d3a61;
    border-right: 3px dashed #a41d3a61;
    border-bottom: 3px dashed #a41d3a61;
    bottom: 0;
    margin: auto;
}

.section-style-stripe:before {
	content: '';
    width: 10%;
    height: 0%;
    position: absolute;
    background: var(--main-color);
    top: 0;
    left: 0%;
	transition: all 4s ease;
}

.section-style-stripe.et_had_animation:before {
	height: 100%;
}

body.home .section-style-stripe.et_had_animation:before {
	height: 100%;
}

.section-style-stripe.right:before {
	left: unset;
	right: 0;
}

.section-style-dashed.right:before {
	right: 0;
    left: auto;
    border-right: none;
    border-left: 3px dashed #a41d3a61;
}

.main-banner.homepage h3 {
	animation: left-up 1s linear;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translate(-160px, 160px);
	animation-delay: 0.5s;
}

.main-banner.homepage .et_pb_text_inner h3:nth-child(1) {
    margin-bottom: 20px;
}

.main-banner .et_pb_text_inner:before {
	animation: right-down 1s linear;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translate(160px, -160px);
	animation-delay: 0.5s;
}

.main-banner .et_pb_image.logo {
    position: absolute;
    top: calc(-100% - 30px);
    margin: auto;
    left: 0;
    right: 0;
}

@keyframes left-up {
	0% {
		opacity: 0;
		transform: translate(-60px, 60px);
	}
	100% {
		opacity: 1;
		transform: translate(0%, 0%);
	}
}

@keyframes right-down {
	0% {
		opacity: 0;
		transform: translate(60px, -60px);
	}
	100% {
		opacity: 1;
		transform: translate(0%, 0%);
	}
}

/* image with border */

.img-with-border .et_pb_image_wrap:before {
	content: '';
    width: calc(100% + 10px);
    position: absolute;
    margin: auto;
    z-index: -1;
    height: calc(100% + 10px);
    top: 40px;
    left: 40px;
	opacity: 0;
	transition: all 1s ease;
    background: var(--main-color);
}

.img-with-border.et_had_animation .et_pb_image_wrap:before {
	top: 10px;
    left: 10px;
	opacity: 1;
}

/* HEADER - start */

.et_fixed_nav #et-top-navigation {
    -webkit-transition: none;
    transition: none;
}

#main-header.et-fixed-header {
	animation: headeranimation 0.8s linear;
}

#main-header.et-fixed-header, #main-header.et-fixed-header .nav li ul, .et-search-form, #main-header.et-fixed-header .et_mobile_menu {
    background-color: rgb(255 255 255 / 93%);
}

header #logo {
	max-height: 100%;
    padding: 2px 0px;
}

header #top-menu-nav>ul>li>a:hover {
	color: var(--main-color);
	opacity: 1;
}

header #top-menu-nav ul li > a:before, .footer-links > *:before {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    background: var(--main-color);
    left: -0px;
    opacity: 0;
    transition: all 0.5s ease;
    top: 0px;
}

header #top-menu-nav ul li > a:hover:before, .footer-links > *:hover:before {
	top: -5px;
	opacity: 1;
	left: -10px;
}

header #top-menu-nav ul.sub-menu li > a:hover:before {
	top: 4px;
    left: 6px;
}

header .et_mobile_menu li a:hover, header #top-menu.nav ul li a:hover {
	opacity: 1;
	background-color: transparent;
	color: var(--main-color);
}

/* HEADER - end */

/* FOOTER - start */

.footer-links {
	display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links > * {
    margin-bottom: 0px !important;
    font-weight: bold;
}

/* FOOTER - end */

/* HOMEPAGE - start */

.main-banner.homepage h3 span:not(.colored-letter) {
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    background: var(--main-color);
}

.main-banner.homepage h3 span.colored-letter {
	font-weight: bold;
	color: var(--main-color);
}

.services-blurbs {
	display: flex;
	column-gap: 2%;
	justify-content: center;
	row-gap: 20px;
    flex-wrap: wrap;
}

.services-blurbs  > * {
    flex: 0 1 32%;
}

.services-blurbs .et_pb_main_blurb_image {
	margin-bottom: 17px;
}

.services-blurbs .et_pb_blurb h4.et_pb_module_header {
	text-align: center;
    font-weight: bold;
	font-size: 16px;
    line-height: 1.3em;
}

/* .hm-services-section {
	background-image: linear-gradient(90deg, rgb(68 63 70 / 94%) 50%, rgba(252,176,69,0) 50%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/hmepage-services-1.jpg)!important;
}*/ 

.hm-services-section {
	background-image: linear-gradient(90deg, rgb(68 63 70 / 94%) 50%, rgba(252,176,69,0) 50%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2024/03/pexels-felix-mittermeier-957312.jpg)!important;
}

.hm-services-section .main-button a {
	border-color: var(--main-color);
	width: fit-content;
    margin: 0 auto;
}

@media screen and (min-width: 981px) {
	.info-row .services-blurbs.et_pb_column {
		width: 80%;
	}
}

.our-services-text-hm.et_pb_text {
	flex-basis: 100%;
    text-align: center;
}

@media screen and (min-width: 1656px) {
	.projects-hm-section > .et_pb_row {
		padding-left: 16.3vw;
	}
}

@media screen and (max-width: 1655px) {
	.projects-hm-section > .et_pb_row {
		padding-left: 11%;
	}
}

@media screen and (min-width: 981px) { 
	.projects-hm-section > .et_pb_row {
		display: flex;
		align-items: center;
	}
}

.clients-content.homepage .et_pb_column > * {
	flex: 0 1 14%;
}

.homepage-news-section {
	background-image: linear-gradient(90deg, rgb(68 63 70 / 90%), rgb(68 63 70 / 90%) 100%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/homepage-news-1.jpg)!important;
	background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.homepage-news-section {
	background-image: linear-gradient(90deg, rgb(68 63 70 / 90%), rgb(68 63 70 / 90%) 100%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2024/03/pexels-suzy-hazelwood-9111547.jpg)!important;
}

.blog-grid.homepage p, .blog-grid.homepage h2, .blog-grid.homepage p, .blog-grid.homepage .post-meta {
    color: white;
}

.blog-grid.homepage article:hover h2.entry-title {
    color: white;
}

.blog-grid.homepage .et_pb_ajax_pagination_container {
	justify-content: center;
}

.projects-text.homepage {
	max-height: 200px;
	margin-right: 5%;
} 

/* HOMEPAGE - end */

/* Company - start */

.company-main-row {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
}

.company-main-row .main-title {
	flex: 100%;
}

.company-main-row .main-button.small.et_pb_text a {
    padding: 12px;
    width: 100%;
    min-width: 150px;
    margin: 0 auto;
}

.company-main-row .main-button {
    margin-bottom: 0px !important;
    flex: 1;
}

/* Company - end */

/* VISION - start */

.vision-blurb:not(.last) {
	margin-bottom: 30px !important;
}

.vision-blurb .et_pb_blurb_content {
    display: flex;
    align-items: center;
}

.vision-blurb .et_pb_main_blurb_image {
    margin-bottom: 0px;
    width: auto;
}

.vision-blurb span.et_pb_image_wrap.et_pb_only_image_mode_wrap {
    border: 2px solid white;
    padding: 7px;
}

.vision-section > * {
    align-items: center;
}

@media screen and (min-width: 981px) { 
	.vision-section .row-2 {
		margin-left: -20%;
	}
}
/* VISION - end */

/* STRATEGY - start */

.strategy-blurb span.et_pb_image_wrap {
    padding: 9px;
    border: 2px solid white;
}

/* STRATEGY - end */

/* ADVANTAGES - start */

.vision-advantages-column-1 {
	display: flex;
    flex-wrap: wrap;
    gap: 1%;
    row-gap: 30px;
	justify-content: center;
}

.vision-advantages-column-1 > * {
    flex: 0 1 24%;
    margin-bottom: 0px !important;
	min-width: 125px;
}

.vision-advantages-text-1 .et_pb_text_inner:before {
    content: url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/check-1.png);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.2;
}

/* ADVANTAGES - end */

/* TEAM - start */

.team-person span.et-pb-icon {
    position: absolute;
    right: -64px;
    font-size: 22px;
    color: #ffffff;
    padding: 20px;
    background-color: #a41d3a;
	transition: all 0.5s ease;
    border: 1px solid white;
}

.team-person span.et-pb-icon.mail {
    top: -1px;
}

.team-person span.et-pb-icon.phone {
    top: 62px;
}

.team-person span.et-pb-icon.cv {
    top: 124px;
	cursor: pointer;
}

.team-person:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 90%;
    right: -32px;
    border-left: 3px dashed #bdbdbd;
}

.team-person span.et-pb-icon:hover {
    background-color: #df3358;
}

.team-person:after {
	content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    right: -30px;
    border-bottom: 3px dashed #bdbdbd;
    bottom: 9%;
	visibility: visible;
}

#sgpb-popup-dialog-main-div-wrapper .sgpb-fadeIn {
    animation-duration: 0.3s !important;
}

@media screen and (min-width: 981px) {
	.team-row .et_pb_column {
		width: 23.3% !important;
		margin-right: 10% !important;
	}
}

.team-row .et_pb_team_member_description {
	text-align: center;
	min-height: 110px;
    padding: 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	border-top: 1px solid white;
    background: var(--main-color);
}

.team-row .et_pb_team_member_image {
	margin-bottom: 0px;
	margin: 0;
}

.team-row h4.et_pb_module_header {
    font-size: 16px;
}

.team-row .et_pb_team_member_description > div {
	height: 0px;
}

/* TEAM - end */

/* SERVICES - start */

.services-menu {
	padding: 3% 0px;
    background-color: #fafafa;
}

.services-content {
    max-height: 600px;
    overflow: auto;
	padding-top: 25px;
}

.services-menu-item {
	position: relative;
	margin-bottom: 0px !important;
    padding: 20px;
	cursor: pointer;
}

.services-menu-item h4 {
	transition: all 0.5s ease;
	padding-bottom: 0px;
}

.services-menu-item.selected h4 {
	color: white;
}

.services-menu-item:not(.selected):hover h4 {
	color: var(--main-color);
}

.services-menu-item:before {
    content: '';
    width: 0%;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.5s ease;
}

.services-menu-item.selected:before {
	width: 100%;
}

.services-content ul {
	list-style: none;
}

.services-content li {
    position: relative;
    margin-bottom: 13px;
}

.services-content li:before {
    content: url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/liststyle2.png);
    position: relative;
    left: -3px;
    top: 0px;
}


.services-content h3 {
	text-align: center;
    font-weight: bold;
    color: var(--main-color);
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding-bottom: 0;
    max-width: 320px;
	margin-bottom: 30px;
	line-height: 1.3em;
}

.services-content h3:before {
    content: '';
    position: absolute;
    width: 81px;
    aspect-ratio: 1/1;
    border: 5px solid #e5e5e5;
    z-index: -1;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* SERVICES - end */


/* PROJECTS - start */

.quote-text {
	max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border: 7px solid #e5e5e5;
    color: #a41d3a;
    position: relative;
}

.quote-text h2 {
	padding-bottom: 0px;
}

.quote-text:before {
    content: url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/quote2.png);
    position: absolute;
    left: -24px;
    top: -17px;
    background: white;
    padding: 6px;
}

.quote-text:after {
    content: url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2023/08/quote1.png);
    position: absolute;
    right: -24px;
    background: white;
    padding: 6px;
    bottom: -24px;
}

.projects-text {
    max-height: 500px;
    overflow: auto;
}

.projects-text h4 {
    font-weight: bold;
    color: var(--main-color);
}


/* width */
::-webkit-scrollbar {
  	width: 7px;
	height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  	background: #cdcdcd;
}

/* Handle */
::-webkit-scrollbar-thumb {
  	background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  	background: #a41d3acf;
}

/* PROJECTS - end */

/* ARTICLES - start */

.blog-grid .et_pb_ajax_pagination_container {
	display: flex;
    gap: 3%;
	flex-wrap: wrap;
	row-gap: 50px;
    justify-content: center;
}

.blog-grid article * {
    margin: 0px !important;
    padding-bottom: 0px;
}

.blog-grid article {
	flex: 1 1 49%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    max-width: 355px;
}

.blog-grid a.entry-featured-image-url {
    flex: 1;
}

.blog-grid h2.entry-title {
    flex: 2;
    font-size: 15px;
    line-height: 1.2em;
	display: flex;
    align-items: center;
	transition: all 0.5s ease;
}

.blog-grid article:hover h2.entry-title {
	color: var(--main-color);
}

.blog-grid p.post-meta {
    flex: 1;
	font-style: italic;
}

.blog-grid .post-content {
    flex: 1;
}

.blog-grid a.entry-featured-image-url img {
    height: 230px;
    object-fit: cover;
}

.blog-grid .clearfix:after {
	display: none;
}

.blog-grid article:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    border: 3px solid var(--main-color);
    left: 0px;
    top: 0px;
    z-index: 1;
	opacity: 0;
    pointer-events: none;
	transition: all 0.5s ease;
}

.blog-grid article:hover:before {
	left: -20px;
    top: 20px;
	opacity: 1;
}

.inside-post-image .et_pb_image_wrap {
    text-align: center;
}

.inside-post-image .et_pb_image_wrap img {
	object-fit: contain;
    max-height: 600px;
    width: auto;
    margin: 0 auto;
}

.inside-post-image {
	width: fit-content;
    margin: 0 auto;
}

/* ARTICLES - end */

.contact-blurb .et_pb_main_blurb_image {
    margin-bottom: 15px;
    border: 5px solid var(--main-color);
    padding: 25px;
	background: transparent;
	transition: all 0.5s ease;
}

.contact-blurb:hover .et_pb_main_blurb_image {
	background: var(--main-color);
}

.contact-blurb .et-pb-icon {
	transition: all 0.5s ease;
}

.contact-blurb:hover .et-pb-icon {
	color: white !important;
}

.contact-map iframe {
	filter: grayscale(1);
	transition: all 0.5s ease;
}

.contact-map iframe:hover {
	filter: grayscale(0) !important;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
    padding: 15px;
    width: 100%;
    margin-bottom: 10px;
    border: 2px solid #e5e5e5;
	transition: all 0.5s ease;
}

.contact-form input[type=text]:focus, .contact-form input[type=email]:focus, .contact-form textarea:focus {
	border: 2px solid var(--main-color);
}

/* CLIENTS - start */

.clients-content .et_pb_column {
	display: flex;
    flex-wrap: wrap;
    gap: 3%;
	align-items: center;
	justify-content: center;
	row-gap: 15px;
}

.clients-content .et_pb_column > * {
    flex: 0 1 17%;
    margin: 0px !important;
}

.clients--tab-column {
	display: flex;
    justify-content: space-between;
}

.clients-tabs.et_pb_text.et_pb_module {
    margin-bottom: 0px;
    text-align: center;
    flex: 1;
    cursor: pointer;
    border: 5px solid #e5e5e5;
	font-weight: bold;
    padding: 10px;
	background-image: linear-gradient(var(--main-color), var(--main-color));
    background-repeat: no-repeat;
    transition: all 0.5s ease;
	background-size: 0% 0%;
    background-position: 50% 50%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.clients-tabs.et_pb_text.et_pb_module:hover {
	color: var(--main-color);
	border-color: var(--main-color);
}

.clients-tabs.selected.et_pb_text.et_pb_module {
	border-color: var(--main-color);
    background-size: 100% 100%;
    color: white;
}

.clients-content .et_pb_image_wrap img {
    filter: grayscale(1);
	transition: all 0.5s ease;
}


.clients-content .et_pb_image:hover img {
    filter: grayscale(0);
}

.clients-text.et_pb_module {
    flex-basis: 100% !important;
    text-align: center;
}

/* CLIENTS - end */

.hm-services-section.projects {
    background-image: linear-gradient(90deg, rgb(68 63 70 / 94%) 50%, rgba(252, 176, 69, 0) 50%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2024/03/έργα2.jpg) !important;
}

.et_header_style_left header #et-top-navigation {
    padding-top: 43px;
}
.et_header_style_left header #et-top-navigation nav>ul>li>a {
    padding-bottom: 43px;
}
/* RESPONSIVE - start */

@media screen and (max-width: 980px) {
	
	.hm-services-section {
		background-image: linear-gradient(90deg, rgb(68 63 70 / 64%) 50%, rgb(68 63 70 / 64%) 50%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2024/03/pexels-felix-mittermeier-957312.jpg) !important;
	}
	
	.main-banner.et_pb_section.contact {
		background-position-x: 43%;
	}
	
	.hm-services-section.projects {
		background-image: linear-gradient(90deg, rgb(68 63 70 / 74%) 50%, rgb(68 63 70 / 74%) 50%), url(https://idsconsulting.socialadvisor.gr/wp-content/uploads/2024/03/έργα2.jpg) !important;
	}
	
	.main-banner .et_pb_image.logo {
    		top: -117px;
	}
	
	.main-banner.homepage h3 {
		font-size: 22px;
	}
	
	.main-banner.homepage.et_pb_section {
		min-height: 100vh;
	}
	
	.main-banner.clients.et_pb_section {
		background-position: right bottom 28% !important;
	}
	
	.mobile-gap {
		display: flex;
		flex-direction: column;
		gap: 50px;
	}
	
	.mobile-gap:after {
		display: none;
	}
	
	.hm-services-section .info-row .et_pb_text {
		text-align: center;
	}
	
	.hm-services-section .info-row .main-title {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
	
	.services-blurbs > * {
    	flex: 0 1 144px;
	}
	
	.services-blurbs {
    	column-gap: 4%; 
	}
	
	.section-style-stripe:before {
		width: 7%;
	}
	
	.clients-content.homepage .et_pb_column > * {
		flex: 0 1 200px;
	}
	
	.team-row .et_pb_column {
		padding-right: 30px;
	}
	
	.team-person.et_pb_module {
		width: fit-content;
		margin: 0 auto;
	}
	
	.mobile-column-reverse {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.mobile-column-reverse.et_pb_row:after, .mobile-column-reverse.et_pb_row_inner:after {
		display: none;
	}
	
	.services-menu, .clients--tab-column {
		display: flex;
		flex-wrap: nowrap;
		overflow: auto;
		padding-top: 0;
		padding-bottom: 1px;    
		scroll-snap-type: x mandatory;
	}
	
	.services-menu .services-menu-item {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 50%;
		scroll-snap-align: start;
    	border-right: 1px solid var(--main-color);
	}
	
	.clients-tabs.et_pb_text.et_pb_module {
		scroll-snap-align: start;
	}
	
	.services-menu-row .leftarrow {
		left: -10%;
	}

	.services-menu-row .arrows {
		position: absolute;
		top: 61px;
	}
	
	.services-menu-row .rightarrow {
		right: -10%;
	}
	
	.clients-content .et_pb_column > * {
		flex: 0 1 48%;
	}
	
	.contact-map .et_pb_text_inner {
		text-align: center;
	}
	
	.contact-map .et_pb_text_inner iframe {
	    border: 0;
		height: auto;
		aspect-ratio: 1/1;
		width: 400px;
	}
	
	.vision-orama-1 {
		width: calc(100% - 43px);
		margin: 0 auto;
	}
	
	
	/* mobile menu - start */ 

	header ul#mobile_menu {
		background: #a41d3ae8 !important;
		border-top: 2px solid black;
		top: 100%;
	}

	header .et_mobile_menu .menu-item-has-children > a {
		background-color: transparent;
	}

	header ul#mobile_menu a {
		color: white;
	}
	
	header ul#mobile_menu {
		width: 100%;
		height: 100vh;
	}
	
	header .container {
		position: initial;
	}
	
	header.et-fixed-header#main-header {
		position: fixed;
		top: 0;
		animation: headeranimation 0.7s linear;
	}
	
	header#main-header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	header#main-header .mobile_menu_bar {
		padding: 0;
	}
	
	header#main-header .mobile_menu_bar:before {
		color: var(--main-color);
	}
	
	header#main-header .logo_container {
    	position: relative;
	}
	
	.et_header_style_left header #logo {
		max-width: 80px;
	}
	
	header.et-fixed-header#main-header .logo_container img {
		max-width: 55px;
	}
	
	header#main-header .mobile_menu_bar, header#main-header #et-top-navigation {
		padding: 0px !important;
	}
	
	header > .container  {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
	}
	
	header .logo_container {
		position: relative !important;
	}
	
	.et_mobile_menu ul.sub-menu li a {
		padding: 4px 0px;
	}
	
	header#main-header li.menu-item-has-children > a {
		position: relative;
	}
	
	header#main-header li.menu-item-has-children > a:before {
		content: '';
		height: 2px;
		width: 0%;
		background: #ffffff8a;
		position: absolute;
		bottom: 0;
		left: 0;
		transition: all 0.5s ease;
	}
	
	header#main-header li.selected-menu >  a:before {
		width: 100%;
	}
	
	/* Collapse Menu Start */
	/**** This hides the sub menu items on mobile ****/
	#page-container .mobile_nav li ul.hide {
		display: none !important;
	}
	/**** This adjusts the positioning and the background transparency of the parent menu item on mobile ****/
	#page-container .mobile_nav .menu-item-has-children {
		position: relative;
	}
	#page-container .mobile_nav .menu-item-has-children > a {
		background: transparent;
	}
	/**** This styles the icon and moves it to the right ****/
	#page-container .mobile_nav .menu-item-has-children > a + span {
		position: absolute;
		right: 0;
		top: 0;
		padding: 10px 20px;
		font-size: 20px;
		font-weight: 700;
		cursor: pointer;
		z-index: 3;
	}
	/**** Here you can swap out the actual icons ****/
	#page-container span.menu-closed:before {
		content: "\37";
		display: block;
		color: white;
		font-size: 16px;
		font-family: ETmodules;
		transition: all 0.5s ease;
		margin: 10px;
	}
	#page-container span.menu-closed.menu-open:before {
		transform: rotateZ(180deg);
		color: white;
	}
	
	/* mobile menu - end */ 
}

@keyframes headeranimation {
	from {
		opacity: 0;	
		transform: translatey(-10px);
	}
	to {
		opacity: 1;	
		transform: translatey(0px);
	}
}

@media screen and (min-width: 451px) and (max-width: 980px) {
	
	.main-banner h1 {
		color: white;
		font-size: 37px;
		letter-spacing: 3px;
	}
}

@media screen and (max-width: 450px) {
	.hm-services-section .info-row .et_pb_column:nth-child(2) {
    	background-color: rgb(255 255 255 / 61%);
	}
	
	.clients-tabs.et_pb_text.et_pb_module {
		min-width: 100%;
	} 
	
	.main-banner h1 {
    	letter-spacing: 2px;
    	font-size: 26px;
	}
	
	.main-banner h1:before, .main-banner .et_pb_text_inner:before {
    	content: '';
		height: 175px;
    	width: 175px;
	}
	
	.services-menu-item {
		padding: 20px 7px;
	}
	
	.services-menu-item.et_pb_text h4 {
		font-size: 15px;
	}
}

@media screen and (max-width: 420px) {
	.footer-links {
		gap: 10px;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
	}
}

/* RESPONSIVE - end */