.ip-banner {
	display: none !important;
}

.header > .container {
	background: #000;
	width: 100%;
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 15px 0;
}

#dh-nav > li{
    display: inline-block;
    margin: 0 30px;
    position: relative;
}
#dh-nav li a{
    font-size: 14px;
    font-family: "Muli";
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
#dh-nav > li a{
    position: relative;
    padding: 0;
}
#dh-nav > li a::after{
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: #fff;
    transform-origin: bottom right;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

#dh-nav > li:hover > a::after {
    width: 100%;
    left: 0;
}

#dh-nav > li#menu-item-31 .sub-menu{
    left: -170%;
}
#dh-nav .sub-menu{
    z-index: 2;
    list-style: none outside none;
    margin: 0;
    padding: 21px 0 0;
    position: absolute;
    width: calc(152px + (237 - 152) * ((100vw - 992px) / (1600 - 992)));
    text-align: center;
    display: none;
    left: -150%;
    right: -150%;
    margin: 0 auto;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    transform: translateY(20%);
    pointer-events: none;
}

#dh-nav .sub-menu li{
    padding: 0;
    position: relative;
    margin: auto;
    background: var(--primary-color);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
#dh-nav .sub-menu li:first-child{
    padding-top: 10px;
}
#dh-nav .sub-menu li:last-child{
    padding-bottom: 10px;
}
.header.fixed #dh-nav .sub-menu{
    padding: 42px 0 0;
}

#dh-nav .sub-menu li a{
    color: #ffffff;
    font-size: 13px;
    display: block;
    padding: 15px 5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 1;
}

#dh-nav .sub-menu li:hover{
    background: var(--button-hover);
}
#dh-nav li:hover > .sub-menu {
    display: block;
    pointer-events: auto;
    animation: fade-in 0.5s;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    transform: translateY(0%);
  }
#dh-nav li:not(:hover) > .sub-menu.did-fade-in {
    display: block;
    animation: fade-out 0.5s;
    transform: translateY(20%);
    pointer-events: none;
}
@keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(20%);
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
.burger-menu.site-easing {
  display: none;
}

/* ==========================================
   ACF FLEXIBLE CONTENT PAGE TEMPLATE STYLES
   ========================================== */

/* Layout Container */
.acf-container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}
body.logged-in .acf-hero-section {
	margin-top: 65px;
}

.acf-section-title::before {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: -30px auto 30px;
}

.acf-section-title {
	text-align: center;
	font-size: 34px;
	margin-bottom: 40px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 4px;
}
/* ------------------------------------------
   SECTION 1: HERO
   ------------------------------------------ */
.acf-hero-section {
	min-height: 550px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	position: relative;
	padding: 140px 0;
	margin-top: 100px;
}

.acf-hero-content {
	max-width: 980px;
}

.acf-hero-content h2 {
	font-size: 3.4vw;
	line-height: 4.4vw;
}

.acf-hero-content h2::after {
	content: '';
	width: 100px;
	height: 5px;
	background: #000;
	display: block;
	margin-top: 20px;
	margin-bottom: 30px;
	display: block;
}

.acf-hero-content p {
	font-size: 1.42vw;
	margin: 20px 0;
	line-height: 2.2vw;
}

/* ------------------------------------------
   SECTION 2: LOGO GRID
   ------------------------------------------ */
.acf-logo-grid-section {
    padding: 80px 0;
    background-color: #000;
}

.acf-section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
}

.acf-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 30px;
    align-items: center;
}

.acf-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.acf-logo-item a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.acf-logo-item a:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.acf-logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* ------------------------------------------
   SECTION 3: BANNER
   ------------------------------------------ */
.acf-banner-section {
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acf-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Optional helper: Dark overlay for banner text contrast */
.acf-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust overlay opacity as needed */
    z-index: 1;
}

.acf-banner-content {
    position: relative;
    z-index: 2; /* Keeps text above the dark overlay */
    color: #ffffff; /* White text for dark image backgrounds */
}

.acf-banner-content p {
	font-size: 40px;
	font-family: var(--main-title-font);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 50px;
}

#dh-nav > li.contact-ci a {
    border: 2px solid #fff;
    padding: 10px;
    width: 142px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 80px;
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------ */
@media (max-width: 992px) {
    .acf-logo-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet landscape */
    }
	.navigation {
		display: none;
	}
	.acf-hero-content h2 {
		font-size: 5.7vw;
		line-height: 6.4vw;
	}
	body.logged-in .acf-hero-section {
		margin-top: 0;
	}
	.acf-hero-content p {
		font-size: 2.92vw;
		margin: 20px 0;
		line-height: 3.92vw;
	}
	.acf-hero-section {		
		margin-top: 0;
	}
}

@media (max-width: 768px) {
    .acf-hero-section {
        min-height: 400px;
    }

    .acf-hero-content {
        max-width: 100%; /* Spans full width on mobile devices */
    }

    .acf-logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .acf-logo-grid {
        grid-template-columns: 1fr; /* Single column on tiny screens */
    }
}