.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E1E000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.preloader {
  cursor: pointer;
}
.preloader:hover .preloader__skip-hint {
  opacity: 1;
}

.preloader__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  margin: 48px;
}
@media (max-width: 768px) {
  .preloader__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .preloader__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 48px;
  }
}

.headline {
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  color: #1E1E1E;
}
.headline--primary {
  letter-spacing: -1.6px;
  line-height: 1;
  margin-bottom: 3rem;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .headline--primary {
    letter-spacing: -0.64px;
  }
}
@media (min-width: 768px) {
  .headline--primary {
    letter-spacing: -1.12px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  color: #1E1E1E;
  font-weight: 400;
  line-height: 100%;
}
h1.lined, h2.lined, h3.lined, h4.lined, h5.lined, h6.lined {
  padding: 0.75rem 0;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 1.5rem;
}

.h1, h1 {
  font-size: clamp(5rem, 8.8344vw + 2.9571rem, 14rem);
}

.h2, h2 {
  font-size: clamp(5rem, 2.6994vw + 4.3758rem, 7.75rem);
}

.h3, h3 {
  font-size: clamp(2rem, 1.9632vw + 1.546rem, 4rem);
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

.body-text, p {
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  color: #1E1E1E;
  line-height: 2rem; /* 133.333% */
}

p {
  color: #1E1E1E;
}

.btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn:focus {
  outline: none;
  outline-offset: 2px;
}
.btn {
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  background: #E1E000;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-size: 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #1E1E1E;
  color: #E1E000;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 380px;
  padding: 1.25rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem; /* 133.333% */
}
.btn--arrow:after {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--arrow:hover {
  border-top: 1px solid #E1E000;
  border-bottom: 1px solid #E1E000;
  background: #E1E000;
  color: #1E1E1E;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

body.menu-active {
  overflow: hidden;
}

.site-header {
  position: sticky;
  border-bottom: none;
  top: 0;
  width: 100%;
  z-index: 1030;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* ============================================
     Fixed State
     ============================================ */
}
.site-header .custom-navbar {
  padding-top: 3rem;
  padding-bottom: 0.75rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 991.98px) {
  .site-header .custom-navbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-header .navbar-brand {
  position: relative;
  padding: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6.6875rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .navbar-brand #logo {
  width: 150px;
  height: auto;
}
.site-header .navbar-brand .location {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.site-header .navbar-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.5rem;
}
.site-header .navbar-nav a {
  color: #1E1E1E;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 120% */
  text-decoration: none;
}
.site-header .navbar-nav a:hover {
  color: #E1E000;
}
.site-header .custom-hamburger {
  position: relative;
  z-index: 999;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.site-header .custom-hamburger:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.site-header .custom-hamburger[aria-expanded=true] {
  color: #FCFCEE;
}
.site-header .custom-hamburger[aria-expanded=true]:hover {
  color: #E1E000;
}
.site-header .custom-hamburger .hamburger-lines {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-header .custom-hamburger .line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--brand-primary);
  border-radius: 1.5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
}
.site-header .custom-hamburger .line.line1 {
  top: 8px;
}
.site-header .custom-hamburger .line.line2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-header .custom-hamburger .line.line3 {
  bottom: 8px;
}
.site-header .custom-hamburger[aria-expanded=true] .line1 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.site-header .custom-hamburger[aria-expanded=true] .line2 {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
}
.site-header .custom-hamburger[aria-expanded=true] .line3 {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}
.site-header .custom-hamburger:focus-visible .line {
  background-color: var(--brand-accent);
}
.site-header .menu-icon {
  display: none !important;
}
.site-header .fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background: #1E1E1E;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.site-header .fullscreen-menu:not(.show) {
  display: none;
}
.site-header .fullscreen-menu.show {
  display: block;
}
.site-header .menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5rem 1.5rem;
}
@media (min-width: 1025px) {
  .site-header .menu-content {
    padding: 7.75rem;
  }
}
.site-header .menu-content .menu--btm {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6rem;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.menu-active .site-header .menu-content .menu--btm {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-animation: slideInFromLeft 0.4s ease-out forwards;
  animation: slideInFromLeft 0.4s ease-out forwards;
}
.site-header .menu-content .menu--btm .featuredimg {
  margin-top: 20px;
  width: 70%;
  max-width: 500px;
  margin-left: auto;
}
.site-header .menu-content .menu--btm .featuredimg img {
  max-height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.site-header .menu-content .contact {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #FCFCEE;
  width: 100%;
  max-width: 800px;
}
.site-header .menu-content .contact div {
  border-bottom: 1px solid #FCFCEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.site-header .menu-content .contact div span {
  color: #FCFCEE;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0125rem;
}
.site-header .menu-content .contact div span:first-of-type {
  width: 25%;
}
.site-header .menu-content .contact div span:last-of-type {
  width: 75%;
}
@media (min-width: 1025px) {
  .site-header .menu-content .contact div span {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem; /* 133.333% */
    letter-spacing: 0.015rem;
  }
  .site-header .menu-content .contact div span:first-of-type {
    width: 40%;
  }
  .site-header .menu-content .contact div span:last-of-type {
    width: 60%;
  }
}
.site-header .menu-content .contact div a {
  color: #FCFCEE;
}
.site-header .menu-content .menu-items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1025px) {
  .site-header .menu-content .menu-items-list {
    gap: 0.5rem;
  }
}
.site-header .menu-content .menu-items-list a {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem; /* 112.5% */
}
@media (min-width: 1025px) {
  .site-header .menu-content .menu-items-list a {
    font-size: 5rem;
    line-height: 6rem; /* 120% */
  }
}
.site-header .menu-close-btn {
  position: absolute;
  top: 25px;
  right: 45px;
  width: 39px;
  height: 39px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .site-header .menu-close-btn {
    right: 20px;
  }
}
.site-header .menu-close-btn .close-icon {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.site-header .menu-close-btn .close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 1.5px;
}
.site-header .menu-close-btn .close-line.close-line-1 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .menu-close-btn .close-line.close-line-2 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header .menu-close-btn:hover .close-line {
  background-color: var(--brand-accent);
}
.site-header .menu-item-link {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.site-header .menu-item-link:hover {
  color: var(--brand-accent);
  text-decoration: none;
}
.site-header .menu-item-wrapper {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-animation: slideInFromLeft 0.4s ease-out forwards;
  animation: slideInFromLeft 0.4s ease-out forwards;
}
.site-header .menu-item-wrapper:nth-child(1) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.site-header .menu-item-wrapper:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.site-header .menu-item-wrapper:nth-child(3) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.site-header .menu-item-wrapper:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.site-header .menu-item-wrapper:nth-child(5) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.site-header .menu-item-wrapper:nth-child(6) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.site-header .menu-item-wrapper:nth-child(7) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
.site-header .menu-item-wrapper:nth-child(8) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.site-header .menu-item-wrapper:nth-child(9) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
.site-header .menu-item-wrapper:nth-child(10) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@-webkit-keyframes slideInFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headline h1, .headline h2 {
  gap: 0;
}
@media (min-width: 1025px) {
  .headline h1, .headline h2 {
    gap: 2rem;
  }
}
.headline h1 span:nth-child(2), .headline h2 span:nth-child(2) {
  text-align: right;
}

#hero .copy {
  position: relative;
  z-index: 5;
  margin-bottom: 48px;
  margin-top: 24px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.loaded #hero .copy {
  opacity: 1;
}
#hero .img {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.loaded #hero .img {
  opacity: 1;
}
#hero .img .caption {
  margin-top: 16px;
  max-width: 730px;
  margin-left: auto;
  text-align: right;
  font-size: 1.25rem;
  color: #1E1E1E;
}
#hero .headline {
  width: 100%;
  margin-top: 24px;
}
#hero .headline h1 {
  position: relative;
  z-index: 3;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1025px) {
  #hero .headline h1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
#hero .headline h1 span {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#hero .headline h1 span:last-of-type {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.loaded #hero .headline h1 span {
  opacity: 1;
}
@media (min-width: 1025px) {
  #hero .headline h1 span.md-50 {
    margin-left: 50%;
  }
}
@media (min-width: 1025px) {
  #hero .headline h1 span.md-60 {
    margin-left: 60%;
  }
}

#cta {
  display: none;
}
@media (min-width: 1025px) {
  #cta {
    display: block;
  }
}
#cta .container-fluid {
  padding-top: 5rem;
  padding-bottom: 0;
}
#cta h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#cta .ctabtn {
  margin-top: 24px;
  margin-left: auto;
  margin-right: 5rem;
  text-align: right;
}

#intro {
  position: relative;
  z-index: 3;
}
#intro.home .container-fluid {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}
#intro.home:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
}
@media (min-width: 1025px) {
  #intro.home:before {
    left: 3rem;
    right: 3rem;
  }
}
@media (min-width: 1025px) {
  #intro.home h6 {
    margin-bottom: 1.5rem;
  }
}
#intro.home .copy {
  max-width: 320px;
  font-weight: 600;
  margin-bottom: 3rem;
}
#intro.home .home-content {
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  #intro.home .home-content {
    margin-bottom: 7rem;
  }
}
#intro.home .home-content p {
  margin-top: 4rem;
}
#intro.home .home-content h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem; /* 125% */
  letter-spacing: 0.02rem;
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  #intro.home .home-content h3 {
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.5rem; /* 112.5% */
    letter-spacing: 0.04rem;
  }
}

.testimonial-slider-section {
  position: relative;
  z-index: 3;
}
.testimonial-slider-section .container-fluid {
  position: relative;
  z-index: 2;
}
.testimonial-slider-section:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
}
@media (min-width: 1025px) {
  .testimonial-slider-section:before {
    left: 3rem;
    right: 3rem;
  }
}
.testimonial-slider-section h6 {
  margin-bottom: 1.5rem;
}
.testimonial-slider-section .testimonial-content {
  padding: 0 1.5rem;
}
.testimonial-slider-section .testimonial-content blockquote {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 125% */
}
@media (min-width: 1025px) {
  .testimonial-slider-section .testimonial-content blockquote {
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 72px; /* 112.5% */
    letter-spacing: 0.64px;
  }
}
.testimonial-slider-section .testimonial-logo {
  max-width: 120px;
}
@media (min-width: 1025px) {
  .testimonial-slider-section .testimonial-logo {
    max-width: 200px;
  }
}
.testimonial-slider-section .testimonial-attribution {
  margin-top: 32px;
  margin-bottom: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1025px) {
  .testimonial-slider-section .testimonial-attribution {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.testimonial-slider-section .testimonial-attribution cite {
  font-style: normal;
}
.testimonial-slider-section .testimonial-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 380px;
  width: 100%;
  left: 0;
  pointer-events: none;
  z-index: 2;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
}
.testimonial-slider-section .testimonial-nav {
  position: relative;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: all;
}
.testimonial-slider-section .testimonial-nav:hover {
  opacity: 0.7;
}
.testimonial-slider-section .testimonial-nav:focus {
  outline: none;
}
.testimonial-slider-section .testimonial-nav--prev {
  left: 0;
}
.testimonial-slider-section .testimonial-nav--next {
  right: 0;
}
.testimonial-slider-section .testimonial-nav svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .testimonial-slider-section .testimonial-nav svg {
    width: 20px;
    height: 20px;
  }
}
.testimonial-slider-section .flickity-enabled:focus {
  outline: none;
}
.testimonial-slider-section .flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.testimonial-slider-section .flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.testimonial-slider-section .testimonial-slide {
  opacity: 0.3;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.testimonial-slider-section .testimonial-slide.is-selected {
  opacity: 1;
}

#home-projects .headline {
  width: 100%;
  margin-top: 24px;
}
#home-projects .headline h2 {
  position: relative;
  z-index: 3;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1025px) {
  #home-projects .headline h2 {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.loaded #home-projects .headline h2 {
  opacity: 1;
}
@media (min-width: 1025px) {
  #home-projects .headline h2 span.md-50 {
    margin-left: 50%;
  }
}
@media (min-width: 1025px) {
  #home-projects .headline h2 span.md-60 {
    margin-left: 60%;
  }
}
#home-projects .project-link {
  margin-bottom: 90px;
  text-align: center;
}
#home-projects .home-project-item {
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  #home-projects .home-project-item {
    margin-bottom: 4rem;
  }
}
#home-projects .home-project-item.project-layout-1 .portfolio-image {
  aspect-ratio: 3/4;
}
#home-projects .home-project-item.project-layout-2 .portfolio-image {
  aspect-ratio: 3/2;
}
@media (min-width: 1025px) {
  #home-projects .home-project-item.project-layout-3 {
    width: 40%;
    margin-right: 2rem;
  }
}
#home-projects .home-project-item.project-layout-3 .portfolio-image {
  aspect-ratio: 3/4;
}
@media (min-width: 1025px) {
  #home-projects .home-project-item.project-layout-4 {
    width: 60%;
  }
}
#home-projects .home-project-item.project-layout-4 .portfolio-image {
  aspect-ratio: 3/4;
}
#home-projects .home-project-item.project-layout-5 .portfolio-image, #home-projects .home-project-item.project-layout-6 .portfolio-image {
  aspect-ratio: 4/5;
}
#home-projects .home-project-item .portfolio-image {
  overflow: hidden;
  background: #E1E000;
}
#home-projects .home-project-item .portfolio-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
#home-projects .home-project-item .portfolio-image:hover img {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
  opacity: 0.8;
}
#home-projects .home-project-item .work-meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
}

#hero.studio .container-fluid {
  padding-bottom: 3.5rem;
}
#hero.studio .copy {
  max-width: 465px;
}

#client-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 24px;
  gap: 1.5rem;
}
@media (min-width: 1025px) {
  #client-gallery {
    margin-top: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
#client-gallery h6 {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  #client-gallery h6 {
    margin-bottom: 0;
  }
}
#client-gallery ul {
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0;
  list-style: none;
  gap: 1.5rem;
  overflow: scroll; /* or overflow-y: scroll; or overflow-x: scroll; */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
#client-gallery ul::-webkit-scrollbar {
  display: none;
}
#client-gallery ul {
  /* Hide scrollbar for IE, Edge */
  -ms-overflow-style: none;
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  #client-gallery ul {
    overflow: hidden;
    width: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    gap: 2rem;
  }
}
#client-gallery ul li img {
  width: auto;
  max-height: 110px;
}

#process {
  position: relative;
}
#process .container-fluid {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}
#process:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
}
@media (min-width: 1025px) {
  #process:before {
    left: 3rem;
    right: 3rem;
  }
}
@media (min-width: 1025px) {
  #process h6 {
    margin-bottom: 1.5rem;
  }
}
#process .process {
  margin-bottom: 4.5rem;
}
#process .process p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem; /* 125% */
}
@media (min-width: 1025px) {
  #process .process p {
    font-size: 4rem;
    line-height: 4.5rem; /* 112.5% */
    letter-spacing: 0.04rem;
  }
}

#people .headline {
  margin-bottom: 2.5rem;
}
@media (min-width: 1025px) {
  #people .headline {
    margin-bottom: 6rem;
  }
}
#people .headline h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  #people .headline h2 {
    width: 95%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
#people .person-item {
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  #people .people-grid {
    width: 95%;
  }
}
@media (min-width: 1025px) {
  #people .people-grid .col-lg-3 {
    width: 20%;
  }
}
#people .people-grid .person-item .person-image {
  margin-bottom: 0.5rem;
}
#people .people-grid .person-item .person-image img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

#careers {
  position: relative;
}
#careers .container-fluid {
  position: relative;
  z-index: 2;
}
#careers:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
}
@media (min-width: 1025px) {
  #careers:before {
    left: 3rem;
    right: 3rem;
  }
}
#careers .careers {
  margin-bottom: 4.5rem;
}
#careers .careers p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem; /* 125% */
}
@media (min-width: 1025px) {
  #careers .careers p {
    font-size: 4rem;
    line-height: 4.5rem; /* 112.5% */
    letter-spacing: 0.04rem;
  }
}

.portfolio-section .container-fluid {
  padding-top: 0;
}

.portfolio-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 3rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: scroll;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.portfolio-filters::-webkit-scrollbar {
  display: none;
}
.portfolio-filters {
  /* Hide scrollbar for IE, Edge */
  -ms-overflow-style: none;
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
}
.portfolio-filters a {
  color: #888;
  cursor: pointer;
  white-space: nowrap;
}
.portfolio-filters a:hover, .portfolio-filters a.active {
  color: #1E1E1E;
  opacity: 1;
}
.portfolio-filters a.active {
  color: #1E1E1E;
}

.portfolio-grid .portfolio-image {
  overflow: hidden;
  background: #E1E000;
  height: 450px;
}
@media (min-width: 1025px) {
  .portfolio-grid .portfolio-image {
    height: 650px;
  }
}
.portfolio-grid .portfolio-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.portfolio-grid .portfolio-image:hover img {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
  opacity: 0.8;
}
.portfolio-grid .work-meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.work-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 39px;
}
@media (max-width: 991px) {
  .work-stack {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.work-vert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.work-vert--small {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.333% - 26px);
  flex: 0 0 calc(33.333% - 26px);
}
@media (max-width: 991px) {
  .work-vert--small {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.work-vert--large {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(66.666% - 13px);
  flex: 0 0 calc(66.666% - 13px);
}
@media (max-width: 991px) {
  .work-vert--large {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.work-vert .work-number {
  display: block;
  font-size: 1rem;
  margin-bottom: 11px;
}
.work-vert .work-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 11px;
}
.work-vert .work-image img {
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 1400px) {
  .work-vert .work-image img {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .work-vert .work-image img {
    height: 400px;
  }
}
.work-vert .work-image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.work-vert .work-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.work-vert .work-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.work-vert .work-term {
  font-size: 1rem;
  opacity: 0.7;
}

#single .img {
  margin-bottom: 64px;
  margin-top: 32px;
}
#single .img .caption {
  margin-top: 16px;
  max-width: 730px;
  margin-left: auto;
  text-align: right;
  font-size: 1.25rem;
  color: #1E1E1E;
}
#single .project-details {
  position: relative;
  border-top: 1px solid #1E1E1E;
  padding-top: 64px;
}
#single .project-details h6 {
  margin-bottom: 1.5rem;
}
#single .project-details h3 {
  margin-bottom: 4rem;
}
#single .project-details .details {
  margin-top: 25px;
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #1E1E1E;
  width: 100%;
  max-width: 800px;
}
#single .project-details .details div {
  border-bottom: 1px solid #1E1E1E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.75rem 0;
}
#single .project-details .details div span {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0125rem;
}
#single .project-details .details div span:first-of-type {
  width: 25%;
}
#single .project-details .details div span:last-of-type {
  width: 75%;
}
@media (min-width: 1025px) {
  #single .project-details .details div span {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem; /* 133.333% */
  }
  #single .project-details .details div span:first-of-type {
    width: 40%;
  }
  #single .project-details .details div span:last-of-type {
    width: 60%;
  }
}
#single .project-details .details div a {
  color: #1E1E1E;
}

#hero.contact .container-fluid {
  padding-bottom: 3.5rem;
}
#hero.contact .contact {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #1E1E1E;
}
#hero.contact .contact div {
  border-bottom: 1px solid #1E1E1E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.75rem 0;
}
#hero.contact .contact div span {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0125rem;
}
@media (min-width: 1025px) {
  #hero.contact .contact div span {
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem; /* 150% */
    letter-spacing: 0.02rem;
  }
}

#single.blog .headline {
  margin-bottom: 64px;
}
#single.blog .container-fluid {
  max-width: 1300px;
  margin-left: 0;
}
#single.blog img.size-full {
  margin-bottom: 32px;
}

.form-item {
  text-align: left;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .form-item.pets {
    margin-top: 10px;
  }
}
.form-item.pets label.first {
  margin-top: -6px;
  margin-bottom: 10px;
}
.form-item.short {
  margin-bottom: 0;
}
.form-item#brokerage {
  display: none;
  margin-top: 15px;
}
.form-item.consent {
  padding-left: 0;
  padding-right: 15px;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 35px;
  vertical-align: middle;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .form-item.consent {
    max-width: 80%;
  }
}
.form-item.consent label {
  margin-top: 5px;
  letter-spacing: 0;
  color: #1E1E1E;
  font-size: 0.9rem;
  line-height: 1.3em;
  padding-top: 0 !important;
}
@media (min-width: 768px) {
  .form-item.consent label {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.form-item.consent label a {
  text-decoration: underline;
}
.form-item #brokerage {
  display: none;
  margin-top: 15px;
}
.form-item.url {
  position: fixed;
  top: -9999px;
  left: -9999px;
}
.form-item .form-check {
  padding-left: 0;
}

.form-control {
  padding: 15px 15px 15px 0;
  color: #1E1E1E;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #1E1E1E;
  border-radius: 0;
}
.form-control:focus {
  color: #1E1E1E;
  background-color: transparent;
  border-color: #1E1E1E;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-floating > label {
  padding: 15px;
}

.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0rem);
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0rem);
}

input, select, textarea {
  width: 100%;
  outline: 0;
  font-size: 1rem;
  letter-spacing: 0;
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  color: #1E1E1E;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid #1E1E1E;
  background: transparent;
  padding: 15px 15px 15px 0;
  border-radius: 0;
  text-transform: none;
  min-height: 35px;
}
@media (min-width: 768px) {
  input, select, textarea {
    font-size: 1rem;
  }
}

textarea {
  width: 100%;
  border: none;
  min-height: 120px;
  line-height: 1.5em;
}

label {
  line-height: 1.5em;
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  text-transform: none;
  color: #1E1E1E;
  text-align: left;
  display: block;
  margin-top: 5px;
  font-weight: 400;
}
label a {
  color: #1E1E1E;
}
label a:hover {
  color: #1E1E1E;
}
label.error {
  letter-spacing: 0;
  text-transform: none;
  color: #f00;
  font-size: 12px;
  position: relative;
  -webkit-transform: none !important;
  transform: none !important;
  opacity: 1 !important;
}
label.radiolabel {
  text-align: left;
  display: inline-block;
  width: 60%;
  font-size: 1em;
  padding: 0 0 10px 5px;
}

input[type=radio] {
  width: auto;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
}

.radios {
  display: inline-block;
  float: right;
  text-align: left;
  font-size: 0.9em;
  margin-top: 5px;
  width: 38%;
}
.radios input[type=radio] {
  text-align: right;
  margin-top: 5px;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 16px 16px;
  padding: 15px 30px 15px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
select option {
  padding: 10px;
  font-weight: 400;
  width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000 !important;
  background: #fff;
}

input[type=radio] {
  cursor: pointer;
  margin-top: 0;
}

/* Base for label styling */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label,
[type=checkbox]:checked + label.error + label {
  position: relative;
  padding-left: 30px;
  padding-right: 0;
  padding-top: 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
}

/* checkbox aspect */
[type=checkbox]:not(:checked) + label:before,
[type=checkbox]:checked + label:before,
[type=checkbox]:checked + label.error + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #1E1E1E;
  border-radius: 20px;
  color: #1E1E1E;
  font-size: 20px;
}

/* checked mark aspect */
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after,
[type=checkbox]:checked + label.error + label:after {
  content: "";
  display: block;
  background-color: #1e1e1e;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 5px;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 10px;
}

/* checked mark aspect changes */
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:not(:checked) + label.error + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=checkbox]:checked + label:after,
[type=checkbox]:checked + label.error + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

[type=checkbox]:disabled,
[type=checkbox]:disabled + label {
  opacity: 0.5;
}

[type=checkbox]:disabled + label:after {
  background: transparent;
}

.radio-col {
  display: block;
  margin: 20px 0 5px;
}
@media (min-width: 768px) {
  .radio-col {
    text-align: left;
  }
}
.radio-col ul {
  margin: 0;
  padding: 0;
}
.radio-col ul li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .radio-col ul li:first-of-type {
    display: block;
  }
}
@media (min-width: 768px) {
  .radio-col ul li:first-of-type {
    float: left;
  }
}
.radio-col ul li p {
  font-size: 1em;
  color: #1E1E1E;
}
.radio-col ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.radio-col ul li .check {
  display: inline-block;
  position: absolute;
  border: 1px solid #1E1E1E;
  border-radius: 100%;
  height: 17px;
  width: 17px;
  top: 8px;
  left: 0px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
.radio-col ul li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 11px;
  width: 11px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.radio-col ul li input[type=radio]:checked ~ .check {
  border: 1px solid #1E1E1E;
}
.radio-col ul li input[type=radio]:checked ~ .check::before {
  background: #1E1E1E;
}
.radio-col ul li input[type=radio]:checked ~ label {
  color: #1E1E1E;
}
.radio-col ul li label {
  display: block;
  position: relative;
  padding-left: 25px;
  padding-top: 5px;
  z-index: 9;
  font-size: 0.9em;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  color: #1E1E1E;
}
.radio-col ul li label.first {
  padding-left: 0;
}

::-webkit-input-placeholder,
placeholder {
  letter-spacing: 0;
  color: #1E1E1E;
  display: block;
  opacity: 1;
}

::-moz-placeholder {
  letter-spacing: 0;
  color: #1E1E1E;
  opacity: 1;
}

:-moz-placeholder {
  letter-spacing: 0;
  color: #1E1E1E;
  opacity: 1;
}

placeholder:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.1s 0.1s ease;
  transition: opacity 0.1s 0.1s ease;
  opacity: 0.5;
}

.submit-btn {
  position: relative;
  text-align: left;
  margin: 32px 0;
}
.submit-btn .btn {
  margin: 0 !important;
}
.submit-btn input[type=submit],
.submit-btn .btn {
  width: 100%;
  font-family: "benton-modern-display", sans-serif;
  font-style: normal;
  color: #1E1E1E;
  line-height: normal;
  border-radius: 35px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border: none;
  white-space: normal;
  position: relative;
  background: #E1E000;
  color: #1E1E1E;
  font-weight: 400;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 15px 24px 10px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.submit-btn input[type=submit]:hover,
.submit-btn .btn:hover {
  background: #c5c400;
  color: #1E1E1E;
}
@media (min-width: 1025px) {
  .submit-btn input[type=submit],
  .submit-btn .btn {
    padding: 8px 25px;
    width: 403px;
    height: 65px;
  }
}
.submit-btn input[type=submit]:disabled,
.submit-btn .btn:disabled {
  background: rgb(146, 145.2588832487, 0);
  color: #fff;
  opacity: 0.6;
}

.site-footer {
  position: relative;
  background-color: transparent;
  z-index: 20;
  border-top: none;
  margin-top: auto;
}
.site-footer .footer-container {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 7.75rem;
  padding-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .site-footer .footer-container {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-footer .tagline, .site-footer .contactlink {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .site-footer .tagline, .site-footer .contactlink {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.site-footer .tagline a, .site-footer .contactlink a {
  text-decoration: none;
}
.site-footer .tagline a:hover, .site-footer .contactlink a:hover {
  color: #E1E000;
}
.site-footer .logomark {
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 1025px) {
  .site-footer .logomark {
    width: auto;
    margin: 0;
  }
}
.site-footer .logomark img {
  margin: 0 auto;
  width: 40px;
}
@media (min-width: 1025px) {
  .site-footer .logomark img {
    width: 55px;
  }
}

:root {
  --brand-primary: #1E1E1E;
  --brand-accent: #E1E000;
  --brand-accent-alt: #c5c400;
  --brand-light: #FCFCEE;
}

/* Add scroll-padding to the html element */
body {
  background: #FCFCEE;
  font-family: "benton-modern-display", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
}
a:hover {
  color: var(--brand-accent);
}

main {
  overflow-x: hidden;
}
.home main {
  overflow: visible;
}

.container-fluid {
  overflow-x: hidden;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: var(--bs-gutter-x, 1.25rem);
  padding-left: var(--bs-gutter-x, 1.25rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1025px) {
  .container-fluid {
    padding: 5rem 3rem;
  }
}

section {
  background-color: var(--brand-light);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0125rem;
}
@media (min-width: 1025px) {
  section {
    font-size: 1.5rem;
    line-height: 2rem; /* 133.333% */
    letter-spacing: 0.015rem;
  }
}

img {
  width: 100%;
  height: auto;
}

.lightbox-close {
  padding: 0 !important;
}

/* Custom modal backdrop */
.modal-backdrop.show {
  opacity: 0.64;
  background: #0D0708;
}

/* Modal sizing */
.modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}

/* Mobile responsive - 90% width on small screens */
@media (max-width: 767px) {
  .modal-dialog {
    max-width: 90%;
    margin: 1.75rem auto;
  }
}
.modal-content {
  background: #FCFCEE;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  border: 0;
}
.modal-content .img {
  background: #E1E000;
  aspect-ratio: 600/354;
}
.modal-content .img.sq {
  aspect-ratio: 1/1;
}
.modal-content .img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.modal-content .modal-body {
  padding: 48px 32px 48px 32px;
}
.modal-content .modal-body h5 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px; /* 137.5% */
}
.modal-content .modal-body p {
  font-size: 1.125rem;
}
.modal-content .modal-body p.disclaimer {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
.modal-content .modal-body .btn {
  width: 260px;
}

/* Custom close button styling */
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  padding: 0;
  width: 24px;
  height: 24px;
}

.modal-close-btn img {
  width: 100%;
  height: 100%;
}

/* Remove default Bootstrap close button */
.modal-header {
  border-bottom: none;
  position: relative;
}

#disclaimer .modal-dialog {
  max-width: 600px;
}
#disclaimer .modal-header {
  border: none;
}
#disclaimer .disclaimer-content {
  line-height: 1.6;
  padding-top: 0;
}
#disclaimer .disclaimer-content h5 {
  color: var(--brand-primary);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
#disclaimer .disclaimer-content p {
  color: var(--brand-primary);
  font-size: 16px;
  margin-bottom: 1rem;
}
/*# sourceMappingURL=style.css.map */
