body {
  background: #F6F3F0;
}

ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.page {
  margin: 0;
}

.container {
  max-width: calc(1800px + 5%);
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 3%;
  }
}

.container-sm {
  max-width: calc(1200px + 5rem);
  padding: 0 5rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .container-sm {
    padding: 0 3%;
  }
}

.section-spacing {
  padding: 7rem 0;
}
@media screen and (max-width: 1024px) {
  .section-spacing {
    padding: 4rem 0;
  }
}

.rounded {
  border-radius: 15px;
}

.fade {
  opacity: 0;
}

.relative {
  position: relative;
}

.text-intro {
  padding-bottom: 3rem;
}
.text-intro h2 {
  margin: 0;
}
.text-intro p {
  margin: 0;
}

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

.uppercase {
  text-transform: uppercase;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: black;
  opacity: 0.7;
}

.columns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3.5rem;
}
.columns .col.image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.columns .col.text {
  padding: 5rem;
}
.columns.half-cols .col {
  width: calc(50% - 1.75rem);
}
.columns.half-cols.reverse {
  flex-direction: row-reverse;
}
.columns.third-cols .col {
  width: calc(33.33% - 1.75rem);
}
.columns.quarter-cols .col {
  width: calc(25% - 1.75rem);
}

.oa-section {
  overflow: hidden;
}
.oa-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.oa-section__swiper {
  overflow: visible;
}
.oa-section__swiper .swiper-wrapper {
  height: auto;
}
.oa-section__swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
}
.oa-section__swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 38%;
  min-width: 0;
}
.oa-section .swiper-slide {
  height: auto;
}
.oa-section .ag-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.oa-section .ag-item__image {
  aspect-ratio: 19/20;
  overflow: hidden;
  border-radius: 5px;
  background: #1F3642;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.oa-section .ag-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.oa-section .ag-item:hover .ag-item__image img {
  transform: scale(1.07);
}
.oa-section .ag-item__footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.oa-section .ag-item__name {
  margin-bottom: 0;
}
.oa-section .ag-item__link {
  font-size: clamp(11px, 0.85vw, 14px);
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1F3642;
  opacity: 0.75;
  transition: opacity 200ms ease, color 200ms ease;
}
.oa-section .ag-item__link::after {
  content: "";
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url("/wp-content/themes/PLEXTEX/img/plex-arrow-lb.svg") center/contain no-repeat;
  opacity: 0.65;
}
.oa-section .ag-item:hover .ag-item__link {
  opacity: 1;
  color: #3A7594;
}
.oa-section__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.oa-section__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 43px;
  border-radius: 100px;
  border: none;
  background: #1F3642;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 200ms ease, opacity 200ms ease, transform 150ms ease;
  flex-shrink: 0;
}
.oa-section__nav-btn svg {
  flex-shrink: 0;
}
.oa-section__nav-btn:hover:not(:disabled):not(.is-disabled) {
  background: rgb(47.2989690722, 82.3917525773, 100.7010309278);
  transform: scale(1.03);
}
.oa-section__nav-btn:disabled, .oa-section__nav-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media screen and (max-width: 1024px) {
  .oa-section__nav-btn {
    width: 96px;
    height: 38px;
  }
}/*# sourceMappingURL=layout.css.map */