@charset "UTF-8";
html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap" rel="stylesheet">


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, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body, html {
    margin: 0;
}
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;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

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

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

img[src$=".svg"] {
  width: 100%;
}

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

*:focus {
  outline: none;
}

input[type=text], input[type=email], input[type=submit], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*==============================================================*/
/*==============================================================*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(90px);
    -moz-transform: translateY(90px);
    -ms-transform: translateY(90px);
    -o-transform: translateY(90px);
    transform: translateY(90px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(-90%);
    -moz-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    -o-transform: translateY(-90%);
    transform: translateY(-90%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-90px);
    -moz-transform: translateX(-90px);
    -ms-transform: translateX(-90px);
    -o-transform: translateX(-90px);
    transform: translateX(-90px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeft {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes zoom {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomin {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@media (min-width: 600px) {
  .animate-items .is-visible:nth-child(1) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
  }

  .animate-items .is-visible:nth-child(2) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }

  .animate-items .is-visible:nth-child(3) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
  }

  .animate-items .is-visible:nth-child(4) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
  }

  .animate-items .is-visible:nth-child(5) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }

  .animate-items .is-visible:nth-child(6) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.6s;
  }

  .animate-items .is-visible:nth-child(7) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }

  .animate-items .is-visible:nth-child(8) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
  }

  .animate-items .is-visible:nth-child(9) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 0.9s;
  }

  .animate-items .is-visible:nth-child(10) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }

  .animate-items .is-visible:nth-child(11) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.1s;
  }

  .animate-items .is-visible:nth-child(12) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
  }

  .animate-items .is-visible:nth-child(13) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.3s;
  }

  .animate-items .is-visible:nth-child(14) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.4s;
  }

  .animate-items .is-visible:nth-child(15) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
  }

  .animate-items .is-visible:nth-child(16) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.6s;
  }

  .animate-items .is-visible:nth-child(17) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.7s;
  }

  .animate-items .is-visible:nth-child(18) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
  }

  .animate-items .is-visible:nth-child(19) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 1.9s;
  }

  .animate-items .is-visible:nth-child(20) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2s;
  }

  .animate-items .is-visible:nth-child(21) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.1s;
  }

  .animate-items .is-visible:nth-child(22) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.2s;
  }

  .animate-items .is-visible:nth-child(23) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
  }

  .animate-items .is-visible:nth-child(24) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.4s;
  }

  .animate-items .is-visible:nth-child(25) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.5s;
  }

  .animate-items .is-visible:nth-child(26) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.6s;
  }

  .animate-items .is-visible:nth-child(27) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.7s;
  }

  .animate-items .is-visible:nth-child(28) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.8s;
  }

  .animate-items .is-visible:nth-child(29) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 2.9s;
  }

  .animate-items .is-visible:nth-child(30) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3s;
  }

  .animate-items .is-visible:nth-child(31) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.1s;
  }

  .animate-items .is-visible:nth-child(32) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.2s;
  }

  .animate-items .is-visible:nth-child(33) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.3s;
  }

  .animate-items .is-visible:nth-child(34) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.4s;
  }

  .animate-items .is-visible:nth-child(35) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.5s;
  }

  .animate-items .is-visible:nth-child(36) .item {
    animation: zoomin;
    -webkit-animation-name: zoomin;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
    animation-delay: 3.6s;
  }
}
.animate-items .scroll {
  opacity: 1;
}

.animate-items .scroll .item {
  opacity: 1;
}

@media (min-width: 600px) {
  .animate-items .scroll .item {
    opacity: 0;
  }

  .scroll {
    opacity: 0;
  }

  .is-visible.zoom {
    animation: zoom;
    -webkit-animation-name: zoom;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }

  .is-visible.slideRight {
    animation: slideRight;
    -webkit-animation-name: slideRight;
    animation-iteration-count: 1;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeUp {
    animation: fadeUp;
    -webkit-animation-name: fadeUp;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeDown {
    animation: fadeDown;
    -webkit-animation-name: fadeDown;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeRight {
    animation: fadeRight;
    -webkit-animation-name: fadeRight;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }

  .is-visible.fadeLeft {
    animation: fadeLeft;
    -webkit-animation-name: fadeLeft;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
    animation-fill-mode: forwards;
  }
}
.mobile {
  display: block;
}
@media (min-width: 900px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 900px) {
  .desktop {
    display: block;
  }
}

.wrap800 {
  max-width: 800px;
  width: 94%;
  margin: 0 auto;
}

.wrap900 {
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
}

.wrap1000 {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.wrap1100 {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}

.wrap1200 {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.wrap1400 {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .mobile-full {
    width: 100% !important;
  }
}

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

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid.flex-end {
  justify-content: flex-end;
}
.grid.flex-start {
  justify-content: flex-start;
}
.grid.flex-center {
  justify-content: center;
}
.grid .w-50 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-50 {
    width: 50%;
  }
}
.grid .w-33 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-33 {
    width: 33.3333333%;
  }
}
.grid .w-25 {
  width: 100%;
}
@media (min-width: 768px) {
  .grid .w-25 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .grid .w-25 {
    width: 25%;
  }
}

body, html {
  font-size: 16px;
  color: #3C3C3C;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 900px) {
  body, html {
    font-size: 18px;
    scroll-behavior: smooth;
  }
}

::selection {
  background: #09a4d8;
  color: #ffffff;
}

::-moz-selection {
  background: #09a4d8;
  color: #ffffff;
}

.button {
  position: relative;
  display: inline-block;
  background: #FFFF05;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: normal;
  padding: 12px 20px;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.button:hover {
  background: #171717;
  color: #ffffff;
}
.button.btn-big {
  font-size: 16px;
  padding: 16px 24px;
}

.base.alt p, .base.alt a:not(.button), .base.alt li, .base.alt h1, .base.alt h2, .base.alt h3, .base.alt h4, .base.alt h5, .base.alt li::before {
  color: #ffffff;
}
.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base em {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.base strong em,
.base em strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base p.large {
  font-size: 18px;
}
@media (min-width: 600px) {
  .base p.large {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .base p.large {
    font-size: 24px;
  }
}
.base .yellow-text {
  color: #FFFF05;
}
.base a:not(.button) {
  text-decoration: underline;
}
.base a:not(.button):hover {
  text-decoration: none;
}
.base h1 {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 800;
}
@media (min-width: 600px) {
  .base h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .base h1 {
    margin-bottom: 40px;
    font-size: 56px;
  }
}
.base h1 strong {
  font-weight: 800;
}
.base h2 {
  font-family: "inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: 36px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .base h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .base h2 {
    margin-bottom: 40px;
    font-size: 56px;
  }
}
.base h3 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 28px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .base h3 {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .base h3 {
    font-size: 40px;
  }
}
.base h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .base h4 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .base h4 {
    font-size: 28px;
  }
}
.base h5 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .base h5 {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .base h5 {
    font-size: 16px;
  }
}
.base ul {
  margin: 0 0 30px 10px;
  list-style: none;
}
@media (min-width: 900px) {
  .base ul {
    margin: 0 0 40px 10px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
}
.base ul li::before {
  position: absolute;
  top: -1px;
  left: 8px;
  text-indent: -15px;
  content: "•";
  color: #171717;
}
.base ul li ul {
  margin: 12px 0 30px 0;
}
.base ol {
  list-style: none;
  counter-reset: a;
  margin: 20px 0;
}
.base ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.5;
}
.base ol li::before {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a);
  color: #171717;
  top: 0px;
}
.base .alignnone, .base .aligncenter {
  margin: 0 auto 30px;
}
.base .alignright {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignright {
    margin: 0 0 30px 30px;
    float: right;
  }
}
.base .alignleft {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignleft {
    float: left;
    margin: 0 30px 30px 0;
  }
}
.base .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 30px auto;
}
.base .embed-container iframe, .base .embed-container object, .base .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.general.alt p, .general.alt a:not(.button), .general.alt li, .general.alt h1, .general.alt h2, .general.alt h3, .general.alt h4, .general.alt h5, .general.alt li::before, .general.alt p.large, .general.alt .learn-more {
  color: #ffffff;
}
.general p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.general strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.general em {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.general strong em,
.general em strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.general p {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #6F6B66;
}
.general p.large {
  color: #6F6B66;
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .general p.large {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .general p.large {
    font-size: 24px;
  }
}
.general .yellow-text {
  color: #FFFF05;
}
.general a:not(.button):not(.learn-more) {
  text-decoration: underline;
}
.general a:not(.button):not(.learn-more):hover {
  text-decoration: none;
}
.general a.learn-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: 18px;
  position: relative;
  display: inline-block;
  transition: 0.2s ease;
  color: #171717;
}
@media (min-width: 900px) {
  .general a.learn-more {
    font-size: 21px;
  }
}
.general a.learn-more:hover {
  transform: translateX(15px);
}
.general a.learn-more::after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
  font-size: 13px;
  color: #FFFF05;
  position: relative;
  margin-left: 7px;
}
@media (min-width: 900px) {
  .general a.learn-more::after {
    font-size: 15px;
  }
}
.general h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 28px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .general h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media (min-width: 900px) {
  .general h2 {
    font-size: 40px;
  }
}
.general h2 strong {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.general h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 28px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .general h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (min-width: 900px) {
  .general h3 {
    font-size: 36px;
  }
}
.general h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .general h4 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .general h4 {
    font-size: 28px;
  }
}
.general h5 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}
.general .eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #3C3C3C;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.general ul {
  margin: 0 0 30px 10px;
  list-style: none;
}
@media (min-width: 900px) {
  .general ul {
    margin: 0 0 40px 10px;
  }
}
.general ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
  color: #6F6B66;
}
.general ul li::before {
  position: absolute;
  top: -1px;
  left: 8px;
  text-indent: -15px;
  content: "•";
  color: #171717;
}
.general ul li ul {
  margin: 12px 0 30px 0;
}
.general ol {
  list-style: none;
  counter-reset: a;
  margin: 20px 0;
}
.general ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.5;
  color: #6F6B66;
}
.general ol li::before {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a);
  color: #171717;
  top: 0px;
}
.general hr {
  width: 100%;
  border: none;
  border-top: 1px solid #6F6B66;
  height: 1px;
  position: relative;
  margin: 40px auto;
  padding-bottom: 5px;
}
.general hr::after {
  width: 100%;
  content: "";
  height: 1px;
  position: absolute;
  background: #6F6B66;
  left: 0;
  right: 0;
  bottom: 0;
}
.general img {
  border-radius: 25px;
  overflow: hidden;
}

.mission {
  padding: 60px 0 0px;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media (min-width: 768px) {
  .mission {
    padding: 100px 0 0px;
  }
}
.mission .hand {
  display: block;
  text-align: right;
  margin-top: -30px;
  position: relative;
}
@media (min-width: 768px) {
  .mission .hand {
    margin-top: -50px;
  }
}
.mission .hand img {
  right: -5px;
}
.mission .wrap1200 {
  position: relative;
  z-index: 2;
}
.mission .intro {
  max-width: 1000px;
  margin-bottom: 60px;
}
.mission .features {
  border-left: 1px solid rgba(60, 60, 60, 0.4);
  margin-left: 12px;
}
@media (min-width: 768px) {
  .mission .features {
    margin: 0;
    border-left: 0;
    border-top: 1px solid rgba(60, 60, 60, 0.4);
  }
}
.mission .features .grid-item {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .mission .features .grid-item {
    width: 33.3333333%;
  }
}
.mission .features .grid-item .base {
  padding: 0;
  position: relative;
  padding-left: 20px;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .mission .features .grid-item .base {
    margin: 0;
    padding: 40px 0 0;
    padding-right: 40px;
  }
}
.mission .features .grid-item .base::before {
  content: "";
  width: 24px;
  height: 14px;
  background: #FFFF05;
  display: block;
  position: absolute;
  top: 6px;
  left: -12px;
}
@media (min-width: 768px) {
  .mission .features .grid-item .base::before {
    top: -8px;
    left: 0;
  }
}

.platform {
  position: relative;
  overflow: hidden;
}
.platform .overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.platform video {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.platform .wrap1200 {
  position: relative;
  z-index: 3;
}
.platform .base {
  margin: 60px 0;
  max-width: 600px;
}
@media (min-width: 600px) {
  .platform .base {
    margin: 200px 0 90px;
  }
}
@media (min-width: 900px) {
  .platform .base {
    margin: 300px 0 90px;
  }
}

.robots {
  position: relative;
  background: linear-gradient(358deg, #FFF 4.03%, #F2F2F0 22.64%, #F6F6F4 65.42%, #FFF 96.79%);
  padding-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .robots {
    padding-top: 100px;
  }
}
.robots .wrap1200 {
  position: relative;
}
.robots .concept.base {
  max-width: 960px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 768px) {
  .robots .concept.base {
    margin-top: 30px;
    text-align: right;
  }
}
@media (min-width: 960px) {
  .robots .concept.base {
    margin: 0 auto;
  }
}
.robots .concept.base p {
  margin-bottom: 0;
}
.robots .floor {
  display: none;
}
@media (min-width: 960px) {
  .robots .floor {
    display: block;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 1;
  }
}
.robots .intro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .robots .intro {
    margin: 0 -30px;
  }
}
.robots .intro .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .robots .intro .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .robots .intro .grid-item .base {
    padding: 0 30px;
  }
}
.robots .intro .grid-item .base p {
  font-weight: 300;
}
.robots .intro .grid-item .base h2 {
  font-weight: 300;
}
.robots .intro .grid-item .base h2 span {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.robots .container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 400px 0 0px;
  display: none;
}
@media (min-width: 768px) {
  .robots .container {
    display: flex;
  }
}
@media (min-width: 960px) {
  .robots .container {
    padding: 400px 0 100px;
  }
}
.robots .container .robot {
  width: 20%;
  position: relative;
  text-align: center;
  transition: 0.3s all;
}
.robots .container .robot:hover img {
  filter: grayscale(0);
}
.robots .container .robot:hover .text .hide {
  opacity: 1;
  transform: translateY(0);
}
.robots .container .robot:nth-of-type(1) {
  top: -200px;
}
.robots .container .robot:nth-of-type(2) {
  top: -150px;
}
.robots .container .robot:nth-of-type(3) {
  top: -100px;
}
.robots .container .robot:nth-of-type(4) {
  top: -50px;
}
.robots .container .robot:nth-of-type(5) {
  top: 0px;
}
.robots .container .robot .bar {
  height: 60px;
  display: block;
  position: relative;
  width: 3px;
  background: #171717;
  margin: 0 auto;
}
.robots .container .robot .bar .dot {
  position: absolute;
  left: -3px;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 999em;
  background: #171717;
}
.robots .container .robot img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: grayscale(1);
  transition: 0.3s all;
}
.robots .container .robot .text {
  border-left: 10px solid #FFFF05;
  background: #ffffff;
  padding: 20px 12px;
  text-align: left;
  border-radius: 9px;
  top: -72px;
  position: absolute;
  overflow: hidden;
  z-index: 2;
  width: 94%;
  transition: transform 0.3s ease;
}
.robots .container .robot .text h5 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  .robots .container .robot .text h5 {
    font-size: 24px;
  }
}
.robots .container .robot .text .hide {
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}
.robots .container .robot .text p {
  line-height: 1.4;
  font-size: 16px;
}
.robots .slick-dots {
  margin: 40px auto 0;
  text-align: center;
}
.robots .robot-slider {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 60px auto 0;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .robots .robot-slider {
    display: none;
  }
}
.robots .robot-slider .slide {
  opacity: 0.4;
}
.robots .robot-slider .slick-center {
  opacity: 1;
}
.robots .robot-slider .slick-center img {
  width: 100%;
  filter: grayscale(0);
}
.robots .robot-slider .bar {
  height: 60px;
  display: block;
  position: relative;
  width: 3px;
  background: #171717;
  margin: 0 auto;
}
.robots .robot-slider .bar .dot {
  position: absolute;
  left: -3px;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 999em;
  background: #171717;
}
.robots .robot-slider img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  filter: grayscale(1);
  transition: 0.3s all;
}
.robots .robot-slider .text {
  border-left: 10px solid #FFFF05;
  background: #ffffff;
  padding: 20px 12px;
  text-align: left;
  border-radius: 9px;
  overflow: hidden;
  z-index: 2;
  width: 94%;
}
.robots .robot-slider .text h5 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.robots .robot-slider .text p {
  line-height: 1.4;
  font-size: 16px;
}

@media (min-width: 768px) {
  .industry {
    margin-bottom: 40px;
  }
}
.industry .grid .grid-item {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .industry .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .industry .grid .grid-item:first-of-type {
    border-right: 5px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .industry .grid .grid-item:first-of-type .base {
    margin-left: auto;
    padding-right: 6%;
  }
}
@media (min-width: 1024px) {
  .industry .grid .grid-item:first-of-type .base {
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .industry .grid .grid-item:last-of-type {
    border-left: 5px solid #ffffff;
  }
}
@media (min-width: 768px) {
  .industry .grid .grid-item:last-of-type .base {
    margin-right: auto;
    padding-left: 6%;
  }
}
@media (min-width: 1024px) {
  .industry .grid .grid-item:last-of-type .base {
    padding-left: 60px;
  }
}
.industry .grid .base {
  padding: 60px 0;
  width: 94%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .industry .grid .base {
    margin: 0;
    max-width: 592px;
  }
}
.industry .grid .base ul {
  margin: 0;
}
.industry .grid .base ul li {
  border-left: 2px solid #FFFF05;
  padding: 5px 0 5px 12px;
}
@media (min-width: 768px) {
  .industry .grid .base ul li {
    padding: 5px 0 5px 20px;
  }
}
.industry .grid .base ul li::before {
  display: none;
}

.below-industry {
  background: #F3F3F1;
  padding: 60px 0 1px;
}
@media (min-width: 768px) {
  .below-industry {
    padding: 80px 0 30px;
  }
}
.below-industry .intro {
  max-width: 1000px;
  margin-bottom: 60px;
}
.below-industry .grid {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .below-industry .grid {
    margin: 0 -30px;
  }
}
.below-industry .grid .grid-item {
  width: 50%;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .below-industry .grid .grid-item {
    width: 25%;
  }
}
.below-industry .grid .base {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .below-industry .grid .base {
    padding: 0 30px;
  }
}
.below-industry .grid .icon {
  height: 100px;
  width: auto;
  margin: 0 auto 10px;
}

#team {
  padding-bottom: 0;
}

.callout {
  background: #FFFF05;
  padding: 60px 0 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media (min-width: 600px) {
  .callout {
    padding: 100px 0 70px;
  }
}
.callout .wrap1200 {
  position: relative;
  z-index: 2;
}
.callout .base .button {
  display: inline-block;
  background: #171717;
  color: #ffffff;
}
.callout .base .button:hover {
  background: #ffffff;
  color: #171717;
}

.breadcrumbs {
  font-size: 14px;
  margin: 30px auto 60px;
  line-height: 1.4;
}
.breadcrumbs .active {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.single-title {
  margin: 0px auto 30px;
}
.single-title .grid {
  align-items: center;
  margin-top: 40px;
}
.single-title .grid .button {
  background: #171717;
  color: #ffffff;
  padding: 10px;
  width: 90px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-right: 18px;
}
.single-title .grid .button .icon-left {
  font-size: 20px;
  position: relative;
  top: -1px;
}
.single-title .grid .button:hover {
  background: #FFFF05;
  color: #171717;
}
.single-title .share {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 480px) {
  .single-title .share {
    margin-top: 0;
    width: auto;
  }
}
.single-title .share .text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}
.single-title .photo {
  margin: 30px auto;
}
.single-title .line {
  margin: 30px auto 60px;
  height: 5px;
  background: #F3F3F1;
  width: 100%;
}

.post-content {
  margin-bottom: 60px;
}
.post-content .base ul li::before {
  color: #FFFF05;
}
.post-content .base ul ul {
  margin: 10px 0 0 10px;
}
@media (min-width: 600px) {
  .post-content .base ul ul {
    margin: 10px 0 0 30px;
  }
}
.post-content .base ul ul li::before {
  content: "⚬";
  font-size: 12px;
  top: 3px;
  color: #171717;
}
.post-content .base ol li {
  padding-left: 45px;
}
.post-content .base ol li::before {
  text-indent: 0;
  background: #FFFF05;
  border-radius: 999em;
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 2px;
  top: -3px;
  font-size: 14px;
}
.post-content .base hr {
  width: 100%;
  border: none;
  border-top: 1px solid #FFFF05;
  height: 1px;
  position: relative;
  margin: 40px auto;
  padding-bottom: 5px;
}
.post-content .base hr::after {
  width: 100%;
  content: "";
  height: 1px;
  position: absolute;
  background: #FFFF05;
  left: 0;
  right: 0;
  bottom: 0;
}
.post-content .base blockquote {
  margin: 40px auto;
  background: linear-gradient(rgba(243, 243, 241, 0.5), rgba(243, 243, 241, 0.5)), url(/wp-content/uploads/2025/05/quote.svg);
  padding: 40px 20px 10px;
  border-radius: 25px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  .post-content .base blockquote {
    padding: 60px 40px 30px;
  }
}
@media (min-width: 900px) {
  .post-content .base blockquote {
    padding: 60px 60px 30px;
  }
}
.post-content .base blockquote p {
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .post-content .base blockquote p {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .post-content .base blockquote p {
    font-size: 24px;
  }
}
.post-content .base .wp-caption {
  width: 100% !important;
  height: auto;
  position: relative;
  margin: 40px auto 50px;
}
.post-content .base .wp-caption img {
  position: relative;
  z-index: 1;
}
.post-content .base .wp-caption .wp-caption-text {
  background: #F3F3F1;
  padding: 10px 20px;
  border-left: 10px solid #FFFF05;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-left: auto;
  position: relative;
  z-index: 2;
  margin-top: -28px;
  max-width: max-content;
}
.post-content .base .wp-caption .wp-caption-text p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
}

.page-template-news #news .intro {
  max-width: 500px;
}
.page-template-news .post-list {
  column-count: 1;
}
@media (min-width: 480px) {
  .page-template-news .post-list {
    column-count: 2;
    column-gap: 30px;
  }
}
@media (min-width: 900px) {
  .page-template-news .post-list {
    column-count: 3;
  }
}
.page-template-news .post-list .post-item {
  background: #F3F3F1;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  border-radius: 25px;
  overflow: hidden;
}
.page-template-news .post-list .post-item img {
  width: 100%;
  margin-bottom: -3px;
}
.page-template-news .post-list .post-item .text {
  padding: 20px;
  display: block;
  transition: ease-in 0.2s;
}
.page-template-news .post-list .post-item .text:hover {
  background: #FFFF05;
  color: #171717;
}
.page-template-news .post-list .post-item .post-type {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  color: #6F6B66;
}
.page-template-news .post-list .post-item h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .page-template-news .post-list .post-item h4 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .page-template-news .post-list .post-item h4 {
    font-size: 28px;
  }
}
.page-template-news .post-list .post-item p {
  line-height: 1.6;
}
.page-template-news .filter-wrapper {
  margin: 90px auto 50px;
}
.page-template-news .filter-wrapper .grid {
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .page-template-news .filter-wrapper .grid {
    justify-content: flex-start;
  }
}
.page-template-news .filter-wrapper .custom-select {
  border: 1px solid #DEDEE0;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 3px;
  position: relative;
}
@media (min-width: 600px) {
  .page-template-news .filter-wrapper .custom-select {
    width: 265px;
  }
}
.page-template-news .filter-wrapper .custom-select select {
  font-size: 16px;
  border: none;
  padding: 15px 10px;
  border-radius: 3px;
  overflow: hidden;
  appearance: none;
  background: #ffffff;
  color: #171717;
  width: 100%;
}
.page-template-news .filter-wrapper .custom-select .icon-filter {
  position: absolute;
  padding: 15px 12px;
  right: 0;
  background: #ffffff;
}
.page-template-news .filter-wrapper .custom-search {
  border: 1px solid #DEDEE0;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 3px;
  position: relative;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .page-template-news .filter-wrapper .custom-search {
    margin: 0;
    width: 265px;
    margin-left: 20px;
  }
}
.page-template-news .filter-wrapper .custom-search input {
  font-size: 16px;
  border: none;
  padding: 15px 10px;
  border-radius: 3px;
  overflow: hidden;
}
.page-template-news .filter-wrapper .custom-search input::-webkit-input-placeholder {
  color: #171717;
}
.page-template-news .filter-wrapper .custom-search input::-moz-placeholder {
  color: #171717;
}
.page-template-news .filter-wrapper .custom-search input:-ms-input-placeholder {
  color: #171717;
}
.page-template-news .filter-wrapper .custom-search input::placeholder {
  color: #171717;
}
.page-template-news .filter-wrapper .custom-search .icon-search {
  position: absolute;
  padding: 15px 12px;
  right: 0;
  background: #ffffff;
}
.page-template-news .pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px auto 80px;
}
.page-template-news .pagination-wrapper .page-numbers {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999em;
  overflow: hidden;
  font-size: 16px;
  transition: ease-in 0.2s;
}
.page-template-news .pagination-wrapper .page-numbers.current {
  background: #FFFF05;
}
.page-template-news .pagination-wrapper .page-numbers.current:hover {
  background: #FFFF05;
  color: #171717;
}
.page-template-news .pagination-wrapper .page-numbers:hover {
  background: #171717;
  color: #ffffff;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.video-popup.active {
  display: flex;
}
.video-popup .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.video-popup .popup-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}
.video-popup .popup-content .embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 30px auto;
}
.video-popup .popup-content .embed iframe, .video-popup .popup-content .embed object, .video-popup .popup-content .embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-popup .close-popup {
  position: absolute;
  top: -20px;
  right: 0px;
  z-index: 3;
  background: none;
  color: #ffffff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.video-popup .close-popup:hover {
  color: #FFFF05;
}

.news {
  margin: 60px auto 60px;
}
.news .container {
  margin-left: max((100% - 1200px) / 2, 3%);
}
.news .pagination {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.news .pagination li {
  background: #FFFF05;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  padding: 10px;
  width: 90px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  cursor: pointer;
}
.news .pagination li:hover {
  background: #171717;
  color: #ffffff;
}
.news .pagination li.prev {
  padding-right: 18px;
}
.news .pagination li.next {
  padding-left: 18px;
}
.news .pagination li .icon {
  font-size: 20px;
  position: relative;
  top: -1px;
}
.news .news-slider {
  margin-left: -20px;
  width: 150.5%;
}
@media (min-width: 480px) {
  .news .news-slider {
    width: 119.5%;
  }
}
@media (min-width: 768px) {
  .news .news-slider {
    width: 115.5%;
  }
}
@media (min-width: 900px) {
  .news .news-slider {
    margin-left: -40px;
  }
}
@media (min-width: 1300px) {
  .news .news-slider {
    width: 112.5%;
  }
}
.news .news-slider .slick-track {
  display: flex;
}
.news .news-slider .slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover !important;
  height: auto;
  background: #171717;
  margin-left: 20px;
}
@media (min-width: 900px) {
  .news .news-slider .slide {
    margin-left: 40px;
  }
}
.news .news-slider .slide:hover .excerpt {
  animation: fadeUp;
  -webkit-animation-name: fadeUp;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.05, 0.8, 0.1, 0.95);
  animation-fill-mode: forwards;
  visibility: visible;
}
.news .news-slider .inner {
  padding: 40px 20px 80px;
}
.news .news-slider .post-title a, .news .news-slider .post-title .video-popup-trigger {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  color: #ffffff;
  display: inline-block;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .news .news-slider .post-title a, .news .news-slider .post-title .video-popup-trigger {
    font-size: 24px;
  }
}
@media (min-width: 600px) {
  .news .news-slider .post-title a, .news .news-slider .post-title .video-popup-trigger {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .news .news-slider .post-title a, .news .news-slider .post-title .video-popup-trigger {
    font-size: 32px;
  }
}
.news .news-slider .post-title a:hover, .news .news-slider .post-title .video-popup-trigger:hover {
  color: #FFFF05;
}
.news .news-slider .source {
  color: #FFFF05;
  font-size: 16px;
  margin: 0 0 15px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.news .news-slider .excerpt {
  visibility: hidden;
  opacity: 1;
  margin-top: 20px;
}

.site-header {
  margin-bottom: -84px;
  position: relative;
  z-index: 999;
  background: #171717;
}
@media (min-width: 900px) {
  .site-header {
    margin-bottom: -98px;
  }
}
.site-header.transparent {
  background: linear-gradient(180deg, #1C2023 0%, rgba(88, 101, 107, 0) 74.4%);
}
.site-header .grid {
  align-items: center;
}
.site-header .logo {
  display: inline-block;
  width: 190px;
  margin-left: 3%;
}
@media (min-width: 900px) {
  .site-header .logo {
    margin: 0;
    width: 220px;
  }
}
.site-header .menu-primary-container, .site-header .menu-subpage-container {
  display: none;
}
@media (min-width: 900px) {
  .site-header .menu-primary-container, .site-header .menu-subpage-container {
    display: block;
  }
}
@media (min-width: 900px) {
  .site-header .menu {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 900px) {
  .site-header .menu li {
    margin-left: 23px;
  }
}
@media (min-width: 1024px) {
  .site-header .menu li {
    margin-left: 30px;
  }
}
@media (min-width: 1200px) {
  .site-header .menu li {
    margin-left: 40px;
  }
}
.site-header .menu a {
  color: #FFFF05;
  font-family: "Oxanium", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.site-header .menu a:hover {
  color: #ffffff;
}

.site-footer {
  background: #171717;
  padding: 40px 0 40px;
  color: #ffffff;
}
.site-footer .footer-menu {
  margin-bottom: 10px;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer .footer-menu {
    margin-bottom: 30px;
  }
}
.site-footer .footer-menu .logo {
  display: inline-block;
  width: 200px;
}
@media (min-width: 900px) {
  .site-footer .footer-menu .logo {
    width: 220px;
  }
}
.site-footer .footer-menu .menu-primary-container, .site-footer .footer-menu .menu-subpage-container {
  display: none;
}
@media (min-width: 900px) {
  .site-footer .footer-menu .menu-primary-container, .site-footer .footer-menu .menu-subpage-container {
    display: block;
  }
}
.site-footer .footer-menu .menu {
  display: flex;
  justify-content: flex-end;
}
.site-footer .footer-menu .menu li {
  margin-left: 30px;
}
@media (min-width: 1200px) {
  .site-footer .footer-menu .menu li {
    margin-left: 40px;
  }
}
.site-footer .footer-menu .menu li:first-of-type {
  margin-left: 0;
}
.site-footer .footer-menu .menu a {
  color: #FFFF05;
  font-size: 16px;
}
.site-footer .footer-menu .menu a:hover {
  color: #ffffff;
}
.site-footer .contact-info {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .site-footer .contact-info {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .site-footer .contact-info {
    max-width: 800px;
  }
}
.site-footer .contact-info .grid-item {
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .contact-info .grid-item {
    width: auto;
  }
}
@media (min-width: 900px) {
  .site-footer .contact-info .grid-item {
    width: 33.333333%;
  }
}
.site-footer .contact-info .grid-item:last-of-type .base {
  padding-right: 0;
}
@media (min-width: 768px) {
  .site-footer .contact-info .grid-item .base {
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .site-footer .contact-info .grid-item .base {
    padding-right: 30px;
  }
}
.site-footer .contact-info .grid-item .base p {
  font-size: 16px;
}
.site-footer .contact-info .grid-item .base a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.site-footer .contact-info .grid-item .base a:hover {
  color: #FFFF05;
}
.site-footer .bottom .grid-item:first-of-type {
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .bottom .grid-item:first-of-type {
    width: 205px;
  }
}
.site-footer .bottom .grid-item:last-of-type {
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .bottom .grid-item:last-of-type {
    width: calc(100% - 205px);
  }
}
.site-footer .bottom .grid-item:last-of-type .disclaimer {
  margin-top: 30px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .site-footer .bottom .grid-item:last-of-type .disclaimer {
    margin: 0;
    padding-left: 40px;
  }
}
.site-footer .bottom .grid-item:last-of-type .disclaimer p {
  margin-bottom: 10px;
}
.site-footer .bottom .grid-item:last-of-type .disclaimer p:last-of-type {
  margin-bottom: 0;
}
.site-footer .bottom .social .text {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 15px;
}
.site-footer .bottom .social ul {
  display: flex;
  justify-content: flex-start;
}
.site-footer .bottom .social ul li {
  margin-right: 10px;
}
.site-footer .bottom .social ul a {
  color: #171717;
  background: #ffffff;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 999em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .bottom .social ul a:hover {
  background: #FFFF05;
}
.site-footer .bottom .footer-links {
  margin-top: 30px;
  font-size: 16px;
}
.site-footer .bottom .footer-links a {
  text-decoration: underline;
  font-size: 16px;
}
.site-footer .bottom .footer-links a:hover {
  text-decoration: none;
}

.top {
  font-size: 32px;
  position: fixed;
  padding: 1px 20px;
  right: 3%;
  bottom: 10px;
  z-index: 999;
}
.top:hover {
  background: #09a4d8;
  color: #ffffff;
}

.tablepress {
  line-height: 1.4;
  font-size: 12px;
}
@media (min-width: 600px) {
  .tablepress {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress {
    font-size: 16px;
  }
}
.tablepress thead {
  border-bottom: 2px solid #FFFF05;
  border-top: 2px solid #FFFF05;
}
.tablepress thead th {
  background: #ffffff !important;
  color: #171717 !important;
  font-size: 12px;
}
@media (min-width: 600px) {
  .tablepress thead th {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .tablepress thead th {
    font-size: 16px;
  }
}
.tablepress .odd td {
  background: #F3F3F1 !important;
}

.tablepress td, .tablepress th {
  padding: 12px 8px !important;
}

.tablepress > * + tbody > * > *,
.tablepress > tbody > * ~ * > *,
.tablepress > tfoot > * > * {
  border-top: 1px solid #DEDEE0 !important;
}

.gform_wrapper .gform_heading {
  display: none;
}
.gform_wrapper .gform_description {
  margin: 0 0 40px;
  color: #3C3C3C;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media (min-width: 900px) {
  .gform_wrapper .gform_description {
    font-size: 24px;
  }
}
.gform_wrapper .gform_fields {
  margin: 0;
  display: flex !important;
  flex-wrap: wrap;
  width: 100%;
}
.gform_wrapper .gfield_description {
  line-height: 1.4 !important;
}
.gform_wrapper .datepicker {
  width: 100% !important;
}
.gform_wrapper .gfield {
  width: 100%;
  padding-left: 0;
  margin-bottom: 30px;
  line-height: 1;
}
.gform_wrapper .gfield:before {
  display: none;
}
.gform_wrapper .gfield label {
  display: block;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4px 0 0 0;
}
@media (min-width: 900px) {
  .gform_wrapper .gfield label {
    color: #3C3C3C;
  }
}
.gform_wrapper .gfield .gfield_label {
  color: #ffffff !important;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
}
@media (min-width: 900px) {
  .gform_wrapper .gfield .gfield_label {
    color: #3C3C3C !important;
  }
}
.gform_wrapper .gfield_required {
  color: #ffffff !important;
  margin-left: 0 !important;
}
@media (min-width: 900px) {
  .gform_wrapper .gfield_required {
    color: #3C3C3C !important;
  }
}
.gform_wrapper input, .gform_wrapper textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #CDDCDF;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 8px 10px;
  height: 43px;
  background: #ffffff;
  font-size: 17px;
}
.gform_wrapper textarea {
  height: 150px !important;
}
.gform_wrapper .gform_validation_container {
  display: none;
}
.gform_wrapper .gfield.gfield--width-half {
  width: 100%;
}
@media (min-width: 768px) {
  .gform_wrapper .gfield.gfield--width-half {
    width: 49%;
  }
}
.gform_wrapper .gfield--width-third {
  width: 100%;
}
@media (min-width: 768px) {
  .gform_wrapper .gfield--width-third {
    width: 32%;
  }
}
.gform_wrapper .gfield--width-two-thirds {
  width: 100%;
}
@media (min-width: 768px) {
  .gform_wrapper .gfield--width-two-thirds {
    width: 66%;
  }
}
.gform_wrapper .address_state {
  background: #F3F3F1;
}
.gform_wrapper .ginput_container_select, .gform_wrapper .address_state {
  position: relative;
  border: 1px solid #CDDCDF;
  background: #ffffff;
  height: 46px;
  border-radius: 4px;
}
.gform_wrapper .ginput_container_select:after, .gform_wrapper .address_state:after {
  display: none\9 ;
  pointer-events: none;
  content: "\e903";
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #3C3C3C;
}
.gform_wrapper .ginput_container_select select, .gform_wrapper .address_state select {
  font-size: 16px;
  border: none;
  background: transparent;
  height: 43px;
  padding-left: 10px;
  width: 100%;
  background: #ffffff;
  color: #3C3C3C;
  -webkit-appearance: none !important;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .gform_wrapper .ginput_container_select, .gform_wrapper .address_state {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.gform_wrapper .ginput_container_select:after, .gform_wrapper .address_state:after {
  display: block;
}
.gform_wrapper .ginput_container_checkbox,
.gform_wrapper .ginput_container_radio {
  /* after */
  /* before */
}
.gform_wrapper .ginput_container_checkbox .gchoice,
.gform_wrapper .ginput_container_radio .gchoice {
  line-height: 1.6;
  margin: 10px 0;
  position: relative;
}
.gform_wrapper .ginput_container_checkbox .gchoice label,
.gform_wrapper .ginput_container_radio .gchoice label {
  color: #3C3C3C;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  line-height: normal;
  cursor: pointer;
  position: relative;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox],
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: auto;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:before,
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox] + label:after,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:before,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:after,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:after {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #DEDEE0;
  top: 1px;
  border-radius: 2px;
  overflow: hidden;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:after,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:after {
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #FFFF05;
  background-color: #FFFF05;
  z-index: 0;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:not(:checked) + label:before,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.gform_wrapper .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked + label:before,
.gform_wrapper .ginput_container_radio .gfield_checkbox input[type=checkbox]:checked + label:before {
  top: 1px;
  left: 2px;
  width: 7px;
  height: 13px;
  margin-top: 3px;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
  border-right: 3px solid #171717;
  border-bottom: 3px solid #171717;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.gform_wrapper .ginput_container_checkbox input[type=radio],
.gform_wrapper .ginput_container_radio input[type=radio] {
  visibility: hidden;
  position: absolute;
}
.gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  background: #F3F3F1;
  border: 1px solid #F3F3F1;
  top: 3px;
  position: relative;
}
.gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label:before,
.gform_wrapper .ginput_container_radio input[type=radio]:checked + label:before {
  background: #ffffff;
}
.gform_wrapper .ginput_container_checkbox input[type=radio]:checked + label::after,
.gform_wrapper .ginput_container_radio input[type=radio]:checked + label::after {
  content: " ";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #F3F3F1;
  border-radius: 999em;
  left: 2px;
  top: 5px;
  background: #FFFF05;
}
.gform_wrapper .ginput_container_checkbox input[type=radio] + label:before,
.gform_wrapper .ginput_container_radio input[type=radio] + label:before {
  border-radius: 50%;
}
.gform_wrapper .form-nolabel .gfield_label, .gform_wrapper .form-nolabel .gsection_title {
  display: none !important;
}
.gform_wrapper .gform_footer {
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: left;
}
.gform_wrapper .gform_footer .gform_button {
  position: relative;
  display: inline-block;
  background: #FFFF05;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px !important;
  text-align: center;
  line-height: normal !important;
  margin: 0;
  height: auto;
  padding: 12px 20px;
  overflow: hidden;
  width: auto;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.gform_wrapper .gform_footer .gform_button:hover {
  background: #171717;
  color: #ffffff;
}
.gform_wrapper .gform_validation_errors {
  display: none;
}
.gform_wrapper .gfield_error input, .gform_wrapper .gfield_error textarea {
  border: 1px solid red;
}
.gform_wrapper .gfield_error .validation_message {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: red;
  text-align: left;
  font-size: 14px;
  display: block;
  clear: both;
  padding: 0px !important;
  background: transparent;
  border: none;
}
@media (min-width: 900px) {
  .gform_wrapper .gfield_error .validation_message {
    color: red;
  }
}

.gform_confirmation_message {
  color: #FFFF05;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  padding: 30px 0;
  text-align: center;
  font-size: 18px;
}

body img.gform_ajax_spinner, #gform_ajax_frame_1 {
  display: none !important;
}

.ui-datepicker, #ui-datepicker-div {
  z-index: 100000 !important;
}

.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
  padding: 5px !important;
  border-radius: 3px;
}

.black {
  background: #171717;
}
.black .button:hover {
  background: #ffffff !important;
  color: #171717 !important;
}
.black .grid .general .links .link {
  border-bottom: 1px solid #6F6B66 !important;
}
.black .grid .general .links .link a {
  color: #ffffff;
}
.black .grid .general .links .link a .icon-arrow-right {
  color: #FFFF05;
}
.black .js-tablist .js-tablist__item {
  border-bottom: 1px solid #6F6B66 !important;
}
.black .js-tablist .js-tablist__item a {
  color: #ffffff;
}
.black .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link {
  background: #FFFF05;
  color: #171717;
  position: relative;
}
.black .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link:hover {
  background: #FFFF05;
}
.black .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link .icon-arrow-right {
  color: #171717;
  opacity: 1;
}
.black .general h2,
.black .general .eyebrow {
  color: #FFFF05;
}

.yellow {
  background: #003bc0;
}
.yellow .button {
  background: #171717 !important;
  color: #ffffff !important;
}
.yellow .button:hover {
  background: #ffffff !important;
  color: #171717 !important;
}
.yellow .general p, .yellow .general h2, .yellow .general h3, .yellow .general h4, .yellow .general h5, .yellow .general li, .yellow .general li::before, .yellow .general a:not(.button), .yellow .general a, .yellow .general strong, .yellow .general em {
  color: #171717;
}
.yellow .general .learn-more::after {
  color: #171717;
}
.yellow .general hr {
  border-top: 1px solid #171717;
}
.yellow .general hr::after {
  background: #171717;
}
.yellow .grid .general .links .link {
  border-bottom: 1px solid #171717 !important;
}
.yellow .grid .general .links .link a .icon-arrow-right {
  color: #171717 !important;
}
.yellow .js-tablist .js-tablist__item {
  border-bottom: 1px solid #171717 !important;
}
.yellow .js-tablist .js-tablist__item a {
  color: #171717 !important;
}
.yellow .js-tablist .js-tablist__item a:hover {
  background: #FFFF05 !important;
  color: #171717 !important;
}
.yellow .js-tablist .js-tablist__item a:hover .icon-arrow-right {
  color: #171717 !important;
}
.yellow .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link {
  background: #171717 !important;
  color: #ffffff !important;
  position: relative;
}
.yellow .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link:hover {
  background: #171717 !important;
  color: #ffffff !important;
}
.yellow .js-tablist .js-tablist__item a[aria-selected=true].js-tablist__link .icon-arrow-right {
  color: #FFFF05 !important;
  opacity: 1;
}

.gray {
  background: #F3F3F1;
}

.icons-sidebar-2-column.black .grid .item {
  border-bottom: 1px solid #6F6B66;
}
.icons-sidebar-2-column.black .grid .item .label {
  color: #FFFF05;
}
.icons-sidebar-2-column.yellow .grid .item {
  border-bottom: 1px solid #171717;
}
.icons-sidebar-2-column.yellow .grid .item .number,
.icons-sidebar-2-column.yellow .grid .item .label {
  color: #171717;
}

.mobile-toggle-container {
  display: block;
  position: relative;
  width: 60px;
  height: 65px;
  cursor: pointer;
  right: 0px;
  top: 0px;
  z-index: 999;
  display: block;
}
@media (min-width: 900px) {
  .mobile-toggle-container {
    display: none;
  }
}

.mobile-toggle {
  display: flex;
  height: 100%;
  align-items: center;
}
.mobile-toggle:hover .menu-icon::after, .mobile-toggle:hover .menu-icon::before {
  background: #FFFF05;
}
.mobile-toggle:hover .menu-icon span {
  background: #FFFF05;
}

.menu-icon {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
}
.menu-icon::after, .menu-icon::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 3px;
  border-radius: 999em;
  background: #ffffff;
  content: "";
  opacity: 1;
  transition: all 0.2s ease;
}
.menu-icon::before {
  top: -11px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0.15, 0.36, 1);
}
.menu-icon::after {
  bottom: -13px;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}
.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999em;
  background: #ffffff;
  transition: all 0.2s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
}

@media (max-width: 900px) {
  .menu-open .site-header {
    background: rgba(23, 23, 23, 0.9);
    backdrop-filter: blur(5px);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
  }
  .menu-open .main-navigation {
    justify-content: space-between;
  }
  .menu-open .menu {
    padding: 0 0 40px;
    display: block;
  }
  .menu-open .menu-primary-container, .menu-open .menu-subpage-container {
    margin: 0 auto;
    z-index: 999;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    width: 100%;
    display: block;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-open .menu-primary-container li, .menu-open .menu-subpage-container li {
    margin: 0 auto;
    text-align: left;
    width: 94%;
    max-width: 1400px;
    margin: 0px auto;
  }
  .menu-open .menu-primary-container li a, .menu-open .menu-subpage-container li a {
    color: #FFFF05;
    font-size: 18px;
    line-height: 1.2;
    display: block;
    padding: 15px 0;
  }
  .menu-open .menu-primary-container li a:hover, .menu-open .menu-subpage-container li a:hover {
    color: #ffffff;
  }
}
.menu-open .mobile-toggle:hover .menu-icon::after, .menu-open .mobile-toggle:hover .menu-icon::before {
  right: 0px !important;
}
.menu-open .mobile-toggle:hover .menu-icon span {
  left: 0px !important;
}
.menu-open .mobile-toggle .menu-icon::after, .menu-open .mobile-toggle .menu-icon::before {
  opacity: 0 !important;
  transition: all 0.6s ease;
}
.menu-open .mobile-toggle .menu-icon-left {
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-open .mobile-toggle .menu-icon-right {
  transform: rotate(-225deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 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;
}
.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;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: #171717;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
  z-index: 22;
  transition: ease-in 222ms;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: #171717;
  color: transparent;
  cursor: pointer;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "icomoon";
  font-size: 28px;
  padding: 3px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in 222ms;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0px;
}
.slick-prev:hover:before, .slick-prev:focus:before {
  color: #ffffff;
  background: #171717;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -35px;
}
.slick-prev:before {
  content: "\e902";
}
[dir=rtl] .slick-prev:before {
  content: "\e901";
}

.slick-next {
  right: 0px;
}
.slick-next:hover:before, .slick-next:focus:before {
  color: #ffffff;
  background: #171717;
}
[dir=rtl] .slick-next {
  left: -35px;
  right: auto;
}
.slick-next:before {
  content: "\e901";
}
[dir=rtl] .slick-next:before {
  content: "\e902";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: right;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "icomoon";
  font-size: 30px;
  line-height: 12px;
  text-align: center;
  color: #D9D9D9;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #7E7C7C;
  opacity: 1;
}

.page-hero {
  background: #F3F3F1;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 140px 0 30px;
}
@media (min-width: 900px) {
  .page-hero {
    padding: 170px 0 40px;
  }
}
.page-hero .wrap1200 {
  position: relative;
  z-index: 2;
}

.hero-with-bg {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-with-bg video {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.hero-with-bg .overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-with-bg .wrap1200 {
  position: relative;
  z-index: 3;
}
.hero-with-bg .base {
  margin: 120px 0 190px;
}
@media (min-width: 768px) {
  .hero-with-bg .base {
    margin: 400px 0 90px;
  }
}
.hero-with-bg h1 {
  max-width: 760px;
}
.hero-with-bg a.button:hover {
  background: #ffffff !important;
  color: #171717 !important;
}

.timeline {
  background: #171717;
}
.timeline .year.slick-active .label.active {
  background-color: #FFFF05;
  color: #171717;
}
.timeline .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: block;
  height: 275px;
}
@media (min-width: 600px) {
  .timeline .image {
    height: 350px;
  }
}
@media (min-width: 768px) {
  .timeline .image {
    height: 525px;
  }
}
@media (min-width: 900px) {
  .timeline .image {
    height: auto;
    width: 60%;
    min-height: 525px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
}
.timeline .image .years {
  display: none;
}
@media (min-width: 900px) {
  .timeline .image .years {
    background: rgba(23, 23, 23, 0.4);
    backdrop-filter: blur(5px);
    color: #ffffff;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    transition: all 0.4s;
  }
}
@media (min-width: 1400px) {
  .timeline .image .years {
    padding-right: 60px;
  }
}
.timeline .image .years .label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  padding: 15px;
}
@media (min-width: 1200px) {
  .timeline .image .years .label {
    font-size: 24px;
    padding: 25px 20px;
  }
}
@media (min-width: 1400px) {
  .timeline .image .years .label {
    font-size: 28px;
  }
}
.timeline .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .timeline .content {
    width: 40%;
  }
}
.timeline .content .year-nav {
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  width: 94%;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .timeline .content .year-nav {
    margin: 0;
    padding: 30px 0 0 30px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .timeline .content .year-nav {
    padding: 30px 0 0 60px;
  }
}
.timeline .content .year-nav div {
  font-size: 32px;
  background: #FFFF05;
  padding: 5px;
  color: #171717;
  transition: ease-in 222ms;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.timeline .content .year-nav div.year-prev {
  margin-right: 10px;
}
.timeline .content .year-nav div:hover {
  background: #09a4d8;
  color: #ffffff;
}
.timeline .content .general {
  width: 94%;
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .timeline .content .general {
    width: 100%;
    padding: 0 0 30px 30px;
    margin: 0;
    margin-top: auto;
    margin-right: 3%;
    max-width: 350px;
  }
}
@media (min-width: 1200px) {
  .timeline .content .general {
    padding: 0 0 30px 60px;
  }
}
.timeline .content .general h2.yellow-text {
  color: #FFFF05 !important;
  margin-bottom: 10px;
}
.timeline .dates {
  background: #FFFF05;
}
.timeline .slick-track {
  display: flex;
}
.timeline .slick-track .date-slider {
  background: #FFFF05;
  padding: 40px 40px 0;
}
.timeline .slick-track .date-slider .slick-prev, .timeline .slick-track .date-slider .slick-next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.timeline .slick-track .date-slider .slick-prev:hover::before, .timeline .slick-track .date-slider .slick-next:hover::before {
  color: #ffffff;
  background: #09a4d8;
}
.timeline .slick-track .date-slider .slick-prev::before, .timeline .slick-track .date-slider .slick-next::before {
  color: #171717;
  background: #FFFF05;
}
.timeline .slick-track .date-slider .date {
  text-align: center;
}
@media (min-width: 768px) {
  .timeline .slick-track .date-slider .date {
    text-align: left;
    border-left: 1px solid #ffffff;
    padding: 0px 30px 40px;
    height: auto;
  }
}
.timeline .slick-track .date-slider .general .inner {
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .timeline .slick-track .date-slider .general .inner {
    margin: 0;
    max-width: none;
  }
}
.timeline .slick-track .date-slider .general h4 {
  margin-bottom: 5px;
}
.timeline .slick-track .date-slider .general p {
  color: #171717;
}

.form-with-image-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}
@media (min-width: 900px) {
  .form-with-image-background {
    padding: 90px 0;
  }
}
@media (min-width: 900px) {
  .form-with-image-background {
    padding: 200px 0;
  }
}
.form-with-image-background .overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.form-with-image-background .wrap1200 {
  position: relative;
  z-index: 3;
}
.form-with-image-background .grid {
  align-items: center;
}
.form-with-image-background .grid .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .form-with-image-background .grid .grid-item {
    width: 50%;
  }
}
.form-with-image-background .grid .grid-item .intro {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .form-with-image-background .grid .grid-item .intro {
    margin: 0;
    padding-right: 60px;
  }
}
@media (min-width: 900px) {
  .form-with-image-background .grid .form {
    padding: 50px;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
  }
}

.text-with-image-bg {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-with-image-bg .overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.text-with-image-bg .wrap1200 {
  position: relative;
  z-index: 3;
}
.text-with-image-bg .general {
  margin: 60px 0;
  max-width: 600px;
}
@media (min-width: 600px) {
  .text-with-image-bg .general {
    margin: 200px 0 90px;
  }
}
@media (min-width: 900px) {
  .text-with-image-bg .general {
    margin: 300px 0 90px;
  }
}
.text-with-image-bg .general .eyebrow {
  color: #FFFF05;
}
.text-with-image-bg .general h2 {
  color: #FFFF05;
}

.full-image {
  margin-bottom: -3px;
}
.full-image img {
  width: 100%;
  height: auto;
  border-bottom: 10px solid #FFFF05;
}

.testimonials {
  background: #FFFF05;
  padding: 40px 0 80px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 900px) {
  .testimonials {
    padding: 70px 0 120px;
  }
}
.testimonials .wrap1200 {
  position: relative;
  z-index: 2;
}
.testimonials .testimonial-slider {
  padding: 0 60px;
}
.testimonials .testimonial-slider .slick-prev, .testimonials .testimonial-slider .slick-next {
  top: calc(50% - 25px);
}
@media (min-width: 900px) {
  .testimonials .testimonial-slider .slick-prev, .testimonials .testimonial-slider .slick-next {
    top: 50%;
  }
}
.testimonials .testimonial-slider .slick-prev:hover::before, .testimonials .testimonial-slider .slick-next:hover::before {
  background: #09a4d8;
}
.testimonials .testimonial .grid {
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-end;
}
.testimonials .testimonial .quote {
  position: relative;
  width: 100%;
  padding: 50px 0 0;
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote {
    width: 70%;
  }
}
.testimonials .testimonial .quote .quotation {
  width: 60px;
  position: absolute;
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote .quotation {
    width: 90px;
  }
}
.testimonials .testimonial .quote .quotation.open {
  top: 20px;
  left: 0;
}
.testimonials .testimonial .quote .quotation.closed {
  bottom: 0;
  right: 0;
}
.testimonials .testimonial .quote p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-size: 19px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  color: #171717;
}
@media (min-width: 600px) {
  .testimonials .testimonial .quote p {
    font-size: 21px;
  }
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote p {
    font-size: 24px;
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .testimonials .testimonial .quote p {
    font-size: 28px;
  }
}
@media (min-width: 900px) {
  .testimonials .testimonial .quote p:last-of-type {
    margin-bottom: 0;
  }
}
.testimonials .testimonial .meta {
  width: 100%;
}
@media (min-width: 900px) {
  .testimonials .testimonial .meta {
    width: 30%;
    padding-left: 40px;
  }
}
.testimonials .testimonial .meta .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #171717;
}
.testimonials .testimonial .meta .title {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #171717;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.testimonials .testimonial .meta .company {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #171717;
}

.tabular-data {
  padding: 80px 0 30px;
}
.tabular-data .intro {
  margin-bottom: 40px;
  max-width: 800px;
}

.accordion {
  padding: 80px 0 0;
  background: #ffffff;
}
.accordion .intro {
  margin-bottom: 40px;
  max-width: 800px;
}
.accordion .accordion-item {
  border-top: 1px solid #171717;
}
.accordion .accordion-item.active .accordion-header {
  background: #ffffff;
}
.accordion .accordion-item.active .accordion-header .icon-plus {
  transform: rotate(45deg);
}
.accordion .accordion-item.active .accordion-content {
  height: auto;
}
.accordion .accordion-item .accordion-header {
  cursor: pointer;
  padding: 30px 0;
}
.accordion .accordion-item .accordion-header:hover {
  background: #171717;
  color: #ffffff;
}
.accordion .accordion-item .accordion-header .wrap1200 {
  position: relative;
  padding-right: 40px;
}
.accordion .accordion-item .accordion-header .wrap1200 .icon-plus {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s ease;
}
.accordion .accordion-item .accordion-header .label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
}
@media (min-width: 600px) {
  .accordion .accordion-item .accordion-header .label {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .accordion .accordion-item .accordion-header .label {
    font-size: 28px;
  }
}
.accordion .accordion-item .accordion-content {
  overflow: hidden;
  height: 0;
  background: #ffffff;
}
.accordion .accordion-item .accordion-content .general {
  padding: 20px 0 40px;
}
.accordion .accordion-item .accordion-content .grid .image {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .accordion .accordion-item .accordion-content .grid .image {
    margin: 0;
    width: 40%;
  }
}
.accordion .accordion-item .accordion-content .grid .image img {
  width: 100%;
}
.accordion .accordion-item .accordion-content .grid .content {
  width: 100%;
}
@media (min-width: 768px) {
  .accordion .accordion-item .accordion-content .grid .content {
    width: 60%;
    padding-left: 30px;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.7s ease, padding 0.7s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.three-columns-stacked {
  padding: 80px 0 30px;
}
.three-columns-stacked .intro {
  margin-bottom: 40px;
  max-width: 800px;
}
.three-columns-stacked .grid {
  margin: 0 auto;
  justify-content: flex-start;
}
@media (min-width: 600px) {
  .three-columns-stacked .grid {
    margin: 0 -30px;
  }
}
.three-columns-stacked .grid .grid-item {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .three-columns-stacked .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .three-columns-stacked .grid .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 600px) {
  .three-columns-stacked .grid .general {
    padding: 0 30px;
  }
}

.standard-text-block {
  margin: 70px auto;
}

.links-sidebar-2-columns {
  padding: 80px 0 30px;
}
.links-sidebar-2-columns .intro {
  margin-bottom: 40px;
}
.links-sidebar-2-columns .grid {
  margin: 0 auto;
  justify-content: flex-start;
}
@media (min-width: 600px) {
  .links-sidebar-2-columns .grid {
    margin: 0 -30px;
  }
}
.links-sidebar-2-columns .grid .grid-item {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .links-sidebar-2-columns .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .links-sidebar-2-columns .grid .general {
    padding: 0 30px;
  }
}
.links-sidebar-2-columns .grid .general img {
  width: 100%;
}
.links-sidebar-2-columns .grid .general .links {
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .links-sidebar-2-columns .grid .general .links {
    margin-bottom: 0;
  }
}
.links-sidebar-2-columns .grid .general .links .link {
  border-bottom: 1px solid #DEDEE0;
}
.links-sidebar-2-columns .grid .general .links .link a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  text-decoration: none;
  transition: 0.2s ease;
  display: block;
}
@media (min-width: 600px) {
  .links-sidebar-2-columns .grid .general .links .link a {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .links-sidebar-2-columns .grid .general .links .link a {
    font-size: 28px;
  }
}
.links-sidebar-2-columns .grid .general .links .link a:hover {
  transform: translateX(15px);
}
.links-sidebar-2-columns .grid .general .links .link a .icon-arrow-right {
  font-size: 20px;
  color: #FFFF05;
  position: relative;
  margin-left: 5px;
}

.links-sidebar-3-columns {
  padding: 80px 0 30px;
}
.links-sidebar-3-columns .intro {
  margin-bottom: 40px;
}
.links-sidebar-3-columns .grid {
  margin: 0 auto;
  justify-content: flex-start;
}
@media (min-width: 600px) {
  .links-sidebar-3-columns .grid {
    margin: 0 -30px;
  }
}
.links-sidebar-3-columns .grid .grid-item {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .links-sidebar-3-columns .grid .grid-item {
    width: 50%;
  }
  .links-sidebar-3-columns .grid .grid-item:first-of-type {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .links-sidebar-3-columns .grid .grid-item {
    width: 33.3333333%;
  }
  .links-sidebar-3-columns .grid .grid-item:first-of-type {
    width: 33.3333333%;
  }
}
@media (min-width: 600px) {
  .links-sidebar-3-columns .grid .general {
    padding: 0 30px;
  }
}
.links-sidebar-3-columns .grid .general img {
  width: 100%;
}
.links-sidebar-3-columns .grid .general .links {
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .links-sidebar-3-columns .grid .general .links {
    margin-bottom: 0;
  }
}
.links-sidebar-3-columns .grid .general .links .link {
  border-bottom: 1px solid #DEDEE0;
}
.links-sidebar-3-columns .grid .general .links .link a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  text-decoration: none;
  transition: 0.2s ease;
  display: block;
}
@media (min-width: 600px) {
  .links-sidebar-3-columns .grid .general .links .link a {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .links-sidebar-3-columns .grid .general .links .link a {
    font-size: 28px;
  }
}
.links-sidebar-3-columns .grid .general .links .link a:hover {
  transform: translateX(15px);
}
.links-sidebar-3-columns .grid .general .links .link a .icon-arrow-right {
  font-size: 20px;
  color: #FFFF05;
  position: relative;
  margin-left: 5px;
}

.cta {
  padding: 80px 0 140px;
}
.cta .intro {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .cta .cta-slider .slick-list {
    margin: 0 -30px;
  }
}
.cta .cta-slider .slick-prev, .cta .cta-slider .slick-next {
  bottom: -60px;
  position: absolute;
}
.cta .cta-slider .slick-prev:hover::before, .cta .cta-slider .slick-next:hover::before {
  background: #09a4d8;
  color: #ffffff;
}
.cta .cta-slider .slick-prev::before, .cta .cta-slider .slick-next::before {
  color: #171717;
  background: #FFFF05;
}
.cta .cta-slider .slick-prev {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: -60px;
}
@media (min-width: 900px) {
  .cta .cta-slider .grid {
    padding: 0 30px;
  }
}
.cta .cta-slider .grid .img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .cta .cta-slider .grid .img {
    width: 150px;
    height: 150px;
    border-radius: 25px;
  }
}
@media (min-width: 600px) {
  .cta .cta-slider .grid .img {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 900px) {
  .cta .cta-slider .grid .img {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 1200px) {
  .cta .cta-slider .grid .img {
    width: 200px;
    height: 200px;
  }
}
.cta .cta-slider .grid .content {
  width: 100%;
}
.cta .cta-slider .grid .content.with-image {
  width: calc(100% - 90px);
}
@media (min-width: 480px) {
  .cta .cta-slider .grid .content.with-image {
    width: calc(100% - 150px);
  }
}
@media (min-width: 600px) {
  .cta .cta-slider .grid .content.with-image {
    width: calc(100% - 200px);
  }
}
@media (min-width: 900px) {
  .cta .cta-slider .grid .content.with-image {
    width: calc(100% - 150px);
  }
}
@media (min-width: 1200px) {
  .cta .cta-slider .grid .content.with-image {
    width: calc(100% - 200px);
  }
}
.cta .cta-slider .grid .content.with-image .general {
  padding-left: 20px;
}

.tabbed-content {
  padding: 80px 0;
}
.tabbed-content .intro {
  margin-bottom: 40px;
  max-width: 800px;
}
.tabbed-content .js-tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.tabbed-content .js-tabs .js-tablist {
  width: 100%;
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tablist {
    width: 350px;
  }
}
.tabbed-content .js-tabs .js-tablist .js-tablist__item {
  border-bottom: 1px solid #DEDEE0;
}
.tabbed-content .js-tabs .js-tablist .js-tablist__item a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 60px 20px 0px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: 21px;
  text-decoration: none;
  transition: 0.2s ease;
  display: block;
  position: relative;
  cursor: pointer;
}
@media (min-width: 600px) {
  .tabbed-content .js-tabs .js-tablist .js-tablist__item a {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tablist .js-tablist__item a {
    font-size: 28px;
  }
}
.tabbed-content .js-tabs .js-tablist .js-tablist__item a:hover {
  transform: translateX(15px);
}
.tabbed-content .js-tabs .js-tablist .js-tablist__item a:hover .icon-arrow-right {
  opacity: 1;
}
.tabbed-content .js-tabs .js-tablist .js-tablist__item a .icon-arrow-right {
  font-size: 15px;
  color: #FFFF05;
  position: absolute;
  transition: 0.2s ease;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  opacity: 0;
}
.tabbed-content .js-tabs .js-tablist a[aria-selected=true].js-tablist__link {
  background: #FFFF05;
  position: relative;
  padding: 20px 60px 20px 20px;
}
.tabbed-content .js-tabs .js-tablist a[aria-selected=true].js-tablist__link:hover {
  background: #FFFF05;
}
.tabbed-content .js-tabs .js-tablist a[aria-selected=true].js-tablist__link .icon-arrow-right {
  color: #171717;
  opacity: 1;
}
.tabbed-content .js-tabs .js-tabcontent[aria-hidden=true] {
  display: none;
}
.tabbed-content .js-tabs .js-tabcontent {
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tabcontent {
    margin: 0;
    width: calc(100% - 350px);
  }
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tabcontent .grid {
    padding-left: 30px;
  }
}
.tabbed-content .js-tabs .js-tabcontent .grid .img {
  width: 100%;
}
@media (min-width: 600px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .img {
    width: 200px;
  }
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .img {
    width: 360px;
  }
}
@media (min-width: 1024px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .img {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .img {
    width: 360px;
  }
}
.tabbed-content .js-tabs .js-tabcontent .grid .img img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 480px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .img img {
    border-radius: 25px;
  }
}
.tabbed-content .js-tabs .js-tabcontent .grid .content {
  width: 100%;
}
.tabbed-content .js-tabs .js-tabcontent .grid .content.with-image {
  width: 100%;
}
@media (min-width: 600px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .content.with-image {
    width: calc(100% - 200px);
  }
}
@media (min-width: 900px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .content.with-image {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .content.with-image {
    width: calc(100% - 200px);
  }
}
@media (min-width: 1200px) {
  .tabbed-content .js-tabs .js-tabcontent .grid .content.with-image {
    width: calc(100% - 360px);
  }
}
.tabbed-content .js-tabs .js-tabcontent .grid .content.with-image .general {
  padding-right: 30px;
}

.icons-multi-columns {
  padding: 80px 0 30px;
}
.icons-multi-columns .intro {
  max-width: 800px;
  margin-bottom: 60px;
}
.icons-multi-columns .grid {
  justify-content: flex-start;
}
@media (min-width: 900px) {
  .icons-multi-columns .grid {
    margin: 0 -20px;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.two-col {
    margin: 0 -20px;
  }
}
.icons-multi-columns .grid.two-col .grid-item {
  width: 100%;
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.two-col .grid-item {
    width: 50%;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.two-col .grid-item .general {
    padding: 0 20px;
  }
}
.icons-multi-columns .grid.three-col .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .icons-multi-columns .grid.three-col .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.four-col {
    margin: 0 -20px;
  }
}
.icons-multi-columns .grid.four-col .grid-item {
  width: 100%;
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.four-col .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .icons-multi-columns .grid.four-col .grid-item {
    width: 25%;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.four-col .grid-item .general {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.five-col {
    margin: 0 -20px;
  }
}
.icons-multi-columns .grid.five-col .grid-item {
  width: 100%;
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.five-col .grid-item {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .icons-multi-columns .grid.five-col .grid-item {
    width: 20%;
  }
}
@media (min-width: 600px) {
  .icons-multi-columns .grid.five-col .grid-item .general {
    padding: 0 20px;
  }
}
.icons-multi-columns .grid-item {
  margin-bottom: 30px;
}
.icons-multi-columns .grid-item .general {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .icons-multi-columns .grid-item .general {
    max-width: none;
    padding: 0 20px;
  }
}
.icons-multi-columns .grid-item .general h2, .icons-multi-columns .grid-item .general h3, .icons-multi-columns .grid-item .general h4, .icons-multi-columns .grid-item .general h5 {
  margin-bottom: 10px;
}
.icons-multi-columns .grid-item .general .graphic {
  height: 90px;
  width: auto;
  margin: 0 0 15px;
}

.icons-sidebar-2-column {
  padding: 80px 0 50px;
}
.icons-sidebar-2-column .grid .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .icons-sidebar-2-column .grid .grid-item {
    width: 50%;
  }
}
.icons-sidebar-2-column .grid .grid-item .intro {
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .icons-sidebar-2-column .grid .grid-item .intro {
    padding-right: 60px;
    margin: 0;
  }
}
.icons-sidebar-2-column .grid .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #DEDEE0;
  margin-bottom: 30px;
}
.icons-sidebar-2-column .grid .item .icon {
  width: 40px;
}
@media (min-width: 480px) {
  .icons-sidebar-2-column .grid .item .icon {
    width: 60px;
  }
}
@media (min-width: 600px) {
  .icons-sidebar-2-column .grid .item .icon {
    width: 80px;
  }
}
.icons-sidebar-2-column .grid .item .general {
  width: calc(100% - 40px);
  padding-left: 20px;
}
@media (min-width: 480px) {
  .icons-sidebar-2-column .grid .item .general {
    width: calc(100% - 60px);
    padding-left: 30px;
  }
}
@media (min-width: 600px) {
  .icons-sidebar-2-column .grid .item .general {
    width: calc(100% - 80px);
  }
}
.icons-sidebar-2-column .grid .item .number {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: 36px;
  margin-bottom: 0px;
  color: #FFFF05;
  font-weight: 800;
}
@media (min-width: 600px) {
  .icons-sidebar-2-column .grid .item .number {
    font-size: 45px;
  }
}
@media (min-width: 900px) {
  .icons-sidebar-2-column .grid .item .number {
    font-size: 56px;
  }
}
.icons-sidebar-2-column .grid .item .label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #6F6B66;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  .icons-sidebar-2-column .grid .item .label {
    font-size: 24px;
  }
}

.form-module {
  background: #F3F3F1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 70px;
}
.form-module .wrap1200 {
  position: relative;
  z-index: 2;
}
.form-module .intro {
  max-width: 800px;
  margin-bottom: 60px;
}
.form-module .gform_wrapper .gfield .gfield_label {
  color: #171717 !important;
}

.logo-carousel {
  padding: 80px 0;
}
@media (min-width: 900px) {
  .logo-carousel {
    padding: 80px 0 120px;
  }
}
.logo-carousel .grid {
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .logo-carousel .grid {
    margin: 0 -30px 30px;
  }
}
.logo-carousel .grid .headline {
  width: 100%;
}
@media (min-width: 900px) {
  .logo-carousel .grid .headline {
    width: 40%;
  }
}
.logo-carousel .grid .intro {
  width: 100%;
}
@media (min-width: 900px) {
  .logo-carousel .grid .intro {
    width: 60%;
  }
}
.logo-carousel .grid .intro .general {
  text-align: left;
}
@media (min-width: 900px) {
  .logo-carousel .grid .intro .general {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .logo-carousel .grid .general {
    padding: 0 30px;
  }
}
.logo-carousel .logo-slider {
  padding: 0 60px;
}
.logo-carousel .logo-slider .slick-prev, .logo-carousel .logo-slider .slick-next {
  top: 50%;
  transform: translateY(-50%);
}
.logo-carousel .logo-slider .slick-prev:hover::before, .logo-carousel .logo-slider .slick-next:hover::before {
  color: #ffffff;
  background: #09a4d8;
}
.logo-carousel .logo-slider .slick-prev::before, .logo-carousel .logo-slider .slick-next::before {
  color: #171717;
  background: #FFFF05;
}
.logo-carousel .logo-slider .slide {
  text-align: center;
}
.logo-carousel .logo-slider .slide a {
  display: inline-block;
}
.logo-carousel .logo-slider .slide .logo {
  max-height: 90px;
  max-width: none;
  margin: 0 auto;
}

.team {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .team {
    padding: 80px 0 60px;
  }
}
.team .pattern {
  position: absolute;
  top: 0;
  width: 100%;
}
.team .wrap1200 {
  position: relative;
  z-index: 2;
}
.team .intro {
  max-width: 1000px;
  margin-bottom: 60px;
}
.team .headline {
  margin-bottom: 40px;
}
.team .team-row {
  display: none;
}
.team .team-row.row-1 {
  display: block;
}
.team .team-row.row-1 .grid {
  margin: 0 auto;
}
.team .team-row.row-1 .grid-item {
  width: 100%;
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item {
    width: 33.333333%;
  }
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item:nth-of-type(2) .inner {
    margin: 0 auto;
  }
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item:nth-of-type(3) .inner {
    margin-left: auto;
  }
}
.team .team-row.row-1 .grid-item .inner {
  width: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .inner {
    display: block;
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .team .team-row.row-1 .grid-item .inner {
    max-width: 295px;
  }
}
.team .team-row.row-1 .grid-item .linkedin {
  display: none;
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .linkedin {
    display: flex;
  }
}
.team .team-row.row-1 .grid-item .linkedin-mobile {
  display: flex;
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .linkedin-mobile {
    display: none;
  }
}
.team .team-row.row-1 .grid-item .bio-mobile {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .team .team-row.row-1 .grid-item .bio-mobile {
    display: none;
  }
}
.team .team-row.row-1 .grid-item .img {
  width: 100px;
  height: 100px;
}
@media (min-width: 600px) {
  .team .team-row.row-1 .grid-item .img {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .img {
    height: auto;
    width: 100%;
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .team .team-row.row-1 .grid-item .img {
    max-width: 295px;
  }
}
.team .team-row.row-1 .grid-item .img img {
  border-radius: 15px;
  overflow: hidden;
  width: 100px;
  height: 100px;
}
@media (min-width: 600px) {
  .team .team-row.row-1 .grid-item .img img {
    width: 250px;
    height: 250px;
    border-radius: 25px;
  }
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .img img {
    height: auto;
    border-radius: 40px;
  }
}
@media (min-width: 1024px) {
  .team .team-row.row-1 .grid-item .img img {
    width: 295px;
  }
}
.team .team-row.row-1 .grid-item .bio {
  display: none;
}
@media (min-width: 600px) {
  .team .team-row.row-1 .grid-item .bio {
    display: block;
    margin-top: 15px;
  }
}
.team .team-row.row-1 .grid-item .container {
  width: calc(100% - 100px);
  padding-left: 20px;
}
@media (min-width: 600px) {
  .team .team-row.row-1 .grid-item .container {
    width: calc(100% - 250px);
  }
}
@media (min-width: 900px) {
  .team .team-row.row-1 .grid-item .container {
    padding: 0;
    width: 100%;
  }
}
.team .team-row .grid {
  justify-content: flex-start;
  margin: 0 -10px;
}
@media (min-width: 1200px) {
  .team .team-row .grid {
    margin: 0 -30px;
  }
}
.team .team-row .grid-item {
  margin-bottom: 60px;
  width: 50%;
}
@media (min-width: 600px) {
  .team .team-row .grid-item {
    width: 33.3333333%;
  }
}
@media (min-width: 1024px) {
  .team .team-row .grid-item {
    width: 25%;
  }
}
.team .team-row .grid-item .inner {
  padding: 0 10px;
}
@media (min-width: 1200px) {
  .team .team-row .grid-item .inner {
    padding: 0 30px;
  }
}
.team .img {
  position: relative;
  max-width: 250px;
}
.team .img img {
  border-radius: 25px;
  overflow: hidden;
  width: 250px;
}
@media (min-width: 600px) {
  .team .img img {
    border-radius: 40px;
  }
}
.team .bio-mobile {
  display: none;
}
.team .linkedin-mobile {
  display: none;
  background: #FFFF05;
  width: 30px;
  height: 30px;
  border-radius: 999em;
  overflow: hidden;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}
.team .linkedin {
  position: absolute;
  background: #FFFF05;
  right: 20px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  border-radius: 999em;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .linkedin:hover {
  background: #09a4d8;
  color: #ffffff;
}
.team .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 18px;
  margin: 10px 0 5px;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .team .name {
    font-size: 20px;
  }
}
@media (min-width: 600px) {
  .team .name {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .team .name {
    font-size: 24px;
  }
}
.team .position {
  text-transform: uppercase;
  margin: 5px 0;
  line-height: 1.2;
  font-weight: 300;
  font-size: 14px;
}
@media (min-width: 480px) {
  .team .position {
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  .team .position {
    font-size: 18px;
  }
}
.team .button-container {
  display: flex;
  justify-content: flex-end;
}
.team .button-container #show-less {
  background: #171717;
  color: #ffffff;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .button-container #show-less:hover {
  background: #FFFF05;
  color: #171717;
}
.team .button-container #show-less .icon-up {
  font-size: 20px;
}
.team .button-container #show-more {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 12px 20px 12px 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.team .button-container #show-more .icon-down {
  font-size: 20px;
}
.team .button-container #show-more:hover {
  background: #171717;
  color: #ffffff;
}

/*# sourceMappingURL=base.css.map */
