* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", "Poppins", sans-serif;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.font-heading {
  font-family: "Inter", sans-serif;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.open-recruitment {
  display: grid;
  justify-items: center;
  background-color: #0F936D;
  color: #F5F5F5;
  padding: 5px 15px;
  border-radius: 20px;
}

.open-recruitment a {
  color: #F5F5F5 !important;
}

.open-recruitment a:hover {
  color: #F5F5F5;
  text-decoration: none;
}

h1 {
  font-size: clamp(66px, 5vw, 68px);
}

h2 {
  font-size: clamp(40px, 5vw, 44px);
}

h3 {
  font-size: clamp(40px, 5vw, 44px);
}

h4 {
  font-size: clamp(10px, 5vw, 18px);
}

p {
  font-size: clamp(10px, 4vw, 16px);
}

.btn-dark-green {
  background-color: #3B5D50;
  color: #F5F5F5;
}

.btn-dark-green:hover {
  background-color: #CA8239;
  color: #F5F5F5;
}

.text-primary {
  color: #0F936D;
}

.text-dark-green {
  color: #3B5D50;
}

.text-light-green {
  color: #DDE7B8;
}

.text-orange {
  color: #CA8239;
}

header {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  z-index: 5;
  position: absolute;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 25px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  border-radius: 38px;
  margin: 20px 30px;
  justify-content: center;
  z-index: 5;
}
nav .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
nav .logo img {
  width: 20%;
  height: auto;
  z-index: 3;
}
nav .logo .name {
  width: 100%;
  color: black;
  font-size: 5rem;
  font-family: "Holtwood One SC", sans-serif;
}
nav ul li a {
  font-size: clamp(14px, 5vw, 16px);
  color: #000;
}
nav .nav-links {
  display: flex;
  flex-direction: column;
  padding: 70px 16px 16px 16px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  gap: 20px;
  width: 90%;
  transform: translateY(-100%);
  text-align: center;
  color: black;
  transition: all 0.5s ease;
  z-index: 2;
}
nav .nav-links a:hover {
  text-decoration: none;
  color: #0F936D;
  font-weight: 700;
}
nav .nav-links.show {
  padding: 30px;
  display: grid;
  transform: translateY(0);
  top: 0;
  margin-top: 70px;
}

.burger {
  display: block;
  cursor: pointer;
  margin-left: auto;
  z-index: 2;
}
.burger .line {
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #0F936D;
  border-radius: 3px;
}

#hero {
  min-height: 100vh;
  background-image: url(../images/background/bg-nyoba.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero #lottie-animation {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 30%;
}
#hero .caption {
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
#hero h1 {
  top: 60%;
  position: absolute;
  z-index: 3;
}
#hero h2 {
  top: 72%;
  position: absolute;
}
#hero .grad {
  background: linear-gradient(180deg, #0F936D 37.5%, #5EB59C 59.05%, #F5F5F5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

#activity {
  min-height: 350vh;
  background-size: cover;
  background: linear-gradient(180deg, #60775a 4.5%, #159771 82.5%, #F5F5F5 100%);
  background-repeat: no-repeat;
  background-position: center;
}
#activity .containers {
  padding: 30px;
}
#activity h2 {
  font-size: clamp(30px, 5vw, 34px);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#activity .group {
  flex-direction: column;
}
#activity .oprec, #activity .type-activity, #activity .townhall2, #activity .type-activity.upgrading {
  flex-direction: column;
  justify-content: start;
}
#activity #lottie-animation {
  width: 80%;
  height: auto;
  margin-top: 10px;
}
#activity .caption {
  background-color: #fadb5d;
  padding: 16px;
  width: 100%;
  margin-top: 10%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#activity .caption p {
  font-size: 12px;
}
#activity .accordion {
  max-width: 1000px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
#activity .accordion-item {
  background-color: #DDE7B8;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
}
#activity .accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  font-size: 10px;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
#activity .accordion-item-header::after {
  content: "\f107"; /* Kode Unicode untuk ikon FontAwesome fa-angle-down */
  font-family: "FontAwesome";
  font-size: 10px;
  position: absolute;
  right: 1.5rem;
  rotate: 180deg;
}
#activity .accordion-item-header.active::after {
  rotate: 360deg;
}
#activity .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#activity .accordion-item-body-content {
  padding: 15px;
  font-size: 10px;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
#activity .type-activity {
  margin-top: 50px;
}
#activity .type-activity img {
  margin-top: 10px;
  width: 90%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#activity .type-activity .caption p {
  font-size: 14px;
}
#activity .townhall2 {
  margin-top: 100px;
}
#activity .townhall2 img {
  margin-top: 10px;
  width: 90%;
}
#activity .type-activity.upgrading {
  margin-top: 90px;
}
#activity .type-activity.upgrading img {
  box-shadow: none;
  width: 70%;
}
#activity .type-activity.upgrading .caption {
  margin-top: 5%;
}
#activity .type-activity.upgrading .caption p {
  font-size: 12px;
}
#activity .image-float {
  margin-top: 50px;
  margin-bottom: 150px;
}
#activity .floating-image {
  width: 100%;
  height: 100%;
  position: relative;
  animation: floatAnimation 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

#graphic {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/background/bg-macbook.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

footer {
  background-color: #1C4839;
  padding: 30px;
  min-height: 100vh;
}
footer h4 {
  font-size: clamp(20px, 6vw, 32px);
  margin-bottom: 20px;
}
footer h5 {
  font-size: clamp(20px, 6vw, 32px);
}
footer span {
  font-size: clamp(10px, 6vw, 18px);
  margin-top: 5%;
}
footer hr {
  color: #F5F5F5;
  width: 100%;
  margin-top: 80px;
}
footer h4 {
  margin-bottom: 20px;
}
footer .recap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
}
footer .recap iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
footer .contact {
  margin-top: 50px;
}
footer .contact ul {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 20px;
  padding-top: 40px;
  padding-left: 0;
}
footer .contact ul li {
  list-style: none;
}
footer .contact ul li a {
  width: 80px;
  height: 80px;
  background-color: transparent;
  text-align: center;
  line-height: 100px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow-y: hidden;
  border: 3px solid #F5F5F5;
  z-index: 1;
}
footer .contact ul li a .icon {
  position: relative;
  color: #F5F5F5;
  transition: 0.5s;
  z-index: 3;
  font-size: 32px;
  margin-top: 2px;
  overflow-y: hidden;
}
footer .contact ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
footer .contact ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
footer .contact ul li a:hover:before {
  top: 0;
}
footer .contact .fa-brands.fa-instagram.icon {
  font-size: 35px;
  line-height: 70px;
}
footer .contact ul li:nth-child(1) a:before {
  background: radial-gradient(61.46% 59.09% at 36.25% 96.55%, #FFD600 0%, #FF6930 48.44%, #FE3B36 73.44%, rgba(254, 59, 54, 0) 100%), radial-gradient(202.83% 136.37% at 84.5% 113.5%, #FF1B90 24.39%, #F80261 43.67%, #ED00C0 68.85%, #C500E9 77.68%, #7017FF 89.32%);
}
footer .contact ul li:nth-child(2) a:before {
  background: #000;
}
footer .contact ul li:nth-child(3) a:before {
  background: #0077b5;
}
footer .contact ul li:nth-child(4) a:before {
  background: #dd4b39;
}

@media screen and (min-width: 500px) {
  #hero h1 {
    top: 60%;
  }
  #hero #lottie-animation {
    top: 20%;
  }
  #activity #lottie-animation {
    width: 75%;
  }
  #activity h2 {
    font-size: clamp(34px, 5vw, 36px);
  }
  #activity .caption {
    margin-top: 5%;
  }
  #activity .accordion-item-header {
    font-size: 12px;
  }
  #activity .accordion-item-body-content {
    font-size: 12px;
  }
  #activity .type-activity img {
    width: 85%;
  }
  #activity .type-activity .caption p:nth-child(2) {
    font-size: 14px;
  }
  #activity .type-activity.upgrading .caption p {
    font-size: 12px;
  }
  #graphic {
    min-height: 80vh;
  }
}
@media screen and (min-width: 600px) {
  nav .logo img {
    width: 15%;
  }
}
@media screen and (min-width: 635px) and (max-width: 767px) {
  nav .logo img {
    width: 15%;
  }
  #activity .group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #activity .oprec, #activity .type-activity, #activity .townhall2, #activity .upgrading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #activity .oprec h2, #activity .type-activity h2, #activity .townhall2 h2, #activity .upgrading h2 {
    text-align: center;
  }
  #activity #lottie-animation {
    margin-top: 30px;
  }
  #activity .caption {
    width: 80%;
  }
  #activity .caption p {
    font-size: 14px;
  }
  #activity #img-animation {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #graphic {
    min-height: 70vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 927px) {
  header {
    padding-left: 50px;
    padding-right: 50px;
  }
  nav .logo img {
    width: 10%;
  }
  #activity h2 {
    font-size: clamp(40px, 5vw, 44px);
  }
  #activity .caption p {
    font-size: 14px;
  }
  #activity .group {
    flex-direction: row;
    justify-content: space-between;
  }
  #activity .oprec .group {
    flex-direction: row-reverse;
    gap: 20px;
  }
  #activity .oprec .caption {
    width: 60%;
  }
  #activity .type-activity .group .caption {
    margin-top: 0;
    height: 100%;
  }
  #activity .type-activity img {
    height: 100%;
    width: 50%;
  }
  #activity .type-activity.first-gath .group {
    align-items: center;
  }
  #activity .type-activity.first-gath .group .caption {
    width: 45%;
  }
  #activity .townhall2 img {
    width: 45%;
  }
  #activity .townhall2 .group {
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  #activity .townhall2 .group .caption {
    margin-top: 20px;
    width: 50%;
  }
  #activity .type-activity.upgrading .group {
    margin-top: 50px;
    justify-content: space-between;
  }
  #activity .type-activity.upgrading .caption {
    width: 50%;
  }
  #activity .type-activity.upgrading .caption p {
    font-size: 14px;
  }
  #activity .type-activity.upgrading #lottie-animation {
    width: 40%;
  }
  #activity .image-float {
    margin-top: 100px;
    display: flex;
    justify-content: center;
  }
  #activity .floating-image {
    width: 70%;
  }
  #graphic {
    min-height: 120vh;
  }
  footer {
    padding: 100px;
  }
}
@media screen and (min-width: 928px) {
  header {
    padding-left: 60px;
    padding-right: 60px;
  }
  nav {
    justify-content: center;
    align-items: center;
    padding: 3px 18px;
  }
  nav .nav-links {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 50px 50px 50px 80px 105px 110px;
    transform: none;
    z-index: 0;
    transition: none;
    justify-content: right;
    position: relative;
    background-color: transparent;
    align-items: center;
    padding: 8px 0px;
    margin-bottom: 0;
    gap: 30px;
  }
  nav .logo img {
    width: 20%;
  }
  nav ul li a {
    font-size: 14px;
  }
  .burger {
    display: none;
  }
  #hero h1 {
    font-size: clamp(70px, 5vw, 72px);
  }
  #hero .containers {
    display: flex;
    justify-content: center;
  }
  #hero #lottie-animation {
    top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero .caption {
    display: flex;
    flex-direction: column;
  }
  #hero .grad {
    margin-top: 80px;
  }
  #activity {
    padding: 10px 60px;
    min-height: 250vh;
  }
  #activity h2 {
    font-size: clamp(44px, 5vw, 48px);
  }
  #activity .caption p {
    font-size: 14px;
  }
  #activity #lottie-animation {
    width: 50%;
    align-items: center;
  }
  #activity .group {
    flex-direction: row;
    justify-content: center;
  }
  #activity .oprec .group {
    flex-direction: row-reverse;
    gap: 30px;
  }
  #activity .oprec .caption {
    width: 50%;
    height: 100%;
  }
  #activity .oprec .accordion-item-header {
    font-size: 14px;
    justify-content: space-between;
  }
  #activity .type-activity .group .caption {
    margin-top: 0;
  }
  #activity .townhall2 img {
    width: 40%;
  }
  #activity .townhall2 .group {
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
  }
  #activity .townhall2 .group .caption {
    margin-top: 20px;
    width: 50%;
  }
  #activity .type-activity.upgrading .group {
    margin-top: 50px;
    justify-content: space-between;
  }
  #activity .type-activity.upgrading .caption {
    width: 55%;
    height: 100%;
  }
  #activity .type-activity.upgrading .caption p {
    font-size: 16px;
  }
  #activity .type-activity.upgrading #lottie-animation {
    width: 35%;
    height: 100%;
  }
  #activity .type-activity.first-gath img {
    width: 50%;
  }
  #activity .type-activity.first-gath .group {
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
  }
  #activity .type-activity.first-gath .group .caption {
    height: 100%;
    width: 45%;
  }
  #activity .type-activity.first-gath .group .caption p {
    font-size: 16px;
  }
  #activity .image-float {
    margin-top: 100px;
    display: flex;
    justify-content: center;
  }
  #activity .floating-image {
    width: 70%;
  }
  #graphic {
    min-height: 100vh;
    background-image: url(../images/background/bg-macbook.svg);
  }
  footer {
    padding: 100px;
  }
}
@media screen and (min-width: 1400px) {
  header {
    padding: 0px 100px;
  }
  nav {
    padding: 10px 25px;
    margin: 20px 90px;
  }
  nav .logo img {
    width: 15%;
  }
  #hero .caption {
    padding: 40px 90px;
  }
  #hero h1 {
    top: 70%;
  }
  #hero h2 {
    top: 83%;
  }
  #activity {
    padding: 50px 100px;
  }
  #activity .oprec .group {
    justify-content: start;
  }
  #activity .oprec .caption {
    width: 40%;
    margin-right: 10%;
  }
  #activity .oprec .caption p {
    font-size: 16px;
  }
  #activity #lottie-animation {
    width: 40%;
  }
  #activity .townhall2 .caption p {
    font-size: 16px;
  }
  #activity .type-activity.upgrading #lottie-animation {
    width: 30%;
    height: 100%;
  }
  #activity .type-activity.upgrading .caption {
    width: 60%;
  }
  #activity .type-activity.upgrading .caption p {
    font-size: 16px;
  }
  #graphic {
    background-image: url(../images/background/bg-macbook.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 120vh;
  }
  footer {
    padding: 100px 300px;
  }
  footer h4 {
    font-size: clamp(40px, 5vw, 48px);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
  }
}/*# sourceMappingURL=activity.css.map */