/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  padding-top: 80px;
  background-color: #FFFFFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (min-width: 768px) {
  body {
    padding-top: 104px;
  }
}
@media (min-width: 992px) {
  body {
    padding-top: 114px;
  }
}
@media (min-width: 1300px) {
  body {
    padding-top: 140px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.header {
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .header {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .header {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}
@media (min-width: 768px) {
  .header {
    height: 104px;
  }
}
@media (min-width: 992px) {
  .header {
    height: 114px;
  }
}
@media (min-width: 1300px) {
  .header {
    height: 140px;
  }
}

.header-content {
  display: flex;
  width: 100%;
}

.header-link {
  display: block;
}
.header-link svg {
  display: block;
  width: 200px;
  height: auto;
}
@media (min-width: 768px) {
  .header-link svg {
    width: 250px;
  }
}
@media (min-width: 992px) {
  .header-link svg {
    width: 350px;
  }
}
@media (min-width: 1300px) {
  .header-link svg {
    width: 380px;
  }
}
@media (min-width: 1600px) {
  .header-link svg {
    width: 410px;
  }
}

.footer {
  padding-right: 20px;
  padding-left: 20px;
  display: block;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .footer {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .footer {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}
@media (min-width: 992px) {
  .footer {
    padding-bottom: 25px;
  }
}
@media (min-width: 1300px) {
  .footer {
    padding-bottom: 1.6534391534vw;
  }
}

.footer-inner {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 30px;
  background-color: #000000;
  row-gap: 50px;
}
@media (min-width: 1300px) {
  .footer-inner {
    border-radius: 0.6613756614vw;
  }
}
@media (min-width: 768px) {
  .footer-inner {
    row-gap: 80px;
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .footer-inner {
    row-gap: 200px;
    padding: 50px;
  }
}
@media (min-width: 1300px) {
  .footer-inner {
    row-gap: 13.2275132275vw;
    padding: 3.3068783069vw;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-top-split {
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .footer-top-split {
    flex: 1;
    width: auto;
  }
}
.footer-top-split > svg {
  display: block;
  width: 60%;
  max-width: 300px;
  height: auto;
}
@media (min-width: 992px) {
  .footer-top-split > svg {
    max-width: initial;
  }
}
.footer-top-split > svg path {
  fill: #FFFFFF;
}

.footer-title {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .footer-title {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .footer-title {
    font-size: 30px;
  }
}
@media (min-width: 1300px) {
  .footer-title {
    font-size: 2.2486772487vw;
  }
}

.footer-sub-title {
  margin-top: 0.3em;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 992px) {
  .footer-sub-title {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .footer-sub-title {
    font-size: 1.1904761905vw;
  }
}

.footer-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 20px;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .footer-form {
    row-gap: 25px;
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .footer-form {
    row-gap: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .footer-form {
    row-gap: 1.9841269841vw;
    margin-top: 1.9841269841vw;
  }
}

.footer-form-disclaimer {
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (min-width: 1300px) {
  .footer-form-disclaimer {
    -moz-column-gap: 0.6613756614vw;
         column-gap: 0.6613756614vw;
  }
}
.footer-form-disclaimer input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 1300px) {
  .footer-form-disclaimer input[type=checkbox] {
    width: 1.0582010582vw;
    height: 1.0582010582vw;
    border-width: 0.0661375661vw;
  }
}
.footer-form-disclaimer label {
  display: block;
  flex: 1;
  color: rgb(127.5, 127.5, 127.5);
  font-size: 11px;
}
@media (min-width: 1300px) {
  .footer-form-disclaimer label {
    font-size: 0.7275132275vw;
  }
}

.footer-form-item {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  padding: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: rgba(59, 74, 77, 0.5);
}
@media (min-width: 1300px) {
  .footer-form-item {
    border-radius: 0.6613756614vw;
  }
}
@media (min-width: 1300px) {
  .footer-form-item {
    padding: 0.6613756614vw;
    -moz-column-gap: 0.6613756614vw;
         column-gap: 0.6613756614vw;
  }
}
.footer-form-item input[type=email] {
  display: block;
  flex: 1;
  height: 50px;
  margin: 0;
  padding: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-color: #3B4A4D;
  color: #FFFFFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  border-radius: 5px;
}
@media (min-width: 1300px) {
  .footer-form-item input[type=email] {
    border-radius: 0.3306878307vw;
  }
}
@media (min-width: 768px) {
  .footer-form-item input[type=email] {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .footer-form-item input[type=email] {
    height: 3.3068783069vw;
    padding: 0 0.6613756614vw;
    font-size: 0.9259259259vw;
  }
}
.footer-form-item input[type=email]::-moz-placeholder {
  color: rgb(178.5, 178.5, 178.5);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.footer-form-item input[type=email]::placeholder {
  color: rgb(178.5, 178.5, 178.5);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer-form-item input[type=email]::-moz-placeholder {
    font-size: 14px;
  }
  .footer-form-item input[type=email]::placeholder {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .footer-form-item input[type=email]::-moz-placeholder {
    font-size: 0.9259259259vw;
  }
  .footer-form-item input[type=email]::placeholder {
    font-size: 0.9259259259vw;
  }
}
.footer-form-item input[type=submit] {
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  padding: 0 20px;
  transition: color 0.2s, background-color 0.2s;
  border: 0;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  background-color: transparent;
  color: #FFFFFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  border-radius: 5px;
}
@media (min-width: 1300px) {
  .footer-form-item input[type=submit] {
    border-radius: 0.3306878307vw;
  }
}
@media (min-width: 768px) {
  .footer-form-item input[type=submit] {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .footer-form-item input[type=submit] {
    padding: 0 1.3227513228vw;
    border-width: 0.0661375661vw;
    font-size: 0.9259259259vw;
  }
}
.footer-form-item input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #3B4A4D;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .footer-bottom {
    row-gap: 50px;
  }
}
@media (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-bottom-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.footer-bottom-split > svg {
  display: block;
  width: 40%;
  height: auto;
}
@media (min-width: 992px) {
  .footer-bottom-split > svg {
    width: 30%;
  }
}
.footer-bottom-split > svg path {
  fill: #FFFFFF;
}

.footer-bottom-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 5px;
}
@media (min-width: 768px) {
  .footer-bottom-list {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-item {
  display: block;
  color: #FFFFFF;
  font-size: 11px;
}
@media (min-width: 1300px) {
  .footer-bottom-item {
    font-size: 0.7275132275vw;
  }
}
.footer-bottom-item a {
  transition: color 0.2s;
  color: inherit;
}
.footer-bottom-item a:hover {
  color: rgb(229.5, 229.5, 229.5);
}

.footer-form-success {
  display: none;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer-form-success {
    margin-top: 25px;
  }
}
@media (min-width: 1300px) {
  .footer-form-success {
    margin-top: 1.6534391534vw;
  }
}
.footer-form-success p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .footer-form-success p {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .footer-form-success p {
    font-size: 1.1904761905vw;
  }
}

.full-media {
  padding-right: 20px;
  padding-left: 20px;
  display: block;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .full-media {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .full-media {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}

.full-media-image {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 100px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1300px) {
  .full-media-image {
    border-radius: 0.6613756614vw;
  }
}
@media (min-width: 768px) {
  .full-media-image {
    max-height: calc(100dvh - 124px);
  }
}
@media (min-width: 992px) {
  .full-media-image {
    max-height: calc(100dvh - 139px);
  }
}
@media (min-width: 1300px) {
  .full-media-image {
    max-height: calc(100dvh - (1.6534391534vw + 140px));
  }
}

.intro {
  margin: 50px 0;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .intro {
    margin: 60px 0;
  }
}
@media (min-width: 992px) {
  .intro {
    margin: 70px 0;
  }
}
@media (min-width: 1300px) {
  .intro {
    margin: 5.291005291vw 0;
  }
}
@media (min-width: 992px) {
  .intro {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .intro {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}
@media (min-width: 768px) {
  .intro {
    row-gap: 40px;
  }
}
@media (min-width: 992px) {
  .intro {
    row-gap: 50px;
  }
}
@media (min-width: 1300px) {
  .intro {
    row-gap: 3.3068783069vw;
  }
}

.intro-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .intro-heading {
    row-gap: 20px;
  }
}
@media (min-width: 1300px) {
  .intro-heading {
    row-gap: 1.3227513228vw;
  }
}

.intro-title {
  color: #000000;
  font-size: 6vw;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .intro-title {
    font-size: 33px;
  }
}
@media (min-width: 992px) {
  .intro-title {
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .intro-title {
    font-size: 2.9761904762vw;
  }
}
@media (min-width: 1600px) {
  .intro-title {
    font-size: 3.5052910053vw;
  }
}

.intro-sub-title {
  color: #000000;
  font-size: 4.5vw;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .intro-sub-title {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .intro-sub-title {
    font-size: 28px;
  }
}
@media (min-width: 1300px) {
  .intro-sub-title {
    font-size: 2.2486772487vw;
  }
}

.intro-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .intro-buttons {
    gap: 20px;
  }
}
@media (min-width: 1300px) {
  .intro-buttons {
    gap: 1.3227513228vw;
  }
}

.button {
  overflow: hidden;
  border-radius: 5px;
  display: block;
  position: relative;
  padding: 15px;
  transition: background-color 0.2s;
  background-color: #3B4A4D;
}
@media (min-width: 1300px) {
  .button {
    border-radius: 0.3306878307vw;
  }
}
@media (min-width: 992px) {
  .button {
    padding: 20px;
  }
}
@media (min-width: 1300px) {
  .button {
    padding: 1.3227513228vw;
  }
}
.button:hover {
  background-color: rgb(53.1, 66.6, 69.3);
}
.button--outline {
  border: 1px solid #3B4A4D;
  background-color: #FFFFFF;
}
@media (min-width: 1300px) {
  .button--outline {
    border-width: 0.0661375661vw;
  }
}
.button--outline:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--outline .button-label {
  color: #3B4A4D;
}

.button-label {
  display: block;
  transition: color 0.2s;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .button-label {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .button-label {
    font-size: 0.9259259259vw;
  }
}

.slider {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .slider {
    margin: 100px 0;
  }
}
@media (min-width: 992px) {
  .slider {
    margin: 120px 0;
  }
}
@media (min-width: 1300px) {
  .slider {
    margin: 10.582010582vw 0;
  }
}
@media (min-width: 1300px) {
  .slider {
    row-gap: 1.9841269841vw;
  }
}

.slider-text {
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (min-width: 992px) {
  .slider-text {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .slider-text {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}
@media (min-width: 992px) {
  .slider-text {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
@media (min-width: 1300px) {
  .slider-text {
    -moz-column-gap: 1.6534391534vw;
         column-gap: 1.6534391534vw;
  }
}

.slider-text-item {
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .slider-text-item {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .slider-text-item {
    font-size: 1.1904761905vw;
  }
}

.slider-track {
  display: block;
  width: 100%;
  overflow: hidden;
}
.slider-track .swiper {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .slider-track .swiper {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .slider-track .swiper {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}

.slider-media {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 1300px) {
  .slider-media {
    border-radius: 0.6613756614vw;
  }
}

.slider-image,
.slider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-info {
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 992px) {
  .slider-info {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .slider-info {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}

.slider-arrows {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (min-width: 1300px) {
  .slider-arrows {
    -moz-column-gap: 0.9920634921vw;
         column-gap: 0.9920634921vw;
  }
}

.slider-arrow {
  display: block;
}
.slider-arrow--next {
  transform: rotate(180deg);
}
.slider-arrow svg {
  display: block;
  width: 26px;
  height: auto;
}
@media (min-width: 1300px) {
  .slider-arrow svg {
    width: 1.7195767196vw;
  }
}

.slider-pagination {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 5px;
       column-gap: 5px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .slider-pagination {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .slider-pagination {
    -moz-column-gap: 0.3306878307vw;
         column-gap: 0.3306878307vw;
    font-size: 1.1904761905vw;
  }
}

.contact {
  margin: 50px 0;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 50px;
}
@media (min-width: 768px) {
  .contact {
    margin: 60px 0;
  }
}
@media (min-width: 992px) {
  .contact {
    margin: 70px 0;
  }
}
@media (min-width: 1300px) {
  .contact {
    margin: 5.291005291vw 0;
  }
}
@media (min-width: 992px) {
  .contact {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 1300px) {
  .contact {
    padding-right: 1.6534391534vw;
    padding-left: 1.6534391534vw;
  }
}
@media (min-width: 992px) {
  .contact {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .contact-heading {
    flex: 1;
    width: auto;
  }
}
@media (min-width: 1300px) {
  .contact-heading {
    row-gap: 1.3227513228vw;
  }
}

.contact-title {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact-title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .contact-title {
    font-size: 45px;
  }
}
@media (min-width: 1300px) {
  .contact-title {
    font-size: 3.5052910053vw;
  }
}

.contact-text {
  color: #000000;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact-text {
    font-size: 27px;
  }
}
@media (min-width: 992px) {
  .contact-text {
    font-size: 32px;
  }
}
@media (min-width: 1300px) {
  .contact-text {
    font-size: 2.2486772487vw;
  }
}

.contact-main {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: baseline;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .contact-main {
    grid-template-columns: repeat(2, 1fr);
    flex: 1;
    width: auto;
    gap: 50px;
  }
}
@media (min-width: 1300px) {
  .contact-main {
    gap: 3.3068783069vw;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .contact-item {
    row-gap: 25px;
  }
}
@media (min-width: 1300px) {
  .contact-item {
    row-gap: 1.6534391534vw;
  }
}

.contact-logo {
  display: block;
  width: auto;
}
.contact-logo--cbre {
  height: 30px;
}
@media (min-width: 768px) {
  .contact-logo--cbre {
    height: 40px;
  }
}
@media (min-width: 1300px) {
  .contact-logo--cbre {
    height: 3.1746031746vw;
  }
}
.contact-logo--creative-plans {
  height: 30px;
}
@media (min-width: 768px) {
  .contact-logo--creative-plans {
    height: 40px;
  }
}
@media (min-width: 1300px) {
  .contact-logo--creative-plans {
    height: 3.1746031746vw;
  }
}
.contact-logo--bidwells {
  height: 40px;
}
@media (min-width: 768px) {
  .contact-logo--bidwells {
    height: 55px;
  }
}
@media (min-width: 1300px) {
  .contact-logo--bidwells {
    height: 4.4973544974vw;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-details p {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .contact-details p {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .contact-details p {
    font-size: 1.1904761905vw;
  }
}
.contact-details p a {
  font-weight: 500;
}
