* {
  box-sizing: border-box;
}

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

body {
  font-family: "Comfortaa", Helvetica, Arial;
  font-size: 18px;
  margin: 0;
  background-color: #bbcfff;
  overflow: overlay;
  color: #fff;
}

h1 {
  font-size: 200px;
  font-weight: bolder;
}

h2 {
  font-size: 100px;
  font-weight: bolder;
}

h1, 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: 1024px) {
  h1 {
    font-size: 150px;
  }

  h2 {
    font-size: 75px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 100px;
  }

  h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 75px;
  }
}
.banana-hero-container {
  position: relative;
}

.banana-hero {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.banana-hero-header {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  top: 20%;
  z-index: 10;
}

.banana-hero-header h1:last-child {
  text-align: end;
  margin-top: 100px;
}

.banana-hero-cow {
  transform: scaleX(-1);
  width: 35%;
  margin-bottom: 100px;
  align-self: flex-end;
}

.banana-hero-tiger {
  max-width: 500px;
  margin-left: 20px;
}

.banana-container {
  position: relative;
}

.banana-description {
  width: 100%;
  text-align: center;
  background-color: #c8b6ff;
  padding-block: 50px;
  padding-inline: 20px;
}

.banana-turn {
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
}

.banana-turn:last-child {
  margin-bottom: 100px;
}

.banana-turn-header {
  align-self: center;
  margin-top: 100px;
  padding-inline: 10px;
}

.banana-turn img {
  margin-top: 100px;
  max-width: 100%;
  max-height: 700px;
  object-fit: cover;
  padding-inline: 80px;
}

@media (max-width: 768px) {
  .banana-hero-header {
    padding-inline: 15px;
  }

  .banana-hero-tiger {
    max-width: 300px;
    margin-inline: 15px;
  }

  .banana-hero-cow {
    width: 50%;
    margin-bottom: 20px;
  }

  .banana-container {
    margin-bottom: 100px;
  }

  .banana-turn-header {
    margin-top: 50px;
  }

  .banana-turn img {
    margin-top: 50px;
    padding-inline: 15px;
  }
}
@media (max-width: 480px) {
  .banana-hero-header {
    padding-inline: 0;
    text-align: center;
    margin-top: 100px;
    top: 10%;
  }

  .banana-hero-header h1:first-child {
    margin-bottom: 0;
    text-align: center;
  }

  .banana-hero-header h1:last-child {
    text-align: center;
  }

  .banana-hero-cow {
    width: 100%;
  }

  .banana-hero-tiger {
    align-self: center;
  }
}
.display-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.display-backdrop {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform;
  cursor: pointer;
}

.display-img {
  flex-shrink: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
  cursor: pointer;
  max-height: calc(100% - 100px);
  max-width: calc(100% - 250px);
  z-index: 20;
}

.display-img.center {
  transform: scale(1.05);
  cursor: default;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 20px;
  z-index: 50;
  background-color: #c8b6ff;
}

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

.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;
  align-items: center;
}

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

@media (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding-inline: 0;
  }

  .nav {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: absolute;
    top: 0;
    height: 100vh;
    padding-left: 10px;
    background-color: #c8b6ff;
  }

  .page-link {
    margin-bottom: 10px;
  }

  .mobile-nav {
    display: block;
  }

  .hidden-nav {
    display: flex;
  }

  .pages {
    flex-direction: column;
    margin-top: 50px;
  }

  .logo-desktop {
    display: none;
  }

  .info {
    margin-bottom: 100px;
  }
}
.image-row {
  display: flex;
}

.gallery-image {
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-image:hover {
  scale: 1.05;
}

.text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
}

@media (max-width: 768px) {
  .gallery-image:hover {
    scale: none;
  }
}
.video-container {
  position: relative;
}

.video-text {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-text h1 {
  animation: sliding linear 47s infinite;
}

@keyframes sliding {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-video {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 66px);
  object-fit: cover;
  object-position: center;
}

.untitled-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 100px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.untitled-container img {
  align-self: flex-end;
  flex-shrink: 0;
  margin-block: 100px;
  width: 100%;
  max-width: 700px;
}

@media (max-width: 1024px) {
  .untitled-container {
    padding-inline: 20px;
  }

  .untitled-container img, .untitled-text {
    align-self: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .untitled-container img, .untitled-text {
    align-self: center;
  }

  .untitled-text {
    margin-top: 100px;
  }

  .untitled-container {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .untitled-container img {
    margin-block: 50px;
  }

  .untitled-text {
    margin-top: 50px;
  }
}
.info-text {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 50px;
}

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

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