/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Colors
# Typography & Resets
# Utility Classes
# Lazy Load
# Header
# Navigation
# Button Styling
# General Styles
# General Sections
# Footer
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-teracotta: #824428;
  --color-dark: #233236;
  --color-green: #4C5939;
  --color-off-white: #FAF9F7;
  --color-tan: #EDEBE4;
  --plyr-color-main: #824428;
  --font-size-primary-heading: min(calc(1.4rem + 2vw), 3.4rem);
  /* 55px */
  --font-size-secondary-heading: min(calc(1.4rem + 1.4vw), 2rem);
  /* 40px */
  --font-size-tertiary-heading: min(calc(1.3rem + 1vw), 1.25rem);
  /* 25px */
  --font-size-quartary-heading: min(calc(1.3rem + 1vw), 1rem);
  /* 20px */
  --font-size-quinary-heading: 0.75rem;
  /* 15px */
  --font-size-link: 16px;
  --font-size-subheadline: 18px;
  --font-size-button: 18px;
  --font-size-body: 18px;
  --font-size-large-body: min(calc(1.3rem + 1.4vw), 1.3rem);
  /* 24px */
  --font-family-headline: termina, sans-serif;
  --font-family-content: 'Montserrat', sans-serif;
  --font-family-button: termina, sans-serif;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.cl-white,
.cl-white-h:hover,
.cl-white-h:focus {
  color: var(--color-white) !important;
}

.bg-white,
.bg-white-h:hover,
.bg-white-h:focus {
  background-color: var(--color-white);
}

.cl-black,
.cl-black-h:hover,
.cl-black-h:focus {
  color: var(--color-black) !important;
}

.bg-black {
  background-color: var(--color-black);
}

.cl-teracotta,
.cl-teracotta-h:hover,
.cl-teracotta-h:focus {
  color: var(--color-teracotta) !important;
}

.bg-teracotta {
  background-color: var(--color-teracotta);
}

.cl-dark,
.cl-dark-h:hover,
.cl-dark-h:focus {
  color: var(--color-dark) !important;
}

.bg-dark {
  background-color: var(--color-dark);
}

.cl-green,
.cl-green-h:hover,
.cl-green-h:focus {
  color: var(--color-green) !important;
}

.bg-green {
  background-color: var(--color-green);
}

.cl-off-white,
.cl-off-white-h:hover,
.cl-off-white-h:focus {
  color: var(--color-off-white) !important;
}

.bg-off-white {
  background-color: var(--color-off-white);
}

.cl-tan,
.cl-tan-h:hover,
.cl-tan-h:focus {
  color: var(--color-tan) !important;
}

.bg-tan {
  background-color: var(--color-tan);
}

/*--------------------------------------------------------------
# Typography & Resets
--------------------------------------------------------------*/
body,
html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-content);
  overflow-x: hidden;
  overflow-wrap: normal;
  color: var(--color-dark);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0 !important;
  letter-spacing: 0.48px;
  line-height: 1.5;
  background-color: var(--color-off-white);
}

body.responsive-menu-open {
  overflow: hidden;
}

.post,
.page {
  margin: 0;
}

.responsive-menu-open .site-header {
  transform: unset !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1em;
}

h1 {
  font-size: var(--font-size-primary-heading);
  font-family: var(--font-family-headline);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.65px;
}

h2 {
  font-size: var(--font-size-secondary-heading);
  font-family: var(--font-family-headline);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

h3 {
  font-size: var(--font-size-tertiary-heading);
  font-family: var(--font-family-headline);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.75px;
}

h4 {
  font-size: var(--font-size-quartary-heading);
  font-family: var(--font-family-headline);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.75px;
}

h5 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-quinary-heading);
  font-style: normal;
  font-weight: 400;
}

h5,
h6 {
  font-size: var(--font-size-quinary-heading);
}

h2 p {
  margin-bottom: 0 !important;
}

a,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  transition: 0.3s ease all;
}

a:visited {
  color: unset;
}

section,
.row-back-forth {
  padding: 130px 0;
  position: relative;
}

section.w-margin {
  margin: 130px 0;
}

.relative {
  position: relative;
}

.uk-link-toggle:hover .uk-link,
.uk-link:hover,
a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Stops Some Of Looms Issues on Certain Browsers
--------------------------------------------------------------*/
section#shadow-host-companion {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Button Styling
--------------------------------------------------------------*/
:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

.button-list-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button-list-info a,
.case-study-details a {
  position: relative;
  font-family: var(--font-family-button);
  font-size: var(--font-size-button);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.54px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.button-list-info a:before,
.case-study-details a:before {
  content: '';
  border-bottom: 3px solid var(--color-white);
  width: 100% !important;
  padding: 0 !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.button-list-info a:hover:before,
.case-study-details a:hover:before {
  width: 20% !important;
  padding: 0 10px !important;
}

.button-list-info a.cl-dark:before {
  border-color: var(--color-dark);
}

/*--------------------------------------------------------------
# Paddings & Margins
--------------------------------------------------------------*/
.gap-1 {
  gap: 1em;
}

.gap-2 {
  gap: 2em;
}

.gap-3 {
  gap: 3em;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 1em !important;
}

.p-t0 {
  padding-top: 0 !important;
}

.p-t1 {
  padding-top: 1em !important;
}

.p-t2 {
  padding-top: 2em !important;
}

.p-t3 {
  padding-top: 3em !important;
}

.p-t4 {
  padding-top: 4em !important;
}

.p-b0 {
  padding-bottom: 0 !important;
}

.p-b05 {
  padding-bottom: 0.5em;
}

.p-b1 {
  padding-bottom: 1em;
}

.p-b2 {
  padding-bottom: 2em;
}

.p-b3 {
  padding-bottom: 3em;
}

.p-y6 {
  padding: 6em 0;
}

.m-0 {
  margin: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.auto {
  margin: auto;
}

.col {
  display: flex;
  flex-direction: column;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-b0 {
  margin-bottom: 0 !important;
}

.mb-02 {
  margin-bottom: 0.2em !important;
}

.mb-08 {
  margin-bottom: 0.8em !important;
}

.m-b1 {
  margin-bottom: 1em !important;
}

.m-b2 {
  margin-bottom: 2em;
}

.m-b3 {
  margin-bottom: 3em;
}

.mt-0 {
  margin-top: 0 !important;
}

.m-t0 {
  margin-top: 0 !important;
}

.m-t1 {
  margin-top: 1em;
}

.m-t2 {
  margin-top: 2em;
}

.m-t3 {
  margin-top: 3em;
}

.m-t4 {
  margin-top: 4em;
}

.m-t5 {
  margin-top: 5em;
}

.mb-1 {
  margin-bottom: 2em;
}

.mb-10px {
  margin-block-end: 0;
  padding-bottom: 10px;
}

.pb-10px {
  margin-block-end: 0;
  padding-bottom: 10px;
}

.pb-17px {
  margin-block-end: 0;
  padding-bottom: 17px;
}

.mb-20px {
  margin-block-end: 0;
  padding-bottom: 20px;
}

.mt-10px {
  margin-top: 10px;
}

.mt-20px {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

p {
  margin-bottom: 1.2em;
  margin-block-start: 0;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.over-hide {
  overflow: hidden;
}

.h-100 {
  height: 100% !important;
}

.w-100 {
  width: 100%;
}

.gap-05 {
  gap: 0.5em;
}

.gap-1 {
  gap: 1em;
}

.gap-2 {
  gap: 2em;
}

.gap-3 {
  gap: 3em;
}

.hide {
  visibility: hidden;
  width: 0;
  height: 0;
}

.text-left {
  text-align: left;
}

.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex-row {
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.fit-cover-center {
  object-fit: cover;
  object-position: center;
}

.fit-cover-top {
  object-fit: cover;
  object-position: top;
}

.fit-contain-center {
  object-fit: contain;
  object-position: center;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.featured-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Lazy Load
--------------------------------------------------------------*/
img[data-lazy-src] {
  opacity: 0;
}

img.lazyloaded {
  transition: opacity .5s linear 0.2s;
  -o-transition: opacity .5s linear 0.2s;
  -ms-transition: opacity .5s linear 0.2s;
  -moz-transition: opacity .5s linear 0.2s;
  -webkit-transition: opacity .5s linear 0.2s;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
  padding: 30px 0 30px;
  width: 100%;
  z-index: 100;
  transition: all ease-in-out 0.35s;
  transform: none;
}

ul.responsive-menu-items a {
  font-size: 30px;
}

.page-main-banner,
.page-internal-banner {
  margin-top: -173px !important;
}

.site-header img.logo {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.site-header.header-scrolled {
  transform: translateY(-100%);
  opacity: 0;
}

.site-header.header-scrolled-top {
  background-color: var(--color-dark);
  top: 0;
  position: fixed;
  opacity: 1;
}


.site-header.header-scrolled img.logo,
.site-header.header-scrolled-top img.logo {
  max-width: 300px;
}

/* ---- Burger menu CSS ---- */
.menu-btn {
  padding: 10px;
  cursor: pointer;
  position: relative;
}

.menu-btn__line {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 5px;
  background-color: var(--color-teracotta);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
}

.menu-btn__line:nth-child(4) {
  width: 22px;
  margin: 0;
}

.menu-btn__line:nth-child(1) {
  transition-delay: 0.55s;
}

.menu-btn__line:nth-child(2) {
  transition-delay: 0.7s;
  width: 22px;
}

.menu-btn__line:nth-child(3) {
  transition-delay: 0.85s;
}

.menu-btn__line:nth-child(4) {
  transition-delay: 1s;
}

.menu-btn__close {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform-origin: top left;
}

.menu-btn__close::before,
.menu-btn__close::after {
  content: "";
  display: block;
  background-color: var(--color-teracotta);
  position: absolute;
  transition: transform 0.3s ease-in-out;
}

.menu-btn__close::before {
  width: 3px;
  height: 32px;
  top: 0;
  left: 50%;
  margin-left: -1px;
  transition-delay: 0.15s;
  transform: scaleY(0);
  transform-origin: top;
}

.menu-btn__close::after {
  width: 32px;
  height: 3px;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transition-delay: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.menu-btn.is-active .menu-btn__line {
  transform: scaleX(0);
}

.menu-btn.is-active .menu-btn__close::before {
  transform: scaleY(1);
  transition-delay: 0.7s;
}

.menu-btn.is-active .menu-btn__close::after {
  transform: scaleX(1);
  transition-delay: 0.85s;
}

.menu-btn.is-active .menu-btn__line:nth-child(1) {
  transition-delay: 0.45s;
}

.menu-btn.is-active .menu-btn__line:nth-child(2) {
  transition-delay: 0.3s;
}

.menu-btn.is-active .menu-btn__line:nth-child(3) {
  transition-delay: 0.15s;
}

.menu-btn.is-active .menu-btn__line:nth-child(4) {
  transition-delay: 0s;
}

/* .reset-btn is a useful class I extend for most of my btns */
.reset-btn,
.menu-btn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
}

.responsive-menu-interior hr {
  background-color: var(--color-teracotta);
  height: 2px;
  border-top: var(--color-teracotta);
  margin-bottom: 3.5em;
}


ul.responsive-menu-items li {
  margin-bottom: 1em !important;
  font-family: var(--font-family-headline);
  font-weight: 400;
}

.contact-icon {
  max-width: 20em;
  width: 100%;
  padding-left: 40px;
  padding-bottom: 20px;
}

.contact-icon a svg {
  margin-right: 10px;
  width: 21px;
  margin-top: 3px;
}

.contact-icon a {
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-family: var(--font-family-text);
  font-weight: 400;
}

body .gfield_select,
.ginput_complex input,
.ginput_container input {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #fff;
  color: var(--color-white) !important;
  text-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 0px;
  font-size: 16px;
  font-family: var(--font-family-main);
  font-weight: 400;
}

.ginput_complex input::placeholder,
.ginput_container input::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder,
.gform_wrapper.gravity-theme textarea {
  color: var(--color-white) !important;
  font-family: var(--font-family-content) !important;
  font-weight: 400 !important;
  font-size: var(--font-size-large-body) !important;
}


.gform_wrapper select:focus,
.gform_wrapper textarea:focus,
.ginput_complex input:focus,
.ginput_container input:focus {
  outline: none !important;
}

.gform_wrapper textarea {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff !important;
  border-radius: 0px;
}


/* Styling for select dropdown arrow */
.gform_wrapper .ginput_container_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_127_17" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_127_17)"><path d="M12 15.3751L6 9.3751L7.4 7.9751L12 12.5751L16.6 7.9751L18 9.3751L12 15.3751Z" fill="white"/></g></svg>') no-repeat 95% center;
  background-size: 24px;
  background-position-x: 100% !important;
}


.gform_wrapper.gravity-theme .gform_footer {
  display: flex !important;
  justify-content: flex-end;

}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#gform_submit_button_1 {
  margin-bottom: 0 !important;
}








/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

#site-navigation {
  z-index: 20;
  position: relative;
  padding: 1em;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1em 0;
}

.offcanvas-logo {
  margin-bottom: 30px;
}

main {
  display: block;
  background-color: var(--color-off-white) !important;
}

.site {
  position: relative;
  z-index: 1;
}

#primary-menu .sub-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 1em 0;
  background: var(--color-green-muted);
  min-width: 12em;
}

#primary-menu .sub-menu li a {
  color: var(--color-black);
  text-shadow: none !important;
  position: relative;
  padding: 0.5em 1.25em;
  font-size: 0.9em !important;
  font-weight: 300;
  text-transform: capitalize !important;
  letter-spacing: 0 !important;
}

#primary-menu .sub-menu li a::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
  transform: scaleY(0);
  transition: transform .5s ease 0s;
  background-color: var(--color-black);
}

#primary-menu .sub-menu li a:hover::before,
#primary-menu .sub-menu li a:focus::before {
  transform: scaleY(1);
}

#primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li a:focus {
  font-weight: 800 !important;
  text-decoration: underline;
}

#primary-menu li ul {
  opacity: 0;
  -moz-transition: opacity 0.5s linear 0s;
  -o-transition: opacity 0.5s linear 0s;
  -webkit-transition: opacity 0.5s linear 0s;
  transition: opacity 0.5s linear 0s;
}

#primary-menu li:hover ul {
  opacity: 1;
}

#primary-menu>li {
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

#primary-menu li a {
  color: var(--color-white);
  font-family: var(--font-family-text);
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  text-shadow: 0 3px 12px #000000E8 !important;
  font-weight: 600 !important;
  letter-spacing: 0.125rem !important;
}

.site-navigation .navigation {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-navigation ul ul {
  min-width: 100%;
  width: auto;
}

.main-navigation ul ul a {
  width: 100%;
}

header .social-icons a:hover rect,
header .social-icons a:focus rect {
  fill: var(--color-white);
}

header .social-icons a:hover svg path,
header .social-icons a:focus svg path {
  fill: var(--color-blue);
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/

.dp-1,
.dp-1 p,
.dp-1 ul,
.dp-1 ol {
  font-family: var(--font-family-content);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.36px;
  line-height: 1.5;
}

.dp-1 p:first-child,
.dp-2 p:first-child {
  margin-block-start: 0;
}

.dp-1 p:last-child,
.dp-2 p:last-child {
  margin-bottom: 0;
}

.dp-1 a {
  color: var(--color-teracotta);
}

.dp-1 ul {
  margin-top: 1em;
}

.dp-2,
.dp-2 p,
.dp-2 ul,
.dp-2 ol {
  font-family: var(--font-family-content);
  font-size: var(--font-size-large-body) !important;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 1.5;
}

.dp-1 ul,
.dp-1 ol,
.dp-2 ul,
.dp-2 ol {
  margin: 0 auto;
}

.dp-1 a,
.dp-2 a {
  text-decoration: underline;
}

.font-lh,
.font-lh * {
  font-weight: 300 !important;
}

/*--------------------------------------------------------------
# Custom Videos
--------------------------------------------------------------*/
.plyr--video {
  height: 100%;
}

.plyr__poster {
  background-size: cover;
}

/*--------------------------------------------------------------
# Progress
--------------------------------------------------------------*/

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAICAYAAADN5B7xAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB9SURBVHgBdZBLEYAwDESzxUhlcAQHWKgDpOCgFnDQKzIwAqE7MJR+yKnNvpfJBP00W0XnoYfb1mWXRn0Zw4eIDgoTGLRhE24G3tCKH062pZRgsWSg6pACxACEY3CO7BfwyJWRT0vS085gNlDv+0pSwpWQSzEs4N+i1LoY6wLzkFUyUESrAwAAAABJRU5ErkJggg==");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: rgba(130, 68, 40, 1);
  -webkit-filter: invert(100%);
  filter: invert(100%);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: rotate(180deg);
}

.progress-wrap:hover::after {
  opacity: 1;
}

.progress-wrap::before {
  position: absolute;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAICAYAAADN5B7xAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB9SURBVHgBdZBLEYAwDESzxUhlcAQHWKgDpOCgFnDQKzIwAqE7MJR+yKnNvpfJBP00W0XnoYfb1mWXRn0Zw4eIDgoTGLRhE24G3tCKH062pZRgsWSg6pACxACEY3CO7BfwyJWRT0vS085gNlDv+0pSwpWQSzEs4N+i1LoY6wLzkFUyUESrAwAAAABJRU5ErkJggg==");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-teracotta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: rotate(180deg);
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: rgba(130, 68, 40, 1);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.page-id-1009 .page-internal-banner,
.error404 .page-internal-banner {
  height: 100vh;
}

.page-id-925 .page-internal-banner {
  background-position: center !important;
}

.page-id-778 .page-internal-banner {
  background-position: center bottom !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.section-contact .col-img,
.section-contact {
  padding: 0 !important;
  margin: 0;
}

.contact-item:first-of-type {
  padding-bottom: 0.5em;
}

.contact-item:nth-child(2) {
  pointer-events: none;
}


.section-contact .col-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0 4em;
}


.section-contact .col-img .media-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.line-feature,
.line-feature-offset {
  position: relative;
}

.line-feature::after {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="461" height="4" viewBox="0 0 461 4" fill="none"><path d="M0 2H461" stroke="white" stroke-width="3"/></svg>') no-repeat center;
  background-size: contain;
  transform: translate(467px, -30px);
}

.line-feature-offset::after {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="461" height="4" viewBox="0 0 461 4" fill="none"><path d="M0 2H461" stroke="white" stroke-width="3"/></svg>') no-repeat center;
  background-size: contain;
  transform: translate(-163px, 22px);

}


.contact-description p {
  max-width: 25em;
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  font-weight: 300;
  font-size: var(--font-size-large-body) !important;
  margin-bottom: 0;
}

.contact-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 2.5em;
}

li.contact-item a {
  font-weight: 300;
  font-size: var(--font-size-large-body);
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

/*--------------------------------------------------------------
# Gravity Form
--------------------------------------------------------------*/
.gform_wrapper.gform-theme .gfield_label {
  font-family: var(--font-family-content);
  color: var(--color-white);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.34px;
}

.gform_wrapper.gform-theme .full-w .ginput_complex {
  display: block !important;
  margin-left: 0;
  margin-right: 0;
}

.gfield_required {
  color: var(--color-white) !important;
}

.gform_wrapper.gform-theme .full-w .ginput_container_address span {

  padding-left: 0 !important;
  padding-right: 0 !important;
}

.gform_wrapper.gform-theme input[type="color"],
.gform_wrapper.gform-theme input[type="date"],
.gform_wrapper.gform-theme input[type="datetime-local"],
.gform_wrapper.gform-theme input[type="datetime"],
.gform_wrapper.gform-theme input[type="email"],
.gform_wrapper.gform-theme input[type="month"],
.gform_wrapper.gform-theme input[type="number"],
.gform_wrapper.gform-theme input[type="password"],
.gform_wrapper.gform-theme input[type="search"],
.gform_wrapper.gform-theme input[type="tel"],
.gform_wrapper.gform-theme input[type="text"],
.gform_wrapper.gform-theme input[type="time"],
.gform_wrapper.gform-theme input[type="url"],
.gform_wrapper.gform-theme input[type="week"],
.gform_wrapper.gform-theme textarea,
.search-form input[type="search"] {
  background: var(--color-white);
  border: unset;
  border: 0;
  color: var(--color-black) !important;
  border-radius: 0;
  font-family: var(--font-family-text);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 1.08px;
  height: 65px;
  text-transform: uppercase;
}

.gform_wrapper.gform-theme select {
  color: var(--color-black);
  border-radius: 0;
  font-family: var(--font-family-text);
  font-size: 17px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.34px;
  height: 45px;
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px !important;
}

.gform_heading {
  display: none !important;
}

body .gform_wrapper.gravity-theme .gform_drop_instructions {
  display: inline-block;
  color: var(--color-blue);
  font-family: var(--font-family-content);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.28px;
}

.gform_wrapper.gravity-theme .gfield--input-type-fileupload .gfield_label {
  color: var(--color-blue);
  font-family: var(--font-family-content);
  text-align: center;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 30px;
  letter-spacing: 0.28px;
}

body .gform_wrapper.gravity-theme .gform_drop_area {
  padding: 3em;
}

body .gform_button_select_files {
  background: unset;
  border: unset;
  padding: unset;
  text-transform: none;
  letter-spacing: inherit;
  color: var(--color-black);
  font-weight: 600;
  cursor: pointer;
}

body .gform_wrapper.gravity-theme .gform_drop_area {
  border: 0;
  border-radius: 0px;
}

body .gform_wrapper.gravity-theme .gform_fileupload_rules {
  display: none;
}

body .gform_button {
  background: var(--color-black);
  color: var(--color-white);
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: var(--color-black);
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--color-black);
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--color-black);
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-black);
}

.gform_footer {
  display: block !important;
  width: 100%;
}

.gform_wrapper.gform-theme input[type="email"] {
  color: var(--color-black) !important;
  padding: 0 25px;
}

.gform_button.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 300;
  padding-bottom: 5px;
  font-size: var(--font-size-body);
  text-shadow: none;
  box-shadow: none;
  transition: 0.3s ease all;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  color: var(--color-white);
  border-bottom: 1px solid #fff !important;
  border-radius: 0;
  border: 0;
  font-family: var(--font-family-headline);
}

.gform_button.button:hover {
  border-bottom: 1px transparent solid !important;
}

.gform_button {
  margin-top: 5px;
}

.content-search {
  background-color: var(--color-green);
  box-shadow: 1em 1em 2em rgba(0, 0, 0, 0);
  padding: 20px;
}

.content-search .search-field {
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #292929;
  background: #FFFFFF !important;
  width: 80%;
  height: 40px;
  padding: 10px;
}

.gfield_checkbox li,
.ginput_container_consent {
  position: relative;
  padding-left: 40px;
}

.gfield_checkbox li label:after,
.ginput_container_consent label:after {
  content: "";
  background: transparent;
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0;
  z-index: 0;
  border: 1px solid var(--color-black);
}

.gfield_checkbox li label:before,
.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 16px;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  left: 11px;
  top: 4px !important;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
  transition: all 100ms;
}

input[type=checkbox] {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 27px;
  height: 27px;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=checkbox]+label {
  cursor: pointer;
}

input[type=checkbox]:checked+label:before {
  opacity: 1;
  top: 3px;
}

.section-contact-home .gform_wrapper.gravity-theme #gform_fields_1_2.gform_fields {
  grid-template-columns: repeat(10, 1fr);
}

.info-opt {
  padding-top: 15px !important;
  padding-bottom: 6px !important;
}

.section-contact-forms .gfield {
  margin-bottom: 16px;
}

.form-steps-home #gform_page_1_1 .gform_page_footer {
  text-align: right;
}

.box-contact {
  background-color: var(--color-green);
  padding: 40px;
}

.gform_fields {
  grid-column-gap: 35px !important;
  grid-row-gap: 15px !important;
}

.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100% !important;
}

.contact-code {
  padding: 50px 50px 20px 50px;
  background-color: var(--color-black);
}

.gform_wrapper.gravity-theme .ginput_container_address {
  margin-bottom: -22px !important;
}

.gform_heading {
  display: none;
}

.contact-code .info-text {
  padding-top: 0;
}

.gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: var(--color-blue) !important;
  color: var(--color-white);
}

.gform_wrapper.gravity-theme .ginput_container_address span {
  flex: 0 0 33.3% !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span.ginput_address_line_1 {
  flex: 0 0 100% !important;
}

.gform_wrapper.gravity-theme .ginput_container_time {
  max-width: 105px !important;
  min-width: 105px !important;
}

.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full),
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 15px !important;
}

.info-text.cl-white {
  color: var(--color-white) !important;
}

.gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 30px !important;
  grid-row-gap: 22px !important;
}

.gform_wrapper.gravity-theme .ginput_container_address span,
.gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
  margin-bottom: 22px !important;
}

.gfield--type-fileupload {
  background-color: #F7F7F7;
  text-align: center;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.ginput_container_fileupload {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="file"] {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  align-items: center;
  width: auto;
  padding-left: 19%;
}

.gform_wrapper.gravity-theme .field_sublabel_below .ginput_complex {
  align-items: center !important;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: 0.36px;
  color: var(--color-white);
  margin-bottom: 10px !important;
}

.gform_fileupload_rules {
  display: none !important;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  color: var(--color-black) !important;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  color: var(--color-black) !important;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  color: var(--color-black) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500;
  color: var(--color-blue) !important;
}

/*Custom Checkbox*/
.custom-check .gfield_checkbox {
  display: grid;
  grid-template-columns: 50% 50%;
}

.custom-check .gfield_checkbox label {
  color: var(--color-black);
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.custom-check .gfield_checkbox div {
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.custom-check .gfield_checkbox div label:after {
  content: "";
  background: #F7F7F7;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 0;
  z-index: 0;
  border: 1px solid #D9D9D9;
}

.custom-check .gfield_checkbox div label:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 13px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
  transition: all 100ms;
}

.custom-check input[type=checkbox] {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.custom-check input[type=checkbox]+label {
  cursor: pointer;
}

.custom-check input[type=checkbox]:checked+label:before {
  opacity: 1;
  top: 5px;
}

/*Custom Radio*/
.custom-radio .gfield_checkbox {
  display: grid;
  grid-template-columns: 50% 50%;
}

.custom-radio .gfield_radio label {
  font-family: var(--font-family-content);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  color: var(--color-blue) !important;
}

.custom-radio .gfield_radio div {
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.custom-radio .gfield_radio div label:after {
  content: "";
  background: #F7F7F7;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 0;
  z-index: 0;
  border: 1px solid #D9D9D9;
}

.custom-radio .gfield_radio div label:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 13px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
  transition: all 100ms;
}

.custom-radio input[type=radio] {
  opacity: 0;
  outline: none;
  z-index: 100;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.custom-radio input[type=radio]+label {
  cursor: pointer;
}

.custom-radio input[type=radio]:checked+label:before {
  opacity: 1;
  top: 5px;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/

.section-map .col-img img {
  width: 80%;
}

.section-map .col-info h2 {
  text-align: left;
}

.market-icon {
  padding: 0.3em;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.markets-info-wrapper.row {
  padding-left: 1em;
}

.markets-info .list-item {
  padding-bottom: 1.5em;
}


/*--------------------------------------------------------------
# Counters Section
--------------------------------------------------------------*/

.counter-number {
  padding-bottom: 20px;
}

.counters-section {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  /* Fallback color */
  padding: 8em 0;
}

.counters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/uploads/2024/05/shape.png') no-repeat center center;
  background-size: cover;
  opacity: 0.5;
  /* Adjust the opacity as needed */
  z-index: -1;
}

.counters-row .counter-col:first-child .counter-number::before {
  content: "$";
}

.counters-row .counter-col:first-child .counter-number::after {
  content: "M+";
}

.counters-row .counter-col:nth-child(2) .counter-number::after,
.counters-row .counter-col:nth-child(3) .counter-number::after {
  content: "+";
}

.counter-description,
.counter-number {
  text-align: left;
}

.counter-description {
  max-width: 21em;
  width: 100%;
}

.counter-col {
  position: relative;
  padding: 0 1.5em;
}

.counter-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: #000;
  /* Change color as needed */
  height: 100%;
}


/*--------------------------------------------------------------
# Slider center
--------------------------------------------------------------*/
.section-slider-center {
  padding-top: 0 !important;
  position: relative;
  overflow: visible;
}

.section-slider-center .owl-stage {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align items to the top */
}

.section-slider-center *:has(+ .active.center) {
  right: 3%;
  transform: translateX(3%);
}

.section-slider-center .active.center+* {
  left: 3%;
  transform: translateX(-3%);
}

.section-slider-center .owl-item {
  margin: 0 37px;
  transition: all 0.8s ease-in-out;
  position: relative;
  /* Ensure positioning context */
}

.section-slider-center .owl-carousel .owl-stage-outer {
  width: calc(100vw + 5%);
  overflow: visible;
}

.section-slider-center .owl-item:not(.center) {
  transform: translate3d(0, 0, 0);
  transform: scale(1);
  transition: all 0.8s ease-in-out;
  width: 25em;
}

.section-slider-center .owl-item:not(.center) img {
  margin-top: -2em;
  object-fit: cover;
}

.case-study-heading {
  padding-top: 2em;
}


.case-studies-slider .owl-item .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.case-studies-slider .owl-item .item img {
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.8s ease-in-out;
  width: 25em;
  height: 15em;
}

.case-studies-slider .owl-item.center img {
  transform: scale(2);
  transition: all 0.8s ease-in-out;
}


.case-studies-slider .owl-item.active.center .case-study-details {
  margin-top: 10em !important;
  opacity: 1;
}

.case-studies-slider .owl-nav {
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}


.case-studies-slider .owl-nav button {
  margin: 0 10px;
  color: var(--color-black) !important;
}

.title-case-studies {
  padding-top: 54px;
  padding-bottom: 44px;
}

.box-link-case-studies a {
  color: var(--color-dark-2);
  font-family: var(--font-family-content);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.51px;
  text-transform: uppercase;
  position: relative;
}

.box-link-case-studies a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: var(--color-dark-2);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.box-link-case-studies a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.front-image {
  opacity: 1;
}

.img-columns-text {
  padding-bottom: 55px;
  border-radius: 5px;
  background-clip: padding-box;
}

.case-studies-slider .case-study-details {
  text-align: center;
  z-index: 5;
  /* Ensure details are above the image */
  transition: all 0.8s ease-in-out;
  margin-top: 1em;
  opacity: 0;
}

.case-study-details h3 {
  font-size: var(--font-size-large-body);
  text-transform: uppercase;
}

.case-study-details p {
  font-size: var(--font-size-large-body);
  font-family: var(--font-family-content);
  font-weight: 300;
}

.custom-nav-container svg {
  width: 200px !important;
}


.custom-nav-container .owl-prev {
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 9999999999;
}

.custom-nav-container .owl-next {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 9999999999;
}

.custom-nav-container button {
  all: unset;
}


.case-study-img-box img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  padding-bottom: 1em;
  height: 22em;
}








/*--------------------------------------------------------------
# Main Banner Slider
--------------------------------------------------------------*/
.page-main-banner {
  height: 100vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

.main-slider .slide {
  height: 100vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.main-slider .owl-nav {
  position: absolute;
  bottom: 12vh;
  left: calc(((100% - 1464px) / 2) + 1rem);
}

.main-slider .owl-nav [class*=owl-]:hover {
  background: transparent;
}

/*--------------------------------------------------------------
# Shape Underline
--------------------------------------------------------------*/

.text-container {
  display: inline-block;
  position: relative;
}

.underline {
  position: relative;
  overflow: visible;
}

.underline svg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 90%;
  height: 100%;
  overflow: visible;
}


.info-slider {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.info-slider .info-slide {
  max-width: 1200px;
  padding-right: 3em;
}

.dashed-line {
  fill: none;
  opacity: 0;
  stroke-width: 1px;
  stroke-dasharray: 0 1500;
  animation: dashed-line forwards;
  animation-duration: 2s;
  transition: .3s;
  animation-delay: .8s;
  animation-iteration-count: 1;
}

@keyframes dashed-line {
  0% {
    stroke-dasharray: 0 1500;
    opacity: 0
  }

  to {
    stroke-dasharray: 1500 1500;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Internal Banner
--------------------------------------------------------------*/
.page-internal-banner {
  height: 39em;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}

.page-internal-banner .box-banner {
  margin-top: 2em !important;
}

/*--------------------------------------------------------------
# Info Slider Horizontal
--------------------------------------------------------------*/
.info-slide {
  height: 34em;
}

.box-info-slider {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-info-slider {
  width: 150vw !important;
  overflow: hidden;

}

.row-slider {
  display: flex;
  align-items: center;
  gap: 30px;
}

.col-slider-title {
  min-width: 25em;
}

/*--------------------------------------------------------------
# Info Text Section
--------------------------------------------------------------*/
.section-info-center {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow-x: hidden;
}


/*--------------------------------------------------------------
# Rotate Text
--------------------------------------------------------------*/

.title-rotate {
  display: inline-block;
}

.title-rotate .text-container {
  display: inline-flex;
  flex-direction: column;
  height: 2.5rem;
  /* Adjust this to match the height of one word */
  overflow: hidden;
}

.title-rotate .text-container span {
  height: 2.5rem;
  color: var(--color-teracotta);
  animation: moveUp 8s linear infinite;
}


@keyframes moveUp {

  0%,
  12.5% {
    transform: translateY(0);
  }

  25%,
  37.5% {
    transform: translateY(-2.3rem);
  }

  50%,
  62.5% {
    transform: translateY(-4.6rem);
  }

  75%,
  87.5% {
    transform: translateY(-6.9rem);
  }

  100% {
    transform: translateY(-9.2rem);
  }
}

.text-container::after {
  content: "";
  display: block;
  height: 2.3rem;
}

/*--------------------------------------------------------------
# Section Banner Video
--------------------------------------------------------------*/
.section-banner-video-sm {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed !important;
  height: 23em;
}

.section-banner-video-md {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed !important;
  height: 30em;
}

/*--------------------------------------------------------------
# Section Our Team
--------------------------------------------------------------*/
.box-team-member {
  height: 26em;
  overflow: hidden;
  position: relative;
}

.box-team-member .img img {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.box-team-member .img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1)
}

.box-social {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-social-team {
  background-color: var(--color-teracotta);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.link-social-team:hover,
.link-social-team:focus {
  background-color: var(--color-dark);
  -webkit-transform: translatex(-10px) !important;
  -moz-transform: translatex(-10px) !important;
  -ms-transform: translatex(-10px) !important;
  -o-transform: translatex(-10px) !important;
}

.uk-modal-container.modal-team .uk-modal-dialog {
  width: 1350px;
  background: var(--color-off-white);
  padding: 60px 60px;
}

.uk-modal-container.modal-team .uk-close svg line {
  stroke: var(--color-teracotta) !important;
}

.uk-modal-container.modal-team .uk-close:hover svg line {
  stroke: var(--color-dark) !important;
}

.uk-modal-container.modal-team .uk-close svg {
  width: 20px;
}

/*--------------------------------------------------------------
# Section Logo Slider
--------------------------------------------------------------*/
.logo-partner {
  max-height: 10em;
  object-fit: contain;
  margin: 0 auto;
}

.slick-arrow {
  cursor: pointer;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.section-logo-slider .slide {
  transition: filter .4s;
  margin: 0px 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.title-footer {
  font-family: var(--font-family-content);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.36px;
  margin-bottom: 20px;
}

footer ul.menu {
  margin: 0;
  margin-block-start: 0;
  padding-inline-start: 0;
  list-style: none;
}

footer ul.menu li {
  margin-bottom: 12px;
}

footer ul.menu a,
.text-contact,
.text-contact a {
  color: var(--color-dark);
  font-family: var(--font-family-content);
  font-size: var(--font-size-link);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.32px;
}

.copyright-info {
  color: var(--color-green);
  font-family: var(--font-family-content);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.copyright-info p {
  margin-bottom: 0 !important;
}

footer ul.menu a,
.text-contact a,
.copyright-info a {
  position: relative;
}

footer ul.menu a:before,
.text-contact a:before,
.copyright-info a:before {
  content: '';
  border-bottom: 1px solid var(--color-dark);
  width: 0 !important;
  padding: 0 !important;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

footer ul.menu a:hover:before,
.text-contact a:hover:before,
.copyright-info a:hover:before,
footer ul.menu li.current-menu-item a:before {
  width: 100% !important;
  padding: 0 10px !important;
}

.social-icon {
  background-color: #824428;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transform: translatey(0px);
  -webkit-transform: translatey(0px);
  -moz-transform: translatey(0px);
  -ms-transform: translatey(0px);
  -o-transform: translatey(0px);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.social-icons a:hover {
  -webkit-transform: translatey(-10px) !important;
  -moz-transform: translatey(-10px) !important;
  -ms-transform: translatey(-10px) !important;
  -o-transform: translatey(-10px) !important;
}

/*--------------------------------------------------------------
# Blog Post Styles
--------------------------------------------------------------*/
.single-post {
  background-color: var(--color-off-white);
}

.post-featured-image-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: -173px;
  z-index: 1;
}

.post-featured-image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.post-header {
  margin-bottom: 2em;
  padding-top: 2em;
}

.post-header.has-featured-image {
  padding-top: 3em;
}

.post-title {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-primary-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.02em;
}

.post-meta {
  font-family: var(--font-family-content);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1.5em;
  letter-spacing: 0.02em;
}

.post-meta .posted-on {
  margin-right: 0.5em;
}

.post-meta .post-categories {
  font-weight: 600;
}

.post-divider {
  margin: 1.5em 0;
}

.post-content {
  font-family: var(--font-family-content);
  font-size: var(--font-size-body);
  line-height: 1.8;
  margin-bottom: 3em;
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: var(--font-family-headline);
  color: var(--color-teracotta);
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.post-content h2 {
  font-size: var(--font-size-secondary-heading);
}

.post-content h3 {
  font-size: var(--font-size-tertiary-heading);
}

.post-content h4 {
  font-size: var(--font-size-quartary-heading);
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content a {
  color: var(--color-teracotta);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content a:hover,
.post-content a:focus {
  color: var(--color-green);
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}

.post-content li {
  margin-bottom: 0.5em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

.post-content blockquote {
  border-left: 4px solid var(--color-teracotta);
  padding-left: 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: var(--color-green);
}

.post-footer {
  padding: 2em 0 3em 0;
  border-top: 2px solid var(--color-tan);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
}

.tags-label {
  font-family: var(--font-family-headline);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.post-tag {
  display: inline-block;
  padding: 0.4em 1em;
  background-color: var(--color-tan);
  font-family: var(--font-family-content);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.post-tag:hover,
.post-tag:focus {
  background-color: var(--color-teracotta);
  color: var(--color-white) !important;
}

.post-navigation {
  padding: 2em 0 3em 0;
  border-top: 2px solid var(--color-tan);
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-subtitle {
  display: block;
  font-family: var(--font-family-headline);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

.post-navigation .nav-title {
  display: block;
  font-family: var(--font-family-content);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.post-navigation a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.post-navigation a:hover,
.post-navigation a:focus {
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Press Page Styles
--------------------------------------------------------------*/
.section-press-posts {
  padding: 2em 0;
}

.press-grid {
  margin-top: 3em;
}

.press-item-col {
  margin-bottom: 2.5em;
}

.press-item {
  height: 100%;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.press-item:hover,
.press-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.press-item-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.press-item-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-tan);
}

.press-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.press-item:hover .press-item-image img,
.press-item:focus-within .press-item-image img {
  transform: scale(1.05);
}

.external-indicator {
  position: absolute;
  top: 1em;
  right: 1em;
  background-color: var(--color-white);
  color: var(--color-teracotta);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.press-item-content {
  padding: 1.5em;
  display: flex;
  flex-direction: column;
}

.press-item-meta {
  font-family: var(--font-family-content);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.75em;
  letter-spacing: 0.02em;
}

.press-item-title {
  font-family: var(--font-family-headline);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.75em 0;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.press-item:hover .press-item-title,
.press-item:focus-within .press-item-title {
  color: var(--color-teracotta) !important;
}

.press-item-excerpt {
  font-family: var(--font-family-content);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25em;
  flex-grow: 1;
}

.press-item-read-more {
  font-family: var(--font-family-headline);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: gap 0.3s ease;
}

.press-item:hover .press-item-read-more,
.press-item:focus-within .press-item-read-more {
  gap: 0.75em;
}

.press-item-read-more svg {
  width: 16px;
  height: 16px;
}

.press-pagination {
  margin-top: 3em;
  padding-top: 2em;
}

.press-pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}

.press-pagination li {
  margin: 0;
}

.press-pagination a,
.press-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5em 1em;
  font-family: var(--font-family-headline);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-dark);
  background-color: var(--color-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  gap: 0.5em;
}

.press-pagination a:hover,
.press-pagination a:focus {
  background-color: var(--color-teracotta);
  color: var(--color-white);
}

.press-pagination .current {
  background-color: var(--color-teracotta);
  color: var(--color-white);
}

.press-pagination svg {
  width: 16px;
  height: 16px;
}

/*--------------------------------------------------------------
# Latest News Section Styles
--------------------------------------------------------------*/
.section-latest-news {
  padding: 4em 0;
}

.latest-news-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2em;
}

.latest-news-image img {
  width: 100%;
  height: auto;
  display: block;
}

.latest-news-content {
  padding-left: 0;
}

@media (min-width: 992px) {
  .latest-news-content {
    padding-left: 3em;
  }

  .latest-news-image {
    margin-bottom: 0;
  }
}

.latest-news-content h2 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-secondary-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.press-link-wrapper {
  margin: 2.5em 0 2em 0;
}

.press-link {
  font-family: var(--font-family-headline);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  padding: 0.75em 2em;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.press-link:hover,
.press-link:focus {
  background-color: var(--color-teracotta);
  border-color: var(--color-teracotta);
  color: var(--color-white) !important;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.recent-post-item {
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(130, 68, 40, 0.2);
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.recent-post-link:hover,
.recent-post-link:focus {
  opacity: 0.85;
}

.recent-post-meta {
  font-family: var(--font-family-content);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
}

.recent-post-title {
  font-family: var(--font-family-headline);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.recent-post-link:hover .recent-post-title,
.recent-post-link:focus .recent-post-title {
  color: var(--color-teracotta) !important;
}

.recent-post-excerpt {
  font-family: var(--font-family-content);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Archive Page Styles
--------------------------------------------------------------*/
.archive-hero {
  padding: 4em 0 3em 0;
}

.archive-header {
  padding: 2em 0;
}

.archive-title {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-primary-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  letter-spacing: 0.02em;
}

.archive-divider {
  margin: 1.5em auto;
  display: flex;
  justify-content: center;
}

.archive-description {
  font-family: var(--font-family-content);
  font-size: var(--font-size-body);
  line-height: 1.8;
  margin-top: 1em;
}

.archive-description p {
  margin-bottom: 0.5em;
}

.archive-posts-section {
  padding: 4em 0;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
/* Small devices (landscape phones, 576px and up)*/
@media only screen and (max-width: 47.9375em) {

  .section-slider-center {
    margin-top: 1em;
  }

  .case-study-heading {
    padding-top: 1em;
    padding-bottom: 2em;
  }


  .case-studies-slider .owl-item.center img {
    transform: scale(1);
  }

  .case-studies-slider .owl-item.active.center .case-study-details {
    margin-top: 1em !important;
  }

  .section-slider-center .owl-item {
    margin: 0;
  }

  .custom-nav-container .owl-prev,
  .custom-nav-container .owl-next {
    top: 70%;
  }

  .section-slider-center {
    padding-top: 5em !important;
  }

  .case-studies-slider .owl-item .item img {
    width: 20em;
    height: 11em;
  }



  .case-study-details {
    padding-bottom: 2em;
  }

  .section-slider-center .owl-carousel .owl-stage-outer,
  .section-slider-center {
    overflow: hidden;
  }

  .counters-section {
    height: 135vh !important;
  }

  .menu-btn__line {
    height: 2px;
    width: 26px;
  }

  #menu-button {
    padding: 10px;
  }

  .custom-nav-container svg {
    width: 66px !important;
  }

  .page-main-banner .box-banner {
    padding-top: 3em;
  }

  .page-main-banner .box-banner .button-list-info {
    align-items: flex-start;
  }

  .page-id-520 .page-internal-banner {
    background-position: center center !important;
  }

  .title-rotate .text-container span {
    line-height: 55px;
  }

  .info-slider-mobile button {
    background-color: transparent !important;
  }

  .info-slider-mobile .owl-nav {
    display: flex;
  }

  .contact-icon a {
    font-size: 16px;
  }

  ul#responsive-menu-items {
    padding-top: 2em !important;
  }

  li.contact-item a {
    align-items: flex-start;
  }

  li.contact-item a img {
    margin-top: 5px;
  }

  .page-internal-banner .box-banner {
    margin-top: 4em !important;
  }

  .logo-glider .slick-next {
    right: 5%;
  }

  .logo-glider .slick-prev {
    left: 5%;
  }

  .logo-glider .slick-track .slide a {
    pointer-events: none;
  }

  .section-info-two-col .button-list-info {
    align-items: flex-start;
  }
}



@media (min-width: 576px) {
  .show-sm {
    display: none;
  }

}

@media (min-width: 640px) {

  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full),
  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
    padding-left: 15px !important;
    padding-right: 2px !important;
  }

  .gform_wrapper.gravity-theme .ginput_container_address span.ginput_address_state {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .m-md-t2 {
    margin-top: 2em;
  }

  .p-md-t5 {
    padding-top: 5em;
  }

  .mb-md-2 {
    margin-bottom: 2em !important;
  }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .show-lg {
    display: none !important;
  }

  .p-lg-t1 {
    padding-top: 1em;
  }

  .p-lg-b1 {
    padding-bottom: 1em;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .ps-lg-3 {
    padding-left: 3em;
  }

  .pe-lg-3 {
    padding-right: 3em;
  }

  .ps-lg-4 {
    padding-left: 4em;
  }

  .pe-lg-4 {
    padding-right: 4em;
  }

  .pe-lg-5 {
    padding-right: 5em;
  }

  .ps-lg-5 {
    padding-left: 5em;
  }

  .mt-lg-0 {
    margin-top: 0;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }

  .mt-lg-2 {
    margin-top: 2em;
  }

  .mt-lg-4 {
    margin-top: 4em !important;
  }

  .mb-lg-2 {
    margin-bottom: 2em !important;
  }

  .mb-lg-3 {
    margin-bottom: 3em !important;
  }

  .mb-lg-4 {
    margin-bottom: 4em !important;
  }

  .p-lg-b3 {
    padding-bottom: 3em;
  }

  .p-lg-t0 {
    padding-top: 0 !important;
  }

  .p-lg-b0 {
    padding-bottom: 0 !important;
  }

  .m-lg-t5 {
    margin-top: 5em;
  }

  .p-lg-t10 {
    padding-top: 10em;
  }

  .text-lg-end {
    text-align: right;
  }

  .text-lg-start {
    text-align: left;
  }

  footer {
    position: relative;
    height: 390px;
    z-index: -1;
    display: flex;
    align-items: center;
  }

  .footer-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    background-color: var(--color-tan);
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
  }

  .col-lg-18 {
    flex-basis: 18%;
    max-width: 18%;
  }

  .col-lg-78 {
    flex-basis: 78%;
    max-width: 78%;
  }

  .section-contact .col-img .media-content img,
  .section-contact {
    height: 54em;
  }

  .counters-section {
    padding-bottom: 4em;
  }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .ps-xl-3 {
    padding-left: 3em;
  }

  .pe-xl-3 {
    padding-right: 3em;
  }

  .p-xl-t10 {
    padding-top: 4em;
  }

}

@media screen and (min-width: 1024px) and (max-width: 1300px){
	.page-id-520 .page-internal-banner{
		background-position-x: 45%;
	}
	.counters-section{
		height: 55vh;
	}
	.custom-nav-container svg{
		width: 150px !important;
	}
	.case-studies-slider .owl-item .item img{
		height: 12em !important;
	}
	.section-info-slider-desktop{
		display: none !important;
	}
	.section-info-slider-mobile{
		display: block !important;
	}
	.section-info-slider-mobile .owl-nav{
		text-align: left; 
	}
}

@media (min-width: 1300px) {
  .ps-contain {
    padding-left: calc(((100% - 1320px) / 2) + 1rem);
  }

  .pe-contain {
    padding-right: calc(((100% - 1320px) / 2) + 1rem);
  }

  .container {
    width: 1320px;
  }

  .site-header .container {
    width: 90%;
  }

  .ps-md-contain {
    padding-left: calc(((100% - 94%) / 2) + 1rem);
  }

  .pe-md-contain {
    padding-right: calc(((100% - 94%) / 2) + 1rem);
  }
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}

@media (min-width: 1600px) {
  .ps-contain {
    padding-left: calc(((100% - 1464px) / 2) + 1rem);
  }

  .pe-contain {
    padding-right: calc(((100% - 1464px) / 2) + 1rem);
  }

  .container {
    width: 1464px;
  }

  .site-header .container {
    width: 1590px;
  }

  .ps-md-contain {
    padding-left: calc(((100vw - 1590px) / 2) + 1rem);
  }

  .pe-md-contain {
    padding-right: calc(((100vw - 1590px) / 2) + 1rem);
  }
}

@media (min-width: 1700px) {
  .site-header .container {
    width: 1648px;
  }

  .ps-md-contain {
    padding-left: calc(((100vw - 1648px) / 2) + 1rem);
  }

  .pe-md-contain {
    padding-right: calc(((100vw - 1648px) / 2) + 1rem);
  }
}

@media (min-width: 2000px) {
  .responsive-menu-interior {
    min-width: 30vw;
    width: 30vw;
  }

  .info-slide {
    height: 40em;
  }

  .section-info-slider {
    width: 130vw !important;
    overflow: hidden;
  }
}

@media (min-width: 2500px) {
  .section-banner-video-sm {
    height: 27em;
  }

  .section-banner-video-md {
    height: 34em;
  }
}



@media only screen and (min-width: 100em) {

  .section-slider-center {
    height: 70vh !important;
  }

  .line-feature-offset::after {
    transform: translate(-300px, 22px);
  }

}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {
  .section-slider-center {
    height: 95vh;
    overflow: visible;
  }

  .case-studies-slider .owl-item.active.center img {
    height: 250px;
    object-fit: cover;
  }

  /*.section-slider-center .active.center + * img, .section-slider-center *:has(+ .active.center) img{
    height: 320px; 
    width: 400px !important; 
  }*/

  .counters-section {
    height: 80vh;
  }

  .section-slider-center .owl-carousel .owl-stage-outer {
    overflow: visible;
  }

  .section-info-slider {
    height: 100vh !important;
    max-height: 100vh !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
  }
}

@media only screen and (max-width: 60em) {}

@media (max-width: 2000px) {}

@media (max-width: 1900px) {}

@media (max-width: 1650.98px) {}

@media (max-width: 1599.98px) {
  .info-slide {
    height: 28em;
  }

  .section-info-slider {
    width: 166vw !important;
    overflow: hidden;
  }

  .main-slider .owl-nav {
    position: absolute;
    bottom: 12vh;
    left: calc(((100% - 1320px) / 2) + 1rem);
  }

}

@media (max-width: 1499.98px) {

  .info-slide {
    height: 23em;
  }

  .counters-section {
    height: 100vh;
  }

  .section-info-slider {
    width: 145vw !important;
    overflow: hidden;
  }

  h2 {
    font-size: 38px;
  }

  .section-info-slider-desktop .info-slider {
    width: 219% !important;
  }

  .box-info-slider h3 {
    font-size: 22px;
  }

  .section-our-team h3 {
    font-size: 20px;
  }
}

/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {}

@media (max-width: 1299.98px) {



  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .section-info-slider {
    width: 182vw !important;
    overflow: hidden;
  }

  .info-slide {
    height: 17em;
  }

  .info-slide .col-lg-7 {
    flex-basis: 52.333333%;
    max-width: 52.333333%;
  }

  .main-slider .owl-nav {
    bottom: 5%;
    left: 1rem;
  }

}

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  .col-team {
    margin-bottom: 2em;
  }

  .box-team-member {
    height: 30em;
  }

  .line-feature::after {
    transform: translate(325px, -23px);
  }


}

@media (max-width: 1023.98px) {
  .section-banner-video-sm {
    height: 20em;
  }

  .section-banner-video-md {
    height: 25em;
  }

  .uk-modal-container.modal-team .uk-modal-dialog {
    padding: 30px 30px !important;
  }
}

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {

  .section-contact .col-info {
    padding: 2em 1em;
  }

  .map-section-wrapper.row {
    flex-direction: column-reverse;
  }

  .map-section-wrapper .media-content {
    padding-bottom: 3em;
  }

  section,
  .row-back-forth {
    padding: 3em 0 !important;
  }

  section.w-margin {
    margin: 3em 0;
  }

  .p-mv-t1 {
    padding-top: 1em !important;
  }

  .p-mv-b1 {
    padding-bottom: 1em !important;
  }

  .p-mv-t0 {
    padding-top: 0 !important;
  }

  .p-mv-b0 {
    padding-bottom: 0 !important;
  }

  .m-mv-t0 {
    margin-top: 0 !important;
  }

  .m-mv-b0 {
    margin-bottom: 0 !important;
  }

  .hide-lg {
    display: none !important;
  }

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  p br {
    display: none;
  }

  .normal.columnr-reverse-mv {
    flex-direction: column-reverse !important;
  }

  .reverse.columnr-reverse-mv {
    flex-direction: column-reverse !important;
  }

  .normal.columnr-reverse-mv .col-img {
    margin-top: 3em;
    margin-bottom: 0;
  }

  .reverse.columnr-reverse-mv .col-img {
    margin-top: 3em;
    margin-bottom: 0;
  }

  .normal .col-img {
    margin-bottom: 3em;
    margin-top: 0;
  }

  .reverse .col-img {
    margin-bottom: 3em;
    margin-top: 0;
  }

  .row-reverse-mv {
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .row-0 {
    margin: 0;
    padding: 0;
  }

  .col-0 {
    margin: 0;
    padding: 0;
  }

  .row-footer {
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .col-footer-r .row {
    text-align: center;
    gap: 40px;
  }

  .logo-footer {
    max-width: 300px;
  }

  .social-icons {
    justify-content: center;
  }

  .row-footer-bottom {
    text-align: center;
    margin-top: 40px !important;
  }

  .site-footer {
    padding: 50px 0 !important;
  }

  .col-info-slider {
    text-align: center;
    margin-bottom: 3em;
  }

  .section-info-slider .button-list-info {
    justify-content: center;
  }

  .section-info-slider {
    width: 100% !important;
  }

  .info-slide {
    height: auto;
  }

  .box-media-slider {
    margin-bottom: 3em;
    height: 35em !important;
  }

  .slider-media,
  .slider-text {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  .section-info-two-col h2 {
    text-align: left;
  }
}

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {


  .gform_wrapper.gravity-theme .ginput_container_address span {
    flex: 0 0 100% !important;
  }

  .gform_wrapper.gravity-theme .ginput_container_address span.ginput_address_state {
    padding-left: .9804% !important;
    padding-right: .9804% !important;
  }

  .page-main-banner,
  .main-slider .slide {
    height: 35em;
    background-attachment: unset !important;
  }

  .page-internal-banner {
    height: 30em;
    background-attachment: unset !important;
  }

  .responsive-menu-interior {
    width: 100% !important;
    min-width: 100% !important;
  }

  ul.responsive-menu-items a {
    font-size: 25px;
    line-height: 1.2;
  }

  ul.responsive-menu-items {
    margin: 0 !important;
  }

  ul#responsive-menu-items {
    justify-content: center;
    padding-top: 5em;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 2px;

  }

  .box-media-slider {
    height: 30em !important;
  }

  .responsive-menu-interior {
    padding: 3em 3em 0;
  }

  .page-main-banner,
  .page-internal-banner {
    margin-top: -140px !important;
  }
}

@media (max-width: 639.98px) {
  .gform_wrapper.gravity-theme .ginput_complex span {
    flex: 0 0 100%;
    margin-bottom: 22px !important;
    padding-left: 0;
  }

  .gform_wrapper.gravity-theme .ginput_complex span:last-child {
    margin-bottom: 0 !important;
  }

  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full),
  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 0 !important;
  }

  .gform_wrapper.gravity-theme .gform_fields {
    display: flex !important;
    flex-direction: column;
  }

  .gform_wrapper.gravity-theme .ginput_container_time {
    max-width: 25% !important;
    min-width: 25% !important;
  }

  .section-contact .col-info {
    padding: 2em 1em;
  }

}

/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

  .hide-sm {
    display: none !important;
  }

  ul.responsive-menu-items a {
    font-size: 20px;
    line-height: 1.2;
  }

  .site-header {
    padding: 30px 0 30px;
  }

  h1 {
    font-size: 30px !important;
    line-height: 1.5;
  }

  h2 {
    font-size: 25px !important;
  }

  h3 {
    font-size: 23px;
  }

  .button-list-info a {
    font-size: 16px;
  }

  .dp-2,
  .dp-2 p,
  .dp-2 ul,
  .dp-2 ol {
    font-size: 20px !important;
  }

  .dp-1,
  .dp-1 p,
  .dp-1 ul,
  .dp-1 ol {
    font-size: 16px !important;
  }

  .section-banner-video-sm {
    height: 15em;
    background-attachment: unset !important;
  }

  .section-banner-video-md {
    height: 20em;
    background-attachment: unset !important;
  }

  .site-header.header-scrolled img.logo,
  .site-header.header-scrolled-top img.logo {
    max-width: 100%;
  }

  .button-list-info {
    flex-direction: column;
    gap: 22px;
  }

  .box-media-slider {
    height: 20em !important;
  }

  .underline:after {
    height: 18px;
    left: 0;
    bottom: -6px;
  }

  .box-team-member {
    height: 24em;
  }
}

@media (max-width: 480px) {

  .logo-footer {
    max-width: 80%;
  }

  .responsive-menu-interior {
    padding: 2em 1em 0;
  }

  .box-team-member {
    height: 18em;
  }

  .section-contact .col-info {
    padding: 2em 1em;
  }

}

@media (max-width: 390px) {
  ul.responsive-menu-items a {
    font-size: 15px;
    line-height: 1.2;
  }
}

@media (max-width: 320px) {}