@charset "UTF-8";
@font-face {
  font-family: "Aleo Regular";
  src: url("/assets/fonts/Aleo-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Aleo Bold";
  src: url("/assets/fonts/Aleo-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Aleo Italic";
  src: url("/assets/fonts/Aleo-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}

body {
  font-family: "Aleo Regular";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

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

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ul {
  padding: 0;
  list-style: none;
}

*,
html,
body {
  scroll-behavior: smooth;
  cursor: none !important;
}

body {
  overflow-x: hidden;
}

.cursor {
  position: fixed;
  background: #fc3a4e;
  border-radius: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  mix-blend-mode: multiply;
  width: 20px;
  height: 20px;
  z-index: 3000;
  left: -8px;
  top: -8px;
  pointer-events: none !important;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px 15px 35px;
  background: white;
  z-index: 2000;
}

@media screen and (max-width: 1440px) {
  .header {
    padding: 15px 30px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__logo img {
  width: 160px;
}

@media screen and (max-width: 1600px) {
  .header__logo img {
    width: 120px;
  }
}

.header__mobiletoggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__mobiletoggle {
    position: relative;
    display: block;
    background: transparent;
    border: 0;
    outline: 0;
    z-index: 100;
  }
  .header__mobiletoggle span {
    display: block;
    width: 40px;
    height: 3px;
    background: #464646;
  }
  .header__mobiletoggle span:not(:last-child) {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 1200px) {
  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 120px 70px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__nav.show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1200px) {
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__nav ul li:not(:last-child) {
  margin-right: 50px;
}

@media screen and (min-width: 1800px) {
  .header__nav ul li:not(:last-child) {
    margin-right: 60px;
  }
}

@media screen and (max-width: 1200px) {
  .header__nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.header__nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Aleo Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3.04px;
  color: #464646;
}

@media screen and (max-width: 1300px) {
  .header__nav ul li a {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .header__nav ul li a {
    font-size: 26px;
    line-height: 32px;
  }
}

@media screen and (max-width: 575px) {
  .header__nav ul li a {
    font-size: 22px;
    line-height: 24px;
  }
}

.header__nav ul li a::before {
  position: absolute;
  content: "––";
  left: -35px;
  top: 0;
}

@media screen and (min-width: 1800px) {
  .header__nav ul li a {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 5.04px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #d1c7aa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -159px;
  padding: 220px 0 50px;
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  .hero {
    margin-top: -123px;
  }
}

@media screen and (max-width: 769px) {
  .hero {
    padding: 0 20px 0;
    min-height: calc(100vh - 97px);
    margin-top: 0;
  }
}

@media screen and (max-width: 575px) {
  .hero {
    min-height: auto;
    padding: 100px 0;
  }
}

.hero__bannerleft {
  position: absolute;
  max-width: 820px;
  width: 47.5vw;
  left: -312px;
  bottom: -10px;
}

.hero__bannerleft img {
  max-width: 100%;
}

.hero__bannerright {
  position: absolute;
  max-width: 1140px;
  width: 66vw;
  right: -425px;
  bottom: -10px;
}

.hero__bannerright img {
  max-width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content--semiheading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.hero__content--semiheading h3 {
  font-family: "Aleo Regular";
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 6px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .hero__content--semiheading h3 {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 575px) {
  .hero__content--semiheading h3 {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 4px;
  }
}

.hero__content--logo {
  position: relative;
  max-width: 800px;
  width: 50vw;
  margin-bottom: 130px;
  margin: 0 auto;
}

.hero__content--logo img {
  max-width: 100%;
}

.hero__content--logo img.bottom-img {
  position: absolute;
  max-width: 340px;
  width: 20vw;
  left: 90px;
  bottom: -243px;
}

@media screen and (max-width: 1600px) {
  .hero__content--logo img.bottom-img {
    width: 23vw;
    left: 50px;
  }
}

@media screen and (max-width: 1030px) {
  .hero__content--logo img.bottom-img {
    bottom: -150px;
    left: 30px;
  }
}

@media screen and (max-width: 769px) {
  .hero__content--logo img.bottom-img {
    width: 20vw;
    bottom: -80px;
    left: 50px;
  }
}

@media screen and (max-width: 575px) {
  .hero__content--logo img.bottom-img {
    width: 25vw;
    left: 10px;
    bottom: -70px;
  }
}

.hero__content--bottomtext {
  position: relative;
  text-align: center;
}

.hero__content--bottomtext h2 {
  font-family: "Aleo Regular";
  font-size: 65px;
  line-height: 80px;
  color: #464646;
  margin-bottom: 20px;
  letter-spacing: 13px;
}

@media screen and (max-width: 769px) {
  .hero__content--bottomtext h2 {
    font-size: 32px;
    line-height: 52px;
    letter-spacing: 8px;
  }
}

@media screen and (max-width: 575px) {
  .hero__content--bottomtext h2 {
    font-size: 22px;
    line-height: 34px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

.hero__content--bottomtext h5 {
  font-family: "Aleo Regular";
  font-size: 33px;
  line-height: 34px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .hero__content--bottomtext h5 {
    font-size: 20px;
    line-height: 22px;
  }
}

.stickyblock {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1030px) {
  .stickyblock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.stickyblock__left {
  position: relative;
  width: 50vw;
  background: #464646;
}

@media screen and (max-width: 1030px) {
  .stickyblock__left {
    width: 100%;
  }
}

.stickyblock__left--block {
  font-family: "Aleo Regular";
  text-align: center;
  padding: 85px 100px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: white;
  scroll-margin-top: 100px;
}

@media screen and (min-width: 1600px) {
  .stickyblock__left--block {
    min-height: 100vh;
  }
}

@media screen and (max-width: 1030px) {
  .stickyblock__left--block {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block {
    padding: 40px 20px 0;
  }
}

.stickyblock__left--block--heading {
  margin-bottom: 40px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--heading {
    margin-bottom: 20px;
  }
}

.stickyblock__left--block--heading h3 {
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 5.7px;
}

.stickyblock__left--block--heading h3.sn {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 7.5px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--heading h3.sn {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 3px;
  }
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--heading h3 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 3px;
  }
}

.stickyblock__left--block--heading h2 {
  font-size: 58px;
  line-height: 60px;
  letter-spacing: 9.6px;
  color: #d1c7aa;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--heading h2 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 3px;
  }
}

.stickyblock__left--block--text p {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.22px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--text p {
    font-size: 16px;
    line-height: 20px;
  }
}

.stickyblock__left--block--schedule:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--schedule:not(:last-child) {
    margin-bottom: 20px;
  }
}

.stickyblock__left--block--schedule h5 {
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 3.6px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--schedule h5 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
  }
}

.stickyblock__left--block--schedule h4 {
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 4.6px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--schedule h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 2px;
  }
}

.stickyblock__left--block--ticket {
  margin-top: 80px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--ticket {
    margin-top: 40px;
  }
}

.stickyblock__left--block--ticket h5 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 3.6px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--ticket h5 {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 2px;
  }
}

.stickyblock__left--block--ticket p {
  font-family: "Aleo Italic";
  font-size: 24px;
  line-height: 30px;
}

@media screen and (max-width: 769px) {
  .stickyblock__left--block--ticket p {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 2px;
  }
}

.stickyblock__left--block.bg-secondary {
  background: #d1c7aa;
  color: #464646;
}

@media screen and (max-width: 1030px) {
  .stickyblock__left--block .textblock2 {
    background: #d1c7aa;
    color: #464646;
  }
}

.stickyblock__left--mobilebanner {
  display: none;
}

@media screen and (max-width: 1030px) {
  .stickyblock__left--mobilebanner {
    display: block;
    position: relative;
  }
  .stickyblock__left--mobilebanner img {
    width: 100% !important;
  }
  .stickyblock__left--mobilebanner img.heading {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 70%;
    max-height: 116px;
    width: 33vw;
  }
}

.stickyblock__right {
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
  right: 0;
  width: 50vw;
  height: calc(100vh - 160px);
  overflow: hidden;
}

@media screen and (max-width: 1030px) {
  .stickyblock__right {
    display: none;
  }
}

.stickyblock__right--item {
  position: relative;
  width: 100%;
  height: 100%;
}

.stickyblock__right--item img {
  width: 100% !important;
}

.stickyblock__right--item img.heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 470px;
  max-height: 116px;
  width: 33vw;
}

.quotes {
  position: relative;
  padding: 7vw 5vw 0;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .quotes {
    padding: 40px 20px 0;
  }
}

.quotes__boxes {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}

@media screen and (max-width: 1030px) {
  .quotes__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.quotes__box {
  position: relative;
  width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-right: 80px;
  padding: 105px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

@media screen and (max-width: 1030px) {
  .quotes__box {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
  }
}

.quotes__box--img {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 1030px) {
  .quotes__box--img {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.quotes__box--img img {
  width: 100%;
}

.quotes__box p {
  position: relative;
  font-family: "Aleo Italic";
  font-size: 41px;
  line-height: 48px;
  letter-spacing: 0.41px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1600px) {
  .quotes__box p {
    font-size: 28px;
    line-height: 38px;
  }
}

@media screen and (max-width: 1030px) {
  .quotes__box p {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 575px) {
  .quotes__box p {
    font-size: 18px;
    line-height: 22px;
    top: 40%;
  }
}

.quotes__box h4 {
  position: relative;
  font-family: "Aleo Italic";
  font-size: 36px;
  line-height: 47px;
  letter-spacing: 0.39px;
  padding: 15px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: white;
}

@media screen and (max-width: 1600px) {
  .quotes__box h4 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media screen and (max-width: 1030px) {
  .quotes__box h4 {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 60%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 575px) {
  .quotes__box h4 {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 0;
    top: 65%;
  }
}

.joinus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  scroll-margin-top: 100px;
}

@media screen and (max-width: 1030px) {
  .joinus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.joinus__content {
  position: relative;
  width: 50vw;
  min-height: calc(100vh - 159px);
  padding: 100px 120px;
  background: #464646;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 1600px) {
  .joinus__content {
    min-height: calc(100vh - 123px);
  }
}

@media screen and (max-width: 1030px) {
  .joinus__content {
    width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .joinus__content {
    min-height: auto;
    padding: 40px 20px;
  }
}

.joinus__content--heading {
  margin-bottom: 6vh;
}

@media screen and (max-width: 769px) {
  .joinus__content--heading {
    margin-bottom: 30px;
  }
}

.joinus__content--heading h4 {
  font-family: "Aleo Regular";
  font-size: 28px;
  line-height: 50px;
  letter-spacing: 4.7px;
}

@media screen and (max-width: 769px) {
  .joinus__content--heading h4 {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 2px;
  }
}

.joinus__content--heading h3 {
  font-family: "Aleo Regular";
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 7.5px;
}

@media screen and (max-width: 769px) {
  .joinus__content--heading h3 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 4px;
  }
}

.joinus__content--text {
  margin-bottom: 6vh;
}

@media screen and (max-width: 769px) {
  .joinus__content--text {
    margin-bottom: 30px;
  }
}

.joinus__content--text p {
  font-family: "Aleo Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.26px;
}

@media screen and (max-width: 769px) {
  .joinus__content--text p {
    font-size: 16px;
    line-height: 18px;
  }
}

.joinus__content--btn {
  margin-bottom: 6vh;
}

@media screen and (max-width: 769px) {
  .joinus__content--btn {
    margin-bottom: 30px;
  }
}

.joinus__content--btn a {
  position: relative;
  display: inline-block;
  padding: 22px 60px;
  font-family: "Aleo Regular";
  font-size: 26px;
  line-height: 31px;
  letter-spacing: 0.26px;
  border: 2px solid #ff273d;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.joinus__content--btn a:hover {
  background: #ff273d;
}

@media screen and (max-width: 769px) {
  .joinus__content--btn a {
    font-size: 18px;
    line-height: 22px;
  }
}

.joinus__content--email p {
  font-family: "Aleo Italic";
  font-size: 28px;
  line-height: 33px;
}

.joinus__content--email p a {
  text-decoration: none;
  color: white;
}

.joinus__banner {
  position: relative;
  width: 50vw;
  min-height: calc(100vh - 159px);
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  .joinus__banner {
    min-height: calc(100vh - 123px);
  }
}

@media screen and (max-width: 1030px) {
  .joinus__banner {
    width: 100%;
    min-height: auto;
  }
}

@media screen and (max-width: 769px) {
  .joinus__banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.joinus__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.joinus__banner img.vps {
  position: absolute;
  max-width: 580px;
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
  -o-object-position: unset;
     object-position: unset;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 769px) {
  .joinus__banner img.vps {
    width: 30%;
  }
}

@media screen and (max-width: 769px) {
  .joinus__banner img {
    width: 70%;
    margin: 0 auto;
  }
}

.members {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  height: 85vh;
  scroll-margin-top: 20vh;
}

@media screen and (max-width: 575px) {
  .members {
    height: 70vh;
    line-height: 22px;
  }
}

.members__search {
  position: absolute;
  top: 30px;
  left: 100px;
  z-index: 10;
}

.members__search .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.members__search .icon svg {
  fill: white;
}

.members__search input {
  width: 215px;
  height: 49px;
  padding: 15px 15px 15px 40px;
  border: 2px solid var(--unnamed-color-ff273d);
  background: #464646e0 0% 0% no-repeat padding-box;
  border: 2px solid #ff273d;
  border-radius: 25px;
  font-family: "Aleo Regular";
  font-size: 18px;
  line-height: 20px;
  color: white;
  outline: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.members__search input:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.members__search input::-webkit-input-placeholder {
  color: white;
}

.members__search input:-ms-input-placeholder {
  color: white;
}

.members__search input::-ms-input-placeholder {
  color: white;
}

.members__search input::placeholder {
  color: white;
}

.members__card {
  position: relative;
  padding: 2vw 4vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 575px) {
  .members__card {
    padding: 20px;
  }
}

.members__card.hidden {
  display: none;
}

.members__card.highlight {
  background: #d1c7aa;
}

.members__card:nth-child(1) {
  background: #d1c7aa;
}

.members__card--img {
  width: 65%;
  margin: 0 auto 10px;
}

.members__card--img img {
  width: 100%;
  aspect-ratio: 1/1;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.members__card h2 {
  font-family: "Aleo Regular";
  font-size: 30px;
  letter-spacing: 3px;
  color: #464646;
  margin-bottom: 5px;
}

@media screen and (max-width: 1600px) {
  .members__card h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .members__card h2 {
    font-size: 16px;
    line-height: 18px;
  }
}

.members__card--pos {
  font-family: "Aleo Regular";
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.8px;
  color: #464646;
  text-transform: uppercase;
}

@media screen and (max-width: 1600px) {
  .members__card--pos {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  .members__card--pos {
    font-size: 11px;
    line-height: 14px;
  }
}

.members__card--com {
  font-family: "Aleo Regular";
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.8px;
  color: #464646;
  text-transform: uppercase;
}

@media screen and (max-width: 1600px) {
  .members__card--com {
    font-size: 12px;
  }
}

.members__card:hover img {
  opacity: 1;
  -webkit-filter: unset;
          filter: unset;
}

.members .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.members .swiper-slide {
  height: calc(100% / 2) !important;
}

.members button.swiper-button-next {
  background: transparent;
  border: 0;
  right: 100px;
  width: 50px;
  height: 50px;
}

.members button.swiper-button-next::after {
  color: #ff273d;
}

@media screen and (max-width: 575px) {
  .members button.swiper-button-next {
    right: 20px;
  }
}

.members button.swiper-button-prev {
  background: transparent;
  border: 0;
  left: 100px;
  width: 50px;
  height: 50px;
}

.members button.swiper-button-prev::after {
  color: #ff273d;
}

@media screen and (max-width: 575px) {
  .members button.swiper-button-prev {
    left: 20px;
  }
}

.partners {
  position: relative;
  scroll-margin-top: 100px;
}

.partners__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1030px) {
  .partners__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.partners__left {
  position: relative;
  width: 50%;
  min-height: calc(100vh - 159px);
  padding: 110px 70px;
  background: #464646;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.partners__left.active {
  background: rgba(70, 70, 70, 0.25);
}

@media screen and (max-width: 1600px) {
  .partners__left {
    min-height: calc(100vh - 123px);
  }
}

@media screen and (max-width: 1030px) {
  .partners__left {
    width: 100%;
    min-height: auto;
  }
}

@media screen and (max-width: 769px) {
  .partners__left {
    padding: 40px 20px;
  }
}

.partners__left--heading {
  font-family: "Aleo Regular";
  text-align: center;
  color: white;
  margin-bottom: 5vh;
}

.partners__left--heading h4 {
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 4.8px;
}

.partners__left--heading h3 {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 7.5px;
}

.partners__left--logos {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__left--logos a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 30px;
}

@media screen and (max-width: 1600px) {
  .partners__left--logos a {
    padding: 20px;
  }
  .partners__left--logos a img {
    max-width: 150px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 575px) {
  .partners__left--logos a img {
    max-width: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.partners__left--logos a.active img {
  -webkit-filter: invert(0.8);
          filter: invert(0.8);
}

.partners__right {
  position: relative;
  width: 50%;
  overflow: hidden;
}

@media screen and (max-width: 1030px) {
  .partners__right {
    width: 100%;
  }
}

.partners__right--banner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.partners__right--banner.hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.partners__right--banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

@media screen and (max-width: 1030px) {
  .partners__right--banner {
    display: none;
  }
}

.partners__right--content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 110px 70px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.partners__right--content.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 769px) {
  .partners__right--content {
    position: relative;
    padding: 40px 20px;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}

.partners__right--content--logo {
  margin-bottom: 80px;
}

.partners__right--content--logo img {
  -webkit-filter: invert(0.8);
          filter: invert(0.8);
  max-width: 470px;
}

.partners__right--content--text {
  margin-bottom: 30px;
}

.partners__right--content--text p {
  font-family: "Aleo Regular";
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.24px;
  color: #464646;
}

.partners__right--content--cta a {
  font-family: "Aleo Italic";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.24px;
  color: #464646;
  text-decoration: none;
}

.logos {
  position: relative;
}

.logos__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1030px) {
  .logos__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.logos__left {
  position: relative;
  width: 50%;
  min-height: calc(100vh - 159px);
  padding: 110px 50px;
  background: #d1c7aa;
}

@media screen and (max-width: 1600px) {
  .logos__left {
    min-height: calc(100vh - 123px);
  }
}

@media screen and (max-width: 1030px) {
  .logos__left {
    width: 100%;
    min-height: auto;
  }
}

@media screen and (max-width: 769px) {
  .logos__left {
    padding: 40px 20px;
  }
}

.logos__left--heading {
  margin-bottom: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 769px) {
  .logos__left--heading {
    margin-bottom: 30px;
  }
}

.logos__left--heading h3 {
  max-width: 630px;
  width: 100%;
  font-family: "Aleo Italic";
  font-size: 41px;
  line-height: 49px;
  letter-spacing: 0.41px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .logos__left--heading h3 {
    font-size: 24px;
    line-height: 26px;
  }
}

.logos__left--logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logos__left--logos a {
  display: inline-block;
  padding: 20px 30px;
}

.logos__left--logos a:nth-child(1) img {
  width: 180px;
}

@media screen and (max-width: 575px) {
  .logos__left--logos a:nth-child(1) img img {
    width: 150px;
  }
}

.logos__left--logos a:nth-child(5) img {
  width: 280px;
}

@media screen and (max-width: 575px) {
  .logos__left--logos a:nth-child(5) img img {
    width: 200px;
  }
}

@media screen and (max-width: 575px) {
  .logos__left--logos a img {
    max-width: 200px;
    max-height: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.logos__right {
  position: relative;
  width: 50%;
  background: #464646;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 6vw 7vw;
}

@media screen and (max-width: 1030px) {
  .logos__right {
    width: 100%;
  }
}

.logos__right--logo {
  margin-bottom: 60px;
}

.logos__right--logo img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.logos__right--content p {
  font-family: "Aleo Regular";
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.24px;
  margin-bottom: 15px;
}

@media screen and (max-width: 769px) {
  .logos__right--content p {
    font-size: 18px;
    line-height: 22px;
  }
}

.logos__right--content a {
  display: inline-block;
  font-family: "Aleo Italic";
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.24px;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 769px) {
  .logos__right--content a {
    font-size: 18px;
    line-height: 22px;
  }
}

.quotesslider {
  position: relative;
  scroll-margin-top: 100px;
}

.quotesslider__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1030px) {
  .quotesslider__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.quotesslider__left {
  position: relative;
  width: 50%;
  padding: 8vw 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #d1c7aa;
}

@media screen and (max-width: 1030px) {
  .quotesslider__left {
    width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .quotesslider__left {
    padding: 40px 20px;
  }
}

.quotesslider__left--heading {
  font-family: "Aleo Regular";
  color: #464646;
  margin-bottom: 5vw;
}

.quotesslider__left--heading h4 {
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 4.8px;
}

@media screen and (max-width: 769px) {
  .quotesslider__left--heading h4 {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 2px;
  }
}

.quotesslider__left--heading h3 {
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 7.5px;
}

@media screen and (max-width: 769px) {
  .quotesslider__left--heading h3 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 3px;
  }
}

.quotesslider__left--quote {
  font-family: "Aleo Italic";
  color: #464646;
}

.quotesslider__left--quote:not(:last-child) {
  margin-bottom: 5vw;
}

.quotesslider__left--quote p {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  .quotesslider__left--quote p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0;
  }
}

.quotesslider__left--quote h3 {
  position: relative;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0.35px;
  padding: 15px 0;
}

@media screen and (max-width: 769px) {
  .quotesslider__left--quote h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

.quotesslider__banner {
  position: -webkit-sticky;
  position: sticky;
  top: 159px;
  left: 0;
  width: 50%;
  height: calc(100vh - 159px);
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  .quotesslider__banner {
    min-height: calc(100vh - 123px);
    top: 123px;
  }
}

@media screen and (max-width: 1030px) {
  .quotesslider__banner {
    display: none;
  }
}

.quotesslider__banner--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.quotesslider__banner--item img.wicketimg {
  position: absolute;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 300px 0 50px;
  background: #d1c7aa;
}

@media screen and (max-width: 769px) {
  .footer {
    padding: 80px 20px 20px;
    background: #464646;
  }
}

.footer__leftbanner {
  position: absolute;
  left: -200px;
  top: 0;
  max-width: 1000px;
  width: 50vw;
}

.footer__leftbanner img {
  width: 100%;
}

@media screen and (max-width: 769px) {
  .footer__leftbanner {
    display: none;
  }
}

.footer__rightbanner {
  position: absolute;
  right: -400px;
  top: 0;
  max-width: 1550px;
  width: 82vw;
}

.footer__rightbanner img {
  width: 100%;
}

@media screen and (max-width: 769px) {
  .footer__rightbanner {
    display: none;
  }
}

.footer__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__content--img {
  position: relative;
  max-width: 1170px;
  width: 62vw;
  margin-bottom: 115px;
}

@media screen and (max-width: 769px) {
  .footer__content--img {
    margin-bottom: 50px;
    width: 70%;
  }
}

.footer__content--img img {
  width: 100%;
}

.footer__content--quote {
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin-bottom: 100px;
}

@media screen and (max-width: 769px) {
  .footer__content--quote {
    margin-bottom: 50px;
    padding: 0 20px;
  }
}

.footer__content--quote p {
  font-family: "Aleo Regular";
  font-size: 35px;
  line-height: 42px;
  letter-spacing: 0.35px;
  color: #464646;
  margin-bottom: 50px;
}

@media screen and (max-width: 769px) {
  .footer__content--quote p {
    font-size: 18px;
    line-height: 22px;
    color: white;
  }
}

.footer__content--quote h4 {
  font-family: "Aleo Regular";
  font-size: 28px;
  line-height: 33px;
  letter-spacing: 4.2px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .footer__content--quote h4 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 2px;
    color: white;
  }
}

.footer__content--quote h6 {
  font-family: "Aleo Regular";
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 3px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .footer__content--quote h6 {
    font-size: 18px;
    line-height: 22px;
  }
}

.footer__content--copy p {
  font-family: "Aleo Regular";
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 3px;
  color: #464646;
}

@media screen and (max-width: 769px) {
  .footer__content--copy p {
    font-size: 13px;
    line-height: 15px;
    color: white;
    text-align: center;
  }
}
/*# sourceMappingURL=app.css.map */