@import url('normalize.css');
body {
  background: #000;
  font-size: 16px;
  color: #999;
  font-family: 'Roboto', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased!important;
  --primary-color: #FF3201;
  --headline-font: 'Bebas Neue';
  padding-right: 60px;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: block;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
}
body.expanded:before {
  opacity: 0.9;
}
.container {
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}
figure {
  margin: 0;
  display: flex;
}
ul {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: var(--headline-font);
  font-weight: 400;
  line-height: 1;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0;
}
h1 {
  font-size: 3rem;
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 4rem;
  }
}
h2 {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 3rem;
  }
}
button {
  border: none;
  margin: 0;
  border-radius: 6px;
  background: var(--primary-color);
  height: 65px;
  font-family: var(--headline-font);
  font-size: 1.5rem;
  color: #000;
  transition: all 0.35s ease-out;
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}
a {
  transition: all 0.35s ease-out;
}
a:hover {
  opacity: 0.8;
}
header {
  padding-top: 65px;
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-center {
  position: absolute;
  top: 73px;
  left: 50%;
  transform: translateX(-50%);
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
header nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  header {
    position: fixed;
    width: 100%;
  }
  header .logo-center svg {
    width: 61px;
    height: auto;
  }
  header nav ul {
    gap: 50px;
  }
  header nav ul li a {
    font-size: 1rem;
  }
}
#menu {
  height: 100%;
  position: fixed;
  background: #000;
  max-width: 550px;
  width: 100%;
  transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(100%);
  right: 60px;
  top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  #menu {
    right: 70px;
  }
}
#menu .menu-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu .menu-inner ul {
  padding: 0;
  list-style: none;
  text-align: center;
}
#menu .menu-inner ul li a {
  text-transform: uppercase;
  font-family: var(--headline-font);
  color: var(--primary-color);
  text-align: center;
  font-size: 3rem;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
  position: relative;
}
#menu .menu-inner ul li a:after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 40%;
}
#menu .menu-inner ul li a:hover {
  opacity: 1;
}
#menu .menu-inner ul li a:hover:after {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #menu .menu-inner ul li a {
    font-size: 4rem;
  }
}
#menu.expanded {
  transform: translateX(0%);
  right: 0px;
  background-color: transparent;
}
#menu #blob {
  top: 0;
  z-index: -1;
  right: 60px;
  transform: translateX(100%);
  height: 100%;
  position: absolute;
}
#menu #blob-path {
  height: 100%;
  fill: #FED057;
}
#menu .hamburger {
  left: 15px;
  position: absolute;
  width: 31px;
  transform: translateY(50vh);
  margin-top: -8px;
  z-index: 9;
  transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  gap: 4px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #menu .hamburger {
    left: 20px;
  }
}
#menu .hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #D9D9D9;
  border-radius: 1px;
}
.footer {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 40px;
}
.footer .copyright {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer p {
  margin-top: 0;
}
.footer p a {
  color: rgba(255, 255, 255, 0.5);
}
.footer ul {
  list-style: none;
  display: flex;
  gap: 13px;
}
.footer ul li a {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .footer {
    box-sizing: border-box;
    margin-top: 50px;
    display: none;
  }
  .footer .container > div {
    max-width: 465px;
  }
}
@media screen and (min-width: 1400px) {
  .footer {
    margin-top: 215px;
  }
  .footer .container > div {
    max-width: 545px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer .socials {
    gap: 24px;
    align-items: flex-start;
    margin-top: -8px;
  }
  .footer .copyright {
    margin-top: 0;
  }
  .footer .copyright ul {
    margin-left: 44px;
  }
}
.hero {
  padding-top: 70px;
  max-width: 534px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  margin-bottom: 40px;
}
.hero span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--headline-font);
  font-size: 2rem;
  color: #444;
}
.hero button {
  width: 100%;
  max-width: 494px;
}
.hero .socials {
  margin-top: 50px;
}
.hero .hero-footer {
  padding-bottom: 0;
}
.hero .hero-footer .copyright {
  display: none;
}
.hero .col {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.hero .col > div {
  width: min-content;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero .col > div a {
  display: flex;
}
.hero .col > div a svg path {
  transition: all 0.35s ease-out;
}
.hero .col > div a:hover {
  opacity: 1;
}
.hero .col > div a#myBtnVideo:hover svg path:nth-child(2) {
  fill: #FF4417;
}
@media screen and (min-width: 768px) {
  .hero .col {
    gap: 45px;
  }
}
@media screen and (min-width: 992px) {
  .hero {
    margin-left: 0;
    padding-top: 222px;
    box-sizing: border-box;
    max-width: none;
    margin-right: 0;
    padding-left: 0;
    position: fixed;
    width: 100%;
  }
  .hero .container > div {
    max-width: 465px;
  }
  .hero h1 {
    margin-bottom: 48px;
  }
  .hero span {
    margin-bottom: 36px;
  }
  .hero .col {
    justify-content: flex-start;
  }
  .hero .hero-footer {
    display: block;
    max-width: 465px;
  }
  .hero .hero-footer .socials {
    gap: 56px;
  }
}
@media screen and (min-width: 1400px) {
  .hero .container > div {
    max-width: 545px;
  }
  .hero .hero-footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 565px;
  }
  .hero .hero-footer p {
    margin-bottom: 0;
  }
  .hero .hero-footer .socials {
    gap: 24px;
    align-items: flex-start;
    margin-top: -6px;
  }
  .hero .hero-footer .copyright {
    margin-top: 0;
    width: calc(100% - 137px);
    display: flex;
    justify-content: space-between;
  }
  .hero .hero-footer .copyright ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.swiper {
  padding-top: 72px;
  padding-bottom: 15px;
}
.swiper .swiper-wrapper {
  flex-direction: column;
}
.swiper .swiper-slide {
  padding-bottom: 72px;
}
.swiper .swiper-slide h2 {
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}
.swiper .swiper-slide figure {
  display: flex;
  justify-content: center;
}
.swiper .swiper-slide figure img {
  width: 220px;
}
@media screen and (min-width: 992px) {
  .swiper {
    position: absolute;
    right: 0;
    top: 192px;
    padding-top: 160px;
    width: 46%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    max-width: 760px;
    left: 50%;
    margin: 0;
    display: block;
    height: 3400px;
    margin-top: -500px;
    /* &:before {
            content: "";
            display: block;
            width: 100%;
            height: 400px;
            background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
            position: absolute;
            z-index: 9;
        } */
  }
  .swiper:after {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    z-index: 9;
    bottom: 0;
  }
  .swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  .swiper .swiper-slide {
    display: flex !important;
    align-items: center;
    padding: 0;
  }
  .swiper .swiper-slide h2 {
    text-align: left;
    margin-left: 0;
    margin-bottom: 0;
  }
  .swiper .swiper-slide figure {
    justify-content: flex-start;
  }
  .swiper .swiper-slide.left {
    flex-direction: row-reverse;
  }
  .swiper .swiper-slide.left h2 {
    margin-left: auto;
    margin-right: 0;
  }
  .swiper .swiper-slide.right {
    flex-direction: row;
  }
}
@media screen and (min-width: 1400px) {
  .swiper {
    padding-left: 0;
    margin-left: -20px;
    height: 4200px;
    margin-top: -450px;
    width: 48%;
  }
  .swiper:before {
    height: 350px;
  }
  .swiper .swiper-slide h2 {
    max-width: 310px;
  }
  .swiper .swiper-slide figure img {
    width: auto;
  }
}
ul.socials {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
  gap: 56px;
}
ul.socials li a {
  display: flex;
}
.article .hero {
  max-width: none;
}
.article .hero h1 {
  margin-bottom: 16px;
}
.article article {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #999;
  padding-bottom: 40px;
}
.article article h2,
.article article h3 {
  font-family: 'Roboto', sans-serif;
  color: #999;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 3.25rem;
}
.article article h2 {
  font-size: 1.25rem;
}
.article article h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}
.article article ul {
  padding-left: 20px;
}
.article article ul.no-style {
  list-style: none;
}
.article article a {
  color: #999;
}
@media screen and (min-width: 992px) {
  .article .container {
    display: flex;
  }
  .article .hero {
    width: 50%;
  }
  .article article {
    width: 50%;
    padding-top: 200px;
    font-size: 1.25rem;
    padding-bottom: 80px;
    margin-left: 50%;
  }
  .article article h2 {
    font-size: 1.5rem;
  }
  .article + footer {
    position: absolute;
    top: 580px;
    width: 100%;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  background: #FEE5DF;
  margin: 120px auto;
  max-width: 640px;
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.modal-content iframe {
  width: 100%;
}
.close {
  position: absolute;
  cursor: pointer;
  transition: all 0.35s ease-out;
  top: -46px;
  right: 0;
}
.close:hover,
.close:focus {
  opacity: 0.8;
}
#myModalVideo .modal-content {
  max-width: 840px;
  display: flex;
}
#myModalVideo .modal-content iframe {
  aspect-ratio: 1.6;
}
#myBtnVideo:hover + .fullscreen-video-background {
  opacity: 1;
}
.fullscreen-video-background {
  background: #000;
  position: fixed;
  width: 100%;
  z-index: -99;
  overflow: hidden;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.35s ease-out;
}
.fullscreen-video-background #_youtube-iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.fullscreen-video-background #_youtube-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}
@media (min-aspect-ratio: 16/9) {
  .fullscreen-video-background #_youtube-iframe-wrapper #_youtube-iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fullscreen-video-background #_youtube-iframe-wrapper #_youtube-iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
