:root {
  --black: #000;
  --white: #fff;
  --transparent: rgba(0, 0, 0, 0);
  --light-grey: #e5e5e4;
  --white-2: white;
  --black-2: black;
}

body {
  color: var(--black);
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.c-hero {
  z-index: 50;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.c-nav {
  z-index: 99;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2));
  position: absolute;
}

.c-nav_inner {
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px 20px;
  display: flex;
}

.c-nav_logo {
  width: 70px;
  height: 80px;
}

.c-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-img.cc-cover {
  object-fit: cover;
}

.c-container {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-img_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-img {
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  flex: none;
}

.hero-background {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  display: none;
}

.hero-pagination {
  width: 70px;
  height: 10px;
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
}

.c-nav_hamburger {
  width: 48px;
  height: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  display: flex;
  position: relative;
}

.c-nav_hamburger.cc-hide {
  display: none;
}

.hamburger-line {
  width: 100%;
  height: 1.5px;
  background-color: var(--white);
  transition: transform .4s, opacity .4s;
}

.hamburger-line.cc-middle {
  margin-top: 9px;
  margin-bottom: 9px;
}

.brand-text_wrapper {
  grid-column-gap: 108px;
  justify-content: center;
  align-items: center;
  padding: 140px 100px;
  display: flex;
}

.h1 {
  font-family: Trajanpro, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

.brand-heading {
  max-width: 540px;
}

.brand-text {
  max-width: 540px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.brand-img_wrapper {
  width: 100%;
  height: 290px;
  display: flex;
}

.brand-img {
  width: 25%;
  height: 100%;
}

.tab-menu {
  z-index: 50;
  width: 50%;
  grid-column-gap: 25px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 220px 45px 20px 100px;
  display: flex;
  position: absolute;
}

.tab-link {
  background-color: var(--transparent);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: 0;
  font-size: 12px;
  line-height: 14px;
}

.tab-link.w--current {
  background-color: var(--transparent);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 8px;
  font-weight: 400;
}

.tab-pane_inner {
  width: 100%;
  display: flex;
}

.tab-text_wrapper {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  padding: 350px 100px 100px;
  display: flex;
}

.tab-img_wrapper {
  width: 50%;
  min-height: 850px;
}

.tab-text.cc-coming-soon {
  text-transform: uppercase;
  font-weight: 400;
}

.tab-richtext ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.tab-richtext p {
  margin-bottom: 20px;
}

.tab-richtext_block {
  margin-bottom: 45px;
}

.c-button {
  border: 1px solid var(--black);
  color: var(--black);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 16px 38px;
  font-size: 12px;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: flex;
}

.c-button:hover {
  background-color: var(--black);
  color: var(--white);
}

.c-button.cc-footer {
  color: var(--white);
  background-color: #606161;
  border-style: none;
  margin-left: 8px;
  margin-right: 8px;
}

.c-button.cc-footer:hover {
  background-color: var(--black);
  color: var(--white);
}

.c-button.cc-black {
  border-color: var(--black);
  color: var(--black);
}

.c-button.cc-black:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-wrapper {
  align-items: center;
  display: flex;
}

.btn-divider {
  width: 1px;
  height: 27px;
  background-color: var(--black);
}

.btn-divider.cc-footer {
  background-color: #606161;
}

.btn-divider.cc-black {
  background-color: var(--black);
}

.c-experience {
  position: relative;
}

.c-about_inner {
  display: flex;
}

.about-text_wrapper {
  width: 50%;
  background-color: var(--white);
  background-image: url('../images/Rahila.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
  display: flex;
}

.h2 {
  color: var(--black);
  letter-spacing: 3.2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
}

.about-img_wrapper {
  width: 50%;
  min-height: 780px;
}

.about-text {
  max-width: 470px;
  color: var(--black);
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 22px;
}

.partnerships-text {
  max-width: 450px;
  color: var(--black);
  margin-top: 60px;
  margin-bottom: 40px;
}

.c-testimonials {
  display: none;
}

.c-testimonials_inner {
  background-color: #e5e5e4;
  background-image: url('../images/plate-img-2.png'), url('../images/plate-img-1.png'), url('../images/Testimonials.svg');
  background-position: 100% 35%, 0 90%, 50% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 130px, 150px, contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  position: relative;
}

.testimonial-swiper {
  width: 60vw;
  max-width: 858px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-swiper_inner {
  width: 100%;
  height: 100%;
  display: flex;
}

.testimonial-block {
  width: 100%;
  height: 100%;
  flex: none;
  display: flex;
}

.testimonial-text_block {
  width: 50%;
  background-color: var(--black);
  padding: 100px 50px;
  display: flex;
}

.testimonial-img_block {
  width: 50%;
  height: 428px;
}

.testimonial-richtext {
  max-width: 290px;
}

.testimonial-richtext blockquote {
  border-left-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-pagination {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 36px;
  left: 50px;
}

.testimonial-divider {
  width: 1px;
  height: 100px;
  background-color: #606161;
  position: absolute;
}

.testimonial-divider.cc-top {
  top: 0;
}

.testimonial-divider.cc-bottom {
  bottom: 0;
}

.c-footer_inner {
  grid-column-gap: 120px;
  grid-row-gap: 50px;
  background-image: url('../images/Contact.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 93%;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 110px 100px 120px;
  display: flex;
}

.footer-logo {
  width: 68px;
  height: 78px;
  cursor: pointer;
}

.footer-link_block {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.footer-link {
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 32px;
  text-decoration: none;
  transition: all .4s;
}

.footer-link_wrapper {
  flex: none;
}

.footer-block {
  max-width: 210px;
  color: var(--black);
}

.h3 {
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.footer-block_wrapper {
  grid-row-gap: 50px;
  flex-direction: column;
  margin-top: 36px;
  display: flex;
}

.footer-form_block {
  max-width: 408px;
  flex: 1;
}

.text-label {
  color: var(--black);
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 300;
}

.input-field {
  height: 40px;
  min-width: 90px;
  border: 1px solid rgba(96, 97, 97, .5);
  border-radius: 0;
}

.input-field:focus {
  border-color: var(--black);
}

.footer-form_field {
  flex: 1;
  margin-bottom: 20px;
}

.footer-form_flex {
  grid-column-gap: 20px;
  display: flex;
}

.textarea-field {
  max-width: 100%;
  min-height: 112px;
  min-width: 100%;
  border: 1px solid rgba(96, 97, 97, .5);
  border-radius: 0;
}

.textarea-field:focus {
  border-color: var(--black);
}

.social-wrapper {
  grid-column-gap: 14px;
  align-items: flex-end;
  display: flex;
}

.social-block {
  width: 28px;
  height: 28px;
  transition: transform .4s;
}

.social-block:hover {
  transform: translate(0, -5px);
}

.embed-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.c-menu {
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  transition: transform .6s;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
  transform: translate(0, -100%);
}

.c-menu.cc-show {
  transform: translate(0);
}

.c-menu_inner {
  width: 100%;
  height: 100%;
  background-image: url('../images/Rahila.svg');
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 65%;
  display: flex;
}

.menu-link_wrapper {
  width: 50%;
  height: 100%;
  grid-row-gap: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 132px 100px 132px 140px;
  display: flex;
}

.menu-link {
  color: var(--black);
  text-transform: capitalize;
  font-size: 40px;
  line-height: 1.25;
  text-decoration: none;
  transition: color .4s;
}

.menu-link:hover {
  color: #606161;
}

.menu-img_block {
  width: 50%;
  height: 100%;
}

.number-link {
  color: var(--black);
  text-decoration: none;
}

.cc-stop-scroll {
  height: 100vh;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.close-btn {
  width: 34px;
  height: 34px;
  cursor: pointer;
  background-image: url('../images/close-btn.svg');
  background-position: 0 0;
  background-size: auto;
  display: none;
  position: absolute;
  top: 61px;
  right: 108px;
}

.close-btn.cc-show {
  color: var(--white);
  background-image: none;
  background-size: auto;
  display: block;
}

.cc-email {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.c-partnerships {
  background-color: var(--light-grey);
  position: relative;
}

.tab-heading {
  z-index: 1;
  margin-top: 100px;
  margin-left: 100px;
  position: absolute;
  left: 0%;
  right: auto;
}

.uc-black-text {
  color: var(--black);
}

.partnerships-text_wrapper {
  width: 50%;
  background-color: var(--light-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px;
  display: flex;
}

.partnerships-heading {
  color: var(--black);
  margin-bottom: 60px;
  font-family: Trajanpro, sans-serif;
  line-height: 1.1;
}

.about-richtext {
  color: var(--black);
  margin-top: 60px;
}

.about-richtext p {
  margin-bottom: 20px;
}

.uc-hide {
  display: none;
}

.partnerships-subheading {
  color: var(--black);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.c-experience_inner {
  position: relative;
}

.partnerships-img_wrapper {
  width: 50%;
  min-height: 780px;
}

.c-partnerships_inner {
  display: flex;
}

@media screen and (min-width: 1440px) {
  .tab-text_wrapper {
    padding-top: 310px;
  }

  .tab-img_wrapper, .about-img_wrapper, .partnerships-img_wrapper {
    max-height: 960px;
  }
}

@media screen and (max-width: 991px) {
  .c-nav_inner {
    padding-left: 50px;
    padding-right: 50px;
  }

  .brand-text_wrapper {
    grid-column-gap: 80px;
    justify-content: space-between;
    padding: 100px 50px;
  }

  .h1 {
    font-size: 40px;
  }

  .brand-text {
    max-width: 450px;
  }

  .brand-img_wrapper {
    height: 220px;
  }

  .tab-menu {
    padding-left: 50px;
  }

  .tab-text_wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }

  .tab-img_wrapper {
    max-height: none;
    min-height: 680px;
  }

  .about-text_wrapper {
    background-size: 150%;
    padding: 80px 50px;
  }

  .about-img_wrapper {
    min-height: 680px;
  }

  .partnerships-text {
    margin-top: 40px;
  }

  .c-testimonials_inner {
    background-position: 100% 35%, 0 90%, 50% 100%;
    background-size: 11vw, 12vw, contain;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .testimonial-swiper {
    width: 80vw;
  }

  .testimonial-divider {
    height: 80px;
  }

  .c-footer_inner {
    padding: 80px 50px;
  }

  .menu-link_wrapper {
    grid-row-gap: 30px;
    padding-left: 60px;
    padding-right: 50px;
  }

  .menu-link {
    font-size: 30px;
  }

  .close-btn.cc-show {
    top: 64px;
    right: 54px;
  }

  .tab-heading {
    margin-top: 80px;
    margin-left: 50px;
  }

  .partnerships-text_wrapper {
    background-size: 150%;
    padding: 80px 50px;
  }

  .partnerships-heading {
    margin-bottom: 40px;
  }

  .partnerships-img_wrapper {
    min-height: 680px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .c-nav_inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-nav_logo.w--current {
    width: 60px;
    height: 70px;
  }

  .hamburger-line {
    transition: background-color .4s, transform .4s, opacity .4s;
  }

  .brand-text_wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px;
  }

  .h1 {
    font-size: 36px;
  }

  .brand-img_wrapper {
    height: 180px;
  }

  .tab-menu {
    width: 100%;
    grid-row-gap: 15px;
    padding-top: 160px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tab-pane_inner {
    flex-direction: column;
  }

  .tab-text_wrapper {
    width: 100%;
    min-height: 460px;
    padding-top: 250px;
    padding-bottom: 60px;
    padding-left: 30px;
  }

  .tab-img_wrapper {
    width: 100%;
    height: 400px;
    min-height: auto;
  }

  .c-about_inner {
    flex-direction: column;
  }

  .about-text_wrapper {
    width: 100%;
    background-size: 100%;
    padding: 60px 30px;
  }

  .h2 {
    font-size: 14px;
  }

  .about-img_wrapper {
    width: 100%;
    height: 500px;
    min-height: auto;
  }

  .about-text {
    margin-top: 40px;
    font-size: 18px;
  }

  .partnerships-text {
    margin-bottom: 20px;
  }

  .c-testimonials_inner {
    padding-top: 100px;
  }

  .testimonial-swiper {
    margin-top: 30px;
  }

  .testimonial-block {
    flex-direction: column-reverse;
  }

  .testimonial-text_block {
    width: 100%;
    height: 290px;
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-img_block {
    width: 100%;
  }

  .testimonial-richtext {
    max-width: 400px;
  }

  .testimonial-richtext blockquote {
    font-size: 14px;
  }

  .testimonial-pagination {
    left: 30px;
  }

  .testimonial-divider {
    height: 60px;
  }

  .c-footer_inner {
    padding: 60px 30px;
  }

  .footer-logo {
    width: 58px;
    height: 68px;
  }

  .footer-link {
    line-height: 28px;
  }

  .h3 {
    margin-bottom: 8px;
  }

  .footer-block_wrapper {
    grid-row-gap: 36px;
    margin-top: 30px;
  }

  .social-block:hover {
    transform: none;
  }

  .c-menu_inner {
    background-position: 0 85%;
    background-size: 100%;
  }

  .menu-link_wrapper {
    width: 100%;
    grid-row-gap: 20px;
  }

  .menu-link {
    font-size: 20px;
  }

  .menu-img_block {
    width: 100%;
    height: 50%;
    display: none;
  }

  .close-btn.cc-show {
    color: var(--black);
    top: 58px;
    right: 36px;
  }

  .tab-heading {
    margin-top: 60px;
    margin-left: 30px;
  }

  .partnerships-text_wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .partnerships-heading {
    margin-bottom: 35px;
  }

  .about-richtext {
    margin-top: 40px;
  }

  .partnerships-img_wrapper {
    width: 100%;
    height: 400px;
    min-height: auto;
  }

  .c-partnerships_inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .c-hero.swiper-1, .c-nav {
    height: 90vh;
  }

  .c-nav_inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .brand-text_wrapper {
    grid-row-gap: 20px;
    padding: 40px 5vw;
  }

  .h1 {
    font-size: 32px;
  }

  .brand-img_wrapper {
    height: 120px;
  }

  .tab-menu {
    padding-top: 140px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .tab-text_wrapper {
    min-height: 520px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .tab-img_wrapper {
    height: 350px;
  }

  .about-text_wrapper {
    padding: 40px 5vw;
  }

  .about-img_wrapper {
    height: 400px;
  }

  .about-text {
    margin-top: 30px;
  }

  .testimonial-text_block {
    height: 270px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-img_block {
    height: 330px;
  }

  .testimonial-pagination {
    bottom: 30px;
    left: 20px;
  }

  .c-footer_inner {
    padding: 50px 5vw;
  }

  .close-btn.cc-show {
    right: 7vw;
  }

  .tab-heading {
    margin-top: 40px;
    margin-left: 5vw;
  }

  .partnerships-text_wrapper {
    padding-bottom: 60px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .partnerships-img_wrapper {
    height: 350px;
  }
}


@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica-light-587ebe5a59211.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajanpro';
  src: url('../fonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}