@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap);@import url(https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap);/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
div, p,
h1, h2, h3, h5, h5, h6,
li {
  font-family: "Roboto", sans-serif;
}

h1, .title {
  font-size: 48px;
  font-weight: 300;
  line-height: 70px;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 768px) {
  h1, .title {
    font-size: 30px;
    line-height: 50px;
  }
}
h1.style-2, .title.style-2 {
  font-size: 44px;
  line-height: 62px;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  h1.style-2, .title.style-2 {
    font-size: 28px;
    line-height: 44px;
  }
}

h2, .title2 {
  font-size: 37px;
  font-weight: 400;
  line-height: 63px;
  text-transform: none;
  font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 768px) {
  h2, .title2 {
    font-size: 26px;
    line-height: 40px;
  }
}

h3, .title3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  h3, .title3 {
    font-size: 14px;
    line-height: 30px;
  }
}

h4 {
  font-size: 16px;
  line-height: 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 14px;
    line-height: 30px;
  }
}

p, li {
  font-size: 16px;
  line-height: 35px;
  font-weight: 400;
  color: #8A8A8A;
}
@media screen and (max-width: 768px) {
  p, li {
    font-size: 14px;
    line-height: 30px;
  }
}
p + *, li + * {
  margin-top: 2.5em;
}
p strong, li strong {
  font-weight: 700;
}

.btn {
  color: #161616;
  font-size: 11px;
  letter-spacing: 4px;
  line-height: 15px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-end;
  padding-left: 22px;
  height: 30px;
  border-left: 1px solid currentColor;
}
.btn svg {
  margin-left: 15px;
  margin-bottom: 4px;
  transition: 0.25s ease-in-out;
}
.btn:hover svg {
  transform: translateX(5px);
}

.btn-group {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  border-left: 1px solid currentColor;
}
@media screen and (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }
}
.btn-group .btn {
  border-left: none;
}

:root {
  --gutter: 30px;
  --container: 1250px;
}

.container {
  max-width: var(--container);
  box-sizing: border-box;
  padding: 0 var(--gutter);
  width: 100%;
  margin: 0 auto;
}

main {
  overflow-x: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  --gap: 15px;
  margin: 0 calc( var(--gap) * -1 );
}
.row--gap-x {
  --gap: 50px;
}

.col-1 {
  width: 10%;
  padding: 0 var(--gap);
}

.col-push-0 {
  margin-left: 0%;
}

.col-2 {
  width: 20%;
  padding: 0 var(--gap);
}

.col-push-1 {
  margin-left: 10%;
}

.col-3 {
  width: 30%;
  padding: 0 var(--gap);
}

.col-push-2 {
  margin-left: 20%;
}

.col-4 {
  width: 40%;
  padding: 0 var(--gap);
}

.col-push-3 {
  margin-left: 30%;
}

.col-5 {
  width: 50%;
  padding: 0 var(--gap);
}

.col-push-4 {
  margin-left: 40%;
}

.col-6 {
  width: 60%;
  padding: 0 var(--gap);
}

.col-push-5 {
  margin-left: 50%;
}

.col-7 {
  width: 70%;
  padding: 0 var(--gap);
}

.col-push-6 {
  margin-left: 60%;
}

.col-8 {
  width: 80%;
  padding: 0 var(--gap);
}

.col-push-7 {
  margin-left: 70%;
}

.col-9 {
  width: 90%;
  padding: 0 var(--gap);
}

.col-push-8 {
  margin-left: 80%;
}

.col-10 {
  width: 100%;
  padding: 0 var(--gap);
}

.col-push-9 {
  margin-left: 90%;
}

@media screen and (max-width: 900px) {
  .col-tab-1 {
    width: 10%;
    padding: 0 var(--gap);
  }

  .col-tab-push-0 {
    margin-left: 0%;
  }

  .col-tab-2 {
    width: 20%;
    padding: 0 var(--gap);
  }

  .col-tab-push-1 {
    margin-left: 10%;
  }

  .col-tab-3 {
    width: 30%;
    padding: 0 var(--gap);
  }

  .col-tab-push-2 {
    margin-left: 20%;
  }

  .col-tab-4 {
    width: 40%;
    padding: 0 var(--gap);
  }

  .col-tab-push-3 {
    margin-left: 30%;
  }

  .col-tab-5 {
    width: 50%;
    padding: 0 var(--gap);
  }

  .col-tab-push-4 {
    margin-left: 40%;
  }

  .col-tab-6 {
    width: 60%;
    padding: 0 var(--gap);
  }

  .col-tab-push-5 {
    margin-left: 50%;
  }

  .col-tab-7 {
    width: 70%;
    padding: 0 var(--gap);
  }

  .col-tab-push-6 {
    margin-left: 60%;
  }

  .col-tab-8 {
    width: 80%;
    padding: 0 var(--gap);
  }

  .col-tab-push-7 {
    margin-left: 70%;
  }

  .col-tab-9 {
    width: 90%;
    padding: 0 var(--gap);
  }

  .col-tab-push-8 {
    margin-left: 80%;
  }

  .col-tab-10 {
    width: 100%;
    padding: 0 var(--gap);
  }

  .col-tab-push-9 {
    margin-left: 90%;
  }
}
@media screen and (max-width: 768px) {
  .col-mob-1 {
    width: 10%;
    padding: 0 var(--gap);
  }

  .col-mob-push-0 {
    margin-left: 0%;
  }

  .col-mob-2 {
    width: 20%;
    padding: 0 var(--gap);
  }

  .col-mob-push-1 {
    margin-left: 10%;
  }

  .col-mob-3 {
    width: 30%;
    padding: 0 var(--gap);
  }

  .col-mob-push-2 {
    margin-left: 20%;
  }

  .col-mob-4 {
    width: 40%;
    padding: 0 var(--gap);
  }

  .col-mob-push-3 {
    margin-left: 30%;
  }

  .col-mob-5 {
    width: 50%;
    padding: 0 var(--gap);
  }

  .col-mob-push-4 {
    margin-left: 40%;
  }

  .col-mob-6 {
    width: 60%;
    padding: 0 var(--gap);
  }

  .col-mob-push-5 {
    margin-left: 50%;
  }

  .col-mob-7 {
    width: 70%;
    padding: 0 var(--gap);
  }

  .col-mob-push-6 {
    margin-left: 60%;
  }

  .col-mob-8 {
    width: 80%;
    padding: 0 var(--gap);
  }

  .col-mob-push-7 {
    margin-left: 70%;
  }

  .col-mob-9 {
    width: 90%;
    padding: 0 var(--gap);
  }

  .col-mob-push-8 {
    margin-left: 80%;
  }

  .col-mob-10 {
    width: 100%;
    padding: 0 var(--gap);
  }

  .col-mob-push-9 {
    margin-left: 90%;
  }
}
@media screen and (max-width: 768px) {
  .hide-mob {
    display: none;
  }
}

header {
  position: absolute;
  width: 100%;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  header {
    margin-top: 20px;
  }
}

.section {
  padding: 165px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.banner {
  box-sizing: border-box;
  background: #161616;
  padding: 0;
}
.banner__wrapper {
  display: flex;
  min-height: 100vh;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .banner__wrapper {
    min-height: unset;
  }
}
.banner__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__image img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -31%;
}
@media screen and (max-width: 768px) {
  .banner__image img {
    margin-top: 0;
    margin-bottom: 50px;
  }
}

.section-1 h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}

.section-2 {
  background: #F1F1F1;
}
.section-2 h2 {
  margin-bottom: 40px;
  text-transform: capitalize;
}

.accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .accordion {
    padding: 30px 0;
  }
}
.accordion-title {
  color: #161616;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}
.accordion-title::before, .accordion-title::after {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.1s ease-in-out;
  width: 12px;
  text-align: center;
}
.accordion-title::after {
  content: "-";
  opacity: 0;
}
.accordion-content {
  display: none;
  margin-top: 1em;
}
.accordion-content p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .accordion-content p {
    font-size: 14px;
  }
}
.accordion-content p + * {
  margin-top: 1em;
}
.accordion-content p + ol,
.accordion-content p + ul {
  margin-top: 0.5em;
}
.accordion-content li + * {
  margin-top: 0.5em;
}
.accordion-content a {
  text-decoration: underline;
  color: currentColor;
}
.accordion-content .quote {
  opacity: 0.9;
  padding-left: 3em;
  margin: 2em 0;
}
.accordion.is-active .accordion-title::before {
  opacity: 0;
}
.accordion.is-active .accordion-title::after {
  opacity: 1;
}
.accordion.is-active .accordion-content {
  display: block;
}

.section-3 {
  background: #161616;
  position: relative;
}
.section-3 .section-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section-3 .section-image {
    position: relative;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 100px;
  }
}
.section-3 .section-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-3 .content {
  padding: 0 0 0 16%;
}
@media screen and (max-width: 768px) {
  .section-3 .content {
    padding: 0;
  }
}
.section-3 h4 {
  color: #DEDEDE;
}
.section-3 h4 + * {
  margin-top: 1em;
}
.section-3 p + * {
  margin-top: 2em;
}

.section-4 h1 + *:not(.row) {
  margin-top: 2em;
}
.section-4 h4 {
  margin-top: 2em;
}
.section-4 h4 + *:not(.row) {
  margin-top: 1em;
}
.section-4 p + *:not(.row) {
  margin-top: 1em;
}
.section-4 p .btn {
  margin-top: 2em;
}
.section-4 .col-content {
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .section-4 .col-content {
    max-width: none;
  }
}

.section-5 {
  background: #161616;
  position: relative;
}
.section-5 .section-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section-5 .section-image {
    position: relative;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 100px;
  }
}
.section-5 .section-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-5 .content {
  padding: 0 16% 0 0;
}
@media screen and (max-width: 768px) {
  .section-5 .content {
    padding: 0;
  }
}
.section-5 h4 {
  color: #DEDEDE;
}
.section-5 h4 + * {
  margin-top: 1em;
}
.section-5 p + * {
  margin-top: 2em;
}
.section-5 .btn {
  color: #DEDEDE;
}

.section-6 h1 {
  margin-bottom: 1.5em;
}

.footer {
  background: #161616;
  padding: 70px 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-logo img {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-logo img {
    margin: 0 auto;
  }
}
.footer-logo span {
  margin-left: 20px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #FFFFFF;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer-content {
    margin-top: 40px;
    align-items: center;
  }
}
.footer-content .footer-links {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-content .footer-links li {
  margin: 0;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-links li {
    margin-left: 20px;
  }
}
.footer-content .footer-links li:first-child {
  margin-left: 0;
}
.footer-content .footer-links li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: opacity 0.2s;
  opacity: 0.7;
}
.footer-content .footer-links li a::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -0.2em;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.2s;
  background: currentColor;
  transform-origin: right center;
}
.footer-content .footer-links li a:hover {
  opacity: 1;
}
.footer-content .footer-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.footer-content .footer-social {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-content .footer-social li {
  margin: 0;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-social li {
    margin-left: 20px;
  }
}
.footer-content .footer-social li:first-child {
  margin-left: 0;
}
.footer-content .footer-social li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 0.7;
}
.footer-content .footer-social li a:hover {
  opacity: 1;
}
.footer-content .footer-note p {
  font-size: 9px;
  line-height: 14px;
  color: #717171;
  text-align: center;
}