@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);

:root {
  --white: #f2fbfc;
  --boundry: 1200px;
  --quick: all 0.3s ease-in-out;
  --med: all 0.5s ease-in-out;
  --black: #092123;
  --lightblue: #dbf0f0;
  --blue: #1fb6bc;
  --blue2: #79cbce;
  --yellow: #e0a839;
  --unit: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: "Bebas Neue", sans-serif; }
h1 span, h2 span, h3 span, h4 span { color: var(--blue); }
a { font-family: sans-serif; font-weight: 400; text-decoration: none; }

h2.title { font-size: 32px; text-align: center; }
p.strong { font-size: 22px; font-weight: 600; }
p.strong span { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn-main {
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: 50px;
  color: var(--white);
  padding: 8px 20px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--quick);
}
.btn-main:hover { background: var(--white); color: var(--black); }
.btn-invert {
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 50px;
  padding: 8px 20px;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--quick);
}
.btn-invert:hover { background: var(--black); color: var(--white); }

/* ---------- Header ---------- */
.header-parent {
  height: 70px;
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-parent .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--boundry);
  margin: 5px auto;
  padding: 10px 0;
  border-radius: 10px;
  background: rgba(178, 214, 223, 0.473);
  border: 0.5px solid rgba(255, 255, 255, 0.226);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.header-parent .logo { margin-left: 10px; width: 20%; transition: var(--quick); }
.header-parent .logo img { height: 40px; transition: var(--quick); }
.header-parent .logo:hover img { height: 50px; }
.header-parent .links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60px;
  width: 40%;
  overflow: hidden;
}
.header-parent .links a {
  color: var(--black);
  margin: var(--unit);
  padding: 30px 20px;
  text-transform: uppercase;
  transition: var(--quick);
}
.header-parent .links a:hover,
.header-parent .links a.active { background: var(--black); color: var(--white); }
.header-parent .btn-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 10px;
  width: 20%;
}
.header-parent .menu { display: none; cursor: pointer; }

#header-mob {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transform: translateX(100%);
  transition: var(--quick);
}
#header-mob.openall { transform: translateX(0); }
#header-mob .close { position: absolute; top: 40px; right: 40px; font-size: 40px; cursor: pointer; }
#header-mob .links-mob { display: flex; flex-direction: column; align-items: center; }
#header-mob .links-mob a {
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin: 20px 0;
  padding: 20px 40px;
  text-transform: uppercase;
}
#header-mob .links-mob a:active { background: var(--black); color: var(--white); }

/* ---------- Homepage ---------- */
.homepage { display: flex; flex-direction: column; align-items: center; width: 100%; overflow: hidden; }
.homepage section { width: 100%; }
.homepage section:nth-child(even) { background: var(--lightblue); }

.sec1 { display: grid; place-items: center; min-height: 100vh; position: relative; }
.sec1 .hero-box { display: flex; max-width: var(--boundry); width: 100%; min-height: 100vh; padding-top: 90px; }
.sec1 .hero-box .left { display: flex; flex-direction: column; justify-content: center; width: 50%; padding: 20px; }
.sec1 .hero-box .left h1 { font-size: 60px; }
.sec1 .hero-box .left p { font-size: 20px; text-align: justify; margin-top: 20px; }
.sec1 .hero-box .left .btn-box { display: flex; align-items: center; justify-content: space-between; width: 60%; margin-top: 50px; }
.sec1 .hero-box .right { display: flex; align-items: center; justify-content: center; width: 50%; padding: 20px; }
.sec1 .hero-box .right img { max-height: 60vh; width: auto; max-width: 100%; }

.sec2 { display: grid; place-items: center; min-height: 60vh; padding: 60px 0; }
.sec2 .wcu-box { display: flex; flex-direction: column; max-width: var(--boundry); width: 100%; }
.sec2 .wcu-box .top { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 10px; }
.sec2 .wcu-box .bottom { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: space-around; margin-top: 20px; }
.sec2 .wcu-box .bottom .smallbox {
  display: flex;
  width: 450px;
  max-width: 100%;
  margin: 20px;
  padding: 15px;
  border: 3px solid var(--blue);
  border-radius: 10px;
}
.sec2 .wcu-box .bottom .smallbox .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: var(--blue);
  margin-right: 20px;
  animation: floating 3s ease-in-out infinite;
}
.sec2 .wcu-box .bottom .smallbox .text { width: 75%; }
.sec2 .wcu-box .bottom .smallbox .text h3 { font-size: 20px; }
.sec2 .wcu-box .bottom .smallbox .text p { text-align: justify; margin-top: 5px; }
@keyframes floating {
  0% { transform: translate(0); }
  50% { transform: translateY(5px); }
  100% { transform: translate(0); }
}

/* Vision & Mission */
.sec2-1 { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 0; background: var(--white) !important; }
.sec2-1 .mission-container { display: flex; flex-direction: column; max-width: var(--boundry); width: 100%; }
.sec2-1 .mission-container .top { text-align: center; }
.sec2-1 .mission-container .bottom { display: flex; align-items: center; margin-top: 20px; }
.sec2-1 .mission-left { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-around; width: 50%; }
.sec2-1 .mission-left .mission-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 10px 0;
  border: 3px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
  animation: rotate 5s ease-in-out infinite;
}
.sec2-1 .mission-left .mission-box:nth-child(2) { animation-delay: 2s; }
.sec2-1 .mission-left .mission-box:nth-child(3) { animation-delay: 3.5s; }
@keyframes rotate {
  0% { transform: rotateY(0); }
  25% { transform: rotateY(10deg); }
  50% { transform: rotateY(0); }
  75% { transform: rotateY(-10deg); }
  100% { transform: rotateY(0); }
}
.sec2-1 .mission-box .topic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  min-height: 130px;
  padding: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 150%;
  font-weight: 700;
  text-align: center;
}
.sec2-1 .mission-box .data { display: flex; flex-direction: column; justify-content: space-evenly; width: 70%; padding: 10px; }
.sec2-1 .mission-box .data ul { padding-left: 20px; }
.sec2-1 .mission-box .data ul li { padding: 3px; }
.sec2-1 .mission-right { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 50%; }
.sec2-1 .mission-right .vision-box { width: 80%; padding: 20px 50px; border-radius: 10px; background: var(--lightblue); }
.sec2-1 .mission-right .vision-box:first-child { margin-bottom: 50px; }
.sec2-1 .mission-right .vision-box p { margin-top: 10px; text-align: justify; }

/* Gallery */
.sec3 { display: grid; place-items: center; min-height: 60vh; padding: 60px 0; }
.sec3 .gallery-box { display: flex; flex-direction: column; max-width: var(--boundry); width: 100%; }
.sec3 .gallery-box .top { text-align: center; }
.sec3 .gallery-box .bottom { width: 100%; margin-top: 20px; }
.sec3 .imgss-box { display: flex; align-items: center; overflow-x: auto; padding: 10px; gap: 20px; }
.sec3 .imgss-box .slide {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  background-size: cover !important;
  background-position: center !important;
}
.sec3 .imgss-box .slide:nth-child(1) { background: url(../img/gallery-1.jpg); }
.sec3 .imgss-box .slide:nth-child(2) { background: url(../img/gallery-2.jpg); }
.sec3 .imgss-box .slide:nth-child(3) { background: url(../img/gallery-3.jpg); }
.sec3 .imgss-box .slide:nth-child(4) { background: url(../img/gallery-4.jpg); }
.sec3 .imgss-box .slide:nth-child(5) { background: url(../img/gallery-5.jpg); }
.sec3 .imgss-box .slide:nth-child(6) { background: url(../img/gallery-6.jpg); }
.sec3 .imgss-box .slide:nth-child(7) { background: url(../img/gallery-7.jpg); }
.sec3 .imgss-box .slide:nth-child(8) { background: url(../img/gallery-8.jpg); }
.sec3 .imgss-box .slide:nth-child(9) { background: url(../img/gallery-9.jpg); }
.sec3 .imgss-box .slide:nth-child(10) { background: url(../img/gallery-10.jpg); }

/* FAQ */
.sec4 { display: grid; place-items: center; min-height: 60vh; padding: 60px 0; }
.sec4 .faq-box { display: flex; flex-direction: column; max-width: var(--boundry); width: 100%; }
.sec4 .faq-box .top { text-align: center; }
.sec4 .faq-box .bottom { display: flex; flex-wrap: wrap; justify-content: space-around; margin-top: 20px; padding: 20px; }
.sec4 .faq {
  position: relative;
  width: 100%;
  margin: 10px;
  padding: 15px 40px 15px 20px;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: var(--quick);
}
.sec4 .faq h3 { font-family: sans-serif; font-style: italic; font-weight: 700; }
.sec4 .faq .arrow {
  position: absolute;
  top: 20px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: var(--quick);
}
.sec4 .faq p { max-height: 0; overflow: hidden; opacity: 0; transition: var(--med); }
.sec4 .faq.faq-open { background: var(--black); color: var(--white); }
.sec4 .faq.faq-open .arrow { transform: rotate(180deg); }
.sec4 .faq.faq-open p { max-height: 300px; opacity: 1; margin-top: 15px; font-size: 16px; text-align: left; }

/* ---------- Subpage container ---------- */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-height: 100vh;
  padding: 120px 20px 40px;
  background: var(--white);
}
.about-container .about-box { display: flex; align-items: center; justify-content: space-between; max-width: var(--boundry); width: 100%; }
.about-container .about-box .left { display: flex; flex-direction: column; justify-content: center; width: 55%; padding: 20px; }
.about-container .about-box .left h2 { font-size: 50px; }
.about-container .about-box .left p { margin: 10px 0; text-align: justify; }
.about-container .about-box .left a { margin-top: 20px; width: fit-content; }
.about-container .about-box .right { display: flex; flex-direction: column; justify-content: center; width: 45%; padding: 20px; }
.about-container .about-box .right img { width: 100%; height: auto; }

/* ---------- Contact (info cards) ---------- */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px 20px;
  background: var(--white);
}
.contact-container .page-head { text-align: center; margin-bottom: 30px; }
.contact-container .contact-box { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; max-width: var(--boundry); width: 100%; }
.contact-container .contact-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  min-height: 200px;
  margin: 10px;
  padding: 20px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  transition: var(--quick);
}
.contact-container .contact-box .box:hover { background: var(--lightblue); }
.contact-container .contact-box .box .icon { color: var(--blue); font-size: 35px; padding: 10px; }
.contact-container .contact-box .box a, .contact-container .contact-box .box span.val {
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-align: center;
  transition: var(--quick);
}
.contact-container .contact-box .box a:hover { color: var(--blue); }

/* ---------- Contact form ---------- */
.form-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 20px 60px;
  background: var(--white);
}
.form-card {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--boundry);
  width: 100%;
  border: 3px solid var(--blue);
  border-radius: 12px;
  overflow: hidden;
}
.form-card .form-intro {
  width: 40%;
  padding: 40px;
  background: var(--lightblue);
}
.form-card .form-intro h2 { font-size: 34px; }
.form-card .form-intro p { margin-top: 15px; text-align: justify; }
.form-card .form-intro .detail { margin-top: 20px; }
.form-card .form-intro .detail h3 { color: var(--blue); }
.form-card .form-intro .detail span { display: block; }
.form-card .form-body { width: 60%; padding: 40px; }
.form-card .form-body .grid2 { display: flex; flex-wrap: wrap; gap: 10px; }
.form-card .form-body .grid2 input { flex: 1 1 45%; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px 15px;
  border: none;
  border-bottom: 2px solid var(--blue);
  background: transparent;
  font-family: sans-serif;
  font-size: 16px;
  outline: none;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; margin: 15px 0; font-size: 13px; color: #444; }
.contact-form .consent input { width: auto; margin: 3px 0 0; }
.contact-form button {
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: 50px;
  color: var(--white);
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: var(--quick);
}
.contact-form button:hover { background: var(--white); color: var(--black); }
.contact-form .form-note { font-size: 12px; color: #777; margin-top: 15px; }

/* ---------- Apply ---------- */
.apply-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 120px 20px 40px;
  background: var(--white);
}
.apply-container .apply-box { display: flex; align-items: stretch; justify-content: space-between; max-width: var(--boundry); width: 100%; gap: 30px; flex-wrap: wrap; }
.apply-container .apply-box .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 400px;
  padding: 40px;
  border: 3px solid var(--blue);
  border-radius: 10px;
  text-align: center;
}
.apply-container .apply-box .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 400px;
  padding: 40px;
  background: var(--lightblue);
  border-radius: 10px;
  text-align: center;
}
.apply-container .apply-box .right a {
  margin-top: 20px;
  padding: 15px 30px;
  background: #2557a7;
  border: 3px solid #2557a7;
  border-radius: 5px;
  color: var(--white);
  font-weight: 600;
  transition: var(--quick);
}
.apply-container .apply-box .right a:hover { background: var(--white); color: #2557a7; }

/* ---------- Legal pages ---------- */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}
.legal-page h1 { font-size: 44px; margin-bottom: 10px; color: var(--black); }
.legal-page h2 { font-size: 26px; margin: 30px 0 10px; color: var(--black); }
.legal-page h3 { font-size: 20px; margin: 20px 0 8px; font-family: sans-serif; }
.legal-page p { font-family: sans-serif; line-height: 1.7; margin: 10px 0; color: #2a3a3b; }
.legal-page a { color: var(--blue); }
.legal-page strong { color: var(--black); }

/* ---------- Footer ---------- */
.footer_parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--black);
}
.footer_parent .footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--boundry);
  width: 100%;
  margin: auto;
  padding: 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: sans-serif;
}
.footer_parent .footer .col { padding: 20px; }
.footer_parent .footer .col1 { width: 45%; }
.footer_parent .footer .col1 .logo { display: flex; align-items: center; font-family: "Bebas Neue", sans-serif; font-size: 36px; text-transform: uppercase; }
.footer_parent .footer .col1 .logo img { height: 50px; margin-right: 20px; }
.footer_parent .footer .col1 .desc { padding: 20px 0; color: rgba(255, 255, 255, 0.45); border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.footer_parent .footer .col1 .social { display: flex; align-items: center; padding: 10px 0; }
.footer_parent .footer .col1 .social a { padding: 5px 10px; font-size: 22px; color: rgba(255, 255, 255, 0.45); transition: var(--quick); }
.footer_parent .footer .col1 .social a:hover { color: var(--blue); }
.footer_parent .footer .col2 { display: flex; flex-direction: column; }
.footer_parent .footer .footer-header { margin-bottom: 10px; color: var(--blue); font-family: "Bebas Neue", sans-serif; font-size: 150%; }
.footer_parent .footer .col2 a { padding: 8px 0; color: rgba(255, 255, 255, 0.45); transition: var(--quick); }
.footer_parent .footer .col2 a:hover { color: var(--white); }
.footer_parent .footer .col3 { width: 30%; }
.footer_parent .footer .col3 iframe { width: 100%; height: 200px; border: none; border-radius: 5px; }
.footer_parent .copy { max-width: var(--boundry); margin: 15px auto; color: rgba(255, 255, 255, 0.4); font-size: 14px; text-align: center; }
.footer_parent .copy a { color: #fff; }

/* ---------- Responsive ---------- */
@media only screen and (max-width: 1000px) {
  p { font-size: 14px; }
  h1 { font-size: 32px !important; text-align: center; }
  h2.title { font-size: 34px; }

  .header-parent { height: 50px; top: 0; }
  .header-parent .header-container { margin: 10px; }
  .header-parent .links, .header-parent .btn-container { display: none !important; }
  .header-parent .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 15px;
    font-size: 30px;
  }

  .sec1 .hero-box { flex-direction: column-reverse; padding-top: 70px; }
  .sec1 .hero-box .left, .sec1 .hero-box .right { width: 100%; align-items: center; text-align: center; }
  .sec1 .hero-box .left h1 { text-align: center; }
  .sec1 .hero-box .left p { text-align: justify; }
  .sec1 .hero-box .left .btn-box { width: 100%; justify-content: space-around; }
  .sec1 .hero-box .right img { max-height: 35vh; }

  .sec2-1 .mission-container .bottom { flex-direction: column; }
  .sec2-1 .mission-left, .sec2-1 .mission-right { width: 100%; }
  .sec2-1 .mission-left .mission-box { width: 100%; }
  .sec2-1 .mission-right .vision-box { width: 95%; padding: 20px 25px; }
  .sec2-1 .mission-right .vision-box:first-child { margin: 30px 0; }

  .about-container .about-box { flex-direction: column-reverse; }
  .about-container .about-box .left { width: 100%; align-items: center; text-align: center; }
  .about-container .about-box .left h2 { font-size: 34px; text-align: center; }
  .about-container .about-box .left p { text-align: justify; }
  .about-container .about-box .right { width: 80%; }

  .form-card .form-intro, .form-card .form-body { width: 100%; }

  .footer_parent .footer { flex-direction: column; }
  .footer_parent .footer .col { width: 100% !important; }
  .footer_parent .footer .col1 .social { justify-content: center; }
}

@media only screen and (max-width: 600px) {
  .sec1 .hero-box .left h1 { font-size: 28px !important; }
  .form-card .form-body .grid2 input { flex: 1 1 100%; }
  .legal-page h1 { font-size: 32px; }
  .legal-page h2 { font-size: 22px; }
}
