* {
  box-sizing: border-box;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Satoshi", Helvetica, Arial;
  font-size: 1.2rem;
  margin: 0;
  background-color: #2f3133;
  overflow: overlay;
  color: #fff;
}

h1 {
  font-size: 10rem;
  font-weight: bolder;
}

h2 {
  font-size: 5rem;
  font-weight: bolder;
}

h3 {
  font-size: 2.5rem;
  font-weight: bolder;
}

h1, h2, p {
  margin: 0;
}

::-webkit-scrollbar {
  width: 15px;
  height: 0;
}

::-webkit-scrollbar-track {
  background: #bbcfff;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 100px;
  border: 3.5px solid #bbcfff;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.noscroll {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}
.banana-hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  padding-top: 66px;
  display: flex;
  align-items: center;
}

.banana-text {
  padding-inline: 66px;
  padding-block: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.banana-text h1 {
  margin-left: -10px;
  line-height: 8rem;
  margin-bottom: 15px;
}

.banana-text h3 {
  margin-bottom: 0;
  margin-top: 50px;
  font-weight: 400;
}

.banana-images {
  display: flex;
  max-width: 1440px;
  max-height: 100vh;
  justify-content: center;
  margin-inline: auto;
  padding-inline: 20px;
}

.banana-images img {
  max-width: 50%;
  max-height: 100%;
  object-fit: contain;
}

.vid-container {
  max-width: 1440px;
  margin-inline: auto;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  padding-inline: 30px;
}

.banana-video {
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 1024px) {
  .banana-text {
    padding-inline: 20px;
    border-radius: 0;
    width: 100%;
  }
  .banana-text h1 {
    line-height: 10rem;
  }
  .vid-container {
    padding-inline: 0;
  }
  .banana-video {
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .banana-hero {
    background-position: 76% center;
    align-items: end;
  }
  .banana-text {
    padding-inline: 20px;
    border-radius: 0;
    width: 100%;
  }
  .banana-text h1 {
    margin-left: -5px;
    line-height: 6rem;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(15px);
}

.mobile-nav {
  display: none;
  margin-inline: 20px;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

.header-svg {
  display: block;
  width: 26px;
  height: 26px;
}

.pages, .info {
  display: flex;
}

.page-link, .logo-desktop {
  margin-inline: 10px;
}

@media (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding-inline: 0;
  }
  .nav {
    transform: translateX(100%);
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: absolute;
    top: 0;
    height: 100vh;
    padding-left: 10px;
    backdrop-filter: saturate(140%) blur(15px);
    transition: all 0.3s ease-in-out;
  }
  .page-link {
    margin-bottom: 10px;
  }
  .mobile-nav {
    display: block;
  }
  .hidden-nav {
    transform: translateX(0);
    background-color: rgba(0, 0, 0, 0.8);
  }
  .pages {
    flex-direction: column;
    margin-top: 56px;
  }
  .logo-desktop {
    display: none;
  }
  .info {
    margin-bottom: 150px;
  }
}
.main-image {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-text {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.main-text span {
  display: inline-block;
  background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.85));
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .main-image {
    background-position: 20% center;
  }
}
.car-image {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.car-text {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.car-text span {
  display: inline-block;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
  background-clip: text;
  color: transparent;
}

.munich-hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  padding-top: 66px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.munich-text {
  padding-inline: 66px;
  padding-block: 40px;
  text-align: center;
}

.munich-text h1 {
  margin-left: -10px;
  line-height: 8rem;
  margin-bottom: 45px;
}

.munich-text-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .munich-text h1 {
    line-height: 12rem;
  }
}
@media (max-width: 768px) {
  .munich-text h1 {
    line-height: 6rem;
  }
  .munich-text-desktop {
    display: none;
  }
  .munich-text-mobile {
    display: block;
  }
}
.info-text {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 150px;
  opacity: 0.85;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .info-text {
    margin-inline: 20px;
    margin-top: 100px;
  }
}

/*# sourceMappingURL=main.css.map */
