/*!
Theme Name: CMF
Author: Coffee Creative Studio
Author URI: https://www.coffeecreativestudio.com
Description: A custom theme for Certified Metal Finishing Inc.
Version: 1.0.0

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Global
# Navigation
# Home
# Footer
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #6a6a6a;
  --color-medium-grey: #2e2f2f;
  --color-dark-grey: #262626;
  --color-gold: #bba874;
  --transition: all 0.35s ease-in-out;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body * {
  scroll-margin-top: 85px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden !important;
  background-color: var(--color-black);
  color: var(--color-white);
}

h2 {
  font-family: "Roboto", sans-serif;
  color: var(--color-white);
  font-size: 29px;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.4;
  margin: 0 0 10px;
}

h3 {
  font-size: 24px;
  margin: 0 0 10px;
  line-height: 1.3;
}

h4 {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}

p {
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.5;
  font-weight: 300;
  margin: 15px 0;
}

strong {
  font-weight: 600;
}

a,
a:active,
a:focus {
  outline: none;
}

#page {
  overflow-x: hidden !important;
}

.post,
.page {
  margin: 0;
}

.home .entry-header,
.entry-footer {
  display: none;
}

.entry-content,
.hentry {
  margin: 0;
}
.max-width {
  max-width: 1030px;
  padding: 0;
  margin: 0 auto;
}
footer > .max-width {
  max-width: 1260px;
  margin: 0 auto;
}
header > .max-width {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

body:not(.home) #primary.max-width {
  margin: 120px auto 70px;
}

.flex {
  display: flex;
}

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

.space-between {
  justify-content: space-between;
}

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

a.more {
  color: var(--color-grey);
  text-decoration: none;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  transition: var(--transition);
}

a.more:hover {
  color: rgba(255, 255, 255, 0.6);
}

.buttons {
  margin-top: 35px;
}

.buttons .button {
  margin-right: 15px;
}

.button {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 4px;
  letter-spacing: 2px;
  border: 1px solid;
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 500;
  text-shadow: none;
  box-shadow: none;
  cursor: pointer;
  transition: var(--transition);
}

.button.gold {
  color: var(--color-black);
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.button.gold:hover {
  color: var(--color-white);
  border-color: var(--color-black);
  background-color: var(--color-black);
}

.button.gold-o {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.button.gold-o:hover {
  color: var(--color-black);
  border-color: var(--color-gold);
  background-color: var(--color-gold);
}

.button.none {
  border: none;
  padding-left: 0;
  padding-right: 0;
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#masthead {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  transition: var(--transition);
}

#masthead.scroll {
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}

.site-branding {
  max-height: unset;
  margin-left: 0;
  transition: var(--transition);
}

#masthead.scroll .site-branding {
  max-height: 47px;
  /* margin-left: -25px; */
  overflow: hidden;
}

.site-branding img,
img.splash-logo {
  display: block;
  height: 87px;
}
#masthead.scroll .site-branding img {
  height: 47px;
}

#site-navigation {
  display: flex;
  width: auto;
  transition: var(--transition);
}

#masthead.scroll #site-navigation {
  align-self: center;
}

.main-navigation ul {
  display: flex;
  align-items: center;
}

.main-navigation li {
  position: relative;
  margin: 0 2px;
  transition: var(--transition);
}

.main-navigation #primary-menu > li:not(.button) {
  top: 5px;
}

.main-navigation #primary-menu > li:not(.button)::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
}

.main-navigation li:last-child {
  margin-right: 0;
}

.main-navigation a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-white);
  padding: 9px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.main-navigation a:hover {
  background-color: var(--color-medium-grey);
}

.main-navigation li.menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  color: var(--color-gold);
  margin-left: 5px;
}

.main-navigation ul ul {
  background-color: #ddd;
  border-radius: 7px;
  display: block;
}

.main-navigation ul ul li {
  margin: 0;
}

.main-navigation ul ul a {
  width: 215px;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  padding: 10px 15px;
}

.main-navigation ul ul a:hover {
  background-color: #b7bcbf;
}

.button.quote {
  border-color: var(--color-gold);
  margin-left: 10px;
}

.button.quote:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.button.quote a {
  color: var(--color-gold);
  font-size: 16px;
  padding: 0;
  background-color: transparent !important;
  transition: var(--transition);
}

.button.quote:hover a {
  color: var(--color-black);
}

.notice {
  background-color: var(--color-gold);
  margin-top: -30px;
  margin-bottom: 30px;
  text-align: center;
  transition: var(--transition);
}
.notice.industry-list ul.industry-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  list-style: none;
  padding: 10px 0;
}
.notice.industry-list ul.industry-list a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}
.notice.industry-list ul.industry-list span {
  color: #000;
}
.notice.industry-list ul.industry-list .active a {
  font-weight: bold;
}

#masthead.scroll .notice {
  margin-top: -18px;
  margin-bottom: 18px;
}

.notice .max-width {
  justify-content: center;
  position: relative;
}

.notice p {
  margin: 10px 8px 10px 5px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
}

.notice a.more {
  font-size: 14px;
}

.close-notice {
  position: absolute;
  right: 0;
  background-color: var(--color-gold);
  padding: 10px;
  top: 5px;
  cursor: pointer;
}

#primary-menu .menu-item-has-children ul.sub-menu .menu-item-has-children:hover ul.sub-menu {
  width: 562px;
  left: 215px;
  border-radius: 7px;
  background: linear-gradient(156deg, #6a6a6a 15.56%, rgba(106, 106, 106, 1) 97.47%);
}
#primary-menu
  .menu-item-has-children
  ul.sub-menu
  .menu-item-has-children.service-2:hover
  ul.sub-menu {
  width: auto;
}
#primary-menu .menu-item-has-children ul.sub-menu .menu-item-has-children ul.sub-menu li {
  display: inline-flex;
  width: 265px;
}
#primary-menu .menu-item-has-children ul.sub-menu .menu-item-has-children.service-2 ul.sub-menu li {
  width: 200px;
}
#primary-menu .menu-item-has-children ul.sub-menu .menu-item-has-children ul.sub-menu li a {
  padding: 7px 10px 7px;
  width: inherit;
  color: #fff;
}
.small-gallery {
  margin-bottom: 80px;
}
/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

.home-landing {
  height: 900px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-landing::before {
  /* content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/top-circle.svg");
  width: 552px;
  height: 1055px;
  position: absolute;
  left: 0;
  bottom: -300px; */

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -23.21%, rgba(0, 0, 0, 0.62) 50%, #000 100%);
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-landing::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/top-circle-2.svg");
  width: 457px;
  height: 798px;
  position: absolute;
  right: 0;
  top: -50px;
}

.home-landing .max-width {
  position: relative;
  top: 44%;
  transform: translateY(0%);
}

.home-landing .wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-landing p {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0;
}

.home-landing h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 8px 0 25px;
  line-height: 1.2;
  background: linear-gradient(
    20deg,
    rgba(112, 111, 109, 0.9) 0%,
    rgba(112, 111, 109, 0.9) 5%,
    var(--color-white) 60%,
    var(--color-white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-landing .wrap a {
  visibility: hidden;
  opacity: 0;
}
.intro {
  visibility: hidden;
}

.intro-icons.max-width {
  max-width: 900px;
  position: relative;
  z-index: 2;
  margin: 30px auto 100px;
}

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

.intro-icon img {
  max-height: 76px;
}

.intro-icon p {
  font-size: 18px;
  font-weight: 700;
  max-width: 200px;
  margin: 10px auto 0;
  line-height: 1.4;
}

.intro-icon:nth-child(2) p {
  max-width: 180px;
}

.intro.max-width {
  margin-bottom: 100px;
}
.single-industry .intro-image img {
  height: 300px;
}

.intro-image {
  width: 47%;
}

.intro-image img {
  display: block;
  border-radius: 13px;
  object-fit: cover;
  object-position: center;
}

.intro-content {
  width: 48%;
  padding-top: 10px;
  align-content: baseline;
  position: relative;
}

.intro-content p {
  font-size: 17px;
}
.intro-content p:first-child {
  margin-top: 0;
}

.intro-content .buttons {
  width: 100%;
  padding-bottom: 20px;
  position: relative;
  /* position: absolute;
  bottom: 0; */
}

.intro-content .buttons a {
  visibility: hidden;
}
.pb-gallery {
  position: relative;
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
}
.pb-gallery .pb-single img {
  height: 300px;
  object-fit: contain;
}
.services {
  visibility: hidden;
}

.services.max-width {
  margin: 100px auto 120px;
}

.services-wrap {
  margin: 25px -5px 0 10px;
  align-items: baseline;
}

.service {
  background: var(--color-dark-grey);
  padding: 50px 70px;
  border-radius: 14px;
  width: 44%;
  position: relative;
  margin: 0 -10px;
  transition: var(--transition);
}

.service:not(.active):first-child {
  padding: 50px 65px 50px 50px;
}

.service:not(.active):last-child {
  padding: 50px 50px 50px 70px;
}

.service.active {
  background: linear-gradient(130deg, #15130d 1%, var(--color-gold) 100%);
  width: 58%;
  z-index: 2;
  padding: 50px 50px 60px;
  min-height: 350px;
}

.home .service.active {
  background: linear-gradient(130deg, #15130d 1%, var(--color-gold) 100%);
  width: 58%;
  z-index: 2;
  padding: 50px 50px 60px;
  min-height: 200px;
}

.service h3 {
  max-width: 280px;
}

.service p {
  font-size: 19px;
}

.service .button.none {
  position: absolute;
  right: 30px;
  bottom: 20px;
  color: var(--color-black);
  display: none;
}

.service .button.none:hover {
  opacity: 0.5;
}

.service.active .button.none {
  display: block;
}

.service a.more {
  color: rgba(255, 255, 255, 0.4);
}

.service a.more:hover {
  color: rgba(255, 255, 255, 0.7);
}

.service:not(.active):first-child a.more {
  position: absolute;
  bottom: 25px;
  right: 45px;
}

.service:not(.active):last-child a.more {
  position: absolute;
  bottom: 25px;
  right: 30px;
}

.services {
  .more-items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .single-item {
    text-align: center;
    background: linear-gradient(291deg, var(--color-gold) -2.74%, rgba(187, 168, 116, 0.24) 84.22%);
    border-radius: 13px;
    padding: 20px 20px;
    a {
      color: #0f0f0f;
      text-decoration: none;
    }
    h4 {
      margin-top: 0;
      color: #fff;
      font-weight: 700;
    }
    p {
      font-size: 15px;
      font-weight: 500;
    }
  }
}

.get-started {
  position: relative;
  visibility: hidden;
}
.single-industry .get-started .max-width {
  background-position: center 75%;
}
.get-started .max-width {
  background-size: cover;
  background-position: center;
  border-radius: 17px;
  margin-bottom: 100px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.get-started .max-width::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0) 138.76%);
  background-blend-mode: multiply;
}

.get-started .wrap {
  padding: 45px 25px 50px;
  z-index: 2;
}

.get-started p {
  font-size: 19px;
  max-width: 420px;
  margin: 10px 0 22px;
}
.compliance-specs {
  visibility: hidden;
}
.compliance-specs.max-width {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.compliance-specs p {
  font-size: 19px;
  margin: 0;
}
.single-industry .lb-outerContainer {
  width: 700px !important;
  height: 700px !important;
  background-color: #000;
  border: 1px solid #ffffff;
  overflow: hidden;
}
.lb-nav {
  background-color: #000;
}
.lb-data .lb-close {
  background-color: #000 !important;
}
.lb-close::before {
  color: var(--color-gold) !important;
}
.single-industry .lb-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.single-industry .lightbox .lb-image {
  width: 100% !important;
  height: 400px !important;
  object-fit: contain;
}

.single-industry .compliance-specs .slick-list,
.single-industry .compliance-specs .slick-track,
.page-template-about .compliance-specs .slick-list,
.page-template-about .compliance-specs .slick-track {
  display: flex;
}

.single-industry .compliance-specs .spec,
.page-template-about .compliance-specs .spec {
  align-items: center;
  display: flex;
  padding: 20px;
  /* filter: grayscale(1); */
  border-radius: 15px;
  margin: 0 10px;
}
/* Code to change logos to white png */
/* .single-industry .compliance-specs .spec:is(:nth-child(3), :nth-child(4)) {
  filter: brightness(0) invert(1);
} */

.single-industry .compliance-specs .spec img,
.page-template-about .compliance-specs .spec img {
  max-height: 125px;
  margin: 0 auto;
}

.spec h3 {
  font-size: 18px;
  max-width: 120px;
  margin-bottom: 0;
}

.specs-wrap {
  margin: 30px 0 0;
}

.specs-wrap .slick-prev {
  right: 34px;
  left: auto;
  top: -88px;
}

.specs-wrap .slick-next {
  right: 0;
  top: -88px;
}
.discover-more {
  visibility: hidden;
}
.discover-more.max-width {
  margin-bottom: 100px;
  position: relative;
}

.discover-more .left {
  width: 30%;
  position: relative;
  z-index: 2;
}

.discover-more .left p {
  font-size: 19px;
  margin: 0 0 50px;
  max-width: 265px;
}

.discover-more .right {
  width: 58%;
  position: relative;
  z-index: 2;
}

.link-block {
  background-color: var(--color-medium-grey);
  border-radius: 13px;
  padding: 25px;
  margin: 1% 0;
  text-decoration: none;
  width: 32%;
  position: relative;
  transition: var(--transition);
}

.link-block.spacer {
  background-color: transparent;
}
.page-template-services .discover-more .link-block,
.page-template-services .discover-more .link-block:nth-child(2) {
  background-color: #171717;
}

.page-template-services .discover-more .link-block:nth-child(1),
.discover-more .link-block:nth-child(2) {
  background-color: var(--color-gold);
}

.link-block h3 {
  color: var(--color-white);
  font-size: 18px;
  margin: 0;
}

.link-block p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  max-width: 150px;
  line-height: 1.3;
}
.page-template-services .discover-more .link-block:nth-child(2) h3,
.page-template-services .discover-more .link-block:nth-child(2) p {
  color: #fff;
}

.page-template-services .discover-more .link-block:nth-child(1) h3,
.page-template-services .discover-more .link-block:nth-child(1) p,
.discover-more .link-block:nth-child(2) h3,
.discover-more .link-block:nth-child(2) p {
  color: var(--color-black);
}

a.link-block:hover {
  background-color: var(--color-grey);
}

a.link-block::after {
  font-family: "Arial", sans-serif;
  content: "+";
  color: var(--color-grey);
  font-size: 23px;
  font-weight: 500;
  position: absolute;
  right: 15px;
  bottom: 5px;
  transition: var(--transition);
}

a.link-block:hover::after {
  color: var(--color-medium-grey);
}
.home .gallery {
  padding-bottom: 70px;
}

.gallery {
  grid-gap: 0;
  position: relative;
  z-index: 2;
  visibility: hidden;
}

.gallery .gallery-header {
  width: 100%;
  margin-bottom: 20px;
}

.gallery-header a {
  align-self: center;
  margin-left: 18px;
  color: var(--color-gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  object-position: center;
  align-self: flex-start;
}

.gallery .image-column:nth-child(2),
.gallery .image-column:nth-child(3),
.gallery .image-column:nth-child(4) {
  width: 21.5%;
}

.gallery .image-column:nth-child(5) {
  width: 31%;
}

.gallery .image-column:nth-child(2) a:first-child img {
  height: 127px;
  margin-bottom: 15px;
}

.gallery .image-column:nth-child(2) a:last-child img {
  height: 235px;
}

.gallery .image-column:nth-child(3) img {
  height: 383px;
}

.gallery .image-column:nth-child(4) a:first-child img {
  height: 235px;
  margin-bottom: 15px;
}

.gallery .image-column:nth-child(4) a:last-child img {
  height: 127px;
}

.gallery .image-column:nth-child(5) a:first-child img {
  height: 127px;
  margin-bottom: 15px;
}

.gallery .image-column:nth-child(5) a:last-child img {
  height: 235px;
}
.feat-gallery {
  margin-bottom: 112px;
}
.feat-gallery .featured-gallery {
  width: 100%;
}
.feat-gallery .gallery-item {
  height: 200px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  position: relative;
}
.feat-gallery .gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #222, #000);
}
.feat-gallery .gallery-item:not(:last-child) {
  margin-right: 22px;
}
.feat-gallery .gallery-item img {
  object-fit: contain;
  object-position: center;
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.single-industry .feat-gallery .gallery-item img {
  padding: 20px;
}
.feat-gallery .slick-prev,
.feat-gallery .slick-next {
  top: -25px;
}
.feat-gallery .slick-prev {
  left: auto;
  right: 50px;
}
.feat-gallery .slick-next {
  right: 20px;
}

.lb-outerContainer {
  border-radius: 15px;
}

.lightbox .lb-image {
  border: none;
  padding: 0;
  border-radius: 15px;
}

.lb-data .lb-number {
  display: none !important;
}

.lb-dataContainer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  height: 100%;
}

.lb-data .lb-details {
  width: 100%;
  float: none;
  text-align: center;
  line-height: 1.1em;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 20px 0;
}

.lb-nav {
  z-index: 9999;
  height: 70px;
  bottom: 0;
  top: auto;
}

.lb-data .lb-details {
  width: 100%;
  float: none;
  text-align: center;
  line-height: 1.1em;
  min-height: 70px;
}

.lb-data .lb-caption {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  font-style: italic;
  line-height: 1.4;
  max-width: 670px;
  display: block;
  margin: 0 auto;
}

.lb-closeContainer {
  position: absolute;
  right: 15px;
  top: 15px;
}

.lb-data .lb-close {
  opacity: 1;
  background-image: none;
  position: relative;
}

.lb-close::before {
  font-family: "Roboto", sans-serif;
  content: "X";
  display: block;
  color: var(--color-black);
  font-size: 25px;
  font-weight: 600;
  position: absolute;
  top: calc(50% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.lb-nav a.lb-prev {
  background: url("/wp-content/uploads/2024/12/arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 11px;
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.lb-nav a.lb-next {
  background: url("/wp-content/uploads/2024/12/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 11px;
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.certification-logos {
  visibility: hidden;
}

.certification-logos.max-width {
  margin: 100px auto 100px;
}

.certification-logos img {
  display: block;
  max-height: 105px;
  /* filter: grayscale(1); */
}

.single-industry .certification-logos .slick-list,
.single-industry .certification-logos .slick-track {
  display: flex;
}

.single-industry .certification-logos .cert-logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: var(--color-white);
  border-radius: 15px;
  margin: 0 10px;
}

.single-industry .certification-logos .cert-logo img {
  max-height: 130px;
  margin: 0 auto;
}

/* Page-template-service */
.page-template-services .page-title::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1055px;
  height: 1055px;
  top: 0px;
  left: -560px;
  z-index: -1;
}
.page-template-services .block-content::before {
  content: "";
  position: absolute;
  border-radius: 1251px;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.26) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 1251px;
  height: 1251px;
  top: 0px;
  left: -560px;
  z-index: -1;
}
/* .page-template-services .flip-cards::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.3) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 729px;
  height: 729px;
  right: -350px;
  z-index: -1;
  bottom: -350px;
} */

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

.site-footer {
  background-color: var(--color-dark-grey);
  position: relative;
  visibility: hidden;
}

.site-footer::before {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/footer-circle-1.svg");
  width: 376px;
  height: 485px;
  position: absolute;
  left: 0;
  bottom: 50px;
}

.site-footer::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/footer-circle-2.svg");
  width: 237px;
  height: 445px;
  position: absolute;
  right: -20px;
  top: -275px;
}

.site-info {
  padding: 110px 30px 80px;
  position: relative;
  z-index: 2;
}

.site-info .left {
  width: 45%;
}

.footer-about {
  width: 48%;
}

.footer-about p {
  font-size: 19px;
  max-width: 185px;
  margin: 5px 0;
}

.footer-quick-links {
  width: 48%;
}

.quick-links {
  margin-top: 8px;
}

a.quick-link {
  display: block;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 7px 0;
  letter-spacing: 0.2px;
}

.site-info .right {
  width: 53%;
}

.footer-blocks {
  width: 33%;
}

.footer-blocks a.link-block {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding-bottom: 40px;
}

.footer-blocks .link-block p {
  max-width: 125px;
}

.footer-blocks a.link-block.last {
  background-color: var(--color-gold);
  height: 128px;
  margin-bottom: 0;
}

.footer-blocks a.link-block.last:hover {
  background-color: var(--color-grey);
}

.footer-blocks a.link-block.last:hover::after {
  color: var(--color-medium-grey);
}

.footer-blocks a.link-block.last h3 {
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 16px;
}

.footer-blocks a.link-block.last:hover h3 {
  color: var(--color-white);
}

.contact-info {
  width: 65%;
  background-color: var(--color-medium-grey);
  padding: 30px;
  border-radius: 13px;
  position: relative;
}

.contact-info h4 {
  color: var(--color-white);
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info a.more {
  margin-top: -10px;
  display: block;
}

.contact-info p a {
  color: var(--color-white);
  text-decoration: none;
}

.contact-info .button.none {
  position: absolute;
  bottom: 22px;
  right: 30px;
  font-weight: 800;
}

.additional-links.max-width {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.additional-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  margin-right: 25px;
  position: relative;
}

.additional-links a:not(:last-child)::after {
  content: "|";
  display: inline-block;
  position: relative;
  right: -12px;
}

.bottom-footer {
  background-color: #b6bcbe;
}

.bottom-footer p,
.bottom-footer a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.bottom-footer p {
  font-style: italic;
}

.coffee-footer img {
  margin-right: 8px;
  position: relative;
  z-index: 2;
}
.not-found {
  text-align: center;
}
.not-found a {
  margin-top: 50px;
}
/*--------------------------------------------------------------
# Template Glows
--------------------------------------------------------------*/
/* Home discover more glow */
.home .discover-more::before {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/middle-circle.svg");
  width: 1251px;
  height: 1251px;
  position: absolute;
  left: -20px;
  top: -600px;
  z-index: -1;
}

/* about template glow */
.page-template-about .discover-more::before {
  top: -820px;
}
.template-about {
  position: relative;
}
.template-about::before {
  position: absolute;
  content: "";
  border-radius: 834px;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.28) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 834px;
  height: 834px;
  right: 0px;
  z-index: -1;
  bottom: -40px;
}
/* Certifications glow */
.page-template-certification .page-title::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.3) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 729px;
  height: 729px;
  right: -190px;
  z-index: -1;
  bottom: -350px;
}
/* Work page banner glow */
.page-template-work .template-work::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.28) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 668px;
  height: 668px;
  right: -180px;
  z-index: -1;
  bottom: -110px;
}
/* Work get started glow */
.page-template-work .get-started::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1332px;
  height: 1332px;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* Gallery glow yellow */
.full-gallery::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1181px;
  height: 1181px;
  left: -500px;
  top: -200px;
  z-index: -1;
}
/* Gallery glow white */
.full-gallery::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.3) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 958px;
  height: 958px;
  right: -480px;
  top: 710px;
  z-index: -1;
}
/* Get a quote glow */
.page-template-get-a-quote .Form::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1181px;
  height: 1181px;
  left: -590px;
  top: -550px;
  z-index: -1;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step:last-child {
  display: none;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step:nth-last-child(2) {
  width: 26px;
  min-width: 26px;
}
.page-template-get-a-quote
  .Form
  .form-data
  .gf_page_steps
  .gf_step:nth-last-child(2)
  .gf_step_label {
  padding: 0;
}
/* Industries glow yellow */
.single-industry .pb {
  position: relative;
}
.single-industry .pb::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1181px;
  height: 1181px;
  left: -500px;
  top: -200px;
  /* z-index: -1; */
}
/*--------------------------------------------------------------
# Template CSS
--------------------------------------------------------------*/
/* -------------- Hero */
.hero {
  height: 780px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -2.21%,
    rgba(0, 0, 0, 0.62) 30.55%,
    #000 93.53%
  );
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero .max-width {
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero .content {
  position: absolute;
  bottom: 90px;
  width: 100%;
  max-width: 920px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
}
.hero .content-area h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.32px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.hero .content-area h1 {
  margin-top: 0;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 1.04px;
  background: linear-gradient(244deg, #fff 40.1%, #000 135.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero .overlay-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: #0000008e;
}
/* -------------- Page title */
.page-title {
  padding-top: 206px;
  padding-bottom: 116px;
  position: relative;
  visibility: hidden;
}
.page-title .smaller-title {
  color: var(--color-gold);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4.32px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
}
.page-title .larger-title {
  background: linear-gradient(244deg, #fff 40.1%, #000 135.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 1.04px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-title .page-desc {
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
  line-height: 37px;
  letter-spacing: 0.6px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0;
}
.page-title a.button {
  opacity: 0;
}
.page-title .max-width {
  text-align: center;
}
.page-title.has_bg_img {
  height: 65vh;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 70px;
}
.page-title.has_bg_img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* background: #000000ba; */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -100%, rgba(0, 0, 0, 0.7) 50%, #000 100%);
  border-radius: 0;
  inset: 0;
}
.page-title.has_bg_img .max-width {
  z-index: 2;
}
/* -------------- Career Benefit */
.career-benefits {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 94px;
  visibility: hidden;
}
.career-benefits .benefit-desc {
  flex: 1.5;
  max-width: 50%;
}
.career-benefits .benefit-desc p:first-child {
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.58px;
  line-height: normal;
}
.career-benefits .benefit-desc p {
  color: #fff;
  font-size: 19px;
  font-weight: 300;
  line-height: 25px;
}
.career-benefits ul.benefit-list {
  columns: 2; /* Creates two columns */
  column-gap: 40px;
  list-style: disc;
  padding: 0;
  max-width: 600px;
  margin-left: 120px;
}

.career-benefits .benefit-list li {
  break-inside: avoid; /* Prevents items from splitting between columns */
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 33px;
}
/* ---------- information blocks */
.extra-info {
  color: #fff;
  text-align: center;
  font-size: 19px;
  font-weight: 300;
  line-height: 25px;
  text-transform: capitalize;
  margin-top: 24px;
  margin-bottom: 0;
}
/* -------------- Careers list */
.careers-section {
  visibility: hidden;
}
.careers-section.shell {
  display: block !important;
}
.shell {
  position: relative;
}
.careers-section::before {
  content: "";
  position: absolute;
  right: -400px;
  top: -400px;
  border-radius: 940px;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.28) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 940px;
  height: 940px;
}
.shell .careers-list {
  flex: 1;
}
.shell .flex {
  column-gap: 41px;
}
.careers-section .careers-list .single-career {
  padding: 19px 35px 19px 35px;
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.careers-section .careers-list .single-career:hover {
  background: var(--color-gold);
  color: var(--color-black);
}
.careers-section .careers-list .single-career:not(:last-child) {
  margin-bottom: 3px;
}
.careers-section .careers-list .single-career span {
  font-weight: 400;
  font-style: italic;
  color: var(--color-grey);
}
.cta-block {
  display: block;
  border-radius: 13px;
  background: linear-gradient(291deg, var(--color-gold) -2.74%, rgba(187, 168, 116, 0.24) 84.22%);
  padding: 32px 74px 17px 26px;
  height: 192px;
  max-width: 207px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.cta-block::after {
  content: "+";
  position: absolute;
  bottom: 17px;
  right: 17px;
  color: #000;
  font-size: 20px;
  line-height: normal;
}
.cta-block .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 9px;
}
.cta-block .how-text,
.apply-block .how-text {
  font-size: 13px;
  font-weight: 400;
  margin: 0 0;
}
/* -------- single careers */
.careers-section.single .flex {
  column-gap: 16px;
}
.career-content {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  flex: 1;
  padding: 40px 33px;
}
.career-content ul {
  margin: 0;
  padding: 0 16px;
}
.career-content ul li:not(:last-child) {
  margin-bottom: 20px;
}
.block-stack {
  display: flex;
  flex-direction: column;
  row-gap: 19px;
}
.block-stack .apply-block {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  position: relative;
  text-decoration: none;
  min-height: 126px;
  max-width: 207px;
  width: 100%;
}
.career-content .block-stack .apply-block p,
.careers-section .block-stack .apply-block p {
  color: #fff;
  font-size: 18px;
  padding: 23px;
  margin: 0;
  font-weight: 700;
}
.apply-block::after {
  content: "+";
  position: absolute;
  bottom: 17px;
  right: 17px;
  color: var(--color-grey);
  font-size: 20px;
  line-height: normal;
}
/* --------- Accordion */
.accordion {
  position: relative;
  margin-bottom: 117px;
  visibility: hidden;
}
.accordion .shell {
  display: block !important;
}
.accordion::before {
  position: absolute;
  content: "";
  left: -670px;
  top: 100px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(183, 188, 191, 0.26) 0%,
    rgba(183, 188, 191, 0) 100%
  );
  width: 1251px;
  height: 1251px;
}
.accordion .shell .max-width > p {
  margin-bottom: 46px;
  margin-top: 0;
  font-size: 19px;
  line-height: 25px;
}
.block-stack.gen a {
  height: 126px;
}
.block-stack.gen .apply-block {
  padding: 23px;
}
.block-stack.gen .apply-block .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
  margin-top: 0;
}
.accordion .accordion-build {
  flex: 1;
}
.accordion .accordion-build .single-acc {
  margin-bottom: 3px;
}

.accordion .accordion-build .single-acc .question {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  padding: 19px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.accordion .accordion-build .single-acc .question:hover {
  background: var(--color-gold);
  color: var(--color-black);
}
.accordion .accordion-build .single-acc .question:hover span {
  color: var(--color-black);
  opacity: 1;
}
.accordion .accordion-build .single-acc .question span {
  color: #fff;
  opacity: 0.25;
  font-size: 22px;
  font-weight: 700;
}
.accordion .accordion-build .single-acc .answer {
  padding-left: 36px;
  padding-right: 36px;
  display: none;
}
.home .accordion .accordion-build .single-acc .answer ul {
  columns: 1 !important;
  margin-bottom: 20px;
  margin-left: 0;
}
.accordion .accordion-build .single-acc .answer > ul:not(.additional ul):not(ul ul) {
  columns: 2;
  margin: 0;
  column-gap: 60px;
  padding-left: 16px;
}
.single-industry .accordion .accordion-build .single-acc .answer > ul:not(.additional ul) {
  list-style: none;
  padding: 0;
}
.single-industry
  .accordion
  .accordion-build
  .single-acc
  .answer
  > ul:not(.additional ul)
  > li
  > ul {
  margin: 8px 0;
  padding: 0 0 0 18px;
}
.accordion .accordion-build .single-acc .answer p {
  line-height: 25px;
  font-size: 19px;
}
.accordion .accordion-build .single-acc .answer ul li {
  line-height: 25px;
  font-size: 19px;
}
.accordion .accordion-build .single-acc .answer ul li:not(:last-child) {
  margin-bottom: 7px;
}
.accordion .accordion-build .single-acc .answer ul li::marker {
  color: var(--color-gold);
}
/* Additional content */
.accordion .accordion-build .single-acc .answer .additional {
  display: flex;
  justify-content: space-between;
  gap: 74px;
}
.accordion .accordion-build .single-acc .answer .additional div {
  width: 50%;
}
.accordion .accordion-build .single-acc .answer .additional div ul {
  margin: 0;
  padding-left: 16px;
}

.quick-search-form {
  display: none;
}
.quick-search-form .input-container {
  position: relative;
  display: inline-block;
  max-width: 207px;
  width: 100%;
}

.quick-search-form .input-container input {
  padding: 14px 21px;
  height: 42px;
  font-size: 13px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  color: var(--color-gold);
}
.quick-search-form .input-container input::placeholder {
  color: var(--color-gold);
}
.quick-search-form .input-container input:focus-visible {
  outline-color: var(--color-gold);
}

.quick-search-form .input-container svg {
  fill: var(--color-gold);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.is-hidden {
  display: none;
}
.highlight {
  color: #000000;
  background: var(--color-gold);
  padding: 1px 1px;
}
/* Active accordion */
.accordion .accordion-build .single-acc.active .question {
  background: var(--color-gold);
  color: var(--color-black);
}
.accordion .accordion-build .single-acc.active .question span {
  color: var(--color-black);
  opacity: 1;
}

/* ----------- Popup form */
.popup-form {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 9999;
  border-radius: 13px;
  background: var(--color-dark-grey);
  padding: 50px;
  max-width: 1000px;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  overflow-y: scroll;
}
.popup-form span.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
  transition: var(--transition);
  &:hover {
    transform: rotate(5deg);
  }
}
body.popup-active:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.popup-form .title {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.58px;
}

/* ----------- Three block */
#three-block {
  position: relative;
  margin-bottom: 116px;
  visibility: hidden;
}
#three-block::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1055px;
  height: 1055px;
  top: -400px;
  left: -600px;
  z-index: -1;
}
#three-block .three {
  column-gap: 80px;
}
#three-block .left {
  max-width: 420px;
}
#three-block .left p {
  font-size: 19px;
  line-height: 25px;
}
#three-block .left .buttons {
  margin-top: 46px;
}
#three-block .left .buttons a {
  visibility: hidden;
}
#three-block .left .buttons a:not(:last-child) {
  margin-right: 15px;
}
#three-block .right {
  max-width: 432px;
}

#three-block .link-blocks {
  justify-content: flex-end;
  gap: 18px;
}
#three-block .link-block.spacer {
  background: transparent;
}
#three-block .link-block {
  background: linear-gradient(
    291deg,
    rgba(190, 170, 117, 0.53) 19.28%,
    rgba(187, 168, 116, 0.13) 90.61%
  );
  width: 207px;
  height: 126px;
  visibility: hidden;
}
#three-block .link-block p a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#three-block .link-block p a:hover {
  color: var(--color-grey);
}
#three-block .link-block::after {
  color: #fff;
}
.page-template-contact #three-block .right {
  max-width: 600px;
}
.page-template-contact #three-block .link-block:nth-child(odd) {
  min-width: 255px;
}
/* --------- Image and text */
.img-text {
  align-items: center;
}
.img-text .intro-content p {
  margin: 0;
}
.img-text.type-quote .intro-image {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  padding: 51px 43px 30px 45px;
  max-width: 497px;
  width: 100%;
}
.img-text.type-quote .intro-image blockquote {
  margin: 0;
}
.img-text.type-quote .intro-image blockquote p {
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.6px;
  margin: 0;
  font-style: italic;
}
.img-text.type-quote .intro-image a {
  text-decoration: none;
  color: var(--color-grey);
  font-size: 16px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 40px;
  display: block;
  text-align: right;
}
.img-text.type-solid {
  border-radius: 13px;
  background: linear-gradient(275deg, #beaa75 -1.59%, rgba(187, 168, 116, 0) 113.79%);
  padding: 63px 23px 27px 69px;
  align-items: flex-start;
}
.img-text.type-solid h2 {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.58px;
  margin: 0;
}
.img-text.type-solid .intro-content {
  padding-top: 0;
}
.img-text.type-solid .intro-content a {
  margin-top: 57px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  text-align: right;
}
/* ------------- Numbered Information */
.numbered-info {
  margin-bottom: 124px;
  visibility: hidden;
}
.numbered-info h2 {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-align: center;
  margin-bottom: 57px;
  margin-top: 0;
}
.numbered-info .numbered-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  column-gap: 70px;
  row-gap: 20px;
  max-width: 970px;
  margin: auto;
}
.numbered-info .numbered-items .single-item {
  display: grid;
  place-items: center;
  background: linear-gradient(
    331deg,
    rgba(187, 168, 116, 0.83) -5.56%,
    rgba(187, 168, 116, 0) 103.98%
  );
  border-radius: 13px;
  padding: 50px 20px;
}
.numbered-info .numbered-items .single-item .number {
  font-size: 58px;
  color: #fff;
  opacity: 0.2;
  letter-spacing: 1.16px;
  font-weight: 800;
  text-align: center;
}
.numbered-info .numbered-items .single-item p {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

/* ------------------ PDF Downloads */
.pdf-downloads {
  position: relative;
  margin-bottom: 100px;
  visibility: hidden;
}
.page-template-certification .pdf-downloads .shell {
  display: block !important;
}

.page-template-certification .pdf-downloads::before {
  position: absolute;
  content: "";
  left: -550px;
  top: 330px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.33) 0%,
    rgba(187, 168, 116, 0) 100%
  );
  width: 1181px;
  height: 1181px;
}
.page-template-certification .pdf-build {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.pdf-downloads .shell .max-width > p {
  margin-bottom: 86px;
  margin-top: 0;
  font-size: 19px;
  line-height: 25px;
}
.the_build {
  flex: 1;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 43px;
  padding: 46px 43px;
}
.the_build .txt_output p {
  font-size: 19px;
}
.the_build .txt_output :is(ol li, ul li) {
  margin-bottom: 10px;
}
.the_build :is(ol, ul) {
  margin: auto 0;
}
.the_build form button.add_list_item,
.the_build form button.delete_list_item {
  filter: invert(1) contrast(1);
}
.pdf-downloads .pdf-build .single-pdf {
  border-radius: 13px;
  background: linear-gradient(
    331deg,
    rgba(187, 168, 116, 0.83) -5.56%,
    rgba(187, 168, 116, 0) 103.98%
  );
  width: calc(33.3% - 43px);
  min-height: 308px;
  padding: 58px 23px 27px 28px;
  text-align: center;
}
.pdf-downloads .pdf-build .single-pdf .pdf-icon svg {
  fill: #fff;
}
.pdf-downloads .pdf-build .single-pdf .pdf-title {
  color: #fff;
  margin-top: 17px;
  margin-bottom: 33px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  min-height: 65px;
}
.pdf-downloads .pdf-build .single-pdf .pdf-btn {
  padding: 11px 25px;
  font-size: 16px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--color-gold);
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--color-gold);
  transition: all 0.3s ease-in-out;
}
.pdf-downloads .pdf-build .single-pdf .pdf-btn:hover {
  background-color: var(--color-black);
  color: var(--color-gold);
}
/* -------------------- Tab content and pdf downloads */
.tab-content {
  position: relative;
}
.tab-content .tabs {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 23px;
  margin-bottom: 106px;
}
.tab-content .tabs .tab {
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.13);
  padding: 35px;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.tab-content .tabs .tab:hover {
  background: linear-gradient(95deg, rgba(187, 168, 116, 0) -17.61%, #bba874 110.05%);
}
.tab-content .tabs .tab.active {
  background: linear-gradient(95deg, rgba(187, 168, 116, 0) -17.61%, #bba874 110.05%);
  font-weight: 700;
}
.tab-content .pdf-build {
  justify-content: flex-start;
}
.shell {
  display: none;
}
.shell.active {
  display: block;
}
/* --------------------------- gallery */
.full-gallery {
  position: relative;
  width: 100%;
  margin-bottom: 117px;
  visibility: hidden;
}
.full-gallery .gallery_images {
  width: 100%;
  display: block;
  column-count: 4;
  column-gap: 14px;
}
.full-gallery .gallery_images .img-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 15px;
}
.full-gallery .gallery_images .img-wrapper .single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.full-gallery .gallery_images .img-wrapper .single-img:hover {
  transform: scale(1.02);
}
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 41px;
  gap: 30px;
}

.gallery-pagination a,
.gallery-pagination span {
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.gallery-pagination a.next-page,
.gallery-pagination a.prev-page {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
}
.gallery-pagination a.prev-page {
  margin-right: 75px;
}
.gallery-pagination a.next-page {
  margin-left: 75px;
}

.gallery-pagination a:hover {
  color: var(--color-gold);
}

.gallery-pagination .current-page {
  background-color: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  padding: 8px 16px;
  border-radius: 6px;
}

.gallery-pagination .dots {
  border: none;
  padding: 8px 4px;
}

.gallery_images.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Optional loading spinner */
.gallery_images.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-grey);
  border-top: 4px solid var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ------------------------------- Form */
.Form {
  position: relative;
  margin-bottom: 91px;
  visibility: hidden;
}
.Form .form-data {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  padding: 76px 50px 60px 61px;
}
.Form .form-data h2 {
  font-size: 29px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.58px;
  margin-bottom: 32px;
  margin-top: 0;
}
.Form .form-data .form-shortcode {
  position: relative;
}
/* Get a quote */
.page-template-get-a-quote #gform_wrapper_3 {
  scroll-margin-top: 150px;
}
.page-template-get-a-quote .Form .form-data {
  border-radius: 0;
  background: transparent;
  padding: 0px 0px 0px 0px;
}
.page-template-get-a-quote form,
.page-template-get-a-quote .gform_confirmation_wrapper {
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  padding: 76px 50px 60px 61px;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  position: relative;
  margin-bottom: 55px;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step {
  position: relative;
  width: 100%;
  margin: 0 !important;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step .gf_step_number {
  position: relative;
  z-index: 2;
  background-color: #fff;
  color: #fff;
  border: none;
  width: 26px;
  height: 26px;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  z-index: -1;
}
/* .page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step.gf_step_first::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 9px;
  background: var(--color-gold);
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
} */
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step.gf_step_completed::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 9px;
  background: var(--color-gold);
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
}
.page-template-get-a-quote .Form .form-data .gf_page_steps .gf_step.gf_step_last::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 1;
}
.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::before,
.gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::after {
  display: none !important;
}
/* ------------------------- Splash */
body.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  z-index: 9999;
  padding: 45px 2rem 2rem;
}
.splash::before {
  content: "";
  top: 0;
  left: -360px;
  z-index: -1;
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(182, 188, 190, 0.32) 0%,
    rgba(217, 217, 217, 0.05) 100%
  );
}
.splash::after {
  content: "";
  top: 0;
  right: -600px;
  z-index: -1;
  position: absolute;
  width: 1369px;
  height: 1369px;
  border-radius: 50%;
  background: radial-gradient(
    46.41% 46.41% at 50% 50%,
    rgba(187, 168, 116, 0.3) 0%,
    rgba(187, 168, 116, 0) 100%
  );
}
.splash .inner-splash-container {
  visibility: hidden;
  /* max-height: 1000px;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden; */
}
.splash .inner-max-width {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.splash .industry-container {
  text-align: center;
  width: 100%;
}
.splash .industry-container .container-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.splash .industry-container .splash-btn {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.32px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.splash .industry-container .splash-btn span {
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.splash .industry-container .splash-btn:hover span {
  transform: translateY(10px);
}
.splash .industry-container h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.8px;
  margin-top: 5px;
  margin-bottom: 0;
  background: linear-gradient(244deg, #fff 40.1%, #000 135.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.splash .industry-container .industries {
  column-gap: 26px;
  row-gap: 29px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  width: 100%;
  height: 100%;
  margin-top: 29px;
  margin-bottom: 29px;
}
.splash .industry-container .industries .industry-item {
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  transition: var(--transition);
}
.splash .industry-container .industries .industry-item::before {
  position: absolute;
  content: "+";
  right: 23px;
  top: auto;
  bottom: 23px;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-gold);
  transition: var(--transition);
  transform: scale(1);
  z-index: 1;
  transform-origin: center;
}
.splash .industry-container .industries .industry-item::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  background: linear-gradient(280deg, rgba(0, 0, 0, 0.59) 8.01%, rgba(0, 0, 0, 0.21) 95.29%);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.splash .industry-container .industries .industry-item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}
.splash .industry-container .industries .industry-item:nth-child(3) img {
  object-position: bottom;
}
.splash .industry-container .industries .industry-title {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.58px;
  pointer-events: none;
  padding: 0 20px;
  transition: all 0.1s ease;
}
.splash .industry-container .industries .industry-item:hover::before {
  transform: scale(1.3);
}
.splash .industry-container .industries .industry-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gravity forms
--------------------------------------------------------------*/
.cmf .gform_heading {
  display: none;
}
.cmf form .gform_button:hover {
  background-color: transparent;
  color: var(--color-gold);
}
.cmf .upload-form {
  background: #fff;
  color: #000;
  padding: 26px 32px;
  border-radius: 10px;
}
.cmf
  .gfield
  :is(
    input[type="email"],
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select
  ) {
  border-radius: 10px;
  padding: 22px 32px !important;
  color: #000;
  font-weight: 600;
}
.cmf
  .gfield
  :is(
    input[type="email"],
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select
  ):focus-visible {
  outline-color: var(--color-gold);
}
.cmf .gfield input[type="email"]::placeholder,
.cmf .gfield input[type="text"]::placeholder,
.cmf .gfield input[type="tel"]::placeholder,
.cmf .gfield input[type="number"]::placeholder,
.cmf .gfield textarea::placeholder,
.cmf .gfield select option::placeholder {
  color: #000;
  font-weight: 600;
  font-style: italic;
}
.cmf #field_submit {
  justify-content: flex-end;
  grid-column: 11 / 13 !important;
}
.cmf #field_submit input {
  align-self: flex-start !important;
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 11px 25px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.9px;
  font-size: 16px;
  line-height: normal;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cmf #field_submit input:hover {
  background-color: transparent;
  color: var(--color-gold);
}
.cmf .gfield--type-captcha {
  display: flex;
  justify-content: flex-end;
  grid-column: span 10 !important;
}
.cmf .gform-page-footer {
  text-align: right;
}
.cmf .gform-theme-button,
.cmf .gform_button {
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold) !important;
  border-radius: 4px;
  padding: 11px 25px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.9px;
  font-size: 16px;
  line-height: normal;
  width: auto;
  transition: all 0.3s ease-in-out;
}
.cmf .gform-theme-button:hover {
  background-color: transparent;
  color: var(--color-gold);
}
.cmf .gform-theme-button--secondary {
  background-color: transparent !important;
  color: var(--color-gold) !important;
  transition: all 0.3s ease-in-out;
}
.cmf .gform-theme-button--secondary:hover {
  background-color: var(--color-gold) !important;
  color: var(--color-black) !important;
}
/* ----------------------------- Notice popup */
.notice-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: none;
}

.notice-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 90%;
  max-width: 1033px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999999;
  display: none;
  overflow: hidden;
}

.notice-popup-header {
  background: var(--color-gold);
  padding: 26px 75px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.notice-popup-close {
  cursor: pointer;
  font-size: 25px;
}

.notice-popup-content {
  padding: 36px 75px;
  text-align: left;
  column-count: 2;
}

.notice-popup-content p {
  color: #000;
  font-weight: 400;
  margin-top: 0;
  font-size: 22px;
  break-inside: avoid;
  page-break-inside: avoid;
}
.notice-popup-content p > em {
  color: #6a6a6a;
}

.notice-text {
  font-style: italic;
  color: #666;
}
@media (max-width: 660px) {
  .notice-popup-content {
    padding: 30px 30px;
    column-count: 1;
  }
  .notice-popup-content p {
    font-size: 17px;
  }
  .notice-popup-header {
    padding: 20px 30px 20px;
  }
}
/*--------------------------------------------------------------
# Flip cards
--------------------------------------------------------------*/
section.flip-cards {
  margin-bottom: 53px;
}
/* section.flip-cards .max-width {
  max-width: 1030px;
  padding: 0;
} */
.cards {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 64px;
  gap: 24px;
}
.single-card {
  width: 229px;
  height: 295px;
  perspective: 1000px;
  cursor: pointer;
  @media (max-width: 1024px) {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.single-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Flip the card */
.single-card.flipped .card-inner {
  transform: rotateY(180deg);
}
.single-card .front::after {
  content: "+";
  position: absolute;
  bottom: 18px;
  right: 13px;
  font-size: 31px;
  color: #bba874;
  font-weight: 700;
  line-height: normal;
}
.single-card .front,
.single-card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  box-sizing: border-box;
}

.single-card .front {
  border-radius: 12.094px;
  background: linear-gradient(
    159deg,
    rgba(38, 38, 38, 0.78) 13.99%,
    rgba(38, 38, 38, 0.31) 102.71%
  );
  background-blend-mode: multiply;
  color: #fff;
}

.single-card .back {
  border-radius: 12.589px;
  background: linear-gradient(
    331deg,
    rgba(187, 168, 116, 0.83) -5.56%,
    rgba(187, 168, 116, 0) 103.98%
  );
  color: white;
  transform: rotateY(180deg);
  flex-direction: column;
  align-items: flex-start;
}

.single-card .front h4 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.54px;
}
.single-card .back h4 {
  color: #fff;
  text-align: left;
  text-transform: none;
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.4px;
}

.single-card .back p {
  color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}
.flip-slides {
  position: relative;
  .slide-arrows {
    display: block;
    cursor: pointer;
    @media (max-width: 1024px) {
      display: none;
    }
    .flip-card-prev {
      right: 24px;
      top: 5px;
      position: absolute;
    }
    .flip-card-next {
      top: 5px;
      right: 0;
      position: absolute;
    }
  }
}
.single-slide {
  h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.58px;
  }
  p {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    line-height: 25px;
    text-transform: capitalize;
  }
}
/*--------------------------------------------------------------
# Blocks content
--------------------------------------------------------------*/
.block-content {
  position: relative;
  margin-top: 53px;

  .blocks {
    display: block;
    column-count: 2;
  }

  .single-block {
    background-color: #262626;
    border-radius: 13px;
    padding: 39px 64px 54px 50px;
    vertical-align: text-top;
    break-inside: avoid;
    &:not(:first-child) {
      margin-top: 20px;
    }

    ul {
      padding: 0;
      margin: 0;
      margin-left: 30px;
    }
  }
}
/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location-dets {
  position: relative;
  margin-bottom: 80px;
  visibility: hidden;
  .details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  .left {
    position: relative;
    width: calc(30% - 20px);
    @media (max-width: 768px) {
      width: 100%;
    }
    p {
      font-size: 20px;
    }
    .tel,
    .fax {
      margin-top: 4px;
      margin-bottom: 0;
      a {
        color: var(--color-gold);
        text-decoration: none;
      }
    }
  }
  .right {
    position: relative;
    width: calc(70% - 20px);
    @media (max-width: 768px) {
      width: 100%;
    }
    iframe {
      display: block;
      border-radius: 13px;
    }
  }
}

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
.timeline {
  padding: 100px 0;
}

.milestones {
  position: relative;
  padding: 50px 0;
}

.milestones::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-gold);
  transform: translateX(-50%);
  border-radius: 2px;
}

.single-milestone {
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
}

.single-milestone:nth-child(even) {
  text-align: right;
}

.single-milestone:nth-child(odd) {
  text-align: left;
}

.single-milestone-container {
  display: inline-block;
  width: 45%;
  position: relative;
}

.milestone-line {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-gold);
  z-index: 2;
}

.single-milestone:nth-child(odd) .milestone-line {
  right: -60px;
}

.single-milestone:nth-child(even) .milestone-line {
  left: -60px;
}

.milestone-content {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.date {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.content {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.milestone-trail {
  display: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .milestones::before {
    left: 20px;
  }

  .single-milestone {
    text-align: left !important;
  }

  .single-milestone-container {
    width: 90%;
    margin-left: 50px;
  }

  .milestone-line {
    left: -40px !important;
    right: auto !important;
  }

  .milestone-content::after {
    left: -10px !important;
    right: auto !important;
    border-right: 15px solid #fff !important;
    border-left: none !important;
  }
}
/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

#coffeerm-button {
  background-color: transparent;
  position: relative;
  top: 0;
  right: 0;
  display: none;
  bottom: 0;
  transition: var(--transition);
}

#coffeerm-button span {
  width: 33px;
  background-color: var(--color-white);
}

#responsive-menu {
  display: none;
}

#responsive-menu-items {
  display: none;
  max-width: 300px;
  height: 100vh;
}

#responsive-menu-items::before {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2024/12/cmf-logo.svg");
  width: 150px;
  height: 95px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px auto;
}

ul.responsive-menu-items {
  background-color: var(--color-black);
  padding: 0;
}

ul.responsive-menu-items li {
  list-style: none;
  position: relative;
  margin: 0;
  text-align: left;
}

ul.responsive-menu-items li::after {
  display: none !important;
}

ul.responsive-menu-items a {
  text-align: left;
  text-decoration: none;
  padding: 8px 28px;
  display: block;
  border: none;
  margin: 0;
  color: var(--color-white);
  border-radius: 0;
  transition: var(--transition);
}

ul.responsive-menu-items a.active,
ul.responsive-menu-items a:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

ul.responsive-menu-items a::after {
  display: none;
}

ul.responsive-menu-items li ul.sub-menu {
  margin: 0 25px 12px;
}

@media (min-height: 800px) {
  .splash .industry-container h1 {
    margin-top: 45px;
  }
  .splash .industry-container .industries .industry-item img {
    height: 228px;
  }
  .splash .industry-container .industries {
    margin-bottom: 35px;
  }
}

@media (max-width: 1260px) {
  .get-started .max-width {
    margin: 0 30px 100px;
  }
  .max-width {
    padding: 0 20px;
  }
  .site-info {
    padding: 70px 30px 70px !important;
  }
}

@media (max-width: 1200px) {
  #coffeerm-button,
  #responsive-menu-items,
  .responsive-menu-items,
  #responsive-menu {
    display: block !important;
  }
  #primary-menu {
    display: none;
  }
  .button.quote {
    margin-left: 25px;
    margin-right: 25px !important;
    width: calc(100% - 50px);
    margin-top: 13px;
  }
  .button.quote a {
    text-align: center;
  }
  .career-benefits ul.benefit-list {
    columns: 1;
    column-gap: 0px;
    max-width: 400px;
    margin-left: 50px;
  }
  .pdf-downloads .pdf-build {
    padding: 46px 23px;
    gap: 30px;
  }
  .notice.industry-list {
    display: none;
  }
  ul.responsive-menu-items li ul.sub-menu {
    margin: 0;
    border-radius: 0;
    padding: 0 14px 12px;
  }
  ul.responsive-menu-items a {
    display: flex;
    justify-content: space-between;
  }
  ul.responsive-menu-items li.open a::after {
    color: #000;
  }
  .site-info .left {
    width: 30%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  .site-info .right {
    width: 70%;
  }
  .footer-about,
  .footer-quick-links {
    width: 100%;
  }
  .page-template-work .template-work::before {
    left: auto;
    right: 0;
  }
  .additional-links.max-width {
    justify-content: center;
  }
}

@media (max-width: 1160px) {
  .pdf-downloads .pdf-build {
    padding: 46px 5px;
  }
  .pdf-downloads .pdf-build .single-pdf {
    padding: 58px 17px 27px 17px;
    width: calc(33.3% - 30px);
  }
}

@media (max-width: 1100px) {
  .pdf-downloads .pdf-build {
    padding: 26px 5px;
  }
  .pdf-downloads .pdf-build .single-pdf {
    width: calc(50% - 30px);
  }
}

@media (max-width: 1085px) {
  #three-block .left {
    max-width: 400px;
  }
  #three-block .three {
    column-gap: 40px;
  }
  .img-text.type-quote .intro-image {
    max-width: 100%;
  }
  .img-text.type-quote .intro-content {
    width: 100%;
  }
  .full-gallery .gallery_images {
    column-count: 3;
  }
}

@media (max-width: 1024px) {
  .page-template-work .template-work::before {
    display: none;
  }
  .popup-form {
    top: 10%;
    padding: 30px 20px;
    width: 95%;
  }
  .certification-logos .slick-track {
    display: flex;
    align-items: center;
  }
  .certification-logos .slick-prev {
    left: 5px;
  }
  .certification-logos .slick-next {
    right: 5px;
    z-index: 3;
  }
  .lb-data .lb-details {
    display: none;
  }
  .lb-nav {
    background-color: transparent !important;
  }
  .lb-nav a.lb-prev,
  .lb-nav a.lb-next {
    filter: brightness(0) !important;
  }
}
@media (max-width: 931px) {
  #three-block .link-block.spacer {
    display: none;
  }
}

@media (max-width: 900px) {
  .shell .flex {
    row-gap: 20px;
    flex-direction: column-reverse;
  }
  .block-stack {
    flex-direction: row;
    column-gap: 19px;
  }
  .cmf #field_submit {
    grid-column: span 12 !important;
  }

  .splash .industry-container .industries {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .site-info {
    gap: 40px;
  }
  .site-info .left {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0px;
  }
  .site-info .right {
    width: 100%;
  }
  .footer-about,
  .footer-quick-links {
    width: 50%;
  }
  .cta-block {
    padding: 26px 26px 26px 26px;
    flex: 1;
  }
  .block-stack .apply-block {
    flex: 1;
  }
  .tab-content .tabs {
    flex-direction: column;
    margin-bottom: 40px;
    .tab {
      padding: 25px;
    }
  }
  .pdf-downloads .shell .max-width > p {
    margin-bottom: 40px;
  }
  .the_build {
    padding: 26px 23px;
  }
  .the_build :is(ol, ul) {
    padding-left: 20px;
  }
  .cmf
    .gfield
    :is(
      input[type="email"],
      input[type="text"],
      input[type="tel"],
      input[type="number"],
      textarea,
      select
    ) {
    padding: 12px 32px !important;
  }
  .cmf .gform-theme-button,
  .cmf .gform_button {
    width: 100%;
  }
  .cmf .gfield--type-captcha {
    justify-content: flex-start;
  }
}

@media (max-width: 810px) {
  .notice p {
    font-size: 11px;
  }
  .notice a.more {
    font-size: 12px;
  }
  .home-landing h1 {
    font-size: 40px;
  }
  .intro-icon {
    width: 50%;
    margin: 0 0 30px;
  }
  .intro-icons.max-width {
    max-width: 600px;
    margin: 30px auto 50px;
  }
  .intro.max-width {
    margin-bottom: 50px;
  }
  .intro-image {
    width: 100%;
    margin-bottom: 30px;
  }
  .intro-image :not(.pb-gallery) img {
    max-height: 350px;
    width: 100%;
  }
  .intro-content {
    width: 100%;
  }
  .intro-content .buttons {
    width: 100%;
    position: relative;
    margin-top: 20px;
  }
  .services.max-width {
    margin: 50px auto 45px;
  }
  .services-wrap {
    flex-wrap: wrap;
  }
  .service {
    background: var(--color-dark-grey) !important;
    padding: 30px !important;
    width: 100% !important;
    min-height: unset !important;
    margin-bottom: 20px;
  }
  .service .button.none {
    bottom: 22px;
    color: var(--color-gold);
    display: block !important;
  }
  .service a.more {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
  }
  .get-started .max-width {
    margin: 0 30px 60px;
  }
  .get-started .wrap {
    padding: 45px 0 50px;
  }
  .compliance-specs.max-width {
    margin-bottom: 40px;
  }
  .discover-more .left {
    width: 100%;
    margin-bottom: 35px;
  }
  .discover-more .left p {
    margin: 0 0 30px;
    max-width: unset;
  }
  .discover-more .right {
    width: 100%;
  }
  .link-block {
    width: 49%;
  }
  .link-block.spacer {
    display: none;
  }
  .page-template-services .discover-more .link-block:nth-child(2) {
    width: 50%;
  }
  .discover-more .link-block:nth-child(2) {
    width: 100%;
  }
  .discover-more.max-width {
    margin-bottom: 55px;
  }
  .certification-logos.max-width {
    margin: 55px auto 30px;
    justify-content: center;
  }
  .cert-logo {
    width: 32%;
    margin-bottom: 40px;
  }
  .certification-logos img {
    margin: 0 auto;
  }
  .gallery .image-column:nth-child(2),
  .gallery .image-column:nth-child(3),
  .gallery .image-column:nth-child(4),
  .gallery .image-column:nth-child(5) {
    width: 48.8%;
  }
  .gallery .image-column:nth-child(4),
  .gallery .image-column:nth-child(5) {
    margin-top: 15px;
  }
  .site-info {
    padding: 65px 30px 45px;
  }
  .site-info .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .site-info .right {
    width: 100%;
  }
  .career-benefits {
    flex-direction: column;
    row-gap: 20px;
  }
  .career-benefits .benefit-desc {
    max-width: 100%;
  }
  .career-benefits ul.benefit-list {
    columns: 2;
    column-gap: 0px;
    max-width: 100%;
    margin-left: 0px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .notice p {
    text-align: left;
    margin-left: 10px;
    line-height: 1.2;
  }
  .notice a.more {
    text-align: left;
    line-height: 1.2;
    width: 90px;
  }
  .close-notice {
    padding: 4px 8px;
    top: 20px;
    max-width: 29px;
  }
  .bottom-footer .flex {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 30px 8px;
    text-align: center;
  }
  .compliance-specs h2,
  .compliance-specs p {
    padding-right: 70px;
  }
  #three-block .three {
    flex-direction: column;
    row-gap: 20px;
  }
  #three-block .left {
    max-width: 100%;
    text-align: center;
  }
  #three-block .right {
    max-width: 100%;
  }
  #three-block::before {
    left: -660px;
  }
  #three-block .link-blocks {
    justify-content: center;
  }
  .img-text.type-quote .intro-image blockquote p {
    font-size: 25px;
    line-height: 32px;
  }
  .page-template-get-a-quote .gform-body.gform_body,
  .page-template-get-a-quote .gform_confirmation_wrapper {
    padding: 0px 0px 0px 0px;
  }
  .page-template-get-a-quote form,
  .page-template-get-a-quote .gform_confirmation_wrapper {
    padding: 40px 30px 30px 30px;
  }
  .page-template-get-a-quote .page-title {
    padding-bottom: 60px;
  }
  .page-template-get-a-quote .page-title .page-desc {
    font-size: 20px;
    line-height: 27px;
    margin-top: 13px;
  }
  .gform-body.gform_body,
  .gform_confirmation_wrapper {
    padding: 0px 0px 0px 0px;
  }
  .home-landing {
    height: 80vh;
    background-position: left;
  }
  .single-milestone {
    margin-bottom: 40px;
  }
  .single-milestone:last-child {
    margin-bottom: 0;
  }
  .timeline {
    padding: 0px 0 50px;
  }
  .numbered-info .numbered-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: 20px;
    row-gap: 20px;
  }
  .hero .content-area {
    padding: 0 10px;
  }
  .hero .content-area h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .gallery-header.flex {
    flex-direction: column;
    a {
      margin-left: 0;
      margin-bottom: 10px;
    }
  }
  .feat-gallery .slick-prev,
  .feat-gallery .slick-next {
    top: auto;
    bottom: -50px;
  }
  .accordion .shell > .max-width {
    padding: 0 0;
  }
  .Form .form-data {
    padding: 40px 30px 30px 30px;
  }
  .tab-content .shell > .max-width {
    padding: 0 0;
  }
}
@media (max-width: 700px) {
  .single-industry .lb-outerContainer {
    width: 300px !important;
  }
  .single-industry .lightbox .lb-image {
    height: 300px !important;
    object-fit: contain;
  }
  .block-content .single-block {
    padding: 39px 30px 54px 30px;
  }
}

@media (max-width: 639px) {
  .notice p {
    width: calc(100% - 25px);
  }
  .home-landing .max-width {
    top: 50%;
  }
  .home-landing p {
    font-size: 14px;
  }
  .home-landing h1 {
    font-size: 30px;
  }
  .intro-image {
    margin-bottom: 10px;
  }
  .intro-image img {
    max-height: 230px;
  }
  .gallery .image-column:nth-child(2) a:first-child img {
    height: 138px;
    margin-bottom: 3px;
  }
  .gallery .image-column:nth-child(4),
  .gallery .image-column:nth-child(5) {
    margin-top: 4px;
  }
  .gallery .image-column:nth-child(4) a:first-child img {
    height: 247px;
    margin-bottom: 3px;
  }
  .gallery .image-column:nth-child(5) a:first-child img {
    height: 139px;
    margin-bottom: 3px;
  }
  .cert-logo {
    width: 40%;
    margin: 0 12px 20px;
  }
  .footer-blocks {
    width: 100%;
    margin-bottom: 12px;
    order: 2;
  }

  .contact-info {
    width: 100%;
    padding: 30px 30px 60px;
    order: 1;
    margin-bottom: 7px;
  }
  .bottom-footer p {
    max-width: 290px;
  }
  .page-title .smaller-title {
    font-size: 16px;
  }
  .page-title .larger-title {
    font-size: 40px;
    line-height: 40px;
  }
  .full-gallery .gallery_images {
    column-count: 2;
  }
  .cmf #field_submit {
    grid-column: span 12 !important;
  }
  .cmf #field_submit input {
    width: 100%;
  }

  .splash .industry-container .industries {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  .splash .industry-container .industries .industry-title {
    font-size: 18px;
    padding: 0px 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .splash .industry-container h1 {
    font-size: 23px;
  }
  .splash .inner-splash-container > .max-width {
    text-align: center;
  }
  .splash-logo {
    height: 40px;
    display: inline-block !important;
  }
  .splash .industry-container .industries .industry-item::before {
    bottom: 0px;
    right: 7px;
    font-size: 25px;
  }
  .splash .industry-container .industries {
    margin-bottom: 15px;
  }
  .splash .industry-container .splash-btn {
    font-size: 15px;
  }
  .site-info .left {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  .footer-about,
  .footer-quick-links {
    width: 100%;
  }
  .careers-section .careers-list .single-career {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .pdf-downloads .pdf-build {
    padding: 26px 24px;
  }
  .pdf-downloads .pdf-build .single-pdf {
    width: 100%;
  }
  .page-template-certification .pdf-build {
    padding: 26px 0;
  }
  .block-content .blocks {
    column-count: 1;
  }
  .accordion .accordion-build .single-acc .answer .additional {
    flex-direction: column;
    gap: 20px;
  }
  .accordion .accordion-build .single-acc .answer .additional div {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .career-benefits .benefit-desc p:first-child {
    font-size: 23px;
  }
  .career-benefits .benefit-desc p {
    font-size: 16px;
    line-height: 20px;
  }
  .career-benefits .benefit-list li {
    font-size: 16px;
    line-height: 25px;
  }
  .full-gallery .gallery_images {
    column-count: 2;
  }
  .full-gallery .gallery_images .img-wrapper {
    height: 100px !important;
  }

  .splash .industry-container .industries .industry-item img {
    height: 70px;
  }
  .block-stack {
    flex-direction: column;
  }
  .cta-block,
  .block-stack .apply-block {
    max-width: unset;
  }
  .accordion .accordion-build .single-acc .question {
    padding: 19px 20px;
  }
  .accordion .accordion-build .single-acc :is(.answer, li, a, span, b, strong) {
    font-size: 16px;
  }
  .services-wrap {
    margin: 0px 0px 0px 0px;
    align-items: baseline;
  }
  .service .button.none {
    position: relative;
    right: auto;
    margin: 20px 0 0;
    bottom: 0;
  }
  .get-started .max-width {
    z-index: 2;
  }
  .milestones::before {
    left: 0 !important;
  }
  .milestone-line {
    left: -30px !important;
  }
  .single-milestone-container {
    margin-left: 20px;
  }
  .pdf-downloads .shell h2 {
    font-size: 25px;
  }
  .page-template-certification .page-title {
    padding-bottom: 40px;
  }
  .link-block {
    width: 100% !important;
  }
  .coffee-footer img {
    margin-bottom: 8px;
  }
}

@media (max-width: 375px) {
  .career-benefits ul.benefit-list {
    columns: 1;
  }
}
