/*
Theme Name: EPM Discreet
Text Domain: EPM Discreet
Version: 1.0
Description: Responsive WordPress Theme
Author: Seemore Graphics
Author URI: https://seemoregraphics.co.uk/

*/

@font-face {
   font-family: 'Neuhade';
   src: url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Light.woff2') format('woff2'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Light.woff') format('woff'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Light.ttf') format('truetype');
   font-weight: 200;
   font-style: normal;
}

@font-face {
   font-family: 'Neuhade';
   src: url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Regular.woff2') format('woff2'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Regular.woff') format('woff'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Regular.ttf') format('truetype');
   font-weight: 300;
   font-style: normal;
}

@font-face {
   font-family: 'Neuhade';
   src: url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Bold.woff2') format('woff2'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Bold.woff') format('woff'),
        url('/wp-content/themes/epm-discreet/assets/fonts/Neuhade-Bold.ttf') format('truetype');
   font-weight: 700;
   font-style: normal;
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #05090a;
  color: #fff;
  font-family: 'Neuhade', arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
  overflow-x: hidden;
}

.material-symbols-outlined {
  vertical-align: middle;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4,
h5 {
  font-size: 20px;
}

a {
  color: #4c4abf;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

button {
  border-radius: 5px;
}

img {
    height: auto;
    vertical-align: top;
}
embed, iframe, img, object, video, .wp-caption {
    max-width: 100%;
}
ul {
  display: block;
  list-style-type: none;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

input:focus {
  outline: none;
}

input, select, textarea {
  font-size: 16px;
}

.entry-content ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.entry-content ul li {
	margin-bottom: 16px;
}

.site-header {
  width: 100%;
  clear: both;
	display:flex;
	justify-content: center;
	align-items: center;
  position: fixed;
  float: left;
  background-color: #0c6d38;
  z-index: 99;
  padding: 10px 0px;
}

.header-logo {
  width: auto;
  float: left;
  display: block;
  height: auto;
  padding: 10px;
}

.header-logo img {
  max-width: 100px;
  width: 100%;
  display: block;
}

.navigation-container {
  display: none;
}

nav.main-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height:0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0c6d38;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-out;
  z-index: -1;
   transform: translateY(-100%);
   visibility: hidden;
}

nav.main-menu.show {
  visibility: visible;
  clear: both;
  position: absolute;
  top:0px;
  height: auto;
  transform: translateY(0);
  z-index:8;
}

nav.main-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -15px;
  z-index:9;
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 6px);
  background-color: #fff;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-4px, -6px);
  background-color: #fff;
}


.entry-title-container {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: 0px;
}

.entry-title-content h1 {
  width: auto;
  display: block;
  float: none;
  padding: 20px 0px;
  margin: 0px auto;
  text-align: center;
  font-size: 32px;
  color: #fff;
}


.entry-title-content {
    max-width: 100%;
    float: none;
    margin: 0px auto;
    display: block;
    overflow: hidden;
    padding-top: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px;
    padding-top: 0px;
}

.page-entry-wrap,
.wrap {
  max-width: 1280px;
  width: auto;
  margin: 0 auto;
  float: none;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.home .footer-widgets .wrap {
	padding: 40px 0px;
  max-width: 100%;
}

.wrap {
  padding: 20px;
}

.footer-credits {
	background-color: #0b1911;
  width: 100%;
  clear: both;
  color: #fff;
  padding-bottom: 20px;
  padding: 10px;
}

.footer-credits p {
  color: #fff;
  text-align: center;
  opacity: 0.8;
}

.footer-credits a {
  color: #fff;
}


.page-entry-wrap .sidebar {
  width: 100%;
  float: left;
}

.page-entry-wrap .content-area {
  width: 100%;
  float: left;
}


.footer-credits {
  background-color: #0b1911;
  border-top: 0px solid #eee;
  font-size: 15px;
  line-height: 1.5;
  padding: 30px;
  text-align: center;
}

.footer-credits p {
  margin-bottom: 0;
  opacity: 0.6;
}

.hero-section {
	padding:20px;
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: flex-start;
    align-items: center;
    position: relative;
	background-color: rgba(0, 0, 0, 0.2);
}

.scroll-down {
  position: absolute;
  bottom: 20%;
  left: 50%;
  margin-left: -20px;
  text-align: center;
}

.scroll-down a {
  color: #fff;
}

.scroll-down a span {
  font-size: 48px;
}

.hero-section .hero-text-container {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-container {
    position: relative;
    width: 100%;
    height:100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.parallax-image,
.parallax-image-2,
.parallax-image-3{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.parallax-image-2 {
	top: -10vh;
}

.hero-section p {
  color:  #fff;
  font-size: 22px;
  font-weight: 200;
}

.hero-section h1 {
  font-weight: 700;
	font-size: 42px;
}

.appear {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
	-webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.appear.inview {
  opacity: 1;
  -webkit-transform: none;
  transform: none;

}

.appearslow {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.appearslow.inviewslow {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.about-section,
.case-study-container,
.detail-section {
  min-height: 100vh;
  height: auto;
  margin: 0 auto;
  width: 100%;
  clear: both;
  display: flex;
  justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    position: relative;
		overflow: hidden;
}

.about-section,
.map-section {
  min-height: 0px;
  flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    background-color: #f2f3f4;
}

.about-section {
	background-color: #222;
	overflow: hidden;
}

img.aligncenter {
  display: block;
  margin: 0 auto 30px;
  float: none;
}
.about-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
    max-height: initial;
	flex-direction: column;
	max-height:90vh;
	z-index: 9;
}


.about-image > div {
	flex: 1; /* Makes each section equal in height */
	width: 100%;
	position: relative;
	max-height: calc(90vh / 3);
	display: flex;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures the image fully fills the container */

}


.about-text {
  padding: 40px;
  color: #05090a;
	z-index: 9;
}

.about-text h2 {
	color: #fff;
	z-index: 9;
}

.about-text p {
	color: #fff;
}

.about-text h5 {
  font-weight: 200;
  font-size: 24px;
}

.services-text,
.services-list {
  max-width: 720px;
}

.services-section {
  background-color: #05090a;
  color: #fff;
}

.service-single {
    max-width: 300px;
}

.service-list {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0px 40px;
}

.services-title h2 {
  font-size: 32px;
  text-align: center;
  margin: 40px 0px;
}

.services-title h2 span {
  font-weight: 300;
}

.map-section .services-title h2 {
  color: #05090a;
}

.map-wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.service-text {
  padding: 10px;
}

.service-text h3 {
  font-size: 20px;
}

.service-list ul li {
  list-style-type: disc;
}
.service-list ul {
  margin-bottom: 30px;
    padding-left: 20px;
    opacity: 0.8;
}

.case-study-container {
  min-height: 70vh;
  padding: 0px;
  align-items: stretch;
}

.case-section {
  display: block;
  width: 100%;
  clear: both;
  padding: 0px;
  position: relative;
}

.case-study-container .cs-text,
.case-study-container .cs-image {
  width: 100%;
}

.cs-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  padding-top: 60px;
}

.cs-image {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  display: flex;
    justify-content: center;
    align-items: center;
}

.cs-image img {
  max-width: 300px;
  height: auto;
  width: 100%;
}

.home .content-sidebar-wrap {
  display: none;
}

.cs-text h2 {
  font-size: 42px;
}

.cs-text h5 {
  font-size: 24px;
}

.cs-text a {
  color: #fff;
  text-decoration: none;
}

.case-number {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.case-number p {
  margin-bottom: 0px;
}

.case-study-slider .slick-prev, .case-study-slider .slick-next {
  z-index: 3;
  top: 40px;
  left: 40px;
  bottom: auto;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
}

.case-study-slider .slick-prev:focus, 
.case-study-slider .slick-next:focus,
.case-study-slider .slick-prev:active, 
.case-study-slider .slick-next:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.case-study-slider .slick-prev:hover, 
.case-study-slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.case-study-slider .slick-next {
  left: 90px;
}

.case-study-slider .slick-prev:before, .case-study-slider .slick-next:before {
  font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    content: "\e5c4";
}
.case-study-slider .slick-next:before {
  content: "\e5c8";
}

.hero-nav-container {
  display: none;
}

.footer-widget-area {
  float: left;
  margin-bottom: 0;
  width: 100%;
}

.footer-widgets {
    border-top: 0px solid #eee;
  background-color: #0b1911;
    clear: both;
    padding: 0px;
}

.footer-widgets .wrap {
    margin-left: auto;
    margin-right: auto;
}

.footer-widgets .wrap {
    min-height: 50vh;
    height: auto;
    margin: 0 auto;
    width: 100%;
    clear: both;
    display: block;
    padding: 0px;
    position: relative;
}

.footer-widgets-2,
.footer-widgets-1 {
  max-width: 100%;
  width: 100%;
  padding: 30px 20px;
  display: block;
  clear: both;
}

.footer-widgets-1,
.footer-widgets-2 {
  color: #fff;
}

.footer-widget .widget {
  width: 100%;
}

.footer-widgets h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
}

.footer-widgets-2 img {
  max-width: 150px;
}

.footer-widgets a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}

.map-text {
  color: #05090a;
  max-width: 300px;
}

.map-text ul {
  display: flex;
  flex-wrap: wrap;
}

.map-text ul li {
  width: 50%;
  text-align: center;
}

p.return-link a {
  color: #fff;
  text-decoration: none;
}

.lightbg {
  padding: 80px 20px;
  margin: 60px 0px;
}
.error-404 h2 {
  font-size: 62px;
}

.detail-section-text {
	max-width: 720px;
	color: #fff;
	text-align: left;
	z-index:9;
	padding: 20px;
}


@media only screen and (min-width: 960px) {  
	
	
	h1 {
		font-size: 62px;
	}

	h2 {
		font-size: 42px;
	}

	h3 {
		font-size: 32px;
	}

  .site-header {
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    padding: 0 30px;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .admin-bar .site-header {
    top: 32px;
  }

  .site-header.shrink {
    display: flex;
    background-image: initial;
    background-color: #0c6d38;
    opacity: 1;
  }

  .entry-title-content {
    padding-top: 100px;
  }

  .entry-title-content h1 {
    padding: 40px 0px;
  }

  .menu-toggle {
    display: none;
  }

  nav.main-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    float: right;
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease-out;
    z-index: 9;
    transform: initial;
    visibility: visible;
  }

   nav.main-menu .menu-item {
    display: inline-block;
   }

  nav.main-menu a {
      color: #fff;
      display: block;
      font-size: 15px;
      font-weight: 400;
      outline-offset: -1px;
      padding-bottom: 12px;
      padding-top: 12px;
      text-decoration: none;
  }

    nav.main-menu a:hover,
    nav.main-menu a:focus {
      text-decoration: underline;
    }

  .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
      position: absolute;
      top: 10px;
      right: 10px;
  }

  .about-section,
  .case-study-container,
	.detail-section {
    justify-content: space-around;
      align-items: center;
      flex-direction: row;
      gap: 20px;
		
  }

  .about-section,
	.detail-section {
    flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 0px;
	  min-height:90vh;
  }

  .services-section {
    padding: 80px 0px;
  }
	
	.detail-section {
      justify-content: flex-start;
	}
	
	
	
  .about-section>div {
	  width: 100%;
    max-width: 50%;
	  z-index: 9;
  }
	.about-text h2 {
	  font-size: 72px;
	}
  .about-text,
.detail-section-text {
    padding: 40px 80px;
  }

  .about-image {
    max-height: initial;
	  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 66.66%);
  }

  .case-study-container {
    min-height: 70vh;
    padding: 0px;
    align-items: stretch;
  }
  .case-study-container .cs-text,
  .case-study-container .cs-image {
    width: 50%;
  }

  .scroll-down {
    bottom: 10%;
  }
  .scroll-down a:hover,
  .scroll-down a:focus {
    color: #0c6d38;
  }

  .cs-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 80px 40px;
  }
  .cs-image img {
    max-width: 450px;
  }

  .hero-section .hero-text-container {
    width: 50%;
  }
  .hero-section p {
    font-size: 24px;
  }
	.hero-section h1 {
    font-size: 72px;
  }

  .map-wrap {
    flex-direction: row;
  }

  .hero-nav-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50%;
  }

  .hero-nav-container ul li {
    display: inline-block;
    margin-right: 10px;
  }

  .hero-nav-container ul li a {
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 2;
  }

  .hero-nav-container ul li a::before {
    background: #4c4abf;
    opacity:0;
    content: "";
      position: absolute;
      z-index: -1;
      top: 50%;
      left: 50%;
      right: auto;
      bottom: auto;
      margin-left: -40px;
      margin-top: -40px;
      border-radius: 100%;
      width: 80px;
      height: 80px;
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.5s;
      transition-duration: 0.5s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out;
  }

  .hero-nav-container ul li a:hover::before {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
      opacity:1;
  }

  .hero-nav-container img {
  }


  .footer-widget-area {
    width: 50%;
  }

  .footer-widgets .wrap {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-direction: row;
}
  .footer-widgets-2,
  .footer-widgets-1 {
    max-width: 600px;
    padding: 60px 20px;
    padding-bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }

  .footer-widgets h3 {
    font-size: 32px;
  }

  .footer-widgets a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: inline-block;
      vertical-align: middle;
      -webkit-transform: perspective(1px) translateZ(0);
      transform: perspective(1px) translateZ(0);
      box-shadow: 0 0 1px rgba(0, 0, 0, 0);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-out;
  }
  .cs-text a {
      vertical-align: middle;
      -webkit-transform: perspective(1px) translateZ(0);
      transform: perspective(1px) translateZ(0);
      box-shadow: 0 0 1px rgba(0, 0, 0, 0);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-out;
  }
  .footer-widgets a:hover,
  .footer-widgets a:focus,
  .cs-text a:hover,
  .cs-text a:focus {
    color: #0c6d38;
  }

  .footer-widgets a:before,
  .cs-text a:before {
      content: "";
      position: absolute;
      z-index: -1;
      left: 0;
      right: 100%;
      bottom: 0;
      background: #0c6d38;
      height: 1px;
      -webkit-transition-property: right;
      transition-property: right;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out;
  }

  .footer-widgets a:hover:before,
  .footer-widgets a:focus:before,
  .cs-text a:hover:before,
  .cs-text a:focus:before {
    right: 0;
  } 

  .services-title h2 {
    font-size: 48px;
  }

  .map-text ul li {
    text-align: left;
  }


  p.return-link a i {
  margin-right: 5px;
  transition: all 0.3s ease-out;
  }

  p.return-link a:hover i,
  p.return-link a:focus i {
  margin-right: 0px;
  }

}

@media only screen and (min-width: 1280px) {
  .service-single {
     max-width: 15%;
  }
}