@import url("https://fonts.googleapis.com/css2?family=Kurale&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: kurale;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}

.row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reveal-h,
.reveal-p,
.reveal-i {
  transform: translateY(50px);
  filter: blur(17px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
.reveal-p {
  animation-delay: 1.2s;
}
.reveal-i {
  animation-delay: 1.7s;
  margin-top: 0.5rem;
}

@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
body {
  color: white;
  background-color: black;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header h3 i {
  color: green;
}

#hero {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(3, 67, 170, 0.3);
}
.hero-text {
  flex-basis: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  display: none;
}
.hero-text.active {
  display: block;
}

.hero-text h2 {
  font-weight: 600;
  font-size: 2.4rem;
}
.hero-text p {
  font-size: 1.1rem;
  font-weight: 400;
}

.btn {
  padding: 7px 11px;
  color: white;
  background-color: green;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.6s ease;
  position: relative;
  border-radius: 5px;
}
.secondary {
  padding: 7px 11px;
  border-radius: 5px;
  border: 1px solid white;
  color: white;
  background-color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.6s ease;
  position: relative;
}

.btn:hover {
  background-color: white;
  color: green;
}
.btn i,
.secondary i {
  font-size: 1rem;
  margin-left: 0.5rem;
}
.btn:hover {
  color: green;
}

.aside-icons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: fixed;
  justify-content: center;

  top: 0;
  right: 0;
  width: 30px;
  height: 50dvh;
  transform: translateY(40%);
}
.videos {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -10;
  width: 100%;
  height: 100%;
  clip-path: ellipse(0% 0% at 0% 100%);
  transition: clip-path 1s ease; /* Smooth transition for clip-path */
}
.videos.active {
  clip-path: ellipse(150% 150% at 0% 100%);
}
.aside-icons a {
  font-size: 1.3rem;
  color: white;
  transition: 0.3s ease;
}

.aside-icons a:hover {
  color: green;
  transform: scale(1.3);
}

/*  toggle navigation */
.toggle-navigation {
  position: relative;
  width: 10rem;
  height: 50px;
  background-color: transparent;
  z-index: 880;
  transform: translateY(80px);
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
.toggle-navigation .nav-btn {
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(225, 225, 225, 0.5);
  transition: 0.3s ease;
}
.toggle-navigation .nav-btn:hover {
  transform: scale(1.3);
}
.nav-btn.active {
  background-color: green;
  box-shadow: 0 0 7px rgba(225, 225, 225, 0.5);
  transform: scale(1.3);
}
/* RESPONSIVE DESIGNS */

@media (max-width: 770px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
  header h3 {
    font-size: 1.2rem;
  }
  header h3:last-child {
    font-size: 0.9rem;
  }
  #hero {
    overflow: hidden;
  }
  .hero-text h2 {
    font-weight: 600;
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 1rem;
    font-weight: 400;
  }
}
