/* Main */
* {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  color: inherit;
  z-index: 0;
  text-align: inherit;
  font-size: inherit;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100vw;
}

/* Text */
h1, h2, h3 {
  font-family: arponasans, ainslie-sans, -apple-system, Arial, sans-serif;
}
h4, h5, h6, p, a, b, i, li, label, button, input, article, textarea, address {
  font-family: ainslie-sans, -apple-system, Arial, sans-serif;
}
h1 {
  font-size: 3.75rem;
  letter-spacing: 5px;
}
h2 {
  font-size: 3.25rem;
}
h3 {
  font-size: 3rem;
}
h4 {
  font-size: 2.25rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.125rem;
}
p, a, li, label, button, address {
  font-size: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition-duration: 0.2s;
}
a:hover {
  text-decoration: underline;
}
nav a {
  font-weight: 500;
}
b, .bold, strong {
  font-weight: 600;
}
.thin {
  font-weight: 300;
}
.xthin {
  font-weight: 200;
}
.semi {
  font-weight: 500;
}
.caps {
  text-transform: uppercase;
}
.center {
  text-align: center;
}
address {
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(255,255,255,0.00);
  width: 100vw;
  height: 100px;
  transition-duration: 0.5s;
  transition-property: height, backdrop-filter, -webkit-backdrop-filter, box-shadow, background-color;
}
header, header a, header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
header a {
  font-size: 22px;
  transform: scale(0.95);
  margin: 0 15px;
  filter: drop-shadow(0 0 0.2rem rgba(0,0,0,0.25));
  transition: 0.3s ease-out;
  transition-property: transform;
}
header a:hover {
  text-decoration: none;
  transform: scale(1.0);
}
header.scroll {
  background: rgba(250,250,250,0.75);
  height: 65px;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 0 1px rgba(0,0,0,0.50);
  color: #000;
}

/* Navigation */
#lang {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 45px;
  background-color: rgba(250,250,250,0.75);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  transform: translateY(-25px);
  transition: 0.3s ease-in-out;
  transition-delay: 0.2s;
  opacity: 0;
  transition-property: transform, opacity;
}
#lang a {
  padding: 10px;
}
nav #langBtn:hover+#lang, #lang:hover, nav #langBtn:focus+#lang {
  transform: translateY(0);
  opacity: 100;
}

/* Footer */
footer {
  background-color: #FFFFFF;
  width: 100vw;
  padding: 50px 0px;
  color: #000000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 200px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
#legal {
  display: block;
}
#contact {
  display: block;
}

/* Scroll To Top Button */
#scrollToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: #e7c052;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.5);
  transition: 0.4s ease;
  transition-property: transform;
  transform: translateY(80px);
}
#scrollToTop svg {
  fill: #fff;
  width: 25px;
  height: 25px;
  bottom: 2px;
}

/* Images */
img {
  pointer-events: none;
  touch-action: none;
}

/* Buttons */
.btn {
  width: 225px;
  height: 50px;
  background: #e7c052;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
  letter-spacing: 2px;
  transition-duration: 0.1s;
}
.btn:hover {
  background: rgba(0,0,0,0.00);
  color: #e7c052;
}
.btn.bdr {
  border: 2px solid #e7c052;
  border-radius: 4px;
}
a.btn:hover {
  text-decoration: none;
}

/* Popups Elements */
.exit {
  position: absolute;
  top: 50px;
  right: 75px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

/* Forms */
form {
  padding-top: 10px;
  height: auto;
}
input {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: none;
  box-shadow: inset 0 0 0.5rem rgba(0,0,0,0.25);
  color: #000;
}
label {
  margin: 10px 0;
}
form .btn {
  width: 100%;
  margin-top: 15px;
  left: -10px;
  right: -10px;
}

/* Tablet */
@media (max-width: 800px) {
  /* Fonts */
  h1 {
    font-size: 46px;
    letter-spacing: 5px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p, a, li, label, button, address {
    font-size: 14px;
  }

  /* Header */
  header.scroll {
    height: 50px;
  }

  /* Buttons */
  .btn {
    width: 215px;
    height: 45px;
  }

  /* Scroll To Top Button */
  #scrollToTop {
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 25px;
  }
  #scrollToTop svg {
    width: 20px;
    height: 20px;
    bottom: 1px;
  }
}

/* Mobile */
@media (max-width: 450px) {
  /* Fonts */
  h1 {
    font-size: 32px;
    letter-spacing: 5px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 16px;
  }
  p, a, li, label, button, address {
    font-size: 16px;
  }

  /* Header */
  header a {
    font-size: 18px;
  }

  /* Navigation */
  #lang {
    top: 43px;
  }
  nav #langBtn:hover+#lang, #lang:hover {
    transform: translateY(0);
    opacity: 100;
  }
}