:root {
  --delta: calc(100vw * 10/1920);
  --font-family: "Roboto", sans-serif;
}
@media (max-width: 991px) {
  :root {
    --delta: 10px;
  }
}

body {
  background-color: black;
  font-family: var(--font-family);
  color: white;
  font-size: calc(1.8 * var(--delta));
}

* > *:last-child {
  margin-bottom: 0px !important;
}

.container, .row {
  --bs-gutter-x: calc(3*var(--delta));
  --bs-gutter-y: 0;
}

.landing .container {
  max-width: calc(170 * var(--delta));
}
.landing section.iframe {
  margin-bottom: calc(3 * var(--delta));
}
.landing section.iframe iframe {
  display: block;
  width: 100%;
  height: calc(100vh - 30 * var(--delta));
  overflow: hidden;
  border: none;
  height: calc(100vh - 30 * var(--delta));
  overflow: hidden;
}

.landing section.content {
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: calc(3 * var(--delta));
}
.landing section.content p {
  margin-bottom: calc(2.5 * var(--delta));
  font-size: calc(1.8 * var(--delta));
}
.landing footer {
  font-weight: bold;
  text-transform: uppercase;
  font-size: calc(1.8 * var(--delta));
  padding-bottom: calc(5 * var(--delta));
}
.landing footer .container .row .col {
  display: flex;
  justify-content: flex-end;
}
.landing footer .container .row .col ul {
  display: flex;
  margin: 0px;
  padding: 0px;
  justify-content: flex-end;
}
.landing footer .container .row .col ul li {
  margin-right: calc(2 * var(--delta));
  display: block;
}
.landing footer .container .row .col ul li:last-child {
  margin-right: 0px;
}
.landing footer .container .row .col ul li > a {
  display: block;
  text-decoration: none;
  padding: calc(0.5 * var(--delta)) 0px;
  position: relative;
  color: white;
  transition: all 0.3s ease;
}
.landing footer .container .row .col ul li > a:hover:after {
  transform: scaleX(1);
}
.landing footer .container .row .col ul li > a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  border-bottom: solid 2px white;
  transform-origin: center;
  transition: all 0.3s ease;
  transform: scaleX(0);
}/*# sourceMappingURL=style.css.map */
