/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 987px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 987px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

@font-face {
  font-family: F37Attila-Regular;
  font-style: normal;
  font-display: swap;
  src: url("../../fonts/F37Attila-Regular.otf") format("opentype");
}
@font-face {
  font-family: TTNorms-Regular;
  font-style: normal;
  font-display: swap;
  src: url("../../fonts/TTNorms-Regular.otf") format("opentype");
}
@font-face {
  font-family: CentraNo2;
  src: url(../../fonts/CentraNo2-Light.eot);
  src: url(../../fonts/CentraNo2-Light.eot?#iefix) format("embedded-opentype"), url(../../fonts/CentraNo2-Light.woff2) format("woff2"), url(../../fonts/CentraNo2-Light.woff) format("woff"), url(../../fonts/CentraNo2-Light.ttf) format("truetype"), url(../../fonts/CentraNo2-Light.svg#CentraNo2-Light) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.h2 {
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-size: 32px;
}
@media (min-width: 992px) {
  .h2 {
    font-size: 35px;
  }
}
@media (min-width: 1300px) {
  .h2 {
    font-size: 38px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

:root {
  --container: calc(100% - 40px);
  --container-small: var(--container);
  --spacing-3xl: 80px;
}
@media (min-width: 768px) {
  :root {
    --container: min(100% - 40px, 700px);
    --container-small: min(100% - 40px, 650px);
    --spacing-3xl: 100px;
  }
}
@media (min-width: 992px) {
  :root {
    --container: min(100% - 40px, 900px);
    --container-small: min(100% - 40px, 800px);
    --spacing-3xl: 120px;
  }
}
@media (min-width: 1300px) {
  :root {
    --container: min(100% - 40px, 1100px);
    --container-small: min(100% - 40px, 950px);
    --spacing-3xl: 150px;
  }
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
  font-weight: 400;
  background-color: #ffffff;
  color: #424529;
  overflow-x: hidden !important;
  font-family: "adobe-kis", sans-serif;
  transition: background-color 1.5s ease-in-out;
}
body.bg-change {
  opacity: 1;
  transition-delay: 1s;
  background-color: #b2b58f;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.media-wrapper {
  position: relative;
  overflow: hidden;
}
.media-wrapper img,
.media-wrapper video,
.media-wrapper picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg {
  position: relative;
}
.bg img {
  top: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  position: absolute;
  opacity: 0;
  transition: 2s 0s;
  transform: translateY(100%);
}
.bg img.shapes-desktop {
  display: none;
}
@media (min-width: 768px) {
  .bg img.shapes-desktop {
    display: block;
  }
}
.bg img.shapes-mobile {
  display: block;
}
@media (min-width: 768px) {
  .bg img.shapes-mobile {
    display: none;
  }
}
.bg img#bg-strip {
  top: 0;
  width: 100%;
  transform: translateY(0);
  transition: 0s 0s;
  opacity: 1;
  display: none;
}
@media (min-width: 768px) {
  .bg img#bg-strip {
    display: block;
  }
}
.bg img#shapes-left {
  left: 0;
  width: 17%;
}
.bg img#shapes-center-one {
  left: 17%;
  width: 16.2857143%;
}
.bg img#shapes-center-two {
  transform: translateY(0);
  transition: 0s 0s;
  left: 33.2857143%;
  width: 16.75%;
  opacity: 1;
}
.bg img#shapes-center-three {
  left: 50%;
  width: 16.7142857%;
  transform: translateY(0);
  transition: 0s 0s;
  opacity: 1;
}
.bg img#shapes-center-four {
  left: 66.7142857%;
  width: 16.7142857%;
  transform: translateY(0);
  transition: 0s 0s;
  opacity: 1;
}
.bg img#shapes-right {
  right: 0;
  width: 16.6428571%;
}
.bg img#shapes-mobile-left {
  left: 0;
  width: 53.0612245%;
}
.bg img#shapes-mobile-center {
  left: 53.0612245%;
  width: 13.1519274%;
  opacity: 1;
  transition: 0s;
  transform: translateY(0%);
}
.bg img#shapes-mobile-right {
  right: 0;
  width: 33.7868481%;
}
.bg img#shapes-desktop-left {
  left: 0;
  width: 33.35%;
  z-index: 999;
}
.bg img#shapes-desktop-center {
  left: 33.33%;
  width: 33.35%;
  z-index: 99;
  opacity: 1;
  transition: 0s;
  transform: translateY(0%);
}
.bg img#shapes-desktop-right {
  right: 0;
  width: 33.35%;
}
.bg.in-view img {
  opacity: 1;
  transform: translateY(0);
}
.bg.in-view img#shapes-left {
  transition-delay: 0s;
}
.bg.in-view img#shapes-center-one {
  transition-delay: 0.5s;
}
.bg.in-view img#shapes-center-two {
  transition-delay: 1s;
}
.bg.in-view img#shapes-center-three {
  transition-delay: 1s;
}
.bg.in-view img#shapes-center-four {
  transition-delay: 0.5s;
}
.bg.in-view img#shapes-right {
  transition-delay: 0s;
}
.bg.in-view img#shapes-mobile-center {
  transition-delay: 0s;
}

footer {
  background-color: #424529;
  color: #ffffff;
  padding-top: var(--spacing-3xl);
}
footer .footer-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  footer .footer-inner {
    gap: 20px;
  }
}
footer .footer-cols {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  footer .footer-cols {
    flex-direction: row;
  }
}
footer .footer-col {
  padding-top: 30px;
  border-top: 1px solid currentColor;
}
@media (min-width: 992px) {
  footer .footer-col {
    flex: 1;
    border-top: none;
    border-left: 1px solid currentColor;
    padding-top: 0;
    padding-left: 20px;
  }
}
@media (min-width: 1300px) {
  footer .footer-col {
    gap: 60px;
  }
}
footer .footer-col-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 992px) {
  footer .footer-col-inner {
    align-items: flex-start;
  }
}
footer .contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
@media (min-width: 992px) {
  footer .contacts {
    align-items: flex-start;
    text-align: left;
  }
}
footer .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}
@media (min-width: 992px) {
  footer .contact {
    align-items: flex-start;
  }
}
footer .contact .heading {
  font-family: "ivymode", sans-serif;
  font-size: 20px;
}
footer .contact a {
  color: inherit;
  display: block;
  font-size: 18px;
}
footer .logo svg {
  height: 65px;
}
footer #credit {
  display: flex;
  justify-content: center;
  padding-block: 10px;
  font-size: 14px;
}
@media (min-width: 992px) {
  footer #credit {
    justify-content: flex-end;
  }
}
footer #credit a {
  color: inherit;
}

.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .video-wrapper {
  position: relative;
}
.banner .video-wrapper .video-desktop {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .banner .video-wrapper .video-desktop {
    display: block;
  }
}
.banner .video-wrapper .video-mobile {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .banner .video-wrapper .video-mobile {
    display: none;
  }
}
.banner .video-wrapper img {
  bottom: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  position: absolute;
  opacity: 0;
  transition: 2s 0s;
  transform: translateY(100%);
}
.banner .video-wrapper img.shapes-desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner .video-wrapper img.shapes-desktop {
    display: block;
  }
}
.banner .video-wrapper img.shapes-mobile {
  display: block;
  bottom: -0.5px;
}
@media (min-width: 768px) {
  .banner .video-wrapper img.shapes-mobile {
    display: none;
  }
}
.banner .video-wrapper img#shapes-mobile-left {
  left: 0;
  width: 66.2131519%;
}
.banner .video-wrapper img#shapes-mobile-right {
  right: 0;
  width: 33.7868481%;
}
.banner .video-wrapper img#shapes-desktop-left {
  left: 0;
  bottom: -33%;
  width: 33.35%;
  z-index: 999;
}
.banner .video-wrapper img#shapes-desktop-center {
  left: 33.3%;
  width: 33.35%;
  bottom: -33%;
  z-index: 99;
}
.banner .video-wrapper img#shapes-desktop-right {
  right: -1px;
  bottom: -33%;
  width: 33.45%;
  translate: 0 0.5%;
}
.banner .video-wrapper.in-view img {
  opacity: 1;
  transition-delay: 1s;
  transform: translateY(0);
}
.banner .video-wrapper.in-view img.shapes-desktop {
  transition-delay: 2s;
}
.banner .video-wrapper {
  width: 100%;
}
.banner .video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .banner .video-wrapper video {
    width: 100%;
  }
}
.banner .video-arrow {
  position: absolute;
  display: none;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .banner .video-arrow {
    bottom: 75px;
  }
}
.banner .video-arrow.visible {
  display: block;
  cursor: pointer;
}
.banner .video-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg) skew(-10deg, -10deg);
  margin: -5px;
  -webkit-animation: animate 2.4s infinite;
          animation: animate 2.4s infinite;
}
@media (min-width: 768px) {
  .banner .video-arrow span {
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    margin: -7.5px;
  }
}
.banner .video-arrow span:nth-child(2) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
@-webkit-keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px) skew(-10deg, -10deg);
  }
  40% {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px) skew(-10deg, -10deg);
  }
  60% {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px) skew(-10deg, -10deg);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px) skew(-10deg, -10deg);
  }
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px) skew(-10deg, -10deg);
  }
  40% {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px) skew(-10deg, -10deg);
  }
  60% {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px) skew(-10deg, -10deg);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px) skew(-10deg, -10deg);
  }
}

.body-section {
  padding-top: calc(57vw + var(--spacing-3xl));
  margin-bottom: var(--spacing-3xl);
}
@media (min-width: 768px) {
  .body-section {
    padding-top: calc(20vw + var(--spacing-3xl));
  }
}
.body-section .body-content {
  display: flex;
  z-index: 999;
  position: relative;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  width: 500px;
  font-family: "ivymode", sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .body-section .body-content {
    width: 550px;
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .body-section .body-content {
    width: 700px;
    font-size: 38px;
  }
}
@media (min-width: 1300px) {
  .body-section .body-content {
    width: 709px;
  }
}
.body-section .body-content .description {
  opacity: 0;
  transition: 2s 0s;
  transform: translateY(15px);
  color: #424529;
}
.body-section .body-content .subheading {
  opacity: 0;
  transition: 2s 1s;
  margin-top: 40px;
  transform: translateY(15px);
  color: #ffffff;
}
.body-section.in-view .description,
.body-section.in-view .subheading {
  opacity: 1;
  transition-delay: 1.5s;
  transform: translateY(0);
}

.image-section {
  margin-block: var(--spacing-3xl);
}
.image-section .image-section-inner {
  max-width: var(--container-small);
  margin-inline: auto;
  width: 100%;
}
.image-section .media-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
}

.schedule-section {
  margin-block: var(--spacing-3xl);
}
.schedule-section .schedule-section-inner {
  max-width: var(--container-small);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .schedule-section .schedule-section-inner {
    gap: 60px;
  }
}
.schedule-section .schedule-heading {
  text-align: center;
  color: #ffffff;
}
.schedule-section .schedule-table {
  width: 100%;
  color: #424529;
}
.schedule-section thead td,
.schedule-section thead th,
.schedule-section tfoot td,
.schedule-section tfoot th {
  font-family: "ivymode", sans-serif;
  font-size: 22px;
  color: #ffffff;
}
.schedule-section tbody td {
  font-size: 18px;
}
@media (min-width: 768px) {
  .schedule-section tbody td {
    font-size: 20px;
  }
}
.schedule-section tr.highlight {
  background-color: rgba(128, 130, 69, 0.4);
}
.schedule-section th,
.schedule-section td {
  text-align: left;
  padding-block: 10px;
  border-top: 1px solid #424529;
  padding-left: 15px;
}

.spec-section {
  margin-block: var(--spacing-3xl);
}
.spec-section .spec-section-inner {
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .spec-section .spec-section-inner {
    gap: 60px;
  }
}
.spec-section .spec-heading {
  color: #ffffff;
}
.spec-section .spec-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 100%;
}
@media (min-width: 992px) {
  .spec-section .spec-items {
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
.spec-section .spec-item {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}
.spec-section .spec-item-icon {
  height: 80px;
}
.spec-section .spec-item-icon img {
  height: 100%;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  max-width: 100%;
}
.spec-section .spec-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
}
.spec-section .spec-item .text-large {
  font-family: "ivymode", sans-serif;
  font-size: 18px;
}
@media (min-width: 1300px) {
  .spec-section .spec-item .text-large {
    font-size: 22px;
  }
}
.spec-section .spec-item .text-small {
  font-size: 15px;
}
@media (min-width: 1300px) {
  .spec-section .spec-item .text-small {
    font-size: 18px;
  }
}
