html,
body {
  margin: 0px !important;
  width: 100%;
  height: 100%;
  padding: 0px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8);
}

#nav-bar-1 {
  display: none;
}

#nav-bar-2 {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  justify-content: space-between;
  background-color: #ffdbdb;
}

/* off-screen-menu */
.off-screen-menu {
  background-color: #ffdbdb;
  height: 50vh;
  width: 50%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  font-family: "Abhaya Libre", serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
  transition: 0.3s ease;
}
.off-screen-menu.active {
  right: 0;
}

.off-screen-menu ul {
  list-style: none;
}

.off-screen-menu a {
  color: rgba(0, 0, 0, 0.8); /* Changes text color */
  text-decoration: none; /* Removes default underline */
  transition: color 0.3s ease;
}

.off-screen-menu a:hover {
  color: #f90345;
}

/* nav */
nav {
  padding: 1rem;
  display: flex;
  background-color: #ffdbdb;
}

/* ham menu */
.ham-menu {
  height: 50px;
  width: 40px;
  margin-left: auto;
  position: relative;
}
.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: grey;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span {
  background-color: grey;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#home-1 {
  display: inline-block;
  background-color: #ffdbdb;
  margin: 0px !important;
  width: 100%;
}

#logo-div {
  display: block;
}

#logo-1 {
  display: block;
  width: 70%;
  object-fit: cover;
}

#logo-home-link {
  display: block;
  width: 100%;
}
#menu-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 3rem;
}

#home-hero {
  margin-top: 9rem;
  margin-bottom: 2rem;
}

#home-hero-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: auto;
}

@keyframes lumeinusanim {
  0% {
    margin-top: 6rem;
    margin-left: 1rem;
  }
  25% {
    margin-top: 4rem;
    margin-left: 0.75rem;
  }
  50% {
    margin-top: 2rem;
    margin-left: 0.5rem;
  }
  75% {
    margin-top: 4rem;
    margin-left: 0.75rem;
  }
  100% {
    margin-top: 6rem;
    margin-left: 1rem;
  }
}

#logo-anim-1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  margin-top: 6rem;
  margin-left: 1rem;
  align-items: start;
  animation-name: lumeinusanim;
  animation-duration: 3s;
  animation-timing-function: linear;
}
#lumeinus-1 {
  width: 35%;
}

#lumeinus-tag-1 {
  width: 15%;
}

#vision-dia-1 {
  width: 60%;
  margin-left: 6rem;
}

#hero-lady-1 {
  display: none;
  width: 35%;
  height: fit-content;
  opacity: 0.5;
  margin-left: 5rem;
}

#hero-para-1 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-top: 1.8rem;
  margin-left: 1rem;
  width: 22rem;
  word-spacing: 0.1rem;
  line-height: 1.7;
}

#connect-btn-link {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  color: black;
  background-color: rgba(90, 125, 151, 0.26);
  text-decoration: none; /* Removes the underline */
  border-radius: 8px;
  border: 2px solid rgba(90, 125, 151, 0.5);
  text-align: center;
  font-family: "Inter", sans-serif;

  font-size: 1rem;
  margin-left: 1rem;
}

#connect-btn-link:hover {
  background-color: rgba(90, 125, 151); /* Darkens on hover */
  color: white;
}

#home-section-2 {
  margin: 0.2rem 1rem 3rem 1rem;
}
#home-section-2-flex-1 {
  display: flex;
  justify-content: right;
  margin-bottom: -4.5rem;
  margin-right: -1rem;
}

#home-section-2-text-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#home-section-2-text-1 h1 {
  font-family: "Abhaya Libre", serif;
  font-size: 1.8rem;
  word-spacing: 1px;
}

#home-section-2-text-1 p {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  word-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 2rem;
  color: grey;
  line-height: 1.7;
}
#home-teamwork-1 {
  width: 25%;
  opacity: 0.2;
  margin-left: 0px;
}

#home-section-2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 65%;
  margin: auto;
}

.home-section-2-grid-item {
  text-align: center;
  padding: 0.3rem 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(84, 83, 83);
  box-shadow: 0.5rem 0.5rem 0.25rem rgb(186, 187, 187);
  border-radius: 10px;
}

#home-grid-1 {
  background-color: rgba(250, 52, 105, 0.3);
  border: 1px solid rgba(250, 52, 105, 0.4);
}
#home-grid-2 {
  background-color: rgba(28, 250, 184, 0.22);
  border: 1px solid rgba(28, 250, 184, 0.5);
}
#home-grid-3 {
  background-color: rgba(10, 72, 242, 0.31);
  border: 1px solid rgba(10, 72, 242, 0.2);
}

.color-pink {
  color: #f90345;
}

.color-green {
  color: rgb(21, 165, 122);
}

.color-blue {
  color: rgb(9, 58, 194);
}
#home-section-2-services-div {
  margin-top: 2rem;
  margin-left: 1rem;
}
#home-section-2-services-link {
  color: rgba(0, 0, 0, 0.8); /* Changes text color */
  text-decoration: none; /* Removes default underline */
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  color: #f90345;
}

#home-section-2-services-link:hover {
  color: #f90345;
}

#home-section-3 {
  background-color: rgba(90, 125, 151, 0.26);
  padding: 4rem 2rem;
}

#home-section-3-h1-1 {
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 1.8rem;
  word-spacing: 1px;
  line-height: 1.5rem;
  padding-bottom: 1rem;
}

#home-section3-para-1 {
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8rem;
  font-style: italic;
}

#home-section-3-h1-2 {
  font-size: 1.5rem;
}

#home-section-3-h1-3 {
  margin-top: 0px;
  padding-top: 0px;
  margin-left: 6rem;
  font-size: 1.5rem;
}

#home-section3-para-2 {
  font-family: "Abhaya Libre", serif;
  font-size: 0.9rem;
  line-height: 1.2rem;
}

#home-section-4 {
  padding: 4rem 2rem;
}
#home-section-4-flex-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#home-section-4-flex-2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

#home-section-4-h1-col-1 {
  font-family: "Itim", cursive;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

#home-section-4-p1-col-1 {
  font-family: "Nanum Brush Script", cursive;
  margin-top: -0.3rem;
}

#home-section-4-col-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.home-section-4-menu-link {
  color: rgba(0, 0, 0, 0.8); /* Changes text color */
  text-decoration: none; /* Removes default underline */
  transition: color 0.3s ease;
}

.home-section-4-menu-link:hover {
  color: rgb(9, 58, 194);
}

#subscriber-form {
  font-family: "Inter", sans-serif;
  margin-top: 0.8rem;
}
#subscriber-form label {
  font-size: 0.8rem;
}

#subscriber-form input {
  font-size: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

#subscriber-email {
  margin-bottom: 5px;
}

#home-section-4-col-4 {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.8);
}

#home-section-4-col-5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

#send-btn-1 {
  width: 60%;
}

#send-btn-1:hover {
  background-color: rgba(90, 125, 151, 0.26);
}

@media only screen and (min-width: 992px) {
  #nav-bar-2 {
    display: none;
  }
  #a-menu-link {
    color: rgba(0, 0, 0, 0.8); /* Changes text color */
    text-decoration: none; /* Removes default underline */
    transition: color 0.3s ease;
  }

  #a-menu-link:hover {
    color: #f90345;
  }

  #home-1 {
    display: inline-block;
    background-color: #ffdbdb;
    margin: 0px !important;
    width: 100%;
  }

  #nav-bar-1 {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: "Abhaya Libre", serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #ffdbdb;
    padding-right: 160px;
  }

  #logo-div {
    display: block;
  }

  #logo-1 {
    display: block;
    width: 100%;
    object-fit: cover;
  }

  #logo-home-link {
    display: block;
    width: 100%;
  }
  #menu-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 60px;
  }

  #home-hero {
    margin-top: 160px;
    margin-bottom: 40px;
  }

  #home-hero-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  @keyframes lumeinusanim {
    0% {
      margin-top: 150px;
      margin-left: 50px;
    }
    25% {
      margin-top: 100px;
      margin-left: 100px;
    }
    50% {
      margin-top: 50px;
      margin-left: 150px;
    }
    75% {
      margin-top: 100px;
      margin-left: 100px;
    }
    100% {
      margin-top: 150px;
      margin-left: 50px;
    }
  }

  #logo-anim-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    margin-top: 150px;
    margin-left: 50px;
    align-items: start;
    animation-name: lumeinusanim;
    animation-duration: 3s;
    animation-timing-function: linear;
    width: auto;
  }
  #lumeinus-1 {
    width: 30%;
  }

  #lumeinus-tag-1 {
    width: 12%;
  }

  #vision-dia-1 {
    width: 35%;
    margin-left: 130px;
  }

  #hero-lady-1 {
    width: 35%;
    height: fit-content;
    opacity: 0.5;
  }

  #hero-para-1 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin-top: -80px;
    margin-left: 50px;
    width: 600px;
    word-spacing: 0.2px;
    line-height: 1.7;
  }

  #connect-btn-link {
    display: inline-block;
    padding: 10px 20px;
    color: black;
    background-color: rgba(90, 125, 151, 0.26);
    text-decoration: none; /* Removes the underline */
    border-radius: 8px;
    border: 2px solid rgba(90, 125, 151, 0.5);
    text-align: center;
    font-family: "Inter", sans-serif;
    padding: 8px 35px;
    font-size: 15px;
    margin-left: 50px;
  }

  #connect-btn-link:hover {
    background-color: rgba(90, 125, 151); /* Darkens on hover */
    color: white;
  }

  #home-section-2 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  #home-section-2-flex-1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  #home-section-2-text-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #home-section-2-text-1 h1 {
    font-family: "Abhaya Libre", serif;
    font-size: 40px;
    word-spacing: 2px;
    line-height: 1px;
  }

  #home-section-2-text-1 p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    word-spacing: 1px;
    margin-top: 0px;
  }
  #home-teamwork-1 {
    width: 12%;
    opacity: 0.3;
    margin-left: 0px;
  }

  #home-section-2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    width: 70%;
    margin: auto;
  }

  .home-section-2-grid-item {
    text-align: center;
    padding: 20px 0px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(84, 83, 83);
    box-shadow: 10px 10px 5px rgb(186, 187, 187);
    border-radius: 10px;
  }

  #home-grid-1 {
    background-color: rgba(250, 52, 105, 0.3);
    border: 1px solid rgba(250, 52, 105, 0.6);
  }
  #home-grid-2 {
    background-color: rgba(28, 250, 184, 0.22);
    border: 1px solid rgba(28, 250, 184, 1);
  }
  #home-grid-3 {
    background-color: rgba(10, 72, 242, 0.31);
    border: 1px solid rgba(10, 72, 242, 0.6);
  }

  .color-pink {
    color: #f90345;
  }

  .color-green {
    color: rgb(21, 165, 122);
  }

  .color-blue {
    color: rgb(9, 58, 194);
  }
  #home-section-2-services-div {
    margin-top: 30px;
    margin-left: 230px;
  }
  #home-section-2-services-link {
    color: rgba(0, 0, 0, 0.8); /* Changes text color */
    text-decoration: none; /* Removes default underline */
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: rgb(9, 58, 194);
  }

  #home-section-2-services-link:hover {
    color: #f90345;
  }

  #home-section-3 {
    background-color: rgba(90, 125, 151, 0.26);
    padding: 100px 40px;
  }

  #home-section-3-h1-1 {
    text-align: center;
    font-family: "Abhaya Libre", serif;
    font-size: 40px;
    word-spacing: 2px;
    line-height: 1px;
    padding-bottom: 20px;
  }

  #home-section3-para-1 {
    text-align: justify;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-style: italic;
  }

  #home-section-3-h1-2 {
    font-size: 24px;
  }

  #home-section-3-h1-3 {
    margin-top: 0px;
    padding-top: 0px;
    margin-left: 110px;
    font-size: 24px;
  }

  #home-section3-para-2 {
    font-family: "Abhaya Libre", serif;
    font-size: 14px;
  }

  #home-section-4-flex-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #home-section-4-col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
  }

  #home-section-4 {
    padding: 100px 40px;
  }

  #home-section-4-flex-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
  }

  #home-section-4-h1-col-1 {
    font-family: "Itim", cursive;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 1px;
  }

  #home-section-4-p1-col-1 {
    font-family: "Nanum Brush Script", cursive;
    margin-top: -3px;
  }

  .home-section-4-menu-link {
    color: rgba(0, 0, 0, 0.8); /* Changes text color */
    text-decoration: none; /* Removes default underline */
    transition: color 0.3s ease;
  }

  .home-section-4-menu-link:hover {
    color: rgb(9, 58, 194);
  }

  #subscriber-form {
    font-family: "Inter", sans-serif;
  }
  #subscriber-form label {
    font-size: 13px;
  }

  #subscriber-form input {
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 3px;
  }

  #subscriber-email {
    margin-bottom: 5px;
  }

  #home-section-4-col-4 {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
  }

  #home-section-4-col-5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
  }

  #send-btn-1:hover {
    background-color: rgba(90, 125, 151, 0.26);
  }
}
