/* RESET */

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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Lora', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: var(--colorWhite);
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
	--colorBlue: #073756;
  --colorRed: #d14030;
	--colorWhite: #ffff;
  --colorLightGray: #f7f7f7;
  --colorDarkFont: #313131;
	--colorDark: #232323;
	}

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

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

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

  .white-bg p, .white-bg li {
    color: var(--colorBlack);
  }

  .blue-bg p, .blue-bg li, .blue-bg h2 {
    color: var(--colorWhite);
    
  }

  .gray-bg p, .gray-bg li, .gray-bg h2, .white-bg h2 {
    color: var(--colorBlue);
  }

/* FONTS */

/* @font-face {
  font-family: "Mont";
  src: url(../fonts/Montserrat-Regular.woff2);
  font-display: swap;
} */

@font-face {
  font-family: "Mont Bold";
  src: url(../fonts/Montserrat-Bold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "Mont Medium";
  src: url(../fonts/Montserrat-Medium.woff2);
  font-display: swap;
}

@font-face {
  font-family: "PF";
  src: url(../fonts/PlayfairDisplay-Regular.woff2);
  font-display: swap;
} 

@font-face {
  font-family: "PF BI";
  src: url(../fonts/PlayfairDisplay-BoldItalic.woff2);
  font-display: swap;
} 




  p, li {
    color: var(--colorBlue);
    font-family: 'pf', sans-serif;
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 160%;
    letter-spacing: 0.02em;
  }

  /*

  h1 {
    font-family: 'mont', sans-serif;
    letter-spacing: .02em;
    font-size: 40px;
    color: rgb(255,255,255,1);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  */


  h2 {
    font-family: 'Mont Bold', sans-serif;
    letter-spacing: .02em;
    font-size: 27px;
    color: var(--colorBlue);
    text-transform: uppercase;
    text-align: center;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  /*
  
  h3 {
    font-family: 'mont', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

  */

  h3 {
    color: var(--colorRed);
    font-family: 'Mont Bold';
    text-align: left;
    margin-bottom: 20px;
  }

  ul {
    padding: 0px 50px;
}

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

.post a:not(.learn-more) {
  color: var(--colorRed);
}

.post a:hover {
  border-bottom: 2px dotted var(--colorRed);
}

.post h2:first-of-type {
    margin-top: 0px;
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 5%;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}


.post {
  max-width: 1000px;
  margin: 0 auto;
}

.post > * {
  margin-block: 1.2em;
}

.post p {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 20px;
  line-height: 1.8em;
}

.post p:last-of-type {
  margin-bottom: 0px;
}

.post h2 {
  text-align: left;
  margin: 50px 0 20px;
}

.post li:before {
  font-family: 'FontAwesome';
  content: '\f0da';
  margin: 4px 8px 0 0;
  color: var(--colorDark);
  font-size: 16px;
}

.post ul {
  list-style: none;
  padding-left: 20px;
}

.post ul.boxes {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    column-gap: 30px;
}

.post ul.boxes li {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--colorLightGray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.post ul.boxes li:before {
    content: "";
}

.post li {
  display: flex;
  /* font-family: 'Jost', sans-serif; */
  color: var(--colorDark);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.post li p {
  margin-bottom: 10px;
}


/* BUTTONS */

.learn-more, input[type="submit"] {
  display: inline-block;
  color: var(--colorWhite);
  height: auto;
  width: auto;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-transform: uppercase;
  font-family: 'mont bold', sans-serif;
  line-height: 100%;
  border-radius: 0px;
  letter-spacing: .02em;
  font-size: 14px;
  background-color: var(--colorRed);
  transition: all .4s;
  border: none;
}


  .multiple-buttons .button-container {
    flex: 1;
}

.multiple-buttons .button-container:first-of-type {
  text-align: right;
}

.multiple-buttons .button-container:last-of-type {
  text-align: left;
}

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  ::placeholder {
    font-family: 'Mont Medium';

}

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0,0,0,.3);
      z-index: 5;
  }

  .full-content .separator {
    margin: 0 auto 20px;
  }

  .separator {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin-bottom: 40px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 10;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--colorBlue);
}

.white .line {
    background-color: var(--colorWhite);
}

.separator img {
    height: 15px;
}

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
  }

  .aligncenter {
    display: block;
    margin: 30px auto 30px;
    height: auto;
    max-width: 800px;
}

  .split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
  }

  .full-content h2 {
    text-align: center;
  }

  .full-content > p {
    max-width: 840px;
    margin: 0 auto;
}
  

.split-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  column-gap: 30px;
}

.split-container.reverse {
    flex-direction: row-reverse;
    align-items: center;
}

.dispro .split-content {
  flex: 0 0 60%;
}

.split-content {
  flex: 1;
  text-align: left;
  padding-top: 20px;
}

.split-content h2 {
  text-align: left;
}

.split-image {
  flex: 1;
  display:flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

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

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

img.float-right {
  float: right;
  margin-left: 24px; /* Adds space between the image and text */
  max-width: 48%; /* Adjust as needed */
  margin-bottom: 20px;
  height: 260px;
}

.left-text p:last-of-type, .center-text p:last-of-type {
  margin-bottom: 0px;
}

.wider .content-wrapper {
  max-width: 1400px;
}

.extra-wrapper {
  margin-top: 50px;
}

ul.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
	padding-left: 20px;
}

ul.checkmark-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

ul.checkmark-list li i {
  color: var(--colorRed); /* or any color you want for the icon */
  margin-right: 0.6rem;
  margin-top: 8px;
  flex-shrink: 0;
}


   /* Header */

   header {
    width: 100%;
    position: fixed;
    display: block;
    height: auto;
    background-color: var(--colorWhite);
    left: 0;
    top: 0;
    z-index: 15;
    transition: all .5s;
}

.nav-one-row-with-banner .header-content {
  padding: 0px 3% 0px 3%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1600px;
  margin: 0px auto;
}

/* Banner Row */

.nav-one-row-with-banner .nav-row.top-nav-row {
  background-color: var(--colorBlue);
  padding: 2px 3%;
  height: 36px;
}

/* Logo */

a.logo-link {
    padding: 6px 0px;
    height: 100%;
    flex: 0 0 auto;
    margin-right: 2%;
    align-items: center;
    display: flex;
}

.logo {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: width .3s;
}

/* Nav */

.nav-rows {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.nav-row {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* Top Nav Row */

.nav-row.top-nav-row > * {
  margin-left: 5%;
  margin-bottom: 0px;
}

.nav-one-row-with-banner p {
  font-size: 12px;
  letter-spacing: 0.04em;
  /* font-weight: 700; */
  font-family: 'mont bold', sans-serif;
  color: var(--colorWhite);
  text-transform: uppercase;
}

.nav-one-row-with-banner a.nav-phone-link {
    font-size: 12px;
    letter-spacing: 0.06em;
    /* font-weight: 700; */
    font-family: 'mont bold', sans-serif;
    color: var(--colorWhite);
    text-transform: uppercase;
}

.nav-one-row-with-banner p span {
  padding: 0px 6px;
  font-weight: bold;
  line-height: 100%;
  font-size: 12px;
}

.nav-one-row-with-banner .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 12px;
  padding: 0px 1em;
  margin-left: 30px;
}

.nav-one-row-with-banner a.nav-social {
  display: flex;
  align-items: center;
}

.nav-one-row-with-banner a.nav-social i {
  font-size: 24px;
  color: var(--colorWhite);
}

/* Bottom Nav Row */

nav {
    height: 100%;
    flex-grow: 1;
    position: relative;
}

/* Nav Menu */

.menu-main-menu-container {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

#menu-main-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
    flex: 1;
    column-gap: 4%;
}

#menu-main-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    position: relative;
    margin-bottom: 0px;
}

.menu-main-menu-container li a {
    transition: all .3s;
    display: flex;
    align-items: center;
    color: var(--colorDark);
    text-transform: uppercase;
    font-family: 'Mont Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    height: 100%;
}

#menu-main-menu > li.strong a {
  font-weight: bold;
}

.menu-main-menu-container li:not(.disabled) a:hover {
	color: var(--colorRed);
}

#menu-main-menu > li.disabled:hover {
    cursor: default;
}

#menu-main-menu > li.disabled > a:hover {
    cursor: default;
}

/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  /* border-top: 4px solid var(--colorBlue); */
  position: absolute;
  left: 0;
  top: 60px;
  width: auto;
  min-width: 218px;
  filter: drop-shadow(2px 2px 2px #999);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--colorWhite);
  }

  #menu-main-menu li:hover ul.sub-menu a {
      padding-bottom: 0px;
  }

  #menu-main-menu > li:not(.nav-cta):hover > a {
      text-decoration: none;
  }

  #menu-main-menu li.menu-item-has-children>a:after,   #menu-main-menu-1 li.menu-item-has-children>a:after {
      font-family: 'Font Awesome 5 Free';
      content: '\f107';
      margin: 0 0 0 5px;
      font-weight:600;
  }

  .sub-menu {
      display: none;
      position: absolute;
      z-index: 20;
      margin: 0;
      height: auto;
      top: 23px;
      width: auto;
      min-width: 160px;
      background-color: var(--colorWhite);
  }

  .sub-menu li {
      margin: 0;
      display: block;
      text-align: left;
      background: var(--colorLight);
      padding: 8px 12px;
  }

  .sub-menu li:hover {
      background-color: var(--colorLightGray);
      color: var(--colorRed);
  }

  .sub-menu li:hover a {
      color: var(--colorRed);
  }

  .sub-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--colorGrayFont);
      text-transform: none;
      height: 100%;
      display: block;
      width: 100%;
  }

  .sub-menu a:hover {
      color: var(--colorRed) !important;
  }
  

/* Nav Contact Button */

.learn-more.nav-contact-btn {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

/* Fixed Space */

.fixed-header-space {
    height: 116px;
    width: 100%;
    background-color: var(--colorWhite);
}


/* HOME PAGE */
/* Home - Hero */

section#hero {
  display: block;
  min-height: 780px;
  height: 90vh;
  background-color: var(--colorDark);
  position: relative;
}

#hero .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.9) 100%);
}

section#hero .content-wrapper {
  padding-bottom: 60px;
  max-width: 1400px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

#hero h1 {
  font-size: 36px;
  font-family: 'Mont Bold', sans-serif;
  color: var(--colorWhite);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
	    filter: drop-shadow(2px 4px 3px black);
}

#hero h2 {
  font-family: 'pf bi', sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--colorWhite);
  text-align: center;
  text-transform: none;
}

.multiple-buttons {
  display: flex;
  column-gap: 50px;
  width: 100%;
  justify-content: center;
  flex-flow: wrap;
}

.multiple-buttons .button-container:first-of-type {
    text-align: right;
}

.multiple-buttons .button-container:last-of-type {
    text-align: left;
}

/* Home Intro */

.intro-copy-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 0px;
  flex: 0 0 60%;
}

.intro-copy-container p {
  text-align: left;
  /* max-width: 470px; */
  margin-bottom: 30px;
}

.intro-copy-container h2 {
  color: var(--colorBlue);
}

.intro-image-container {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Home - Portfolio */

#portfolio {
  background-color: var(--colorLightGray)
}

.portfolio-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 6%;
}

section#portfolio .content-wrapper {
  padding: 50px 0px;
  max-width: none;
  
}

.portfolio-slider {
  width: 100%;
  height: 320px;
  background-color: var(--colorBlue);
  margin: 30px 0px;
}



.portfolio-slider .swiper {
  width: 100%;
  overflow: hidden;
  height: 320px;
}

 .portfolio-slider .swiper-wrapper {
  display: flex;

  transition-timing-function: linear !important;
}

.portfolio-slider .swiper-slide {
  position: relative;
  height: 320px;
  flex: 0 0 28%;
  border-radius: 0px;
  margin: 0px;
  overflow: hidden;
}

.portfolio-slider .swiper-slide img {

  border-radius: 10px;
  width: 100%;
height: 100%;
object-fit: cover;
	border-radius: 0px
	
}


/* Home Testimonials */

section#testimonials .content-wrapper {
  max-width: 1200px;
  padding: 50px 6%;
}

.testimonials-slider {
  margin-top: 30px;
}

.slide-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 30px;
  height: 100%;
	background-color: #fff;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper-pagination-bullet-active {
  background: var(--colorRed) !important;
}


.slide-content-container {
  flex: 1; /* Grow to fill available space */
  padding: 20px; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.slide-image-container {
  flex: 0 0 calc(50% - 25px); /* Don't grow or shrink */
   /* Adjust width as needed */
  display: flex; /* Enables Flexbox for child image */
  align-items: center; /* Makes the image stretch to container height */
}

.slide-image-container img {
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers its container */
	max-height: 600px;
}

.slide-content-left {
  flex-direction: row;
}

.slide-content-right {
  flex-direction: row-reverse;
}

p.testimonial-source {
  margin-bottom: 0px;
}


.quote-container {
  padding-top: 10px;
  padding-bottom: 10px;
  flex: 0 0 auto;
}

.quote-container p {
  /* padding-top: 30px; */
  font-size: 17px;
  font-family: 'Mont Medium', sans-serif;
  text-align: left;
  margin: 0 auto 10px;
  color: var(--colorDarkFont);
}

.source-container {
  text-align: center;
  width: 100%;
}

p.testimonial-source {
  font-size: 15px;
  font-family: 'Mont Bold', sans-serif;
  text-align: center;
  color: var(--colorDarkFont);
  text-transform: uppercase;
  margin: 0 auto;
}



div.swiper-wrapper{
  margin-bottom: 40px;
}

/* CTA */

.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content h2 {
  margin-bottom: 0px;
}

.cta-content {
  column-gap: 30px;
}

/* Team Members */

.tom-pellis-split {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.tom-pellis {
    position: relative;
    flex: 1;
}

.tom-pellis-copy {
    flex: 0 0 75%;
}

.tom-pellis-copy > * {
    text-align: left;
}

.tom-pellis > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tom-pellis-copy p:last-of-type {
    margin-bottom: 0px;
}

.the-team .center-text > p {
    max-width: 900px;
    margin: 0 auto;
}

.team-members-container {
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: stretch; */
  /* column-gap: 30px; */
  /* margin: 30px 0px; */
}

section#meet-our-team .content-wrapper {
  padding-bottom: 0px;
}

.home #meet-our-team .full-content > p {
    max-width: 884px;
}

section.the-team h3.the-team {
    margin: .8em;
    color: var(--colorRed);
    font-family: 'PF BI';
    font-size: 28px;
}

.team-members-row {
  display: flex;
  column-gap: 20px;
  margin-bottom: 30px;
  height: 324px;
	    max-width: 970px;
	margin: 0 auto 30px;
}

.team-members-row .team-member-container:first-of-type {
  flex: 2;
}

.lg-team-column.team-column {
  flex: 2;
}

.sm-team-column.team-column {
  flex: 1;
}

.team-member-container {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.team-member-container img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.team-column {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  height: 710px;
}

.team-member-info {
  position: relative;
  bottom: 60px;
  width: 100%;
  min-height: 55px;
  background-color: rgb(7 55 86 / 80%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: .5s all;
}

.team-member-info h3 {
  font-size: 16px;
  color: var(--colorWhite);
  text-transform: uppercase;
  font-family: 'Mont Bold';
  margin-bottom: 0px;
  line-height: 100%;
  margin: 0;
}

.team-member-info p {
  color: var(--colorWhite);
  font-size: 15px;
  line-height: 100%;
  margin: 0;
}

section#meet-our-team-1 > .content-wrapper {
  padding-bottom: 0px;
  max-width: 1200px;
  padding: 50px 6% 0px;
}

.member-bio-container {
  display: block;
}

.member-bio-copy-container {
  text-align: left;
  padding: 50px 50px 20px;
  margin: 0 auto;
  max-width: 1040px;
}

.members-bio {
  position: relative;
}

.members-bio-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 6px 0px #ccc inset;
  position: absolute;
}

section#meet-our-team-bio-1 {
  position: relative;
  margin-top: -56px;
  z-index: 0;
}

section#meet-our-team-bio-2 {
  position: relative;
  z-index: 0;
  margin-top: -105px;
}

.page-template-meet-our-team section#team-members .content-wrapper {
  padding-top: 0px;
}

.page-template-meet-our-team .team-members-container {
  margin-top: 40px;
}

.active-trigger .team-member-info {
  background-color: rgb(247 247 247 / 92%);
}

.page-template-meet-our-team .team-member-container:hover {
  cursor: pointer;
}

.page-template-meet-our-team .team-member-container:hover .team-member-info > * {
  color: var(--colorBlue);
}

.page-template-meet-our-team .team-member-container:hover .team-member-info {
  background-color: rgb(247 247 247 / 96%);
}

.active-trigger .team-member-info > * {
  color: var(--colorBlue);
}

.member-bio-copy-container h3 {
  color: var(--colorBlue);
  font-family: 'PF';
  font-size: 24px;
  margin-bottom: 10px;
}

section#meet-our-team-bio-1 .content-wrapper, section#meet-our-team-bio-2 .content-wrapper {
  padding-bottom: 20px;
}

p.bio-title {
  font-family: 'Mont Bold';
  color: var(--colorRed);
}

section#meet-our-team-2 > .content-wrapper {
  padding-top: 20px;
}

.page-template-meet-our-team .slide-content-container {
    background-color: var(--colorLightGray);
}

.page-template-meet-our-team .slide-content-container > div p {
    text-align: center;
}

.page-template-meet-our-team .slide-content-container > div {
    position: relative;
    padding: 10px 0px;
	margin: 0 auto;
}

.page-template-meet-our-team div.swiper-wrapper {
	margin-bottom: 0px;
}

.page-template-meet-our-team .slide-content-container > div i {
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(0,0,0,.1);
    font-size: 44px;
}

.team-bottom.white-bg {
  height: 80px;
  width: 100%;
  display: block;
}

section#team-cta .content-wrapper {
  padding-top: 0px;
}

.home section#meet-our-team-2 > .content-wrapper {
  padding-bottom: 0px;
  max-width: 1200px;
  padding: 20px 6% 0px;
}

.page-template-meet-our-team section#meet-our-team-1 > .content-wrapper {
  padding: 50px 5% 10px;
  max-width: 1400px;
}

.page-template-meet-our-team section#meet-our-team-1 > .content-wrapper .team-members-container {
  max-width: 1200px;
  padding: 0px 6%;
}

.page-template-meet-our-team #meet-our-team-2 .team-members-container {
  max-width: 1200px;
  padding: 10px 6% 0px;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 420px;
	padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 5;
  margin-top: 0px;
  background-color: var(--colorGold);
  position: relative;
}

.internal-header .separator {
  margin-bottom: 0px;
}

section.internal-header h1, section.internal-header p.hero-title {
  color: var(--colorWhite);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: 'Mont Bold';
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .02em;
  filter: drop-shadow(0px 2px 2px black);
}

/* GALLERY PAGE */

.page-template-gallery .content-wrapper {
    max-width: 1400px;
}

.page-template-gallery .post {
    max-width: 1400px;
}

.image-gallery-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
}

a.image-gallery-container {
  border-bottom: none;
  border-radius: 3px;
  flex: 0 0 calc(20% - 12px);
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  position: relative;
}

a.image-gallery-container:hover {
  border-bottom: none;
}

.image-gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}

.image-gallery-container img:hover {
  transform: scale(1.05);
}


.filter-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  column-gap: 20px;
}

.filter-btn {
  display: inline-block;
  color: var(--colorBlue);
  height: auto;
  width: auto;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-transform: uppercase;
  font-family: 'mont bold', sans-serif;
  line-height: 100%;
  border-radius: 0px;
  letter-spacing: .02em;
  font-size: 14px;
  background-color: var(--colorLightGray);
  transition: all .4s;
  border: none;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--colorRed);
  color: var(--colorWhite);
}

.filter-btn:hover {
	cursor: pointer;
}

  /* Footer */

  footer {
    background-color: var(--colorBlue);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
}

.footer-info-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer-form-column {
    flex: 1;
}

.footer-info-column img {
    width: 240px;
}

.footer-info-column p {
    color: var(--colorWhite);
    text-align: left;
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

p.footer-heading {
    font-family: 'Mont Bold';
    text-transform: uppercase;
    color: var(--colorWhite);
    text-align: left;
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-info-column > div:first-of-type, .footer-info-column > div.footer-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.footer-social .nav-social {
    /* margin-top: 3px; */
    border: 2px solid #617e91;
    padding: 1px 9px 0px 8px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

/* Our History */



.sm-testimonials-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: wrap;
  row-gap: 20px;
  column-gap: 40px;
  margin-top: 30px;
}

.sm-testimonials-container > div {
  flex: 0 0 calc(33.3% - 28px);
  /* border: 1px solid #617e91; */
  padding: 20px;
	position: relative;
}

.sm-testimonials-container > div i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 60px;
    color: rgb(0,0,0,.1);
}

p.sm-testimonial-quote {
  font-size: 18px;
  text-align: left;
}

p.sm-testimonial-source {
  text-align: left;
  font-family: 'PF BI';
}


/* Testimonials */

.testimonial-quote-container {
  margin-bottom: 40px;
  position: relative;
  padding: 40px 20px;
}

.testimonial-quote-container p {
  text-align: left;
  z-index: 5;
}

.testimonials-container {
  margin: 40px auto 0;
	max-width: 1000px;
}

.testimonial-quote-container i {
  position: absolute;
  font-size: 68px;
  left: 0;
  opacity: .1;
  top: 0px;
  z-index: 0;
}

/* Process */

.page-template-process img.float-right {
  width: 40%;
}

/* Benefits */

.benefits-container {
  display: flex;
  flex-flow: wrap;
  align-items: stretch;
  justify-content: flex-start;
  column-gap: 45px;
  margin-top: 50px;
  row-gap: 40px;
}

.benefit-container {
  flex: 0 0 calc(33.3% - 30px);
}

.benefit-container i {
  font-size: 80px;
  color: var(--colorBlue);
  margin-bottom: 20px;
}

.benefit-container p:not(.benefit-title) {
  text-align: left;
  font-size: 18px;
}

p.benefit-title {
  font-family: 'Mont Bold';
  text-transform: none;
}

.benefit-container.benefit-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}


.benefit-container.benefit-logo img {
  min-width: 200px;
  object-fit: contain;
  width: 100%;
  height: auto;
}


/* Contact Us Page */

.contact-us-page-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 30px;
	max-width: 1000px;
  margin: 0 auto;
}

.contact-us-content {
  flex-grow: 1;
  text-align: left;
}

.contact-us-content h2 {
  text-align: left;
}

.contact-us-form {
  flex: 0 0 300px;
}

section#contact-us-page-body h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-address-container p {
  margin-bottom: 0px;
  font-family: 'Mont Medium';
  font-size: 16px;
}

.contact-address-container {
  margin-bottom: 20px;
}

.contact-hours-container p {
  margin-bottom: 0px;
  font-family: 'Mont Medium';
  font-size: 15px;
}

.page-template-contact .footer-form-column > * {
  display: none;
}

/* Single Community */

.single-community section#hero {
  margin: 0;
}

.single-community section#hero .content-wrapper {
  padding: 50px 5% 0px;
}

.single-community .hero-content {
  justify-content: center;
}

.community-body-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.community-body-sidebar {
  flex: 0 0 33%;
  min-width: 340px;
}

.community-body-sidebar-map-container {
  margin-bottom: 20px;
}

.community-body-sidebar-map-info {
  background-color: var(--colorLightGray);
  padding: 20px;
  border-radius: 10px;
}

.community-body-sidebar-map-info p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 0px;
}


.community-body-sidebar-map-info p span {
    font-weight: 600;
}

.community-body-info {
  text-align: left;
  padding-left: 3%;
}

.community-body-info li {
  margin-bottom: 4px;
}

.community-body-info h3 {
  font-size: 22px;
  color: var(--colorBlue);
  font-family: 'Mont Medium';
  letter-spacing: .03em;
  margin-bottom: 0px;
}

.community-body-info-buttons {
  margin-top: 20px;
}

.community-body-sidebar-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

.community-body-sidebar-buttons a {
  margin-top: 10px;
}

.single-community .contact-form-container {
  max-width: 500px;
  margin: 0 auto;
}





/* Cards */

.row-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
}

.row-wrap.center {
  justify-content: center;
}

.card {
  flex: 0 0 calc(33.3% - 30px);
  margin: 0px 15px 10px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
}

.inner-card {
  padding: 0 5%;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  box-shadow: -1px 1px 20px 0px rgba(0,0,0,0.25);
  background-color: var(--colorWhite);
}

.card-img-container {
  width: 100%;
  height: 240px;
  display: block;
}

.card-info-container {
  display: block;
  width: 100%;
  height: auto;
  padding: 20px;
  text-align: center;
  background-color: var(--colorWhite);
}

.card-info-container h3 {
  font-size: 24px;
    color: var(--colorRed);
    text-align: center;
    font-family: 'PF', sans-serif;
    margin-bottom: 0px;
    letter-spacing: .03em;
}

.card-info-container h3 a {
  
  font-weight: 300;
  font-size: 24px;
    text-align: center;
  text-decoration: none;
}

.card-info-container p {
  margin-bottom: 0px;
}

.card-info-type {
  margin-bottom: 20px;
}
section#community-floor-plans h2 {
  margin-bottom: 30px;
}

section#community-floor-plans {
    background-color: var(--colorLightGray);
}

/* Custom Homes */

.mid-post-cta {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: var(--colorLightGray);
  border-radius: 10px;
  overflow: hidden;
  margin: 50px 30px;
}

.mid-cta-image-container {
  height: 360px;
  flex: 0 0 auto;
  aspect-ratio: 1;
  background: #fff url('/wp-content/uploads/2025/08/Looking-for-Inspiration.jpg') no-repeat center center / cover;
}

.mid-cta-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mid-cta-text h3 {
  color: var(--colorBlue);
  font-size: 28px;
}

.full-width-cta {
  padding: 50px 6%;
  text-align: center;
  background-color: var(--colorLightGray);
}

.full-width-cta p {
  margin-bottom: 0px;
  color: var(--blue);
  max-width: 800px;
  margin: 0 auto;
  font-size: 24px;
  margin-bottom: 30px;
}

p.sold-out {
    color: var(--colorRed);
    font-weight: 900;
}

.sold-out a {
    border-bottom: 2px dotted var(--colorRed);
}

.page-id-84 .gray-bg .split-image img {
    /* padding-top: 30px; */
    position: absolute;
    top: 30px;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-id-84 .gray-bg .split-image {
    /* padding-top: 30px; */
    position: relative;
   overflow: hidden;
}

#sets-apart .split-image {
    flex: 0 0 33%;
    position: relative;
    overflow: hidden;
}

#sets-apart .split-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
}

#sets-apart  .split-content {
     flex: 0 0 67%;
    text-align: left;
    padding-top: 20px;
}  

.mobile-team-row-wrap {
    display: flex;
    flex-flow: wrap;
    row-gap: 10px;
    column-gap: 10px;
    max-width: 430px;
    margin: 0 auto;
}

.mobile-team-row-wrap .team-member-container {
    flex: 0 0 calc(50% - 5px);
    aspect-ratio: 1;
    width: 100%;
}

.mobile-team-row .team-member-container {
    flex: 0 0 300px;
    height: auto;
}

.mobile-team-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 10px;
    margin-bottom: 10px;
}

.mobile-team-row-wrap h3 {
    font-size: 13px;
    margin-bottom: 4px;
}

.mobile-team-row-wrap p {
    font-size: 11px;
}

/* RESPONSIVE */

@media screen and (min-width: 1280px) {
	.mobile-only {
			display: none !important;
		}
}

	@media screen and (max-width: 1279px) {
     /* Header Mobile */
	.desktop {
			display: none !important;
		}
     

    header.mobile-only img {
        height: 54px;
    }

      header.mobile-only {
        display: flex;
        padding: 0px 23px 0px 20px;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: fixed;
        z-index: 1000;
        background: #fff;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
    }

    header.mobile-only a.logo-link {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        padding: 3px 0;
    }

    .fixed-header-space {
        height: 70px;
        display: block;
        width: 100%;
    }

    /* Hamburger Icon */

    .mobile-navbar ul {
        list-style: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .mobile-navbar ul {
        margin-bottom: 0px;
    }

    #menu-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 7px auto 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 999;
    }

    #menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--colorBlue);
        border-radius: 6px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    #menu-icon.open span {
        background: var(--colorBlue);
    }

    #menu-icon span:nth-child(1) {
        display: none;
    }

    #menu-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 13px;
    }

    #menu-icon span:nth-child(4) {
        top: 26px;
    }

    #menu-icon.open span:nth-child(1) {
        display: none;
    }

    #menu-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 12px;
    }

    #menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 11px;
    }

    #menu-icon.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    /* Mobile Nav Menu */



    .sidenav.open {
        height: calc(100vh - 120px);
        padding-bottom: 154px;
        padding-top: 20px;
    }

    .sidenav a {
        padding: 3px;
        text-decoration: none;
        font-size: 21px;
        color: var(--blue);
        display: block;
        transition: 0.3s;
        font-family: "Mont Bold", sans-serif;
        text-align: center;
    }

    #sidenav .faq-accordion-title-container.mobile-menu-accordion h3 {
        font-size: 24px;
        color: var(--blue);
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #sidenav h3 {
        font-size: 24px;
        color: var(--colorDarkest);
    }

      #sidenav .faq-accordion-title-container.mobile-menu-accordion {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        margin-bottom: 10px;
    }

    #sidenav .panel {
        padding: 10px 0px;
    }

    .sidenav {
        height: 0px;
        width: 100%;
        position: fixed;
        z-index: 990;
        top: 70px;
        left: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        overflow-x: hidden;
        transition: 0.5s all;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-left: 20px;
      }

      .mobile-navbar ul {
        list-style: none;
        margin-top: 0px;
        padding: 0px;
      }

      ul#menu-mobile-menu {
          display: block;
      }

      .additional-link {
    margin-bottom: 20px;
}

  #mobile-nav li {
        text-align: left;
        border-bottom: none;
        display: block;
        margin-bottom: 20px;
      }

      #mobile-nav li:last-of-type {
        border: none;
      }

      #mobile-nav a, #mobile-nav ul.sub-menu a {
          padding: 2px;
          text-decoration: none;
          font-size: 19px;
          color: var(--colorBlue);
          display: block;
          transition: 0.3s;
          font-family: 'Mont Medium';
          font-weight: 700;
          text-transform: capitalize;
          letter-spacing: .02em;
          text-align: center;
      }

      #mobile-nav ul.sub-menu a {
            font-weight: 500;
      }

      #mobile-nav ul.sub-menu {
        position: relative;
        margin-bottom: 30px;
        margin-top: 10px;
        background-color: rgb(181, 192, 225, .2);
        padding: 20px 0px;
      }

      a.mobile-submenu-link {
        color: var(--colorDarkest);
        font-size: 20px;
        margin-left: 20px;
      }

      .sidenav.open {
        height: calc(100vh - 80px);
        padding-bottom: 100px;
        padding-top: 50px;
      }

      #mobile-nav ul {
        list-style: none;
        padding-left: 0px;
      }

      .menu-main-menu-container {
    justify-content: center;
    height: auto;
}

ul#menu-main-menu-1 {
    width: 100%;
}

#mobile-nav li a {
    text-align: center;
}

#mobile-nav li a .sub-menu a {
    text-align: center;
}

#mobile-nav .sub-menu li:last-of-type {
    margin-bottom: 0px;
}
      


      .fixedPosition {
        position: fixed;
      }

      .bottom-phone-bar-content {
    background-color: var(--red);
    bottom: 0;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bottom-phone-bar-content p {
    color: #fff;
    margin: 0;
}

.bottom-phone-button-container a.learn-more {
    background-color: #fff;
    padding: 4px 10px;
    display: inline-block;
    color: var(--red);
    font-family: 'poppins';
    font-weight: 600;
}

header.mobile-only {
    background: var(--colorWhite);
}

img.logo {
    height: 70px;
}

li#menu-button {
    margin-bottom: 0px;
}

.hero-content {
    justify-content: center;
    padding-top: 70px;
}

section#hero {
    min-height: 600px;
    height: auto;
}

.multiple-buttons {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    width: auto;
}

section#hero .content-wrapper {
    height: 600px;
}

#hero h1 {
    font-size: 24px;
}

#hero h2 {
    filter: drop-shadow(2px 4px 6px black);
}

.multiple-buttons div.button-container {
    width: 100%;
}

.multiple-buttons a {
    width: 100%;
    text-align: center;
    height: 54px;
    display: flex;
}


.intro-image-container {
    display: none
}

.intro-copy-container a.learn-more {
    margin: 0 auto;
}

.learn-more {
    height: 54px;
    display: flex;
}

.portfolio-slider .swiper-slide {
    flex: 0 0 45%
}

.slide-content-left {
  flex-direction: column;
}

.slide-content-right {
  flex-direction: column;
}

.cta-content {
    flex-direction: column;
    row-gap: 20px;
}

.cta-content h2 {
    max-width: 375px;
}

.team-members-row {
    flex-direction: row;
    height: auto;
}

.team-members-row .team-member-container {
    flex: none;
    height: auto;
}

.team-members-row .team-member-container:first-of-type {
    height: auto;
    flex: 1;
    aspect-ratio: 1;
}

.team-members-container {
    flex-direction: column;
}

		.intro-copy-container {
    flex: 1;
}

.intro-copy-container {
    flex: 1;
}

.slide-image-container img {
    max-width: 380px;
    margin: 0 auto;
}

section.internal-header {
    padding: 60px 30px 30px;
}

section.internal-header h1 {
    font-size: 26px;
}

.split-container {
    flex-direction: column;
    row-gap: 40px;
}

.split-container.reverse {
    flex-direction: column-reverse;
}

.footer-columns {
    flex-direction: column;
    row-gap: 25px;
}

.footer-info-column {
    flex: none;
    align-items: center;
    margin: 0 auto;
    row-gap: 40px;
}


p.footer-heading {
    text-align: center;
}

footer p {
    text-align: center;
}

.footer-info-column p {
    text-align: center;
}

.footer-form-column {
    flex: none;
    margin: 30px auto 0px;
}

footer .content-wrapper {
    padding-bottom: 120px;
}

.split-content {
    padding-top: 0px;
}

.mid-post-cta {
    flex-direction: column;
}

.contact-us-page-container {
    flex-direction: column;
    row-gap: 30px;
}

.benefits-container {
    flex-direction: column;
}

.benefit-container.benefit-logo {
    max-width: 320px;
    margin: 10px auto;
}

/* ============ Global (scroll lock when popup is open) ============ */
html.no-scroll { overflow: hidden; }

/* ============ Backdrop / Wrapper ============ */
.bio-popup {
  /* original */
  display: none;                 /* fully hidden until JS opens */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px; /* breathing room on small screens */

  /* fade */
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 0s linear 250ms; /* delay visibility so it hides after fade-out */
}

/* Visible state (JS adds .is-visible) */
.bio-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms ease, visibility 0s linear 0s; /* make visibility immediate on fade-in */
}

/* ============ Panel / Card ============ */
.bio-popup-content {
  /* original */
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;      /* never taller than viewport */
  overflow: hidden;      /* hide overflow, body will scroll */

  /* subtle motion */
  transform: translateY(10px);
  opacity: 0;
  transition: transform 250ms ease, opacity 250ms ease;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* When backdrop is visible, animate panel in */
.bio-popup.is-visible .bio-popup-content {
  transform: translateY(0);
  opacity: 1;
}

/* ============ Close Button ============ */
.bio-popup-close {
  position: absolute;
  top: 10px; 
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  color: #333;
}

.bio-popup-close:hover {
  background: rgba(0,0,0,0.05);
}

.bio-popup-close:focus-visible {
  outline: 2px solid #3b82f6; /* accessible focus ring */
  outline-offset: 2px;
}

/* ============ Header / Title ============ */
.bio-popup-header {
  padding: 20px 24px 0 24px;
  flex: 0 0 auto;
}

.bio-popup-name { 
  margin: 0; 
}

.bio-popup-title { 
  margin: 6px 0 12px; 
  font-weight: 600; 
  color: #666; 
}

/* ============ Body (scrollable content) ============ */
.bio-popup-body {
  padding: 0 24px 20px 24px;
  flex: 1 1 auto;              /* take remaining space */
  overflow: auto;              /* scroll inside */
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

.bio-popup-text {
  line-height: 1.6;
}

/* ============ Reduced Motion Respect ============ */
@media (prefers-reduced-motion: reduce) {
  .bio-popup,
  .bio-popup-content {
    transition: none !important;
  }
}

/* ============ (Optional) If you actually want .mobile-only behavior ============ */
/* If your .mobile-only class should hide the popup trigger/overlay on larger screens,
   uncomment this to restrict showing the overlay above a certain width.
   By default, the JS controls visibility, so this is not required.

@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}
*/


	}

	@media screen and (max-width: 1120px) {


	}

	@media screen and (min-width: 1001px) {

    

	}

	@media screen and (max-width: 1000px) {

	

    .mobile-team-row-wrap {
        display: flex;
        flex-flow: wrap;
        row-gap: 10px;
        column-gap: 10px;
        max-width: 430px;
        margin: 0 auto;
    }

    .mobile-team-row-wrap .team-member-container {
        flex: 0 0 calc(50% - 5px);
        aspect-ratio: 1;
        width: 100%;
    }

    .team-member-container {
        width: 100%;
        max-width: 376px;
        max-height: 300px;
    }

    .mobile-team-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        row-gap: 10px;
        margin-bottom: 10px;
    }

    .mobile-team-row-wrap h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .mobile-team-row-wrap p {
        font-size: 11px;
    }

  }

  @media screen and (max-width: 900px) {

    a.image-gallery-container {
      flex: 0 0 calc(33.3% - 12px);
    }

    .portfolio-slider {
      height: 240px;
    }

    .portfolio-slider .swiper {
       height: 240px;
    }

    .mobile-team-column {
    padding: 30px 20px;
}

#portfolio .multiple-buttons {
    padding: 0px 20px;
    max-width: 320px;
    margin: 0 auto;
}

.tom-pellis-split {
    flex-direction: column;
    row-gap: 30px;
}

.tom-pellis {
    flex: none;
    height: 300px;
}



  }

  @media screen and (max-width: 780px) {

  }

  @media screen and (max-width: 520px) {

  }
