/* === Overlay header on initial view (top of page) === */
body.nav-on-hero .header.style-default {
  position: absolute; /* sits over the hero */
  left: 0; right: 0; top: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.15);
  box-shadow: none;
  z-index: 99999;
}

/* White nav text / burger when overlaying imagery */
body.nav-on-hero .header.style-default .navigation li > a { color: #fff; }
body.nav-on-hero .header.style-default .mobile-button .burger span { background-color: #fff; }

/* When sticky engages, flip back to solid header + dark text */
.header.header-sticky.is-sticky,
.header.header-fixed.is-sticky {
  background: var(--White);
}
.header.header-sticky.is-sticky .navigation li > a,
.header.header-fixed.is-sticky .navigation li > a {
  color: var(--Text-primary);
}
.header.header-sticky.is-sticky .mobile-button .burger span,
.header.header-fixed.is-sticky .mobile-button .burger span {
  background-color: var(--Text-primary);
}

/* Ensure the sticky header is above everything */
.header.header-sticky,
.header.header-fixed {
  z-index: 99999;
}

/* Optional: remove the faint border on the sticky state if you don’t want it */
.header.header-sticky.style-default { box-shadow: 0 1px 3px rgba(0,0,0,.1); } /* already in theme */

/* === Taller, responsive hero (keeps existing .style-2 structure) === */
.page-title.style-2 .thumbs {
  height: clamp(60vh, 75vh, 92vh); /* mobile → desktop */
  min-height: 480px;               /* guard for very short viewports */
}
@media (max-width: 575.98px) {
  .page-title.style-2 .thumbs {
    height: clamp(55vh, 65vh, 75vh);
    min-height: 420px;
  }
}
/* Keep image filling the box */
.page-title.style-2 .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* as per your theme */
}

/* === HERO content alignment + width cap === */
/* Works with your .page-title.style-2 hero */
.page-title.style-2 {
  /* tune these if you want it higher/lower later */
  --hero-content-max: 780px;           /* cap line length */
  --hero-pad-top: clamp(60px, 8vh, 120px);
  --hero-pad-bottom: clamp(36px, 6vh, 96px);
}

.page-title.style-2 .thumbs {
  position: relative;                   /* anchor for absolute content */
}

/* Make the content an overlay layer inside the hero */
.page-title.style-2 .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;              /* MOBILE: vertically centred */
  align-items: flex-start;
  padding: calc(var(--hero-pad-top) + env(safe-area-inset-top, 0px)) 16px var(--hero-pad-bottom);
  /* ensure the copy stays readable and doesn’t run crazy wide */
  /*max-width: var(--hero-content-max);*/
  margin-left: max(16px, env(safe-area-inset-left, 0px));
  margin-right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 2;                           /* above the image overlay */
}

/* If your content sits inside a container, cap that too */
/*.page-title.style-2 .content > .container,
.page-title.style-2 .content > .wrap,
.page-title.style-2 .content > div {
  max-width: var(--hero-content-max);
}*/

/* DESKTOP: sit the block a little lower (lower-third feel) */
@media (min-width: 992px) {
  .page-title.style-2 .content {
    justify-content: flex-end;          /* drop towards bottom */
    padding-bottom: clamp(96px, 14vh, 180px);
    padding-top: clamp(40px, 4vh, 80px);
  }
}

/* Typography polish (optional but helps mobile) */
.page-title.style-2 .content h1,
.page-title.style-2 .content .heading,
.page-title.style-2 .content .title {
  max-width: 28ch;                      /* avoid widows/orphans */
  line-height: 1.1;
  text-wrap: balance;
}

.page-title.style-2 .content p {
  max-width: 60ch;
  text-wrap: pretty;
  margin-top: 12px;
}

/* CTA spacing on all sizes */
.page-title.style-2 .content .btn,
.page-title.style-2 .content a.button,
.page-title.style-2 .content .button {
  margin-top: 20px;
}

/* Safety: make sure the header doesn’t block taps on content beneath */
.header { pointer-events: auto; }
.page-title.style-2 .content { pointer-events: auto; }

/* If your theme adds top margin to the first element inside content, remove it */
.page-title.style-2 .content > *:first-child { margin-top: 0; }

/* === Mobile tuning for hero height and title size === */
@media (max-width: 767.98px) {
  /* make hero taller on mobile */
  .page-title.style-2 .thumbs {
    height: clamp(70vh, 80vh, 90vh);
    min-height: 520px;
  }

  /* scale down hero H1 */
  .page-title.style-2 .content h1.title,
  .page-title.style-2 .content .title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  /* optional: tighten spacing under the title */
  .page-title.style-2 .content h1.title.mb_24 {
    margin-bottom: 16px;
  }

  /* ensure paragraph and button don’t crowd each other */
  .page-title.style-2 .content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-title.style-2 .content .btn,
  .page-title.style-2 .content a.button,
  .page-title.style-2 .content .button {
    margin-top: 16px;
  }
}

/* Tiny screens (≤480px) for extra polish */
@media (max-width: 480px) {
  .page-title.style-2 .thumbs {
    height: clamp(75vh, 85vh, 95vh);
    min-height: 540px;
  }
  .page-title.style-2 .content h1.title {
    font-size: 26px;
  }
}

/* === Desktop centring for hero content (keep left-aligned text) === */
@media (min-width: 992px) {
  /* Center the content block within the viewport */
  .page-title.style-2 .content {
    align-items: center;              /* was flex-start */
    justify-content: flex-end;        /* keep lower-third feel */
    padding-left: 32px;               /* safe side gutters */
    padding-right: 32px;
    margin: auto;
  }

  /* Ensure the inner wrapper/container actually centers and caps width */
  .page-title.style-2 .content > .container,
  .page-title.style-2 .content > .wrap,
  .page-title.style-2 .content > div {
    /*max-width: var(--hero-content-max, 780px);*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;                 /* keep copy left-aligned */
  }
}
 

/* ===================================================================
   HERO — centred layout, taller height, full-width H1, short-viewport fix
   =================================================================== */

/* 0) A header height token we can tweak if your nav height changes */
:root {
  --header-h: 88px;   /* desktop overlay header height estimate */
}
@media (max-width: 991.98px) {
  :root { --header-h: 64px; } /* mobile header height */
}

/* 1) Centre the hero text + buttons (keeps lower-third feel on desktop) */
.page-title.style-2 .content {
  align-items: center;              /* center the block horizontally */
  text-align: center;               /* center text inside */
  justify-content: flex-end;        /* sit lower on desktop */
}

/* Centre common CTA elements */
.page-title.style-2 .content .btn,
.page-title.style-2 .content a.button,
.page-title.style-2 .content .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* 2) Make the hero a bit taller so next section peeks above the fold */
.page-title.style-2 .thumbs {
  /* Desktop-ish height: just under full viewport so next block peeks */
  height: min(92vh, 900px);
}

/* Mobile gets a touch more height too */
@media (max-width: 767.98px) {
  .page-title.style-2 .thumbs {
    height: min(95vh, 720px);
    min-height: 560px;
  }
}

/* 3) Make the H1 span full width (while text remains centred) */
.page-title.style-2 .content h1.title,
.page-title.style-2 .content .title {
  display: block;
  width: 100%;           /* span full width */
  max-width: none;       /* remove previous caps on the H1 only */
  margin-left: 0;
  margin-right: 0;
  text-align: center;    /* keep centred copy */
}

/* Keep paragraphs and other text comfortably narrow for readability */
.page-title.style-2 .content p,
.page-title.style-2 .content .lead,
.page-title.style-2 .content .subtitle {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* 4) Prevent clash with overlaying NAV at short desktop heights (e.g. 1280×672)
   We add top padding equal to header height so the text clears the nav. */
body.nav-on-hero .page-title.style-2 .content {
  padding-top: calc(var(--hero-pad-top, 48px) + var(--header-h));
}

/* Short, wide viewports: reduce bottom padding and ensure top clearance */
@media (min-width: 1200px) and (max-height: 700px) {
  .page-title.style-2 .content {
    justify-content: center;               /* center vertically in short height */
    padding-top: calc(16px + var(--header-h));
    padding-bottom: 48px;
  }
  .page-title.style-2 .thumbs {
    height: 88vh;                          /* slightly less so next block peeks */
  }
}

/* If your container wrapper exists, keep it centered + capped */
.page-title.style-2 .content > .container,
.page-title.style-2 .content > .wrap,
.page-title.style-2 .content > div {
  width: 100%;
  /*max-width: var(--hero-content-max, 780px);*/
  margin-left: auto;
  margin-right: auto;
}

/* Mobile title sizing (kept from earlier but safe here) */
@media (max-width: 767.98px) {
  .page-title.style-2 .content h1.title,
  .page-title.style-2 .content .title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
}

/* Tiny screens polish */
@media (max-width: 480px) {
  .page-title.style-2 .content h1.title { font-size: 26px; }
}

/* === Center hero content & buttons inside each Swiper slide === */

/* Make the slide fill the hero so flex-centering works reliably */
.page-title.style-2 .swiper,
.page-title.style-2 .swiper-wrapper,
.page-title.style-2 .swiper-slide,
.page-title.style-2 .slide-inner,
.page-title.style-2 .thumbs {
  height: 100%;
}

/* Your .content is already absolute & full-cover from earlier overrides.
   Center the inner grid and column */
.page-title.style-2 .content .tf-container,
.page-title.style-2 .content .tf-container .row {
  display: flex;
  justify-content: center;   /* horizontally center the grid */
  align-items: center;       /* vertically center within .content */
  min-height: 100%;
  text-align: center;        /* center text by default */
}

/* Center the column block and cap width so lines don’t sprawl */
.page-title.style-2 .content ._col-lg-7_ {
  width: 100%;
  /*max-width: var(--hero-content-max, 780px);*/
  margin-left: auto;
  margin-right: auto;
}

/* Make the H1 span full width but keep centered text */
.page-title.style-2 .content h1.title {
  display: block;
  width: 100%;
  max-width: none;         /* remove any previous caps on the H1 */
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

/* Center the buttons row and add a nice gap */
.page-title.style-2 .content .wrap-btn.d-flex {
  justify-content: center; /* was left */
  gap: 12px;
  flex-wrap: wrap;
}

/* If effect classes slide in from left/right, they can "look" off-center.
   Neutralise horizontal offsets for hero items so they animate in place. */
.page-title.style-2 .content .effect-left,
.page-title.style-2 .content .effect-right {
  transform: translateX(0) !important;
}

/* Short desktop viewports (e.g., 1280×672): ensure we still clear the nav */
@media (min-width: 1200px) and (max-height: 700px) {
  .page-title.style-2 .content {
    justify-content: center;                         /* vertical center in short height */
    padding-top: calc(16px + var(--header-h, 88px)); /* clear overlay nav */
  }
}

/* Safety: keep mobile centered too */
@media (max-width: 991.98px) {
  .page-title.style-2 .content .wrap-btn.d-flex { justify-content: center; }
}

/* === Large desktop / ultra-wide hero adjustment === */
@media (min-width: 1400px) {
  /* Make hero about 90% of viewport height so next blocks are visible */
  .page-title.style-2 .thumbs,
  .page-title.style-2 .swiper,
  .page-title.style-2 .swiper-wrapper,
  .page-title.style-2 .swiper-slide,
  .page-title.style-2 .slide-inner {
    height: 90vh;          /* 90% viewport height */
  }

  /* Vertically center the content within this reduced height */
  .page-title.style-2 .content {
    justify-content: center;   /* center vertically */
    padding-top: calc(var(--header-h, 88px) + 32px);
    padding-bottom: 64px;
  }

  /* Keep text & buttons neatly centered */
  .page-title.style-2 .content h1.title {
    /*font-size: clamp(42px, 2.8vw, 60px);*/
  }
  .page-title.style-2 .content p {
    /*font-size: clamp(18px, 1vw, 22px);*/
  }
}

/* reusable hover zoom effect */
.hover-zoom .img-style {
  overflow: hidden; /* keeps zoomed image cropped */
}

.hover-zoom .img-style img {
  transition: transform 0.6s ease;
  transform-origin: center center;
}

.hover-zoom:hover .img-style img {
  transform: scale(1.08); /* zoom effect */
}

/* Keep Bootstrap’s grid; just ensure equal heights and image cover */
.row-strech {
  /* don't set display here; Bootstrap does it */
  align-items: stretch; /* equal height columns */
}

/* Image column: create a height context without changing width */
.col-lg-6.image-fill {
  position: relative;
  overflow: hidden;
  /* gives it height even if the other side is short on small screens */
  min-height: 420px;
}

/* Make the wrapper fill the column */
.col-lg-6.image-fill .img-style {
  position: absolute;
  inset: 0;
}

/* Make the image cover without distortion */
.col-lg-6.image-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* optional: subtle hover */
  transition: transform 0.6s ease;
}

.col-lg-6.image-fill:hover img {
  transform: scale(1.03);
}

/* Mobile: tune the minimum height when stacked */
@media (max-width: 991.98px) {
  .col-lg-6.image-fill { min-height: 320px; }
}

/* Hover zoom utility */
.hover-zoom {
  position: relative;
  overflow: hidden;
}

.hover-zoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Ensure overlay doesn’t block hover */
.hover-zoom .overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none; /* allow hover through to the img */
}

/* Make sure clickable link still works */
.hover-zoom .overlay-link[href] {
  pointer-events: auto; /* clickable but still triggers hover */
}

/*Solutions Slider*/
.swiper-slide .wrap-btn h4 {
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.swiper-slide-active .wrap-btn h4 {
  opacity: 1;
}
.swiper-slide .wrap-btn {
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.swiper-slide-active .wrap-btn {
  opacity: 1;
}
.swiper-slide-prev .wrap-btn h4,
.swiper-slide-next .wrap-btn h4 {
  opacity: 0.6;
}

.is-hidden { display: none !important; }

/*.tags-list .tags-item.active {
  background: var(--primary-color, #111);
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  transition: 0.2s ease;
}*/

/* Horizontal scroll tags */
.tags-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.tags-list::-webkit-scrollbar {
  display: none; /* Safari / Chrome */
}

.tags-list .tags-item {
  white-space: nowrap;
  padding: 8px 14px;
  /*border-radius: 20px;*/
  background: #f3f3f3;
  display: inline-block;
  flex-shrink: 0;
  transition: 0.2s ease;
}

/* Active state (same as your filter JS already adds) */
.tags-list .tags-item.active {
  background: #000;
  color: #fff;
}

@media (min-width: 768px) {
  /* Desktop can revert to grid if you prefer, else remove */
  .tags-list {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    font-size: 14px;
  }
}

.g0{gap:0px!important;}

/* ========================================
   TEAM SLIDER
======================================== */

.team-member-card {
    width: 100%;
}

.team-image-wrap {
    position: relative;
    overflow: hidden;
}


/* Reset button styling so the image trigger
   behaves exactly like the old <a> element */

.team-bio-trigger.img-style {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
}

.team-bio-trigger.img-style img {
    display: block;
    width: 100%;
    height: auto;
}


/* ========================================
   NAME / TITLE BLOCK
======================================== */

.team-details {
    position: relative;
    padding: 24px 25px 22px;
    background-color: #524b45;
    color: #ffffff;
    min-height: 125px;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.team-details h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.team-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.5;
}

.team-bio-link {
    display: inline-block;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: none;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.team-bio-link::after {
    content: " →";
    display: inline-block;
    margin-left: 3px;
    transition: transform 0.25s ease;
}

.team-bio-link:hover {
    opacity: 1;
}

.team-bio-link:hover::after {
    transform: translateX(4px);
}


/* Optional subtle interaction */

.team-member-card:hover .team-details {
    background-color: #47413c;
}


/* ========================================
   TEAM MODAL
======================================== */

.team-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.team-modal.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* Background */

.team-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 17, 0.82);
    backdrop-filter: blur(5px);
}


/* Modal window */

.team-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(30px);
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.team-modal.is-active .team-modal-dialog {
    transform: translateY(0);
    opacity: 1;
}


/* Two-column layout */

.team-modal-grid {
    display: grid;
    grid-template-columns: 45% 55%;
}


/* Image */

.team-modal-image {
    position: relative;
    min-height: 500px;
    background: #524b45;
    overflow: hidden;
}

.team-modal-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Content */

.team-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.team-modal-label {
    display: block;
    margin-bottom: 14px;
    color: #99918b;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-modal-content h2 {
    margin: 0 0 7px;
    color: #302c29;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 500;
}

.team-modal-title {
    margin: 0;
    color: #857d77;
    font-size: 17px;
    line-height: 1.5;
}

.team-modal-line {
    width: 50px;
    height: 2px;
    margin: 27px 0;
    background-color: #524b45;
}

.team-modal-bio {
    margin: 0;
    color: #5e5955;
    font-size: 16px;
    line-height: 1.8;
}


/* Close button */

.team-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #524b45;
    color: #ffffff;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.team-modal-close:hover {
    background-color: #302c29;
    transform: rotate(90deg);
}


/* Use the text X as fallback if icon-X
   doesn't exist in your icon font */

.team-modal-close .icon-X + span {
    display: none;
}

.team-modal-close .icon-X:empty + span {
    display: block;
}


/* Stop page scrolling whilst modal is open */

body.team-modal-open {
    overflow: hidden;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .team-modal {
        padding: 20px;
    }

    .team-modal-grid {
        grid-template-columns: 42% 58%;
    }

    .team-modal-image {
        min-height: 440px;
    }

    .team-modal-content {
        padding: 45px;
    }

    .team-modal-content h2 {
        font-size: 32px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .team-details {
        padding: 19px 20px 18px;
        min-height: 115px;
    }

    .team-details h3 {
        font-size: 18px;
    }

    .team-modal {
        align-items: flex-start;
        padding: 15px;
        overflow-y: auto;
    }

    .team-modal-dialog {
        max-height: none;
        margin: auto 0;
    }

    .team-modal-grid {
        display: block;
    }

    .team-modal-image {
        min-height: 0;
        aspect-ratio: 1 / 0.8;
    }

    .team-modal-content {
        padding: 35px 30px 40px;
    }

    .team-modal-content h2 {
        font-size: 29px;
    }

    .team-modal-bio {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   REAL DESIGN - CONTACT CMS FORM
   Styles the dynamically generated SMCMS form
   ========================================================= */


/* Hide the original static/demo form */
.section-process-1 .form-call-back:not(.smcms_form) {
    display: none;
}


/* Main CMS form reset */
.section-process-1 .smcms_form {
    width: 100%;
}

.section-process-1 .smcms_form fieldset {
    border: 0;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
}


/* Hide CMS title / description */
.section-process-1 .smcms_form > fieldset > h1,
.section-process-1 .smcms_form > fieldset > p {
    display: none;
}


/* Hidden CMS fields should not affect the grid */
.section-process-1 .smcms_form .hidden_field,
.section-process-1 .smcms_form input[style*="display:none"],
.section-process-1 .smcms_form input[style*="display: none"] {
    display: none !important;
}


/* Individual CMS rows */
.section-process-1 .smcms_form .form_row {
    margin: 0;
    padding: 0;
    width: 100%;
}


/* Name / Email / Phone / Service */
.section-process-1 .smcms_form .rd-half {
    grid-column: span 1;
}


/* Message, reCAPTCHA and submit button */
.section-process-1 .smcms_form .rd-full {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
   ========================================================= */

.section-process-1 .smcms_form .label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    color: inherit;
}


/* =========================================================
   INPUTS
   ========================================================= */

.section-process-1 .smcms_form input[type="text"],
.section-process-1 .smcms_form input[type="email"],
.section-process-1 .smcms_form input[type="tel"],
.section-process-1 .smcms_form select,
.section-process-1 .smcms_form textarea {
    width: 100%;
    max-width: 100%;

    padding: 14px 16px;

    border: 1px solid #e4e4e4;
    border-radius: 0;

    background: #ffffff;
    color: #524b45;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Input height */
.section-process-1 .smcms_form input[type="text"],
.section-process-1 .smcms_form input[type="email"],
.section-process-1 .smcms_form input[type="tel"],
.section-process-1 .smcms_form select {
    min-height: 52px;
}


/* Textarea */
.section-process-1 .smcms_form textarea {
    min-height: 125px;
    resize: vertical;
}


/* Placeholder */
.section-process-1 .smcms_form input::placeholder,
.section-process-1 .smcms_form textarea::placeholder {
    color: #8a8a8a;
    opacity: 1;
}


/* Focus */
.section-process-1 .smcms_form input:focus,
.section-process-1 .smcms_form select:focus,
.section-process-1 .smcms_form textarea:focus {
    border-color: #524b45;
    box-shadow: 0 0 0 1px #524b45;
}


/* =========================================================
   SELECT
   Native fallback before Nice Select loads
   ========================================================= */

.section-process-1 .smcms_form select {
    cursor: pointer;
}


/* =========================================================
   NICE SELECT
   ========================================================= */

.section-process-1 .smcms_form .nice-select {
    width: 100%;
    height: 52px;

    padding-left: 16px;
    padding-right: 40px;

    border: 1px solid #e4e4e4;
    border-radius: 0;

    background: #ffffff;

    line-height: 30px;
}

.section-process-1 .smcms_form .nice-select .current {
    color: #524b45;
    font-size: 15px;
}

.section-process-1 .smcms_form .nice-select .list {
    width: 100%;
}


/* =========================================================
   RECAPTCHA
   ========================================================= */

.section-process-1 .smcms_form .rd-recaptcha {
    margin-top: 4px;
}


/* =========================================================
   SUBMIT BUTTON
   Make CMS submit look like theme button
   ========================================================= */

.section-process-1 .smcms_form input.form_submit {
    position: relative;

    display: block;

    width: 100%;
    min-height: 56px;

    padding: 15px 28px;

    border: 0;
    border-radius: 0;

    background: #f7901e;
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    text-align: center;
    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.section-process-1 .smcms_form input.form_submit:hover {
    background: #111111;
    color: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .section-process-1 .smcms_form fieldset {
        grid-template-columns: 1fr;
    }

    .section-process-1 .smcms_form .rd-half,
    .section-process-1 .smcms_form .rd-full {
        grid-column: 1 / -1;
    }

}