:root {
  /* General Colors */
  --green: #45A6A7;
  --red: #D5573B;
  /* Fonts sizes */
  --font-small: clamp(0.6rem, 3vw, 0.8rem);
  --font-normal: clamp(0.8rem, 3vw, 1rem);
  --font-medium: clamp(1rem, 3vw, 1.25rem);
  --font-large: clamp(1.2rem, 3vw, 1.5rem);
  --font-xlarge: clamp(1.5rem, 3vw, 2rem);
  --font-heading: clamp(1.3rem, 3vw, 3rem);
}

@font-face {
  font-family: "Grotesk";
  src: url("/assets/Fonts/StageGrotesk-Light.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Grotesk-bold";
  src: url("/assets/Fonts/StageGrotesk-Medium.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roten";
  src: url("/assets/Fonts/Routen Regular.ttf") format("opentype");
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-weight: 300;
  font-family: "Grotesk";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  font-size: var(--font-medium);
}

h2 {
  font-size: var(--font-xlarge);
}

#header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 80px;
}
#header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
#header .navbar.scrolled {
  background-color: rgb(34, 158, 159);
}
#header .navbar .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .navbar .menu a {
  font-size: 18px;
  position: relative;
}
#header .navbar .menu a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: white;
  transition: all 0.5s ease-in-out;
}
#header .navbar .menu a:hover::after {
  width: 100%;
}
#header .navbar .menu-mobile {
  display: none;
}
#header .caption {
  color: white;
  font-size: var(--font-heading);
  width: 50%;
  padding: 120px 0 150px 0px;
  letter-spacing: 1px;
}

.mobile {
  display: none;
}

a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

.cursive {
  font-family: "Roten";
}

.green {
  color: var(--green);
}

.bold {
  font-family: "Grotesk-bold";
  letter-spacing: 1px;
}

footer {
  background-color: var(--green);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px;
}
footer .logo {
  width: 20%;
}
footer .content {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .content .options, footer .content .social {
  align-self: flex-end;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 80px 25px 20px;
  }
  #header .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }
  #header .navbar .menu {
    display: none;
  }
  #header .navbar .menu-mobile {
    display: flex;
    justify-content: flex-end;
  }
  #header .navbar .menu-mobile:hover {
    cursor: pointer;
  }
  #header .navbar .menu-mobile > span {
    font-size: 50px;
    color: white;
  }
  #header .caption {
    width: 90%;
    padding: 60px 0 100px 0px;
  }
  .mobile {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    transform: translateX(-100%);
    background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgb(34, 158, 159) 100%), url("../../../assets/banner_home.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    transition: all 0.5s ease-in-out;
    padding: 50px 0px;
  }
  .mobile .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 50px;
    color: white;
  }
  .mobile .options {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mobile .options a {
    font-size: 25px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
  .mobile .options > img {
    width: 200px;
    margin-bottom: 50px;
  }
  footer {
    flex-direction: column;
    padding: 40px 10px;
    gap: 20px;
  }
  footer .logo {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  footer .logo img {
    margin: auto;
  }
  footer .content {
    width: 100%;
  }
  footer .content .options, footer .content .social {
    align-self: center;
    display: flex;
    gap: 10px;
  }
}/*# sourceMappingURL=GlobalStyles.css.map */