* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  color: #fff;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
header,
section,
footer {
  position: relative;
}
a {
  color: #fff;
  text-decoration: none;
}
img {
  width: 100%;
}
li {
  list-style: none;
}
.arrow {
  display: inline-block;
  position: relative;
  width: 2rem;
  height: 1.6rem;
}
.arrow span {
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 0.1rem;
}
.arrow span:nth-of-type(1),
.arrow span:nth-of-type(3) {
  right: 0.3rem;
  width: 0.2rem;
  height: 70%;
}
.arrow span:nth-of-type(1) {
  top: -0.1rem;
  transform: rotate(-45deg);
}
.arrow span:nth-of-type(2) {
  top: calc(50% - 0.1rem);
  right: 0;
  width: 100%;
  height: 0.2rem;
}
.arrow span:nth-of-type(3) {
  bottom: -0.1rem;
  transform: rotate(45deg);
}
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #202027;
  z-index: 0;
}
.bg-fixed img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.bg-fixed .overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), #000);
  opacity: 0.75;
}
@media (max-width: 991px) {
  .bg-fixed img:not(.default) {
    display: none;
  }
}
@media (min-width: 992px) {
  .bg-fixed {
    background: #202027;
  }
  .bg-fixed * {
    transition: opacity 1s ease-out;
  }
  .bg-fixed img:not(.active) {
    opacity: 0;
  }
  .bg-fixed img.active {
    opacity: 1;
  }
  .bg-fixed .overlay {
    background: #000;
    opacity: 0.5;
  }
  .bg-fixed .overlay:not(.active) {
    opacity: 0;
  }
}
.container {
  width: 100%;
  margin: auto;
  padding: 0 2rem;
}
.flexbox {
  display: flex;
}
.flexbox.left {
  justify-content: flex-start;
}
.flexbox.center {
  justify-content: center;
}
.flexbox.right {
  justify-content: flex-end;
}
.flexbox.between {
  justify-content: space-between;
}
.flexbox.top {
  align-items: flex-start;
}
.flexbox.middle {
  align-items: center;
}
.flexbox.bottom {
  align-items: flex-end;
}
.flexbox.same-height {
  align-items: stretch;
}
.flexbox.wrap {
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .container {
    width: 55rem;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    width: 70rem;
  }
}
@media (min-width: 992px) {
  .container {
    width: 90rem;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 110rem;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 130rem;
  }
}
h1 {
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 5.5rem;
}
h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
h1,
h3,
h4,
p,
a,
li,
button {
  font-feature-settings: "liga" off;
}
p {
  line-height: 2.4rem;
}
@media (min-width: 576px) {
  h1 {
    font-size: 5.5rem;
    line-height: 6rem;
  }
  p {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {
  p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 6rem;
    line-height: 6.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  p {
    line-height: 3.2rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 6.5rem;
    line-height: 7.5rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  p {
    line-height: 3.5rem;
  }
}
.header .container {
  padding: 2.5rem 2rem;
}
.header .logo {
  width: 15rem;
  height: auto;
}
.header nav {
  justify-content: flex-end;
}
.header nav a + a {
  margin-left: 3rem;
}
.header nav a .text {
  position: relative;
}
.header nav a .arrow {
  margin-left: 0.3rem;
  transform: rotate(-45deg) scale(0.6);
  transition: transform 1s;
}
.header nav a:hover .text:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #fff;
}
.header nav a:hover .arrow {
  transform: rotate(-45deg) scale(0.9);
}
@media (min-width: 576px) {
  .header .container {
    padding: 3rem 0;
  }
  .header .logo {
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .header nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .header .container {
    border-bottom: 0.1rem solid #fff;
  }
}
@media (min-width: 992px) {
  .header .container {
    padding: 4rem 0;
  }
  .header .logo {
    width: 18rem;
  }
  .header nav a .text {
    font-size: 1.8rem;
  }
  .header nav a .arrow {
    margin-left: 0.3rem;
    transform: rotate(-45deg) scale(0.7);
    transition: transform 1s;
  }
  .header nav a:hover .arrow {
    transform: rotate(-45deg) scale(1);
  }
}
@media (min-width: 1200px) {
  .header .logo {
    width: 22rem;
  }
  .header nav a + a {
    margin-left: 4rem;
  }
}
.hero {
  padding-top: 5rem;
}
.hero img {
  position: absolute;
  top: -5.2rem;
  right: 2rem;
  width: 5rem;
}
.hero p {
  width: 100%;
  max-width: 55rem;
  padding: 3rem 5rem 0 0;
}
@media (min-width: 576px) {
  .hero {
    padding-top: 8rem;
  }
  .hero img {
    top: -5.7rem;
    right: calc((100vw - 55rem) / 2);
    width: 6rem;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-top: 5rem;
  }
  .hero img {
    position: relative;
    top: initial;
    right: initial;
  }
  .hero p {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding-top: 8rem;
  }
  .hero img {
    width: 7rem;
  }
  .hero p {
    padding: 4rem 0 0;
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .hero img {
    width: 8rem;
  }
  .hero p {
    max-width: 62rem;

    font-size: 2.2rem;
  }
}
.positions {
  padding: 5rem 0 5rem 2rem;
}
.positions ul {
  position: relative;
  margin-top: 1.5rem;
}
.positions ul:before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -2rem;
  width: 0.1rem;
  height: calc(100% - 2.2rem);
  background: #fff;
}
.positions ul li {
  padding: 0.4rem 0;
}
.positions ul li a {
  width: fit-content;
}
.positions ul li a * {
  pointer-events: none;
}
.positions ul li a .text {
  font-size: 2.5rem;
}
.positions ul li a .arrow {
  height: 2rem;
  margin-left: 1rem;
  opacity: 0;
}
.positions ul li a:hover .arrow {
  margin-left: 2rem;
  opacity: 1;
  transition: margin 1s ease-out, opacity 1s;
}
@media (min-width: 576px) {
  .positions {
    padding-left: 0;
  }
  .positions .container {
    padding-left: 8rem;
  }
}
@media (min-width: 767px) {
  .positions .container {
    padding-left: 10rem;
  }
  .positions ul:before {
    left: -3rem;
  }
  .positions ul li .text {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .positions {
    padding: 8rem 0 1rem;
  }
  .positions .container {
    padding-left: 12rem;
  }
  .positions ul li a {
    transition: opacity 0.4s;
  }
  .positions ul li a .text {
    font-size: 3.2rem;
  }
  .positions ul li a:hover {
    opacity: 1;
  }
}
.footer {
  padding: 3rem 0;
}
.footer nav {
  justify-content: flex-start;
  padding-bottom: 5rem;
}
.footer nav a + a {
  margin-left: 3rem;
}
.footer nav a .text {
  position: relative;
}
.footer nav a .arrow {
  margin-left: 0.3rem;
  transform: rotate(-45deg) scale(0.6);
  transition: transform 1s;
}
.footer nav a:hover .text:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #fff;
}
.footer nav a:hover .arrow {
  transform: rotate(-45deg) scale(0.9);
}
.footer .copy {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6rem;
  text-align: right;
}
.footer .copy.fixed {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}
@media (min-width: 576px) {
  .footer .copy.fixed {
    right: calc((100vw - 55rem) / 2);
    bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .footer nav {
    display: none;
  }
  .footer .copy.fixed {
    right: calc((100vw - 70rem) / 2);
  }
}
@media (min-width: 992px) {
  .footer {
    padding-top: 2rem;
  }
  .footer .copy.fixed {
    right: calc((100vw - 90rem) / 2);
  }
}
@media (min-width: 1200px) {
  .footer .copy.fixed {
    right: calc((100vw - 110rem) / 2);
  }
}
@media (min-width: 1440px) {
  .footer .copy.fixed {
    right: calc((100vw - 130rem) / 2);
  }
}
