/*Page materi*/
@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Maven+Pro:wght@400..900&family=Patrick+Hand&family=Sigmar&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Winky Sans", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: radial-gradient(at 40% 45%, #c1c0bc 0, transparent 50%),
    radial-gradient(at 60% 50%, #e2e9f7 0, transparent 50%) #f0c452;
}
.content {
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 150px 0 100px;
  margin-top: -20px;
  position: absolute;
}
.img-wrapper {
  width: 400px;
  aspect-ratio: 4/5;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25),
    0 8px 16px -8px rgba(0, 0, 0.3);
}
.img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  filter: saturate(0.9) brightness(1.05);
}
.text {
  flex: 1 0 0;
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  margin-right: 50px;
  z-index: 999;
}
.content:not(:first-child) .text {
  opacity: 0;
}
.content:not(:first-child) .img-wrapper {
  transform: translateY(-200%);
}
.scrolldown {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-80px) translateX(-50%) rotate(45deg);
}
.scrolldown span {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  animation: animate 1.5s linear infinite;
  opacity: 0;
}
.scrolldown span:nth-child(1) {
  transform: translate(-15px, -15px);
  animation-delay: -0.4s;
}
.scrolldown span:nth-child(2) {
  transform: translate(0, 0);
  animation-delay: -0.2s;
}
.scrolldown span:nth-child(3) {
  transform: translate(15px, 15px);
  animation-delay: 0s;
}
.header-logo {
    margin-left: 20px;
  }
@keyframes animate {
  0% {
    top: -5px;
    left: -5px;
    opacity: 0;
  }
  25% {
    top: 0px;
    left: 0px;
    opacity: 1;
  }
  50%,
  100% {
    top: 5px;
    left: 5px;
    opacity: 0;
  }
}
@media (max-width: 1400px) {
  .content {
    padding: 0 130px 0 80px;
  }
  .img-wrapper {
    width: 300px;
  }
  .text {
    z-index: 9999;
  }
}
@media (max-width: 1200px) {
  .content {
    padding: 0 80px;
  }
  .text {
    z-index: 9999;
  }
}
@media (max-width: 900px) {
  .content {
    padding: 0 50px;
  }
  .img-wrapper {
    width: 250px;
  }
  .text {
    z-index: 9999;
  }
  .logo {
    width: 90px;
    padding-top: 60px;
    padding-left: 10px;
  }
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .nav-items {
    font-size: 1.1rem;
    margin-right: 20px;
  }
}
@media (max-width: 730px) {
  .content {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .img-wrapper {
    top: 10%;
    position: absolute;
  }
  .text {
    position: absolute;
    bottom: 15%;
    margin-right: 0px;
    padding: 0 80px;
    text-align: center;
    font-size: medium;
    z-index: 9999;
  }
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
  
}
@media (max-width: 500px) {
  .img-wrapper {
    padding: 10px;
    width: 220px;
  }
  .text {
    padding: 0 40px;
    bottom: 10%;
    font-size: small;
    z-index: 9999;
  }
  .scrolldown {
    width: 20px;
    height: 20px;
  }
  
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .sidebar {
    width: 100%;
  }
  
  
}
