.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #d3d9e0;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(16, 42, 67, 0.12);
}
.site-header .nav-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .site-header .nav-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .site-header .nav-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .site-header .nav-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.site-header .nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 16px;
}
@media (min-width: 1100px) {
  .site-header .nav-inner {
    height: 80px;
  }
}
.site-header .nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-header .nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .nav-logo img {
  display: block;
  height: 64px;
  width: auto;
}
.site-header .nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
@media (min-width: 992px) {
  .site-header .nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-header .nav-links li {
  display: flex;
}
.site-header .nav-links a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #252f3d;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header .nav-links a:hover {
  background: #f7f9fc;
  color: #099f8a;
}
.site-header .nav-links a.active {
  color: #099f8a;
}
.site-header .nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
@media (min-width: 992px) {
  .site-header .nav-cta {
    margin-left: 0;
  }
}
.site-header .nav-cta .btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-header .nav-cta .btn-get-in-touch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.site-header .nav-cta .btn-get-in-touch:hover::before {
  opacity: 0;
}
.site-header .nav-cta .btn-get-in-touch {
  font-size: 14px;
}

.site-footer {
  background: linear-gradient(132deg, #102a43 5%, #214466 88%);
}
.site-footer .footer-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .site-footer .footer-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .site-footer .footer-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .site-footer .footer-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.site-footer .footer-inner {
  padding-top: 38px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.site-footer .footer-logo {
  display: block;
  flex-shrink: 0;
}
.site-footer .footer-logo img {
  width: 181px;
  height: 64px;
  display: block;
}
.site-footer .footer-tagline {
  font-size: 18px;
  line-height: 24px;
  color: #effbff;
  margin: 0;
  max-width: 575px;
}
.site-footer .footer-policy-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-policy-links li {
  display: flex;
}
.site-footer .footer-policy-links a {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-footer .footer-policy-links a:hover {
  opacity: 0.75;
}
.site-footer .footer-copy {
  font-size: 14px;
  color: rgba(252, 254, 255, 0.5);
  margin: 0;
}

.back-to-top-strip {
  background: #ebfaf8;
  padding: 12px 0;
}
.back-to-top-strip .back-to-top-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .back-to-top-strip .back-to-top-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .back-to-top-strip .back-to-top-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .back-to-top-strip .back-to-top-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.back-to-top-strip .back-to-top-inner {
  display: flex;
  justify-content: center;
}
.back-to-top-strip .back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #077566;
  padding: 4px 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.back-to-top-strip .back-to-top-btn:hover {
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.hero {
  padding: calc(16px * 4) 0;
}
.hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .hero .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .hero .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .hero .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.hero .container {
  display: flex;
  align-items: center;
  gap: calc(16px * 4);
}
@media (min-width: 768px) {
  .hero .container {
    flex-wrap: wrap;
    gap: calc(16px * 2);
  }
  .hero .container .left, .hero .container .right {
    width: 100%;
    text-align: center;
  }
}

.general {
  padding: calc(16px * 4) 0;
}
.general .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .general .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .general .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .general .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.general .container {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}
.general .container .column {
  width: 100%;
}
.general .container .column .module:not(:last-of-type) {
  margin-bottom: 16px;
}
.general .container .column img, .general .container .column iframe {
  max-width: 100%;
}
.general .container.halves .column {
  width: calc(50% - 16px);
}
@media (min-width: 600px) {
  .general .container.halves .column {
    width: 100% !important;
  }
}
.general .container.smallleft .column:first-of-type {
  width: calc(40% - 16px);
}
.general .container.smallleft .column:last-of-type {
  width: calc(60% - 16px);
}
@media (min-width: 600px) {
  .general .container.smallleft .column {
    width: 100% !important;
  }
}
.general .container.smallright .column:first-of-type {
  width: calc(60% - 16px);
}
.general .container.smallright .column:last-of-type {
  width: calc(40% - 16px);
}
@media (min-width: 600px) {
  .general .container.smallright .column {
    width: 100% !important;
  }
}
.general .container.thirds .column {
  width: calc(33.3333% - 16px * 1.3333);
}
@media (min-width: 600px) {
  .general .container.thirds .column {
    width: 100%;
  }
}
.general .container.fourths .column {
  width: calc(25% - 16px - calc(16px / 2));
}
@media (min-width: 768px) {
  .general .container.fourths .column {
    width: calc(50% - 16px);
  }
}
@media (min-width: 600px) {
  .general .container.fourths .column {
    width: 100%;
  }
}
.general.small .container {
  max-width: 1050px;
}

.posts {
  padding: calc(16px * 4) 0;
}
.posts .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .posts .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .posts .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .posts .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.posts .container {
  display: flex;
  flex-direction: column;
  max-width: 1050px;
}
.posts .container h2 {
  margin: 0;
  max-width: 650px;
}
.posts .container .viewall {
  color: #252f3d;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 1.28px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  margin-left: auto;
  display: inline-block;
  margin-top: calc(16px * 1.5);
}
.posts .container .viewall:hover {
  text-decoration: underline;
}
.posts .container .columns {
  display: flex;
  gap: calc(16px * 3);
  margin-top: calc(16px * 1.5);
  flex-wrap: wrap;
}
.posts .container .columns .post {
  width: calc(33.3333% - calc(16px * 2));
  max-width: 320px;
  background: #ffffff;
  text-decoration: none;
  color: #000000;
}
.posts .container .columns .post .thumbnail {
  max-width: 320px;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.posts .container .columns .post .thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.2s ease;
}
.posts .container .columns .post .content {
  padding: calc(16px * 2);
}
.posts .container .columns .post .content h4 {
  margin: 0 0 16px;
}
.posts .container .columns .post .content .date {
  margin-bottom: 16px;
  font-weight: 500;
}
.posts .container .columns .post:hover .thumbnail {
  border-color: #252f3d;
}
.posts .container .columns .post:hover .thumbnail img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .posts .container .columns .post {
    width: calc(50% - calc(16px * 2)) !important;
    max-width: 100%;
  }
  .posts .container .columns .post .thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 600px) {
  .posts .container .columns .post {
    width: 100% !important;
  }
}
.posts.notop {
  padding-top: 0;
}
.posts.nobottom {
  padding-bottom: 0;
}
.posts.noposts {
  margin-bottom: calc(16px * 4) !important;
}

.accordion {
  padding: calc(16px * 4) 0;
}
.accordion .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .accordion .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .accordion .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .accordion .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.accordion .container .accordionItems .accordionItem {
  background: #ffffff;
  margin-bottom: calc(16px * 1.5);
}
.accordion .container .accordionItems .accordionItem .accordionTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  padding: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accordion .container .accordionItems .accordionItem .accordionTitle:hover {
  color: #252f3d;
}
.accordion .container .accordionItems .accordionItem .accordionTitle::before {
  content: "";
  display: inline-block;
  background: url(../img/plus.svg) no-repeat center/contain;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  transition: all 0.2s ease;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active {
  display: flex;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active::before {
  background: url(../img/minus.svg) no-repeat center/contain;
}
.accordion .container .accordionItems .accordionItem .accordionCopy {
  display: none;
  padding: 16px 16px 16px calc(calc(16px * 2) + 25px);
}
.accordion .container .accordionItems .accordionItem .accordionCopy p:first-of-type {
  margin-top: 0;
}
.accordion .container .accordionItems .accordionItem .accordionCopy ::marker {
  color: #252f3d;
}

.testimonial {
  max-width: 100% !important;
  overflow: hidden;
  padding: calc(16px * 4) 0;
}
.testimonial .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .testimonial .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .testimonial .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .testimonial .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.testimonial .container {
  max-width: 1050px;
}
.testimonial.single .container {
  display: flex;
  max-width: 900px;
  gap: calc(16px * 3);
  align-items: center;
}
.testimonial.single .container .image {
  width: 33%;
}
.testimonial.single .container .image img {
  display: block;
}
.testimonial.single .container .content {
  padding: calc(16px * 3) 0;
  width: 66%;
}
.testimonial.single .container .content blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.48px;
  line-height: 38px;
  padding: 0;
  margin: 0;
  display: block;
}
.testimonial.single .container .content blockquote::before {
  content: "";
  display: block;
  background: url(../img/quote.svg) no-repeat center/contain;
  width: 50px;
  height: 36px;
  margin-bottom: 16px;
}
.testimonial.single .container .content .author {
  display: inline-block;
  margin-top: 16px;
}
.testimonial.single .container .content .author p {
  margin: 4px 0;
}
.testimonial.single .container .content .author a {
  color: #252f3d;
  text-decoration: none;
}
.testimonial.single .container .content .author a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .testimonial.single .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .testimonial.single .container .image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .testimonial.single .container .content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.testimonial.multi .slide {
  display: flex !important;
  max-width: 900px;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
}
.testimonial.multi .slide .image {
  width: 33%;
}
.testimonial.multi .slide .image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.testimonial.multi .slide .content {
  padding: calc(16px * 3) 0;
  width: 66%;
}
.testimonial.multi .slide .content blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.48px;
  line-height: 38px;
  padding: 0;
  margin: 0;
  display: block;
}
.testimonial.multi .slide .content blockquote::before {
  content: "";
  display: block;
  background: url(../img/quote.svg) no-repeat center/contain;
  width: 50px;
  height: 36px;
  margin-bottom: 16px;
}
.testimonial.multi .slide .content .author {
  display: inline-block;
  margin-top: 16px;
}
.testimonial.multi .slide .content .author p {
  margin: 4px 0;
}
.testimonial.multi .slide .content .author a {
  color: #252f3d;
  text-decoration: none;
}
.testimonial.multi .slide .content .author a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .testimonial.multi .slide {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }
  .testimonial.multi .slide .image {
    width: 100%;
  }
  .testimonial.multi .slide .image img {
    margin: 0 auto;
  }
  .testimonial.multi .slide .content {
    width: 100%;
  }
}
.testimonial.multi .testimonialSlider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.testimonial.multi .testimonialSlider .slick-list {
  max-width: calc(100% - 92px);
}
.testimonial.multi .testimonialSlider .slick-slide {
  z-index: 900 !important;
}

.cards {
  padding: calc(16px * 4) 0;
}
.cards .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .cards .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .cards .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .cards .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.cards .container {
  display: flex;
  max-width: 1050px;
  gap: calc(16px * 3);
  flex-wrap: wrap;
}
.cards .container .intro {
  width: 100%;
}
.cards .container h2 {
  width: 100%;
  margin: 0;
}
.cards .container .card {
  background: #ffffff;
  width: calc(33.33333% - calc(16px * 2));
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000000;
  position: relative;
}
.cards .container .card.first {
  background: #252f3d;
  color: #ffffff;
  padding: calc(16px * 2) 0 calc(16px * 3);
}
.cards .container .card.first *:not(a.button):not(a.button span) {
  margin: 0 0 16px 0;
  padding: 0 calc(16px * 2);
}
.cards .container .card.last {
  background: #f7f9fc;
  padding: calc(16px * 2) 0 calc(16px * 3);
}
.cards .container .card.last *:not(a.button):not(a.button span) {
  margin: 0 0 16px 0;
  padding: 0 calc(16px * 2);
}
.cards .container .card .featured {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #252f3d;
  color: #ffffff;
  font-size: 18px;
  line-height: 34px;
  text-transform: uppercase;
  padding: 0 16px 0 calc(16px * 1.5);
  display: flex;
  align-items: center;
}
.cards .container .card .featured::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 13px;
  background: url(../img/star.svg) no-repeat center/contain;
  margin-right: calc(16px / 2);
}
.cards .container .card .image {
  min-height: 80px;
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cards .container .card .image img {
  min-height: 100%;
  width: auto;
}
.cards .container .card .content {
  padding: calc(16px * 2) calc(16px * 2) calc(16px * 3);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cards .container .card .content h4 {
  margin: 0;
  color: #000000;
  transition: all 0.2s ease;
}
.cards .container .card .content p {
  margin-bottom: 0;
}
.cards .container .card .content span {
  display: inline-block;
  margin-top: auto;
  padding-top: calc(16px * 2);
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
.cards .container .card .content span::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
@media (min-width: 768px) {
  .cards .container .card {
    width: calc(50% - calc(16px * 1.5));
    min-width: calc(50% - calc(16px * 1.5));
  }
}
@media (min-width: 600px) {
  .cards .container .card {
    width: 100%;
  }
}
.cards .container a:hover h4 {
  color: #252f3d !important;
}
.cards .container a:hover span::after {
  width: 31px !important;
}
.cards.stretch .card {
  width: calc(50% - calc(16px * 1.5));
}
.cards.stretch .card .image {
  min-height: 117px;
}
.cards.stretch .card.last {
  justify-content: center;
}
.cards.stretch .card.last * {
  width: 100%;
  max-width: 300px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.cards.stretch .card.last .button {
  margin: calc(16px * 2) 0 0 !important;
  width: auto !important;
}
.cards.stretch .card.last ul, .cards.stretch .card.last ol {
  padding-left: 20px;
}
.cards.stretch .card.last *:not(.button) {
  max-width: calc(100% - calc(16px * 4));
  padding: 0;
}
@media (min-width: 600px) {
  .cards.stretch .card {
    width: calc(100% - calc(16px * 1.5));
  }
}
.cards .image.noimage {
  min-height: 0px !important;
}
.cards.bg .container {
  gap: calc(16px * 3) 0;
}
.cards.bg .container h2 {
  margin-bottom: calc(16px * 2);
}
.cards.bg .container .card {
  background-size: cover;
  background-position: center;
  width: 33.3333%;
}
.cards.bg .container .card .content {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  min-height: calc(270px - calc(16px * 4));
  padding: calc(16px * 2);
}
.cards.bg .container .card .content h4 {
  color: #ffffff;
  margin-top: auto;
  margin-bottom: 16px;
}
.cards.bg .container .card .content h4::after {
  opacity: 0;
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.cards.bg .container .card .image {
  display: none;
}
@media (min-width: 768px) {
  .cards.bg .container .card {
    width: 100%;
  }
}
.cards.bg .container a:hover .content h4::after {
  margin-left: 16px;
  opacity: 1;
}

.form {
  padding: calc(16px * 4) 0;
}
.form .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .form .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .form .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .form .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.form .container {
  max-width: 600px;
}
.form .container .intro {
  width: 100%;
  margin-bottom: calc(16px * 3);
}
.form.withside .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1050px;
  gap: calc(16px * 2) 180px;
}
.form.withside .container .gForm {
  flex-grow: 1;
}
.form.withside .container .sidebar {
  width: 350px;
  margin-left: auto;
}
.form.withside .container .sidebar .block {
  background: #252f3d;
  color: #ffffff;
  padding: 16px calc(16px * 3);
  margin-bottom: calc(16px * 2);
}
.form.withside .container .sidebar .block h1, .form.withside .container .sidebar .block h2, .form.withside .container .sidebar .block h3, .form.withside .container .sidebar .block h4, .form.withside .container .sidebar .block h5, .form.withside .container .sidebar .block h6 {
  margin: 16px 0;
}
@media (min-width: 768px) {
  .form.withside .container {
    gap: calc(16px * 4);
  }
}
@media (min-width: 800px) {
  .form.withside .container {
    flex-direction: column;
  }
  .form.withside .container .sidebar {
    width: 100%;
  }
}

.form .gform_wrapper.gravity-theme input[type=radio], .form .gform_wrapper.gravity-theme input[type=checkbox] {
  display: none;
}
.form .gform_wrapper.gravity-theme .gfield_radio .gchoice label, .form .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label {
  display: inline-flex !important;
  align-items: center;
  cursor: pointer;
}
.form .gform_wrapper.gravity-theme .gfield_radio .gchoice label::before, .form .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -3px;
  margin-right: calc(16px / 2);
}
.form .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio]:checked + label::before, .form .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=checkbox]:checked + label::before, .form .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=radio]:checked + label::before, .form .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox]:checked + label::before {
  background: #252f3d;
}
.form .gform_wrapper.gravity-theme .gfield_radio .gchoice label::before {
  border-radius: 100%;
}
.form .gform_wrapper.gravity-theme .gfield_label {
  color: #000000;
  font-size: 18px !important;
  line-height: 26px;
  text-transform: uppercase;
}
.form .gform_wrapper.gravity-theme .gfield_required {
  color: #000000;
  font-size: 18px !important;
  padding-left: 0px;
}
.form .gform_wrapper.gravity-theme .gfield:not(:last-child), .form .gform_wrapper.gravity-theme fieldset:not(:last-child) {
  margin-bottom: 16px;
}
.form .gform_wrapper.gravity-theme .gform_footer {
  justify-content: flex-end;
}
.form .gform_wrapper.gravity-theme .button {
  background: #d3d9e0;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.48px;
  border-color: #252f3d;
  transition: all 0.2s ease;
  cursor: pointer;
}
.form .gform_wrapper.gravity-theme .button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-left: 16px;
  transition: all 0.2s ease;
}
.form .gform_wrapper.gravity-theme .button:hover {
  border-color: #252f3d;
  color: #252f3d;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors {
  border-color: #E3405F;
  background-color: #ffffff;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  color: #E3405F;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  text-transform: none;
  font-size: 16px;
}
.form .gform_wrapper.gravity-theme .gfield_error label, .form .gform_wrapper.gravity-theme .gfield_error .gfield_required, .form .gform_wrapper.gravity-theme .gfield_error .validation_message {
  color: #E3405F;
}
.form .gform_wrapper.gravity-theme .gfield_error input, .form .gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: #E3405F;
}
.form .gform_wrapper.gravity-theme .gfield_error .validation_message {
  border: none;
  padding: 0;
  background: transparent;
}

.form input[type=text], .form input[type=email], .form input[type=tel], .form textarea, .form select {
  border: #848e9c 1px solid;
  padding: calc(16px - 5px) calc(16px * 1.5) !important;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.form input[type=text]:focus, .form input[type=text]:focus-visible, .form input[type=email]:focus, .form input[type=email]:focus-visible, .form input[type=tel]:focus, .form input[type=tel]:focus-visible, .form textarea:focus, .form textarea:focus-visible, .form select:focus, .form select:focus-visible {
  border-color: #000000;
  outline: none;
}

.newsletter {
  padding: calc(16px * 4) 0;
}
.newsletter .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .newsletter .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .newsletter .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .newsletter .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.newsletter .container {
  max-width: 900px;
  display: flex;
  gap: 120px;
  align-items: flex-end;
}
.newsletter .container .left, .newsletter .container .right {
  width: 50%;
}
@media (min-width: 768px) {
  .newsletter .container {
    flex-direction: column;
    gap: calc(16px * 2);
  }
  .newsletter .container .left, .newsletter .container .right {
    width: 100%;
  }
}

form#gform_1 {
  display: flex;
  align-items: flex-end;
}
form#gform_1 .gform_body {
  flex-grow: 1;
}
form#gform_1 .gform_footer {
  padding: 0;
}
form#gform_1 .gfield_required {
  display: none;
}
form#gform_1 .button {
  margin-bottom: 0;
  height: 50px;
  width: 50px;
  text-indent: -9999px;
  padding: 0;
  background: #ffffff url(../img/arrow-right-large.svg) no-repeat center/19px;
  margin-left: 16px;
  border: #848e9c 1px solid;
}

section.cta:not(.hero) {
  padding: calc(16px * 4) 0;
}
section.cta:not(.hero) .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  section.cta:not(.hero) .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  section.cta:not(.hero) .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  section.cta:not(.hero) .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
section.cta:not(.hero) .container {
  display: flex;
  gap: calc(calc(16px * 4) * 2);
  align-items: center;
}
section.cta:not(.hero) .container .left, section.cta:not(.hero) .container .right {
  width: 50%;
}
section.cta:not(.hero) .container .left {
  max-width: 470px;
}
section.cta:not(.hero) .container .left h2 {
  margin-top: 0;
}
section.cta:not(.hero) .container .left p {
  line-height: 26px;
}
section.cta:not(.hero) .container .left .buttons {
  display: flex;
  margin-top: calc(16px * 2);
  gap: calc(16px * 1.5);
}
section.cta:not(.hero) .container .left.noimage {
  max-width: 100%;
  text-align: center;
  width: 100%;
}
section.cta:not(.hero) .container .left.noimage .buttons {
  justify-content: center;
}
section.cta:not(.hero) .container .right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 50%;
  margin-left: auto;
}
section.cta:not(.hero) .container .right img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  section.cta:not(.hero) .container {
    flex-direction: column;
    gap: 0px;
  }
  section.cta:not(.hero) .container .left {
    width: 100%;
    max-width: 100%;
  }
  section.cta:not(.hero) .container .right {
    max-width: calc(100% + calc(16px * 2));
    width: calc(100% + calc(16px * 2));
    margin-left: 0;
    padding-bottom: calc(16px * 4);
  }
  section.cta:not(.hero) .container .right::before {
    display: none;
  }
}
section.cta:not(.hero).notop .left {
  padding-top: 0;
}
section.cta:not(.hero).nobottom .left {
  padding-bottom: 0;
}

.comparison {
  padding: calc(16px * 4) 0;
}
.comparison .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .comparison .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .comparison .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .comparison .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.comparison .container {
  max-width: 1050px;
}
.comparison .container .intro {
  max-width: 600px;
  padding-bottom: calc(16px * 2);
}
.comparison .container .comparisonTable {
  display: flex;
  gap: calc(16px * 3);
  justify-content: center;
}
@media (min-width: 768px) {
  .comparison .container .comparisonTable {
    flex-wrap: wrap;
  }
}
.comparison .container .comparisonTable .tableItem {
  width: 33.3333%;
  background: #f7f9fc;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .comparison .container .comparisonTable .tableItem {
    width: calc(50% - calc(16px * 4));
  }
}
@media (min-width: 600px) {
  .comparison .container .comparisonTable .tableItem {
    width: 100%;
  }
}
.comparison .container .comparisonTable .tableItem .heading {
  background: #d3d9e0;
  padding: 16px calc(16px * 2);
  min-height: calc(100px - calc(16px * 2));
}
.comparison .container .comparisonTable .tableItem .heading h3 {
  margin: 0;
  max-width: 80%;
}
.comparison .container .comparisonTable .tableItem.flagged .heading {
  position: relative;
}
.comparison .container .comparisonTable .tableItem.flagged .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 46px;
  background: #252f3d;
  mask-image: url(../img/banner.svg);
  -webkit-mask-image: url(../img/banner.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  top: 0;
  right: 16px;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading {
  border-color: #252f3d;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading::after {
  background: #252f3d;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading {
  border-color: #252f3d;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading::after {
  background: #252f3d;
}
.comparison .container .comparisonTable .tableItem .content {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.comparison .container .comparisonTable .tableItem .content .tableItems {
  padding: 16px calc(16px * 2);
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding: 16px 0;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  font-size: 16px;
  color: #000000;
  line-height: 26px;
  letter-spacing: 0.32px;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item span {
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #000000;
  font-weight: 500;
}
.comparison .container .comparisonTable .tableItem .content .cta {
  margin-top: auto;
  padding: 16px calc(16px * 2) calc(16px * 2);
}
.comparison .disclaimer {
  margin-top: -100px;
  padding: calc(100px + calc(16px * 2)) 0 calc(16px * 2);
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.32px;
  font-style: italic;
}
.comparison .disclaimer p {
  max-width: 700px;
  margin: 16px auto;
}

.slider {
  padding: calc(16px * 4) 0;
}
.slider .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .slider .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .slider .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .slider .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.slider .container img {
  max-width: 100%;
}
.slider .container .slider-single {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.slider .container .slider-single .slick-list {
  width: calc(100% - 100px);
}
.slider .container .slider-single .slide {
  display: flex !important;
  align-items: center;
  gap: calc(16px * 3);
}
.slider .container .slider-single .slide .button {
  margin-top: calc(16px * 2);
}
.slider .container .slider-single .slide img {
  width: 33.333%;
}
@media (min-width: 768px) {
  .slider .container .slider-single .slide {
    flex-direction: column;
  }
  .slider .container .slider-single .slide img {
    margin-right: 0;
    width: 100%;
  }
  .slider .container .slider-single .slide .content {
    margin-top: 16px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .slider .container .slider-single {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .slider .container .slider-single .slick-list {
    max-width: calc(100% - 92px);
  }
}
.slider .container .slider-multi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.slider .container .slider-multi .slick-list {
  max-width: calc(100% - 92px);
}
.slider .container .slider-multi a {
  text-decoration: none !important;
}
.slider .container .slider-multi .slide {
  padding: 0 calc(16px / 2);
  width: calc(100% - 16px) !important;
}
.slider .container .slider-multi .slide .content {
  margin-top: 16px;
}
.slider .container .slider-multi .slide .content p {
  font-size: 16px;
}

.slick-arrow {
  background: url(../img/chevron.svg) no-repeat center/cover;
  border: none;
  font-size: 0;
  width: 28px;
  min-width: 28px;
  height: 47px;
  cursor: pointer;
}

.slick-prev {
  transform: rotate(180deg);
  margin-right: 16px;
}

.slick-next {
  margin-left: 16px;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(16px * 2);
  padding: 0;
  width: 100%;
}
.slick-dots li {
  list-style: none;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  border: none;
  background-color: #000000;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.slick-dots li.slick-active button {
  background-color: #252f3d;
}

.videoCarousel {
  position: inherit !important;
  padding: calc(16px * 4) 0;
}
.videoCarousel .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .videoCarousel .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .videoCarousel .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .videoCarousel .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.videoCarousel .container .buttons {
  text-align: center;
}
.videoCarousel .container .buttons.left {
  text-align: left;
}
.videoCarousel .container .slide .thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoCarousel .container .slide .thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.videoCarousel .container .slide .thumbnail svg {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
}
.videoCarousel .video-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.videoCarousel .video-slider .slick-list {
  max-width: calc(100% - 92px);
  margin: 0 -20px;
}
.videoCarousel .video-slider .slick-list .slick-slide {
  margin: 0 20px;
}
.videoCarousel .popup {
  position: fixed;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}
.videoCarousel .popup .loading {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.videoCarousel .popup.active {
  display: flex;
}
.videoCarousel .popup .close {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 34px;
}
.videoCarousel .popup .content {
  z-index: 2;
  max-width: 90%;
}
.videoCarousel .popup .content iframe {
  max-width: 100%;
}
.videoCarousel .st0 {
  fill: none;
}
.videoCarousel .st1 {
  fill: #ffffff;
}
.videoCarousel .st2 {
  fill: #252f3d;
}

.tabs {
  padding: calc(16px * 4) 0;
}
.tabs .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .tabs .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .tabs .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .tabs .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.tabs .container .tabItems .topTabs {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .tabs .container .tabItems .topTabs {
    flex-direction: column;
  }
}
.tabs .container .tabItems .topTabs .tabTitle {
  text-transform: uppercase;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .topTabs .tabTitle:hover {
  color: #000000;
  font-weight: bold;
}
.tabs .container .tabItems .topTabs .tabTitle.active {
  color: #252f3d;
  font-weight: bold;
}
.tabs .container .tabItems.side {
  display: flex;
  align-items: center;
}
.tabs .container .tabItems.side .sideTabs {
  width: 50%;
  margin-right: calc(16px * 2);
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 600px) {
  .tabs .container .tabItems.side .sideTabs {
    width: 100%;
    margin: 0;
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle {
  display: flex;
  cursor: pointer;
}
.tabs .container .tabItems.side .sideTabs .tabTitle:not(:last-of-type) {
  margin-bottom: 16px;
}
.tabs .container .tabItems.side .sideTabs .tabTitle a {
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon {
  background: #ffffff;
  overflow: hidden;
  width: calc(16px * 2);
  height: calc(16px * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.2s ease;
  padding: calc(16px / 2);
}
@media (min-width: 600px) {
  .tabs .container .tabItems.side .sideTabs .tabTitle .icon {
    width: calc(calc(16px * 2) + calc(16px / 2));
    height: calc(calc(16px * 2) + calc(16px / 2));
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon img {
  max-width: 100%;
  max-height: 100%;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .tabTitleContent {
  width: calc(100% - calc(16px * 3));
}
.tabs .container .tabItems.side .sideTabs .tabTitle span {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: calc(16px / 2);
  display: block;
  transition: all 0.2s ease;
}
.tabs .container .tabItems.side .tabContent {
  width: 50%;
  display: flex;
}
@media (min-width: 600px) {
  .tabs .container .tabItems.side .tabContent {
    display: none;
  }
}
.tabs .container .tabItems.side .tabContent .tabCopy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs .container .tabItems.side .tabContent .tabCopy img {
  max-width: 100%;
}
.tabs .container .tabItems.right .sideTabs {
  order: 2;
  margin-right: 0;
  margin-left: calc(16px * 2);
}
@media (min-width: 600px) {
  .tabs .container .tabItems.right .sideTabs {
    margin-left: 0;
    margin-top: 16px;
  }
}
.tabs .container .tabItems.right .tabContent {
  order: 1;
}
.tabs .container .tabItems .tabContent {
  display: flex;
  overflow: hidden;
}
.tabs .container .tabItems .tabContent .tabCopy {
  width: 100%;
  margin-top: 16px;
  padding-bottom: 16px;
  margin-right: -100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .tabContent .tabCopy.active {
  opacity: 1;
  visibility: visible;
}
.tabs .container .tabItems .tabContent.top .flex {
  display: flex;
  align-items: center;
  gap: calc(16px * 3);
}
@media (min-width: 768px) {
  .tabs .container .tabItems .tabContent.top .flex {
    flex-wrap: wrap;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.left {
  order: 1;
}
.tabs .container .tabItems .tabContent.top .flex .content {
  order: 2;
  width: 50%;
}
@media (min-width: 768px) {
  .tabs .container .tabItems .tabContent.top .flex .content {
    width: 100%;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.right {
  order: 3;
  margin-left: 16px;
}
.tabs .container .tabItems .tabContent.top .flex img {
  width: 50%;
}
@media (min-width: 768px) {
  .tabs .container .tabItems .tabContent.top .flex img {
    width: 100%;
    order: 3 !important;
    margin: 16px 0 0;
  }
}
.tabs .container .tabItems .tabContent.top .tabCopy.full .content {
  width: 100% !important;
}

.gallery {
  padding: calc(16px * 4) 0;
}
.gallery .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .gallery .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .gallery .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .gallery .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.gallery .container .images {
  margin-top: calc(16px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}
.gallery .container .images .image {
  width: calc(33.3333% - 16px * 1.3333);
}
.gallery .container .images .image img {
  max-width: 100%;
  min-width: 50%;
  height: auto;
  margin: 0 auto;
}
.gallery .container .images .image figcaption {
  margin-top: 16px;
  font-size: 16px;
  font-style: italic;
}
.gallery .container .images.four .image {
  width: calc(25% - calc(16px * 1.5));
}
.gallery .container .images.five .image {
  width: calc(20% - 16px * 1.6);
}
@media (min-width: 768px) {
  .gallery .container .images.four .image, .gallery .container .images.five .image {
    width: calc(33.3333% - 16px * 1.3333);
  }
}
@media (min-width: 600px) {
  .gallery .container .images .image {
    width: 100% !important;
  }
}

.hero-section {
  position: relative;
  background: #f7f9fc;
  overflow: hidden;
  padding: 64px 0;
}
@media (min-width: 1100px) {
  .hero-section {
    padding: 56px 0;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center top;
  opacity: 1;
  pointer-events: none;
}
.hero-section .hero-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .hero-section .hero-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .hero-section .hero-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .hero-section .hero-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.hero-section .hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1100px) {
  .hero-section .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
@media (min-width: 1440px) {
  .hero-section .hero-inner {
    gap: 80px;
  }
}
.hero-section .hero-content {
  flex: 1;
  display: block;
}
.hero-section .hero-heading {
  color: #252f3d;
  margin: 0 0 16px;
}
.hero-section .hero-heading .highlight {
  color: #099f8a;
}
.hero-section .hero-body {
  font-size: 16px;
  line-height: 24px;
  color: #4c5159;
  margin: 0;
  max-width: 520px;
}
@media (min-width: 1100px) {
  .hero-section .hero-body {
    font-size: 18px;
  }
}
.hero-section .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-section .hero-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-section .hero-buttons .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.hero-section .hero-buttons .btn-primary:hover::before {
  opacity: 0;
}
.hero-section .hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: transparent;
  color: #077566;
  border: 1.5px solid #077566;
}
.hero-section .hero-buttons .btn-secondary:hover {
  background: #ebfaf8;
  color: #077566;
}
.hero-section .hero-buttons .btn-secondary {
  color: #31363d;
  border-color: #31363d;
}
.hero-section .hero-buttons .btn-secondary:hover {
  background: #099f8a;
  color: #ffffff;
  border-color: transparent;
}
.hero-section .hero-image {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 1100px) {
  .hero-section .hero-image {
    width: 460px;
  }
}
@media (min-width: 1300px) {
  .hero-section .hero-image {
    width: 600px;
  }
}
@media (min-width: 1440px) {
  .hero-section .hero-image {
    width: 663px;
  }
}
.hero-section .hero-image .hero-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
  aspect-ratio: 663/500;
  background: #d3d9e0;
}
.hero-section .hero-image .hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-it-is-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .what-it-is-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.what-it-is-section {
  padding-bottom: 56px;
  background: #ffffff;
}
.what-it-is-section .what-it-is-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .what-it-is-section .what-it-is-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .what-it-is-section .what-it-is-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .what-it-is-section .what-it-is-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.what-it-is-section .what-it-is-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 1100px) {
  .what-it-is-section .what-it-is-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}
.what-it-is-section .section-what__content {
  display: block;
}
.what-it-is-section .what-it-is-left {
  flex: 1;
  max-width: 641px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.what-it-is-section .what-it-is-left .section-badge {
  display: inline-block;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ebfaf8;
  border: 1px solid #d3d9e0;
  color: #214466;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.what-it-is-section .what-it-is-left h2 {
  color: #252f3d;
  margin: 0 0 5px;
}
.what-it-is-section .what-it-is-left p {
  font-size: 16px;
  line-height: 26px;
  color: #4c5159;
  margin: 0;
}
.what-it-is-section .what-it-is-right {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 1100px) {
  .what-it-is-section .what-it-is-right {
    width: 380px;
  }
}
@media (min-width: 1440px) {
  .what-it-is-section .what-it-is-right {
    width: 500px;
  }
}
.what-it-is-section .mission-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
  border: 1px solid #d3d9e0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.what-it-is-section .mission-card .mission-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #d6f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.what-it-is-section .mission-card .mission-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.what-it-is-section .mission-card .mission-icon-wrap img {
  width: 72px;
  height: auto;
}
.what-it-is-section .mission-card .mission-title {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #252f3d;
  margin: 0;
}
.what-it-is-section .mission-card .mission-desc p, .what-it-is-section .mission-card .mission-desc li, .what-it-is-section .mission-card .mission-desc a {
  font-size: 15px;
  line-height: 24px;
  color: #4c5159;
  margin: 0;
}

.info-section {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .info-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.info-section .info-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .info-section .info-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .info-section .info-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .info-section .info-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.info-section .info-card {
  background: linear-gradient(119.44deg, #102a43 5.1%, #214466 88.14%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .info-section .info-card {
    padding: 48px 40px;
  }
}
@media (min-width: 1100px) {
  .info-section .info-card {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    padding: 56px;
  }
}
.info-section .info-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1100px) {
  .info-section .info-left {
    gap: 56px;
  }
}
.info-section .info-heading-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-section .info-heading-block h3 {
  font-size: 26px;
  color: #fcfeff;
  margin: 0;
}
@media (min-width: 1100px) {
  .info-section .info-heading-block h3 {
    font-size: 32px;
    line-height: 38px;
  }
}
.info-section .info-heading-block p {
  font-size: 16px;
  line-height: 22px;
  color: #f7f9fc;
  margin: 0;
}
.info-section .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 1100px) {
  .info-section .stats-grid {
    gap: 48px 20px;
  }
}
.info-section .stat-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .info-section .stat-item {
    width: calc(50% - 16px);
  }
}
.info-section .stat-item .stat-value {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #fcfeff;
  line-height: 1;
}
@media (min-width: 1100px) {
  .info-section .stat-item .stat-value {
    font-size: 40px;
  }
}
.info-section .stat-item .stat-label {
  font-size: 14px;
  line-height: 18px;
  color: #d3d9e0;
  font-weight: 400;
}
.info-section .categories-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1100px) {
  .info-section .categories-col {
    flex: 0 0 380px;
  }
}
@media (min-width: 1440px) {
  .info-section .categories-col {
    flex: 0 0 465px;
  }
}
.info-section .category-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(252, 254, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  transition: background 0.2s ease;
}
.info-section .category-item:hover {
  background: rgba(252, 254, 255, 0.12);
}
.info-section .category-item .category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-section .category-item .category-icon svg {
  width: 48px;
  height: 48px;
}
.info-section .category-item .category-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 0;
}
.info-section .category-item .category-label {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f7f9fc;
  margin: 0;
}
.info-section .category-item .category-desc {
  font-size: 16px;
  line-height: 22px;
  color: #f7f9fc;
  margin: 0;
  opacity: 0.8;
}

.leadership-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .leadership-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.leadership-section {
  background: #f7f9fc url("../img/section-bg.png") no-repeat center/cover;
  border-top: 1px solid #d3d9e0;
  border-bottom: 1px solid #d3d9e0;
}
.leadership-section .leadership-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .leadership-section .leadership-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .leadership-section .leadership-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .leadership-section .leadership-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.leadership-section .leadership-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .leadership-section .leadership-header {
    margin-bottom: 69px;
  }
}
.leadership-section .leadership-header .section-badge {
  display: inline-block;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ebfaf8;
  border: 1px solid #d3d9e0;
  color: #214466;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.leadership-section .leadership-header h2 {
  color: #252f3d;
  margin: 0;
}
.leadership-section .leadership-header .leadership-subtext {
  font-size: 16px;
  line-height: 26px;
  color: #4c5159;
  margin: 0;
  max-width: 580px;
}
.leadership-section .board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .leadership-section .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .leadership-section .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.leadership-section .board-card {
  background: #fcfeff;
  border-radius: 20px;
  border: 1px solid #d3d9e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.leadership-section .board-card:hover {
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
}
.leadership-section .board-card .board-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d3d9e0;
}
.leadership-section .board-card .board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leadership-section .board-card .board-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.leadership-section .board-card .board-info-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.leadership-section .board-card .board-name {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}
.leadership-section .board-card .board-role {
  font-size: 16px;
  font-weight: 600;
  color: #465a75;
  margin: 0 0 8px;
}
.leadership-section .board-card .board-company {
  font-size: 16px;
  line-height: 22px;
  color: #4c5159;
  margin: 0;
}
.leadership-section .board-card .board-bio {
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
  margin: 0;
  flex: 1;
}
.leadership-section .board-card .board-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #077566;
  cursor: pointer;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  text-align: left;
  align-self: flex-start;
  transition: color 0.15s ease;
}
.leadership-section .board-card .board-link:hover {
  color: #099f8a;
}

.bio-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.bio-overlay.is-active {
  display: flex;
}

.bio-modal {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 840px;
  height: 80vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bio-slider {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.bio-slider .slick-list,
.bio-slider .slick-track {
  height: 100%;
}
.bio-slider .slick-slide > div {
  height: 100%;
}

.bio-slide {
  height: 100%;
  outline: none;
}

.bio-slide-inner {
  padding: 40px;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.bio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.bio-header-identity {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.bio-photo {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.bio-header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bio-name {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 32px;
  line-height: 38px;
  color: #252f3d;
  margin: 0;
}

.bio-job-title {
  font-size: 18px;
  font-weight: 600;
  color: #848e9c;
  margin: 0;
}

.bio-close {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #d8f9f4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.bio-close:hover {
  background: rgb(180.64, 243.56, 234.0266666667);
}

.bio-body {
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
}
.bio-body p {
  margin: 0 0 16px;
}
.bio-body p:last-child {
  margin-bottom: 0;
}

.bio-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ebfaf8;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.bio-linkedin:hover {
  background: rgb(210.52, 243.88, 239.432);
}

.bio-controls {
  border-top: 1px solid #d3d9e0;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  flex-shrink: 0;
}

.bio-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.bio-nav:hover .bio-arrow {
  background: #099f8a;
  border-color: #099f8a;
  color: #ffffff;
}

.bio-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #099f8a;
  color: #31363d;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

.bio-company {
  font-size: 16px;
  color: #848e9c;
  margin: 0;
}

.single-cpt-page {
  background: #f7f9fc;
  padding: 56px 0 80px;
}
@media (min-width: 1100px) {
  .single-cpt-page {
    padding: 56px 0 100px;
  }
}

.single-cpt-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .single-cpt-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .single-cpt-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .single-cpt-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.single-cpt-inner {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #01805a;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.single-back-link:hover {
  opacity: 0.75;
}
.single-back-link svg {
  flex-shrink: 0;
}

.stories-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .stories-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.stories-section {
  background: #ffffff;
}
.stories-section .stories-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .stories-section .stories-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .stories-section .stories-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .stories-section .stories-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.stories-section .stories-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}
.stories-section .stories-header .section-badge {
  display: inline-block;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ebfaf8;
  border: 1px solid #d3d9e0;
  color: #214466;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.stories-section .stories-header h2 {
  color: #252f3d;
  margin: 0;
}
.stories-section .stories-header .stories-intro {
  font-size: 16px;
  line-height: 26px;
  color: #4c5159;
  margin: 0;
  max-width: 580px;
}
.stories-section .stories-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.stories-section .story-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1100px) {
  .stories-section .story-item {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1100px) {
  .stories-section .story-item:nth-child(even) .story-slider {
    order: 2;
  }
  .stories-section .story-item:nth-child(even) .story-content {
    order: 1;
  }
}
.stories-section .story-slider {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 260px;
}
@media (min-width: 1100px) {
  .stories-section .story-slider {
    width: 50%;
    height: auto;
    min-height: 400px;
  }
}
.stories-section .story-slider .slick-slider,
.stories-section .story-slider .slick-list,
.stories-section .story-slider .slick-track,
.stories-section .story-slider .slick-slide,
.stories-section .story-slider .slick-slide > div {
  height: 100%;
}
.stories-section .story-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}
.stories-section .story-slider .slick-prev,
.stories-section .story-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
  transition: background 0.2s ease;
}
.stories-section .story-slider .slick-prev:hover,
.stories-section .story-slider .slick-next:hover {
  background: #ebfaf8;
}
.stories-section .story-slider .slick-prev svg,
.stories-section .story-slider .slick-next svg {
  width: 16px;
  height: 16px;
  color: #102a43;
}
.stories-section .story-slider .slick-prev {
  left: 12px;
}
.stories-section .story-slider .slick-next {
  right: 12px;
}
.stories-section .story-content {
  flex: 1;
  display: block;
  padding: 32px 24px;
}
@media (min-width: 1100px) {
  .stories-section .story-content {
    padding: 56px;
  }
}
@media (min-width: 1440px) {
  .stories-section .story-content {
    padding: 80px 56px;
  }
}
.stories-section .story-content .story-badge {
  display: block;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #465a75;
  margin-bottom: 16px;
}
.stories-section .story-content h3 {
  font-size: 28px;
  margin: 0 0 32px;
}
@media (min-width: 1100px) {
  .stories-section .story-content h3 {
    font-size: 32px;
    line-height: 38px;
  }
}
.stories-section .story-content p {
  font-size: 16px;
  line-height: 22px;
  color: #4c5159;
  margin: 0;
}
.stories-section .story-content .story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.stories-section .story-content .story-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.stories-section .story-content .story-link:hover::before {
  opacity: 0;
}
.stories-section .story-content .story-link {
  margin-top: 56px;
}

.contact-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.contact-section {
  background: #f7f9fc url("../img/section-bg.png") no-repeat center bottom/cover;
  border-top: 1px solid #d3d9e0;
  border-bottom: 1px solid #d3d9e0;
}
.contact-section .contact-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .contact-section .contact-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .contact-section .contact-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .contact-section .contact-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.contact-section .contact-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1100px) {
  .contact-section .contact-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
}
@media (min-width: 1440px) {
  .contact-section .contact-inner {
    justify-content: space-between;
  }
}
.contact-section .contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 576px;
}
.contact-section .contact-info .section-badge {
  display: inline-block;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ebfaf8;
  border: 1px solid #d3d9e0;
  color: #214466;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.contact-section .contact-info h2 {
  color: #252f3d;
  margin: 0;
  max-width: 520px;
}
.contact-section .contact-info .contact-intro {
  font-size: 16px;
  line-height: 26px;
  color: #4c5159;
  margin: 0;
}
.contact-section .contact-info .contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  width: 100%;
}
.contact-section .contact-info .contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-section .contact-info .contact-detail-item .contact-detail-icon {
  width: 56px;
  height: 56px;
  background: #d6f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.contact-section .contact-info .contact-detail-item .contact-detail-icon img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
}
.contact-section .contact-info .contact-detail-item .contact-detail-icon svg {
  width: 32px;
  height: 32px;
  color: #099f8a;
}
.contact-section .contact-info .contact-detail-item .contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-section .contact-info .contact-detail-item .contact-detail-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #252f3d;
}
@media (min-width: 768px) {
  .contact-section .contact-info .contact-detail-item .contact-detail-text strong {
    font-size: 18px;
  }
}
.contact-section .contact-info .contact-detail-item .contact-detail-text span, .contact-section .contact-info .contact-detail-item .contact-detail-text a {
  font-size: 16px;
  line-height: 22px;
  color: #4c5159;
  text-decoration: none;
}
.contact-section .contact-info .contact-detail-item .contact-detail-text span:hover, .contact-section .contact-info .contact-detail-item .contact-detail-text a:hover {
  color: #077566;
}
.contact-section .contact-info .contact-detail-item .contact-detail-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-section .contact-form-card {
  flex: 0 0 auto;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
}
@media (min-width: 1100px) {
  .contact-section .contact-form-card {
    width: 480px;
    padding: 56px;
  }
}
@media (min-width: 1400px) {
  .contact-section .contact-form-card {
    width: 648px;
  }
}
.contact-section .contact-form-card .form-title {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  color: #252f3d;
  margin: 0 0 24px;
}

body .contact-form-card .gform_wrapper,
body .contact-form-card .gform-body {
  margin: 0;
  padding: 0;
}
body .contact-form-card ul.gform_fields,
body .contact-form-card div.gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  column-gap: 16px;
  row-gap: 24px;
}
body .contact-form-card .gfield--width-full,
body .contact-form-card .gfield--type-phone {
  flex: 0 0 100%;
}
body .contact-form-card .gfield--width-half {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  body .contact-form-card .gfield--width-half {
    flex: 0 0 calc(50% - 12px);
  }
}
body .contact-form-card li.gfield,
body .contact-form-card .gfield {
  margin: 0;
  padding: 0;
}
body .contact-form-card .gfield_label,
body .contact-form-card .gfield__label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #252f3d;
  margin-bottom: 6px;
}
body .contact-form-card .gfield_required {
  color: #252f3d;
}
body .contact-form-card .ginput_container input,
body .contact-form-card .ginput_container textarea,
body .contact-form-card .ginput_container select,
body .contact-form-card .gfield__input input,
body .contact-form-card .gfield__input textarea,
body .contact-form-card .gfield__input select {
  width: 100%;
  padding: 14px 16px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  color: #31363d;
  background: #ffffff;
  border: 1.5px solid #d3d9e0;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
body .contact-form-card .ginput_container input::placeholder,
body .contact-form-card .ginput_container textarea::placeholder,
body .contact-form-card .ginput_container select::placeholder,
body .contact-form-card .gfield__input input::placeholder,
body .contact-form-card .gfield__input textarea::placeholder,
body .contact-form-card .gfield__input select::placeholder {
  color: #848e9c;
}
body .contact-form-card .ginput_container input:focus,
body .contact-form-card .ginput_container textarea:focus,
body .contact-form-card .ginput_container select:focus,
body .contact-form-card .gfield__input input:focus,
body .contact-form-card .gfield__input textarea:focus,
body .contact-form-card .gfield__input select:focus {
  border-color: #099f8a;
  box-shadow: 0 0 0 3px rgba(9, 159, 138, 0.12);
}
body .contact-form-card .ginput_container select,
body .contact-form-card .gfield__input select {
  padding-right: 40px;
  background-image: url("../img/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
}
body .contact-form-card .ginput_container textarea,
body .contact-form-card .gfield__input textarea {
  height: 120px;
  min-height: 120px;
  resize: vertical;
}
body .contact-form-card .gfield_error .ginput_container input,
body .contact-form-card .gfield_error .ginput_container textarea,
body .contact-form-card .gfield_error .ginput_container select {
  border-color: #dc2626;
}
body .contact-form-card .validation_message,
body .contact-form-card .gfield__validation-message {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  display: block;
}
body .contact-form-card .gform_validation_errors,
body .contact-form-card .gform__validation-message {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
body .contact-form-card .gform_validation_errors h2,
body .contact-form-card .gform__validation-message h2 {
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  margin: 0;
}
body .contact-form-card .gform_footer,
body .contact-form-card .gform-footer {
  margin-top: 20px;
  padding: 0;
}
body .contact-form-card .gform_required_legend,
body .contact-form-card .gform_heading,
body .contact-form-card .gform_validation_container {
  display: none !important;
}
body .contact-form-card .gform_button,
body .contact-form-card .gform__button,
body .contact-form-card button.button,
body .contact-form-card [type=submit] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body .contact-form-card .gform_button::before,
body .contact-form-card .gform__button::before,
body .contact-form-card button.button::before,
body .contact-form-card [type=submit]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
body .contact-form-card .gform_button:hover::before,
body .contact-form-card .gform__button:hover::before,
body .contact-form-card button.button:hover::before,
body .contact-form-card [type=submit]:hover::before {
  opacity: 0;
}
body .contact-form-card .gform_button,
body .contact-form-card .gform__button,
body .contact-form-card button.button,
body .contact-form-card [type=submit] {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body .contact-form-card .gform_confirmation_wrapper {
  padding: 24px 0;
}
body .contact-form-card .gform_confirmation_message {
  font-size: 15px;
  line-height: 24px;
  color: #077566;
}

.story-detail {
  background: #f7f9fc;
  padding: 56px 0;
}
.story-detail .story-detail-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .story-detail .story-detail-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .story-detail .story-detail-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .story-detail .story-detail-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.story-detail .story-detail-content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.story-detail .story-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #01805a;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.15s ease;
}
.story-detail .story-back-link svg {
  flex-shrink: 0;
}
.story-detail .story-back-link:hover {
  opacity: 0.75;
}
.story-detail .story-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -32px;
}
.story-detail .story-title {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #252f3d;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1100px) {
  .story-detail .story-title {
    font-size: 56px;
    line-height: 60px;
  }
}
.story-detail .story-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.story-detail .story-meta-type,
.story-detail .story-meta-category {
  font-size: 20px;
  font-weight: 600;
  color: #465a75;
  line-height: normal;
}
.story-detail .story-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.story-detail .story-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 880/517;
  object-fit: cover;
  border-radius: 0;
}
.story-detail .story-hero-image .slick-slider,
.story-detail .story-hero-image .slick-list,
.story-detail .story-hero-image .slick-track,
.story-detail .story-hero-image .slick-slide,
.story-detail .story-hero-image .slick-slide > div {
  height: 100%;
}
.story-detail .story-hero-image .slick-slide {
  outline: none;
  border: none;
  box-shadow: none;
}
.story-detail .story-hero-image .slick-prev,
.story-detail .story-hero-image .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fcfeff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.1);
  transition: background 0.15s ease;
}
.story-detail .story-hero-image .slick-prev:hover,
.story-detail .story-hero-image .slick-next:hover {
  background: #ebfaf8;
}
.story-detail .story-hero-image .slick-prev svg,
.story-detail .story-hero-image .slick-next svg {
  width: 14px;
  height: 14px;
  color: #252f3d;
}
.story-detail .story-hero-image .slick-prev {
  left: 24px;
}
.story-detail .story-hero-image .slick-next {
  right: 24px;
}
.story-detail .story-body {
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
}
.story-detail .story-body h2 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  color: #252f3d;
  margin: 44px 0 12px;
}
.story-detail .story-body h2:first-child {
  margin-top: 0;
}
.story-detail .story-body h3 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #252f3d;
  line-height: normal;
  margin: 44px 0 12px;
}
.story-detail .story-body h3:first-child {
  margin-top: 0;
}
.story-detail .story-body p {
  margin: 0 0 12px;
}
.story-detail .story-body p:last-child {
  margin-bottom: 0;
}
.story-detail .story-body ul, .story-detail .story-body ol {
  padding-left: 24px;
  margin: 0 0 12px;
}
.story-detail .story-body ul li, .story-detail .story-body ol li {
  margin-bottom: 8px;
}
.story-detail .story-body a {
  color: #077566;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.story-detail .story-body a:hover {
  color: #099f8a;
}
.story-detail .story-about-box {
  background: #fcfeff;
  border: 1px solid #d3d9e0;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-detail .story-about-box h2, .story-detail .story-about-box h3, .story-detail .story-about-box h4 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #252f3d;
  margin: 0;
  line-height: normal;
}
.story-detail .story-about-box p {
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
  margin: 0;
}
.story-detail .story-about-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #01805a;
  text-decoration: none;
  transition: color 0.15s ease;
}
.story-detail .story-about-box a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("../img/external-link.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.story-detail .story-about-box a:hover {
  color: #099f8a;
}
.story-detail .story-about-box a:hover::after {
  background-image: url("../img/external-link-hover.svg");
}
.story-detail .story-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d3d9e0;
  padding-top: 32px;
  gap: 16px;
}
.story-detail .story-pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #4c5159;
  text-decoration: none;
  transition: color 0.15s ease;
}
.story-detail .story-pag-btn:hover {
  color: #252f3d;
}
.story-detail .story-pag-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #01805a;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
  color: #31363d;
  transition: color 0.15s ease;
}
.story-detail .story-pag-btn:hover .story-pag-arrow {
  color: #01805a;
}

.thank-you-page {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #f7f9fc;
}
@media (min-width: 1100px) {
  .thank-you-page {
    padding: 80px 24px;
  }
}
.thank-you-page .thank-you-inner {
  max-width: 880px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.thank-you-page .thank-you-icon {
  width: 156px;
  height: 152px;
  margin-bottom: 8px;
}
.thank-you-page .thank-you-icon img {
  width: 156px;
  height: 152px;
  object-fit: contain;
}
.thank-you-page h2 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #252f3d;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .thank-you-page h2 {
    font-size: 40px;
  }
}
@media (min-width: 1100px) {
  .thank-you-page h2 {
    font-size: 44px;
  }
}
.thank-you-page .thank-you-body {
  font-size: 16px;
  line-height: 26px;
  color: #4c5159;
  margin: 0;
}
@media (min-width: 1100px) {
  .thank-you-page .thank-you-body {
    font-size: 18px;
  }
}
.thank-you-page .thank-you-cta {
  margin-top: 8px;
}
.thank-you-page .thank-you-cta .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.thank-you-page .thank-you-cta .btn-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.thank-you-page .thank-you-cta .btn-home:hover::before {
  opacity: 0;
}
.thank-you-page .thank-you-cta .btn-home {
  padding: 14px 32px;
  font-size: 15px;
}

.page-content {
  background: #f7f9fc;
  padding: 56px 0 80px;
}
.page-content .page-content-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .page-content .page-content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .page-content .page-content-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .page-content .page-content-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.page-content .page-body {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
}
.page-content .page-body h1 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  color: #252f3d;
  margin: 0 0 24px;
}
@media (min-width: 1100px) {
  .page-content .page-body h1 {
    font-size: 56px;
    line-height: 60px;
  }
}
.page-content .page-body h2 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  color: #252f3d;
  margin: 56px 0 12px;
}
.page-content .page-body h2:first-child {
  margin-top: 0;
}
.page-content .page-body h3 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #252f3d;
  line-height: normal;
  margin: 44px 0 12px;
}
.page-content .page-body h3:first-child {
  margin-top: 0;
}
.page-content .page-body h4 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #252f3d;
  line-height: normal;
  margin: 32px 0 8px;
}
.page-content .page-body h4:first-child {
  margin-top: 0;
}
.page-content .page-body h5, .page-content .page-body h6 {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #252f3d;
  margin: 24px 0 8px;
}
.page-content .page-body h5:first-child, .page-content .page-body h6:first-child {
  margin-top: 0;
}
.page-content .page-body p {
  margin: 0 0 16px;
}
.page-content .page-body p:last-child {
  margin-bottom: 0;
}
.page-content .page-body ul, .page-content .page-body ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
.page-content .page-body ul li, .page-content .page-body ol li {
  margin-bottom: 8px;
}
.page-content .page-body blockquote {
  border-left: 3px solid #099f8a;
  margin: 32px 0;
  padding: 8px 24px;
  color: #4c5159;
  font-size: 18px;
  line-height: 28px;
}
.page-content .page-body a:not([class*=btn]) {
  color: #077566;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.page-content .page-body a:not([class*=btn]):hover {
  color: #099f8a;
}
.page-content .page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 8px 0;
}
.page-content .page-body--404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0;
}
.page-content .page-body--404 .error-code {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  color: #099f8a;
  display: block;
}
.page-content .page-body--404 h1 {
  font-size: 36px;
  margin: 0;
}
@media (min-width: 1100px) {
  .page-content .page-body--404 h1 {
    font-size: 44px;
  }
}
.page-content .page-body--404 p {
  font-size: 18px;
  color: #4c5159;
  margin: 0 0 8px;
}
.page-content .page-body--404 .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-content .page-body--404 .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.page-content .page-body--404 .btn-primary:hover::before {
  opacity: 0;
}
.page-content .page-body--404 .btn-primary {
  margin-top: 8px;
}
.page-content .page-body .wp-block-image {
  margin: 24px 0;
}
.page-content .page-body .wp-block-image img {
  border-radius: 12px;
  margin: 0;
}
.page-content .page-body .wp-block-image figcaption {
  font-size: 13px;
  color: #848e9c;
  text-align: center;
  margin-top: 8px;
}
.page-content .page-body .wp-block-separator {
  border: none;
  border-top: 1px solid #d3d9e0;
  margin: 40px 0;
}

section.team {
  padding: calc(16px * 3) 0 calc(16px * 4);
}
section.team .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  section.team .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  section.team .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  section.team .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
section.team .container {
  max-width: 1050px;
}
section.team .container .search {
  margin-bottom: calc(16px * 4);
}
section.team .container .search form {
  display: flex;
  align-items: flex-end;
  gap: calc(16px * 4);
}
section.team .container .search form div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
section.team .container .search form div strong {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: calc(16px / 2);
}
section.team .container .search form div select {
  background: #ffffff url(../img/down.svg) no-repeat calc(100% - calc(16px * 1.5)) center;
  border: #000000 1px solid;
  padding: calc(16px - 2px) calc(calc(16px * 1.5) - 2px);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (min-width: 600px) {
  section.team .container .search form {
    flex-direction: column;
    gap: calc(16px * 2);
    align-items: center;
  }
  section.team .container .search form div {
    width: 100%;
  }
}
section.team .container .teamMembers {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 3);
  align-items: flex-start;
}
section.team .container .teamMembers .member {
  max-width: 318px;
  width: 100%;
  flex-grow: 1;
  height: 400px;
  overflow: hidden;
  position: relative;
}
section.team .container .teamMembers .member .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
section.team .container .teamMembers .member img {
  width: 100%;
  transition: all 0.2s ease;
}
section.team .container .teamMembers .member .content {
  position: absolute;
  bottom: 0;
  padding: 16px 16px calc(16px * 2) 16px;
  text-align: center;
  width: calc(100% - calc(16px * 2));
  color: #ffffff;
  z-index: 2;
}
section.team .container .teamMembers .member .content h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.44px;
  font-weight: 800;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #ffffff;
  margin: 0 0 calc(16px / 2);
}
section.team .container .teamMembers .member .content span {
  display: block;
}
section.team .container .teamMembers .member .content a {
  display: block;
  margin-top: 0;
  color: #ffffff;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
section.team .container .teamMembers .member:hover img {
  transform: scale(1.05);
}
section.team .container .teamMembers .member:hover .content a {
  margin-top: 16px;
  max-height: 100%;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  section.team .container .teamMembers .member .content a {
    margin-top: 16px;
    max-height: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  section.team .container .teamMembers {
    justify-content: center;
  }
}

.single .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .single .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .single .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .single .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.single .container .mainContent {
  max-width: 1050px;
  margin: calc(16px * 3) auto calc(calc(16px * 3) * 2);
}
.single .container .mainContent .returnLink {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .returnLink a {
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.single .container .mainContent .returnLink a::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow-white.svg) no-repeat center/contain;
  width: 16px;
  height: 10px;
  transform: rotate(180deg);
  margin-right: 16px;
  transition: all 0.2s ease;
}
.single .container .mainContent .returnLink a:hover::before {
  margin-right: calc(16px * 1.5);
}
.single .container .mainContent .image {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .image img {
  max-width: 100%;
  height: auto;
}
.single .container .mainContent .flex {
  display: flex;
}
.single .container .mainContent .flex .addthis_inline_share_toolbox {
  max-width: 46px;
  margin-right: calc(16px * 2);
}
.single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:focus, .single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:hover {
  transform: translateX(-4px);
}
.single .container .mainContent .flex .content .data {
  display: flex;
  flex-wrap: wrap;
}
.single .container .mainContent .flex .content .data h1 {
  width: 100%;
  margin-top: 0;
  font-size: 32px;
  line-height: 38px;
}

.single-post .container .mainContent .flex .content .data {
  margin-bottom: calc(16px * 2);
}
.single-post .container .mainContent .flex .content .data h1 {
  margin: 0;
}

.post-type-archive-event .date, .search .posts .date {
  font-weight: 500;
  margin-bottom: 16px;
}

.blog .container, .archive .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .blog .container, .archive .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .blog .container, .archive .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .blog .container, .archive .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.blog .container .header, .archive .container .header {
  display: flex;
  align-items: center;
  margin: calc(16px * 2) 0 calc(calc(16px * 3) * 2) 0;
}
.blog .container .header h1, .archive .container .header h1 {
  margin: 0 calc(16px * 2) 0 0;
  width: 100%;
}
.blog .container .header form, .archive .container .header form {
  margin-left: auto;
  width: 100%;
}
.blog .container .header form div, .archive .container .header form div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.blog .container .header form div input[type=search], .archive .container .header form div input[type=search] {
  background: #ffffff;
  background-position: 20px 10px;
  border: #000000 1px solid;
  padding: calc(16px - 4px) calc(16px * 1.5);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #000000;
  font-family: "Gotham Narrow", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 350px;
}
.blog .container .header form div input[type=submit], .archive .container .header form div input[type=submit] {
  background: #252f3d url(../img/arrow-white.svg) no-repeat center/19px;
  width: 48px;
  height: 48px;
  color: transparent;
  border: none;
  margin-left: 16px;
  border-radius: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
}
.blog .container .header form div input[type=submit]:hover, .archive .container .header form div input[type=submit]:hover {
  background-color: #252f3d;
}
@media (min-width: 600px) {
  .blog .container .header, .archive .container .header {
    flex-wrap: wrap;
    gap: 16px;
  }
  .blog .container .header form div, .archive .container .header form div {
    justify-content: flex-start;
  }
}
.blog .container .navigation, .archive .container .navigation {
  text-align: center;
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .navigation .nav-links, .archive .container .navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .container .navigation .nav-links .page-numbers, .archive .container .navigation .nav-links .page-numbers {
  color: #000000;
  text-decoration: none;
  margin: 0 calc(16px / 2);
}
.blog .container .navigation .nav-links .page-numbers.current, .archive .container .navigation .nav-links .page-numbers.current {
  color: #252f3d;
  font-weight: 600;
}
.blog .container .navigation .nav-links .page-numbers.next, .blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.prev {
  background: #252f3d url(../img/arrow-black.svg) no-repeat center/13px;
  width: 33px;
  height: 33px;
  display: inline-block;
  text-indent: -9999px;
  border-radius: 100%;
}
.blog .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.next {
  margin-left: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.prev {
  transform: rotate(180deg);
  margin-right: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.inactive, .archive .container .navigation .nav-links .page-numbers.inactive {
  background: #ffffff url(../img/arrow-black.svg) no-repeat center/13px;
}
.blog .container .posts, .archive .container .posts {
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .posts .post, .archive .container .posts .post {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  text-decoration: none;
  color: #000000;
  align-items: center;
}
.blog .container .posts .post:not(:last-child), .archive .container .posts .post:not(:last-child) {
  margin-bottom: calc(16px * 4);
}
.blog .container .posts .post .thumbnail, .archive .container .posts .post .thumbnail {
  min-width: 240px;
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(16px * 4);
}
.blog .container .posts .post .thumbnail img, .archive .container .posts .post .thumbnail img {
  max-height: 100%;
  height: 100%;
  width: auto;
  display: block;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content, .archive .container .posts .post .content {
  width: 100%;
}
.blog .container .posts .post .content h3, .archive .container .posts .post .content h3 {
  margin: 0 0 16px;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content p, .archive .container .posts .post .content p {
  margin: 0 0 calc(16px * 2);
}
.blog .container .posts .post .content .readMore, .archive .container .posts .post .content .readMore {
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog .container .posts .post .content .readMore::after, .archive .container .posts .post .content .readMore::after {
  content: "";
  display: inline-block;
  background: url(../img/long-arrow.svg) no-repeat right/cover;
  width: 15px;
  height: 10px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.blog .container .posts .post:not(.hasthumb) p, .archive .container .posts .post:not(.hasthumb) p {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.blog .container .posts .post:hover .thumbnail img, .archive .container .posts .post:hover .thumbnail img {
  transform: scale(1.05);
}
.blog .container .posts .post:hover h3, .archive .container .posts .post:hover h3 {
  color: #252f3d;
}
.blog .container .posts .post:hover .readMore::after, .archive .container .posts .post:hover .readMore::after {
  width: 24px;
}
@media (min-width: 768px) {
  .blog .container .posts .post, .archive .container .posts .post {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16px * 1.5);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #31363d;
  background: #ffffff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #077566;
  transition: color 0.15s ease;
}
a:hover {
  color: #099f8a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "sinter", "Inter", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  color: #252f3d;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 44px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  h1 {
    font-size: 52px;
  }
}
@media (min-width: 1100px) {
  h1 {
    font-size: 56px;
    line-height: 60px;
  }
}

h2 {
  font-size: 36px;
  line-height: 1.15;
}
@media (min-width: 1100px) {
  h2 {
    font-size: 44px;
  }
}

h3 {
  font-size: 24px;
}
@media (min-width: 1100px) {
  h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

h4 {
  font-size: 20px;
}
@media (min-width: 1100px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 26px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1440px) {
  .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}

section.notop {
  padding-top: 0 !important;
}

section.nobottom {
  padding-bottom: 0 !important;
}

.section-badge {
  display: inline-block;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ebfaf8;
  border: 1px solid #d3d9e0;
  color: #214466;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  opacity: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: transparent;
  color: #077566;
  border: 1.5px solid #077566;
}
.btn-secondary:hover {
  background: #ebfaf8;
  color: #077566;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section *:first-child {
  margin-top: 0;
}
section *:last-child {
  margin-bottom: 0;
}

main {
  display: block;
}

hr.anchor {
  border: none;
  margin: 0;
}

.gform_wrapper .gform_footer button.button,
.gform_wrapper .gform_page_footer button.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #3f9f8a;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gform_wrapper .gform_footer button.button::before,
.gform_wrapper .gform_page_footer button.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #102a43, #099f8a);
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.gform_wrapper .gform_footer button.button:hover::before,
.gform_wrapper .gform_page_footer button.button:hover::before {
  opacity: 0;
}
.gform_wrapper .gform_footer button.button,
.gform_wrapper .gform_page_footer button.button {
  border: none;
  cursor: pointer;
}

.wp-block-image img {
  border-radius: 8px;
}

.alignnone,
.alignleft,
.alignright,
.aligncenter {
  margin-bottom: 16px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
}/*# sourceMappingURL=styles.css.map */