* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-v20-latin-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v26-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v26-latin-500.woff2") format("woff2");
}

/* Global */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

main {
  flex-grow: 1;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 980px;
}

.btn {
  border-radius: 8px;
}

.btn-primary {
  background: #2d95ff;
  border-color: transparent;
}

/* Logo */
.navbar-brand {
  max-width: 100px !important;
  max-height: 70px !important;
  display: inline-block;
}
.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navbar */
.navbar {
  z-index: 9999;
  left: 0 !important;
  right: 0 !important;
  background: transparent !important;
  transition: backdrop-filter 0.4s ease-in-out, background 0.3s ease-in-out;
}
.bg-dark {
  background: rgba(23, 34, 43, 0.8) !important;
  backdrop-filter: blur(32px);
}
.bg-dark .navbar-toggler {
  color: #fff;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar .nav-link {
  color: #ffffff;
}
.navbar .nav-link:hover {
  opacity: 0.8;
}

/* Nav lang */
.nav-lang {
  color: #ffffff;
}

/* Banner */
.banner {
  position: relative;
  padding-top: 100px;
  height: 100vh;
  max-height: 1000px;
}
.banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: grey;
}

.banner__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 220px 0;
}
.banner__body--caption {
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;

  margin-bottom: 20px;
}
.banner__body--title {
  max-width: 688px;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.banner__btn {
  width: 209px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 50px;

  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Section */
section {
  margin-bottom: 70px;
  padding: 30px 0;
}
.section__title {
  margin: 0 1rem;
  margin-bottom: 17px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #17222b;
  color: #17222b;
}
.bg-dark .section__title {
  color: #ffffff;
  border-bottom-color: rgba(226, 226, 226, 0.3);
}
.section__desc {
  margin-bottom: 45px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #17222b;
}

/* ABOUT */
.card__about {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  border-color: transparent;
  background: #ffffff;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
}
.card__title {
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 2%;
  color: #17222b;
}

.card__about--desc {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
}

/* FOUNDER */
.card__founder {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.06);
  background: #fefefe;
}
.card__founder .card-header {
  border: none;
  background: none;
}
.card__founder .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.card__person--image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 100%;
  object-position: top;
}

/* WORK CARD */
.card__work--wrapper {
  display: flex;
  flex-direction: column;
}

.card__work {
  display: flex;
  justify-content: space-between;
  /* height: 570px; */
}

.card__work--image {
  width: 50%;
  object-fit: cover;
  object-position: center;
}

.card__work--body {
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  height: 100%;
  width: 50%;
  padding-left: 1rem;
  padding-top: 60px;
  padding-bottom: 22px;
}

.card__work:nth-child(even) .card__work--body {
  order: -1;
  padding-left: 0;
  padding-right: 1rem;
}

.card__work--title {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #17222b;
}

.card__work--desc {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #17222b;
}

/* FAQ */
.accordion {
  max-width: 900px;
  margin: auto;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #c8c8c8;
}
.accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #17222b;
}
.accordion-button,
.accordion-button:focus {
  box-shadow: none;
}
.accordion-collapse {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #17222b;
}

/* FOOTER */
footer {
  padding: 2rem 0;
  color: #ffffff;
  background: #17222b;
}
.footer--text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
}
.footer--text.small {
  font-size: 14px;
}

/* List */
.list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-item {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.list--title {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

.list-item:not(.list--title) {
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.list-item:hover:not(.list--title) {
  opacity: 0.8;
}

.list-link,
.list-link:hover {
  text-decoration: none;
  color: inherit;
  font: inherit;
  padding: 4px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

/* DETAIL */
.detail__title {
  margin: 0 1rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #17222b;
}
.detail__desc {
  margin: 0 1rem;
  margin-bottom: 34px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #17222b;
}

/* Media */
/* @media (max-width: 991px) {
  .navbar-collapse .collapsing > ul {
    display: none;
  }
  .bg-light .navbar-collapse.collapse.show {
    background: rgba(23, 34, 43, 0.8) !important;
    backdrop-filter: blur(32px);
  }
  .navbar-collapse.collapse.show {
    width: 100%;
    height: 100vh;
  }
  .navbar-collapse.collapse.show>ul{
    /* display: flex;
    align-items: center; */
/* } */
/* } */
@media (max-width: 768px) {
  .card__about {
    width: 100%;
  }
  .banner__body--title {
    font-size: 34px;
  }
  .section__title {
    font-size: 34px;
  }
  .section__desc {
    font-size: 18px;
  }

  .card__work--title {
    font-size: 24px;
  }
  .card__work--desc {
    font-size: 13px;
  }
}
@media (max-width: 650px) {
  .banner__body {
    padding: 120px 0;
  }
  .banner__body--caption {
    font-size: 16px;
    width: 100% !important;
    max-width: 90vw;
  }
  .banner__body--title {
    font-size: 26px;
    max-width: 90vw;
  }
  
  .section__title {
    font-size: 22px;
    margin: 0 1rem;
  }
  .section__desc {
    font-size: 14px;
    margin: 0 1rem 30px 1rem;
  }
  
  .card__title {
    font-size: 16px;
  }
  .card__about--desc {
    font-size: 12px;
  }
  
  .card__work {
    flex-direction: column;
  }
  .card__work--image,
  .card__work--body {
    width: 100%;
    padding-left: 0;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .card__work:nth-child(even) .card__work--body {
    order: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .card__work--title {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .card__work--desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .accordion-button {
    font-size: 15px;
    padding: 0.75rem 1rem;
  }
  .accordion-collapse {
    font-size: 13px;
  }

  .detail__title {
    font-size: 24px;
  }
  .detail__desc {
    font-size: 12px;
  }

  /* Disable AOS zoom animations on mobile */
  [data-aos="zoom-out-left"],
  [data-aos="zoom-out-right"] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .banner__body {
    padding: 100px 0;
  }
  .banner__body--caption {
    font-size: 14px;
    line-height: 1.4;
  }
  .banner__body--title {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .navbar-brand {
    max-width: 80px !important;
    max-height: 60px !important;
  }
  
  .section__title {
    font-size: 20px;
    margin: 0 0.75rem;
  }
  .section__desc {
    font-size: 13px;
    margin: 0 0.75rem 20px 0.75rem;
  }

  .card__work--title {
    font-size: 18px;
    margin-bottom: 0.75rem;
  }
  .card__work--desc {
    font-size: 12px;
  }
  
  .card__title {
    font-size: 15px;
  }
  .card__about--desc {
    font-size: 11px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 0.65rem 0.75rem;
  }
  .accordion-collapse {
    font-size: 12px;
  }

  .list--title {
    font-size: 13px;
  }
  .list-item {
    font-size: 12px;
  }

  .detail__title {
    font-size: 20px;
  }
  .detail__desc {
    font-size: 11px;
  }

  .footer--text {
    font-size: 12px;
  }
  .footer--text.small {
    font-size: 10px;
  }
}
