@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  position: relative;
  max-width: 80px;
}
header ul {
  position: relative;
  display: flex;
}
header ul li {
  list-style: none;
}
header ul li a {
  display: inline-block;
  color: #333;
  font-weight: 400;
  margin-left: 40px;
  text-decoration: none;
}
header ul li ul.dropdown {
  display: inline-block;
  margin: 2px 0;
  position: relative;
}
header ul li ul.dropdown li {
  display: block;
  padding: 4px 0;
}
header ul li ul.dropdown {
  width: 100%;
  position: absolute;
  z-index: 999;
  display: none;
}
header ul li a:hover {
  background: #fff;
}
header ul li:hover ul.dropdown {
  display: block;
}
.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .textBox {
  position: relative;
  max-width: 800px;
  transition: 0.5s;
}
.content .textBox .smpn {
  display: none;
}
.content .textBox .smpn.aktif {
  display: block;
  transition: 0.5s;
}
.content .textBox .osis {
  display: none;
}
.content .textBox .osis.aktif {
  display: block;
  /* margin-left: -300px; */
  transition: 0.5s;
}
.content .textBox .osis h2 span {
  color: #ffeead;
}

.content .textBox .osis a {
  background: #ffeead;
  color: #000;
}
.content .textBox .penggerak {
  display: none;
}
.content .textBox .penggerak.aktif {
  display: block;
  /* margin-left: -210px; */
  transition: 0.5s;
}
.content .textBox .penggerak h2 span {
  color: #03346e;
}

.content .textBox .penggerak a {
  background: #03346e;
  color: #fff;
}
.content .textBox h2 {
  color: #333;
  font-size: 4rem;
  line-height: 1.4em;
  font-weight: 500;
}
.content .textBox h2 span {
  color: #77cdff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.content .textBox p {
  color: #333;
}
.content .textBox a {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #77cdff;
  color: #fff;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
}
.content .imgBox {
  width: 600px;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 50px;
}
.content .imgBox img {
  width: 20rem;
  transition: 0.5s;
}
.thumb {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
}
.thumb li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}
.thumb li:hover {
  transform: translateY(-15px);
}
.thumb li img {
  max-width: 60px;
}
.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #77cdff;
  clip-path: circle(600px at right 800px);
  transition: 0.5s;
}
.toggle {
  display: none;
}
@media (max-width: 991px) {
  header {
    padding: 20px;
  }
  hedaer .logo {
    max-width: 20px;
  }
  header ul {
    display: none;
  }
  .toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 11;
  }
  header ul.navigation.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    z-index: 10;
  }
  header ul li a {
    font-size: 1.5em;
    margin: 5px 0;
  }
  section {
    padding: 20px 20px 120px;
  }
  .content {
    flex-direction: column;
    margin-top: 100px;
  }
  .content .textBox {
    max-width: 100%;
    margin-left: 70px;
  }
  .content .textBox h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .content .textBox .penggerak.aktif {
    display: block;
    margin-left: -70px;
  }
  .content .textBox .smpn.aktif {
    display: block;
    margin-left: -70px;
  }
  .content .textBox .osis.aktif {
    display: block;
    margin-left: -70px;
  }
  .content .imgBox {
    max-width: 100%;
    justify-content: center;
  }
  .content .imgBox img {
    max-width: 300px;
  }
  .thumb li img {
    max-width: 40px;
  }
  .circle {
    clip-path: circle(400px at center bottom);
  }
}
