/* Variables */
:root {
  --ff-primary: "Poppins", sans serif;
  --ff-accent: 'Moulpali', cursive;
  --txt-primary: #474A48;
  --txt-hero: #2C302E;
  --bg-primary: #f3f8ff;
  --bg-blue: #396afc;
  --bg-blue1: #221ccd;
  --bg-blue2: #2948ff;
  --bg-orange: #F4DBD7;
  --bg-red: #ED254E;
  --bg-pink: #fcb0c2;
}

/* Reset */
html {
  font-size: 100%;
}

li {
  list-style-type: none;
}

body, p, a, ul, li {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

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

/* Base Styles */
body {
  font-family: var(--ff-primary);
  font-weight: 200;
  font-size: 1.125rem;
  line-height: 1.6;
  height: 100%;
  background-color: var(--bg-primary);
  margin: 0;
}

/* Fonts */
h1 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 3.1rem;
  line-height: 1.2em;
  color: var(--txt-hero);
  margin-bottom: 20px;
}

h2 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--txt-primary);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

h3 {
  font-family: var(--txt-primary);
  font-weight: 200;
  font-size: 1rem;
  color: var(--txt-hero);
  letter-spacing: .05em;
}

h4 {
  font-size: .8rem;
  font-weight: 200;
  line-height: 2em;
  color: var(--txt-primary);
  margin-bottom: 2.5rem;
}

p {
  color: var(--txt-primary);
  font-size: .8rem;
  font-weight: 200;
  line-height: 2em;
}

/* Mobile Styles */
.container {
  width: MIN(1200px, 85%);
  margin: 0 auto;
}

.logo-gmt {
  width: 60px;
  padding-top: 30px;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

.hamburger {
  padding-top: 52px;
}

.nav-link {
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  color: var(--txt-primary);
}

.nav-menu {
  position: fixed;
  right: -100%;
  gap: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--bg-pink);
  opacity: 95%;
  width: MIN(400px, 60%);
  height: 100%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 80px;
  letter-spacing: 3px;
}

.nav-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-primary);
}

.nav-menu.active {
  right: 0;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
  background-color: #EFF2F1;
}

.hamburger.active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
  background-color: #EFF2F1;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: black;
}

header {
  overflow: hidden;
}

header .button {
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--bg-blue)), to(var(--bg-blue2)));
  background-image: linear-gradient(to bottom right, var(--bg-blue), var(--bg-blue2));
  border: none;
  padding: 1.5em 2em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: .8rem;
  cursor: pointer;
  margin-bottom: 40px;
  border-radius: .3em;
  letter-spacing: .1rem;
}

header .button a {
  color: var(--bg-primary);
}

header .button3:hover {
  -webkit-transition: 7s ease;
  transition: 7s ease;
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--bg-blue1)), to(var(--bg-blue2)));
  background-image: linear-gradient(to bottom right, var(--bg-blue1), var(--bg-blue2));
}

.kartu {
  margin: 20px 0;
  border-top: 1.5px solid var(--bg-blue2);
  border-bottom: 1.5px solid var(--bg-blue2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0;
}

.kartu .sml-card {
  padding: 15px;
  border-left: 1.5px solid var(--bg-blue);
  margin-top: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex: 1;
      flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: .2em;
}

.kartu .sml-card img {
  height: 22px;
}

.kartu .sml-card h3 {
  font-weight: 200;
  font-size: .8rem;
  color: var(--txt-primary);
}

section {
  margin: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

section .mengapa {
  padding: 20px 0;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

section .sml-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section .sml-box h2 {
  margin: 0;
}

section .sml-box li {
  padding: 20px 30px;
  gap: 1rem;
  border-bottom: 1.5px solid var(--bg-blue);
  border-radius: .2em;
  margin: 25px 0;
  background-repeat: no-repeat;
  background-position: top 20px right 25px;
  background-size: 50px;
}

section .sml-box .disiplin {
  background-image: url("./img/Disiplin.svg");
}

section .sml-box .jujur {
  background-image: url("./img/Jujur.svg");
}

section .sml-box .semangat {
  background-image: url("./img/Semangat.svg");
}

article {
  margin: 80px 0;
  padding: 40px 20px;
  border-top: 1.5px solid var(--bg-blue);
  border-bottom: 1.5px solid var(--bg-blue);
  border-radius: .2em;
  background-image: url("./img/bg-halftone.svg");
  background-repeat: no-repeat;
  background-position: center right;
}

article h2 {
  color: var(--txt-hero);
  font-weight: 200;
  margin-bottom: 30px;
  letter-spacing: .01em;
}

article p {
  color: var(--txt-hero);
}

aside {
  margin: 80px 0;
}

aside .sejarah {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .7em;
  margin-top: 30px;
}

aside .sejarah .tahun {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  border-radius: .2em;
  background-image: url("./img/ribbon.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: top 12px right 10px;
}

aside .sejarah .tahun h3 {
  font-weight: 700;
  border-bottom: 1.5px solid var(--bg-blue);
  padding: 5px;
  position: relative;
  z-index: -1;
}

aside .sejarah .tahun p {
  padding: 8px;
  padding-right: 15px;
}

.cta {
  margin: 40px auto;
  width: 100%;
  text-align: center;
}

.cta .ctakiri {
  margin-bottom: 20px;
}

.cta .ctakiri p {
  font-size: .73rem;
}

.cta .ctakiri h2 {
  font-weight: 600;
}

.cta .ctakanan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1.5px solid var(--bg-blue);
  border-radius: .8em;
}

.cta .ctakanan .kiri {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--bg-blue);
  border-radius: .7em 0 0 .7em;
  padding: 20px;
}

.cta .ctakanan .kiri a {
  color: var(--bg-primary);
  font-size: .9rem;
}

.cta .ctakanan .kanan {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}

.cta .ctakanan .kanan a {
  color: var(--txt-primary);
  font-size: .9rem;
}

.cta .socmed {
  margin-top: 40px;
}

.cta .socmed ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em;
}

.cta .socmed img {
  width: 30px;
}

.vismis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding: 20px;
}

.vismis .visi {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex: 1 1 48%;
      flex: 1 1 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .1rem;
  margin-bottom: 3rem;
}

.vismis .visi h2 {
  font-size: 7rem;
  line-height: 1;
  color: var(--bg-pink);
}

.vismis .misi {
  border-left: 1.5px solid var(--bg-blue);
  padding-left: 20px;
}

.vismis .misi h3 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  font-family: var(--ff-accent);
}

.vismis .misi ul li {
  padding-bottom: 1em;
}

.cardo {
  margin: 40px 0;
  text-align: center;
  font-size: 1.4em;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cards__item {
  height: 100px;
}

.card {
  position: relative;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 50%;
      flex: 1 1 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #396afc;
}

.card__frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.card__picture {
  margin-bottom: 0px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.card__picture img {
  display: block;
  max-width: 100%;
  height: auto;
}

.card__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: .8em;
}

.card__overlay {
  position: absolute;
  bottom: 5px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 92px;
  height: 22px;
  border-left: 1.5px solid #396afc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.card__overlay::before {
  content: "detail";
  font-size: .7em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.card__overlay:hover, .card__overlay:focus {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  opacity: 1;
  background-color: var(--bg-orange);
  border-left: 1.5px solid #396afc;
  border-right: 1.5px solid #396afc;
  border-top: 1.5px solid #396afc;
}

.card__overlay:hover::before, .card__overlay:focus::before {
  content: none;
}

.card__content {
  z-index: 1;
  padding: 20px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -webkit-transition: 0s;
  transition: 0s;
}

.card__overlay:hover ~ .card__content {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s 0.3s;
  transition: 0.2s 0.3s;
}

.card__content h2 {
  margin: 0;
  font-size: .9em;
}

.card__content p {
  font-size: .7em;
}

footer {
  margin: 80px auto;
  text-align: center;
}

footer h2 {
  font-size: .9em;
}

footer h3 {
  font-size: .7em;
}

footer p {
  margin-top: 10px;
  font-size: .6em;
}

footer span {
  color: var(--bg-blue);
}

/* ------------------------------------------


/* Small Tablest Styles */
@media screen and (min-width: 620px) {
  h1 {
    font-weight: 600;
    font-size: 4rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: .85rem;
  }
  p {
    font-size: .8rem;
  }
  header {
    background-image: url("./img/MAP_bg.svg");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: top 0 right 0;
  }
  .vismis {
    gap: .4rem;
    padding: 0px;
  }
  .vismis .visi {
    gap: .2rem;
  }
  .vismis .visi h2 {
    font-size: 5rem;
    line-height: 1;
    color: var(--bg-pink);
  }
  .vismis .misi h3 {
    font-size: 2.3rem;
    margin-bottom: .2rem;
  }
}

/* Large tablet and Laptop Styles */
@media screen and (min-width: 820px) {
  h1 {
    font-weight: 600;
    font-size: 5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h4 {
    font-size: .9rem;
  }
  p {
    font-size: .85rem;
  }
  .hamburger {
    display: none;
    cursor: pointer;
  }
  .nav-menu {
    position: relative;
    right: 0;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: unset;
    opacity: auto;
    width: auto;
    height: auto;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-top: 25px;
    letter-spacing: 0;
  }
  .nav-link {
    color: var(--txt-primary);
    padding-left: 60px;
  }
  .nav-link:hover {
    color: var(--bg-blue2);
    border-bottom: 1px solid var(--bg-orange);
  }
  section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section h2 {
    font-size: 1.5rem;
  }
  section .sml-box .disiplin {
    opacity: 0;
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
    -webkit-transition: .7s;
    transition: .7s;
  }
  section .sml-box .disiplin.muncul {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  section .sml-box .jujur {
    opacity: 0;
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
    -webkit-transition: 1s;
    transition: 1s;
  }
  section .sml-box .jujur.muncul {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  section .sml-box .semangat {
    opacity: 0;
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
    -webkit-transition: 1.4s;
    transition: 1.4s;
  }
  section .sml-box .semangat.muncul {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .mengapa {
    background-image: url("./img/group-young.svg");
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: bottom 15px left 0;
    -webkit-transition: 1.5s;
    transition: 1.5s;
    opacity: 0;
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
    -webkit-transition: .7s;
    transition: .7s;
  }
  .mengapa.m-img {
    background-size: 100%;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  article {
    margin: 40px 0;
    padding: 90px 50px;
    opacity: 0;
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
    -webkit-transition: .7s;
    transition: .7s;
  }
  article h2 {
    font-size: 1.5rem;
  }
  article.muncul {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  aside h2 {
    font-size: 1.5rem;
  }
  aside .sejarah {
    gap: 4em;
  }
  aside .sejarah .tahun {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35%;
            flex: 1 1 35%;
    background-size: 10%;
    opacity: 0;
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
    -webkit-transition: .7s;
    transition: .7s;
  }
  aside .sejarah .tahun h3 {
    padding: 15px;
    position: relative;
    z-index: -1;
  }
  aside .sejarah .tahun p {
    padding: 15px;
    padding-right: 50px;
  }
  aside .sejarah .tahun.muncul {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .cta {
    margin-bottom: 8em;
  }
  .cta .ctakiri {
    margin-bottom: 40px;
  }
  .cta .ctakiri p {
    font-size: .9rem;
  }
  .cta .ctakiri h2 {
    font-size: 2rem;
    font-weight: 600;
  }
  .cta .ctakanan {
    width: 50%;
    margin: 0 auto;
  }
  .cta .ctakanan .kiri a {
    font-size: 1rem;
  }
  .cta .ctakanan .kanan a {
    font-size: 1rem;
  }
  .vismis {
    gap: 1.7rem;
    padding: 0px;
  }
  .vismis .visi {
    gap: 1rem;
    margin-bottom: 3em;
  }
  .vismis .visi h2 {
    font-size: 7rem;
    line-height: 1;
    color: var(--bg-pink);
  }
  .vismis .misi h3 {
    font-size: 2.3rem;
    margin-bottom: .2rem;
  }
  .card__title {
    font-weight: 200;
    font-size: .9em;
  }
  .card__overlay::before {
    content: "detail";
    font-size: .8em;
  }
  .card__content h2 {
    font-size: 1em;
  }
  .card__content p {
    font-size: .8em;
  }
}

/* Desktop Styles */
@media screen and (min-width: 1200px) {
  h1 {
    font-weight: 600;
    font-size: 7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1rem;
  }
  p {
    font-size: .9rem;
  }
  .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  footer h2 {
    font-size: 1em;
  }
  footer h3 {
    font-size: .7em;
  }
}

/* Target for device that don't hover */
@media (hover: none) {
  .card__overlay {
    visibility: hidden;
  }
}

/* Target for device that can hover */
@media (hover: hover) {
  .card__overlay {
    visibility: visible;
  }
  .card__frame p {
    visibility: hidden;
  }
}
/*# sourceMappingURL=style.css.map */