/* Homepage Hero Wrapper */
.homepage-hero {
  position: relative;
  min-height: 66vh;
  width: 100%;
  overflow: hidden;
}

/* Hero Image */
.homepage-hero__media,
.homepage-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.homepage-hero__image {
  object-fit:cover;
    background-position: top;
}

/* Overlay */
.homepage-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: 66vh;
  background: rgba(0, 0, 0, 0.55);
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

/* Layout: 60% / 40% */
.homepage-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60% / 40% */
  gap: 40px;
  color: #ffffff;
    padding-top:3%;
}

/* Tagline & Subtitle */
.hero-tagline {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
}

.homepage-hero__right {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .homepage-hero,
  .homepage-hero__overlay {
    min-height: 60vh;
  }

  .homepage-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tagline {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    margin: 0 auto;
  }
}

/* One-column background section */
.bg-section {
  width: 100%;
  min-height: 44vh;
  background-image: url('/images/whychooseus-home-bg.webp');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay for readability */
.bg-section__overlay {
  width: 100%;
  min-height: 44vh;
  background: rgba(0, 0, 0, 0.0);
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

.bg-section2 {
  width: 100%;
  min-height: 33vh;
  background-image: url('/images/takethenextsteps-bg-desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay for readability */
.bg-section2__overlay {
  width: 100%;
  min-height: 33vh;
  background: rgba(255, 255, 255, 0.55);
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

/* Content wrapper */
.bg-section__content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.bg-section__heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.bg-section__text {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
  .bg-section {
    min-height: 60vh;
    background-image: url('/images/whychooseus-home-bg.webp');
  }

  .bg-section__overlay {
    min-height: 60vh;
    padding: 60px 20px;
  }
    
      .bg-section2 {
    min-height: 44vh;
    background-image: url('/images/takethenextsteps-bg-desktop.webp');
  }

  .bg-section2__overlay {
    min-height: 44vh;
    padding: 60px 20px;
  }

  .bg-section__heading {
    font-size: 2rem;
  }
}

/* Base interior hero */

.interior-hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  overflow: hidden;
}

.interior-hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  overflow: hidden;
}

/* Image layer */
.interior-hero__media,
.interior-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.interior-hero__image {
  object-fit: cover;
}

/* Overlay */
.interior-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: 40vh;
  background: rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;   /* horizontal centering */
}

/* Content */
.interior-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;        /* centers text */
  color: #ffffff;
}

.interior-hero__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
}

.interior-hero__subtitle {
  font-size: 1.8rem;
  max-width: 720px;
  margin: 0 auto;            /* centers subtitle block */
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .interior-hero,
  .interior-hero__overlay {
    min-height: 28vh;
  }

  .interior-hero__title {
    font-size: 2rem;
  }
    .interior-hero__subtitle {font-size: 1rem;}
}

/* Services Hero Wrapper */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 40vh; /* slightly taller for services emphasis */
  overflow: hidden;
}

/* Image Layer */
.services-hero__media,
.services-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hero__image {
  object-fit: cover;
}

/* Overlay */
.services-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: 40vh;
  background: rgba(0, 0, 0, 0.4);
  padding: 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
}

/* Content Container */
.services-hero__container {
  max-width: 1400px;
  text-align: center;
  color: #ffffff;
}

/* Title and Subtitle */
.services-hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.services-hero__subtitle {
  font-size: 1.8rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .services-hero,
  .services-hero__overlay {
    min-height: 30vh;

  }

  .services-hero__title {
    font-size: 2rem;
  }

  .services-hero__subtitle {
    font-size: .8rem;
  }
    
    .int-img-ctrl-left,.int-img-ctrl-right {
       max-width:180px !important;
        float: right !important;
    }
}

/* Check list */

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2bb673; /* adjust to brand color */
  font-weight: 700;
}

.dashed-hr {
 border-top: 1px dashed #4F463E;
    padding-bottom:18px;
    max-width:1400px;
    width:100%;
    margin: auto;
}


.unna-regular {
  font-family: "Unna", serif;
  font-weight: 400;
  font-style: normal;
}

.unna-bold {
  font-family: "Unna", serif;
  font-weight: 700;
  font-style: normal;
}

.unna-regular-italic {
  font-family: "Unna", serif;
  font-weight: 400;
  font-style: italic;
}

.unna-bold-italic {
  font-family: "Unna", serif;
  font-weight: 700;
  font-style: italic;
}


#header-top-bar-wrap {
  width: 100%;
  height: auto;
  padding: 15px 0px 15px 0px;
  margin: 0px;
  background: #4F463E;
}

#header-wrap {
  width: 100%;
  height: auto;
  padding: 0px;
  margin: 0px;
  background: #fff;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.2);
}

#horizontal-nav-wrap {
  width: 100%;
  height: auto;
  background: inherit;
  margin: 0px;
  padding: 0px;
}

#homepage-cta-wrap {
  width: 100%;
  height: auto;
  padding: 18px 0px;
  margin: 0px;
  background: #3D3C3A;
}


#homepage-contact-us {
  width: 100%;
  height: auto;
  padding: 5% 0px;
  margin: 0px;
  background: #fff;
}

#interior-wide-light-grey {
  width: 100%;
  height: auto;
  padding: 3% 0px;
  margin: 0px;
  background: #f9f9f9;
}

#homepage-red-wrap {
  width: 100%;
  min-height: 100px;
  background: #4C4849;
  margin: 0px;
  padding: 1% 0px;
}

#homepage-cta-bar {
  width: 100%;
  min-height: 100px;
  background: #fff;
  margin: 0px;
  padding: 5% 0px;
}

#footer-links-wrap {
  width: 100%;
  height: auto;
  padding: 5% 0px;
  margin: 0;
  background: #FFF;
}

#interior-wide-wrap {
  width: 100%;
  height: auto;
  padding: 2% 0px !important;
  margin: 0;
  background: #fff;
}

#int-purple-bg {
  width: 100%;
  height: auto;
  padding: 4% 0px !important;
  margin: 0;
  background: #F0D7FF;
}

#int-light-purple-bg {
  width: 100%;
  height: auto;
  padding: 4% 0px !important;
  margin: 0;
  background: #F1EBF1;
}

#int-white-bg {
  width: 100%;
  height: auto;
  padding: 4% 0px !important;
  margin: 0;
  background: #fff;
}


.hero-section-home {
  background: url("/images/Homepage-mainimage.webp") 50% no-repeat;
  background-size: cover;
  height: 66vh;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-section-int {
  background: url("/images/hero-aboutus.webp") 50% no-repeat;
  background-size: cover;
  height: 38vh;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-section-home .hero-section-int .hero-section-text {
  color: #fff !important;
  text-shadow: 1px 1px 2px #0a0a0a;
}


.hero-section-interior {
  background: #E6E7E8;
  background-size: cover;
  height: 18vh;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

#div-section-container {
  width: 100%;
  height: auto;
  padding: 5% 0px;
  margin: 0px;
}

#div-section-container-less {
  width: 100%;
  height: auto;
  padding: 3% 0px;
  margin: 0px;
}

#div-section-container-min {
  width: 100%;
  height: auto;
  padding: 25px 0px;
  margin: 0px;
}

.white-background {
  background: #fff;
}

.black-background {
  background: #000;
}

.lightbrown-background {
  background: #4F463E;
}

.darkbrown-background {
  background: #3D3B3A;
}

.top-buffer-3 {
  padding-top: 3%;
}

.top-buffer {
  padding-top: 5%;
}

.left-buffer {
  padding-left: 5%;
}

.right-buffer {
  padding-right: 5%;
}

.sub-text {
  font-size: 19px;
}

.red-text {
  color: #f04e33;
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.text-blue {
  color: #005CB9;
}

.attention-bar-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.head-nav-align {
  padding-left: 3%;
  padding-top: 4%;
}

.img-radius {
  border-radius: 15px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

.int-img-ctrl-left
{
    max-width:400px;
    width:100%;
    margin-right:28px;
    margin-bottom:28px;
}

.int-img-ctrl-right
{
    max-width:400px;
    width:100%;
    margin-left:28px;
    margin-bottom:18px;
}

.min-height-bio-pic {
  min-height: 825px;
}

.small-text-read-more {
  font-size: 19px;
  font-weight: 300;
}


/* Position child elements relative to this element */
.aspect-ratio-box {
  position: relative;
}

/* Create a pseudo element that uses padding-bottom to take up space */
.aspect-ratio-box::after {
  display: block;
  content: '';
  /* 16:9 aspect ratio */
  padding-bottom: 56.25%;
}

/* Image is positioned absolutely relative to the parent element */
.aspect-ratio-box img {
  /* Image should match parent box size */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mob-height {
  min-height: 300px;
  margin-top: 3%;
}

.parallax-hero-home {
  width: 100%;
  height: 85vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  padding: 0px;
  margin: 0;
}

.large-text {
  font-weight: 400;
  font-size: 19px;
  color: #333;
  line-height: 1.4em;
}

.header-smicons {
  text-align: right;
}

a.img-border {
  border: 2px solid #22222;
}

.product-title-list {
  font-size: 18px;
  font-weight: 700;
}

.magic-layer {
  margin-top: 8%;
}

.ctas-cob li {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  max-width: 286px;
  margin: 7px;
}

@media only screen and (max-width: 940px) {
  .ctas-cob li {
    list-style-type: none;
    display: inline-block;
    width: 50%;
    max-width: 48%;
    vertical-align: top;
    margin: 0px;
  }

  .ctas-cob li a.button.large {
    font-size: 15px !important;
    padding: 13px 13px 13px;
  }
}






.footer-text {
  font-size: clamp(0.875rem, 0.8434rem + 0.1266vw, 1rem);
  color: #fff;
}

.footer-title {
  font-size: clamp(1.25rem, 1.1867rem + 0.2532vw, 1.5rem);
  font-weight: 700;
}

a.footer-links {
  font-size: clamp(0.875rem, 0.8434rem + 0.1266vw, 1rem);
  color: #fff;
  line-height: 1.8em;
    font-weight: 400;
}

a.footer-links:hover {
  color: #fff;
  text-decoration: underline;
    font-weight: 700;
}

.tap {
  display: none
}

.black {
  color: #222;
}

.yellow {
  color: #FFFFCD;
}

.white {
  color: #fff;
}

.white a {
  color: #fff;
}

.white a:hover {
  color: #fff;
  text-decoration: underline;
}


/** HAMBURGER ICON MENU **/

#menuToggle {
  display: block;
  position: relative;
  top: -15px;
  left: 0px;

  z-index: 1000;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #fff;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 250px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #222;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
  padding: 5px 0;
  font-size: 18px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked~ul {
  transform: none;
}

@media only screen and (max-width: 1300px) {
  .magic-layer {
    margin-top: 2%;
  }

  #desk-logo {
    display: none !important
  }

  #logo-mob {
    margin: 0px;
    width: 140px;
    display: block !important;
  }
}

@media only screen and (max-width: 770px) {
  .sitelogo {
    display: none !important
  }
  #header-top-bar-wrap{display:none}
}




/** HAMBURGER ICON MENU ENDS **/

#logo-mob {
  display: none;
}

.pagination ul li {
  display: inline-block;
  margin-left: 3.5%;
  margin-top: 2%;
}





/** SVG IMAGES **/

.fb-icon-svg-grey {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/facebook-grey.svg);
  background-size: 26px 26px;
  margin-right: 1%;
}

.instagram-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/white-instagram-icon.png);
  background-size: 26px 26px;
  margin-right: 1%;
}

.youtube-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/youtube-white.svg);
  background-size: 26px 26px;
  margin-right: 1%;
}

.blog-icon-svg-grey {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/blog-grey.svg);
  background-size: 26px 26px;
}

.twitter-icon-svg-grey {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/twitter-grey.svg);
  background-size: 26px 26px;
  margin-right: 1%;
}

.fb-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/facebook-white.svg);
  background-size: 26px 26px;
  margin-right: 1%;
}

.linkedin-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/linkedin-white.svg);
  background-size: 26px 26px;
  margin-right: 1%;
}

.vimeo-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/vimeo-white.png);
  background-size: 26px 26px;
  margin-right: 1%;
}

.blog-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/blog-white.svg);
  background-size: 26px 26px;
}

.twitter-icon-svg-white {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(/images/x-icon-white.webp);
  background-size: 26px 26px;
  margin-right: 1%;
}

.quote-svg-icon {
  display: block;
  text-indent: -9999px;
  width: 125px;
  height: 125px;
  background: url(/images/iconfinder_quote_1054999.svg);
  background-size: 125px 125px;
  margin: 0 auto;
}

    
    label {
    font-weight:700;
    font-size:17px;
    color:#222;
    padding-top:12px;
    padding-bottom:18px;
}
    
    .form-row {margin-top:1.8% !important;}
    
    .field-lable{font-weight:700;font-size: 1.8rem;}
    .field-text{font-weight:500;font-size: 1.7rem;}
    input {
  margin-top: 0.5rem;
        font-size: 1.5rem;
}

input::placeholder {
  font-weight: 500;
  opacity: 0.7;
  color: black;
}

textarea::placeholder {
  font-weight: 500;
  opacity: 0.7;
  color: black;
}

.custom-select {
width:100%;
  max-width: 325px;
}

select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 100%;
  font-size: 1.5rem;
  font-weight:500;
  padding: 0.675em 6em 0.675em 1em;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #333;
  cursor: pointer;
}
    
input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  transform: scale(1.5);
  padding: 18px;
    margin-right:12px;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 75px;
  right: 75px;
  width: 64px;      /* Larger button */
  height: 64px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.back-to-top.is-visible {
  opacity: 0.9;
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus {
  opacity: 1;
  outline: none;
}

/* Chevron icon */
.back-to-top__icon {
  width: 28px;      /* Larger icon */
  height: 28px;
  fill: currentColor;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top__icon {
    width: 24px;
    height: 24px;
  }
}

/* scroll hide */
.scroll-hide {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-hide.is-hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}