@import url("https://fonts.googleapis.com/css2?family=Poller+One&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
:root {
  --red: #ed0006;
  --yellow: #fef400;
  --gray: #565656;
}
::selection {
  background: var(--yellow);
  color: white;
}
body {
  overflow-x: hidden;
}
button::selection,
img::selection {
  background: none;
  color: none;
}
h1 {
  font-size: 4em;
  font-weight: 600;
  line-height: 1.5;
}
h2 {
  font-size: 3em;
  font-weight: 600;
  line-height: 1.5;
}
a {
  color: black;
  text-decoration: none;
  display: inline-block;
  transition: all 100ms ease;
}
button {
  border: none;
  padding: 1em 1.5em 1em 1.5em;
  background-color: var(--blue);
  color: white;
  border-radius: 2em;
  cursor: pointer;
  font-size: 0.8rem;
}
button:hover {
  background-color: #fb7f30;
  transition: all 300ms ease-in;
}
.container {
  padding-left: 4em;
  padding-right: 4em;
}
.hide {
  display: none;
}
.show-grid {
  display: grid !important;
}

/* bagian putih untuk navbar putih*/
.bg-white-shadow {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 8px 25px rgba(183, 211, 220, 0.1);
  transition: all 300ms ease;
}

.anchor {
  display: block;
  height: 5em;
  margin-top: -5em;
  visibility: hidden;
}
.button {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
}
.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* bagian putih untuk navbar putih*/

/*untuk logo sosial media*/
.tiktoklogo {
  font-size: 100px;
  position: relative;
  color: #00fff8;
}
.tiktoklogo i:last-child {
  mix-blend-mode: multiply;
  color: #ff0010;
  position: absolute;
  left: 5px;
  top: 7px;
}

/*untuk slide foto ketum*/
.btn-reset,
.btn-reset:active,
.btn-reset:focus,
.btn-reset:hover {
  border: none;
  padding: 0;
  background-color: unset;
}
/*untuk slide foto ketum*/

/* Header */
header #nav-left {
  display: flex;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6em;
}
header a {
  font-weight: bold;
  color: black;
}
header a.a-without-bg {
  color: black;

  /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); */
  /* background-color: rgba(255, 255, 255, 0.442);
  border-radius: 10px ;
  padding-left: 0.5em;
  padding-right: 0.5em; */
}
header a.a-with-bg {
  color: black;
}
header a.active {
  color: #fb7f30;
  font-weight: bold;
}
header a.active-without-bg {
  color: #fb7f30;
  font-weight: bold;
  /* background-color: var(--blue);
  border-radius: 10px ;
  padding-left: 0.5em;
  padding-right: 0.5em; */
}
header li::after {
  content: "";
  position: absolute;
  display: block;
  padding-bottom: 0.4em;
  border-bottom: 2.5px solid #fb7f30;
  border-radius: 100;
  width: 1.5em;
  transform: scaleX(0);
  transition: transform 100ms ease-in-out;
  transform-origin: left bottom;
}
header li:hover::after {
  transform: scaleX(1);
}
header ul,
header .nav-list {
  display: flex;
}
header img {
  height: 3em;
  margin-right: 0.5rem;
}
header .nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fb7f30;
  margin-top: 0.2rem;
  flex: 1 1 10rem;
}
header .nav-logo span {
  color: #fb7f30;
}
header li {
  margin-right: 2em;
  list-style: none;
}

.hamburger,
.close-hamburger {
  display: none;
}

/*dropdown*/
header .nav-list ul li .dropdown {
  overflow: hidden;
}

header .nav-list ul li .dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 1px 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

header .nav-list ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

header .nav-list ul li .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #fb7f30;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* END dropdown */

/* END Header */
/* Hero Section */
.hero-section {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: space-around;
  background-image: url(img/pengurus/pengurus252.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: 0%;
  background: linear-gradient(0deg, #fb7f30 2%, rgba(10, 10, 10, 0) 40%);
}
.hero-section .hero {
  padding: 1.2rem 7%;
  max-width: 150rem;
  text-align: center;
}
.hero-section h1 {
  text-align: center;
  font-size: 3rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.5;
  mix-blend-mode: difference;
  color: #fb7f30;
}

.hero-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 0.7rem;
  line-height: 2rem;
  color: white;
}
.hero-section .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  color: #fff;
  background-color: #fb7f30;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgb(1, 1, 2, 0.5);
}

/* END Hero Section */

/* Wave Section */
.wave-section {
  position: relative;
  height: 9em;
  overflow-x: hidden;
}
.ocean {
  height: 9em;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.wave {
  position: absolute;
  width: 300vw;
  height: 9em;
  background: url("assets/wave.svg") repeat-x;
  background-size: auto 100%;
  top: 0;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0) scaleX(-1);
}
/* End Wave Section */

/* tdc */
.tdc {
  padding-top: 3em;
}

.tdc-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -99;
  transform: scaleY(-1) skew(0, 5deg);
  background-color: white;
}

.tdc-hima h2 {
  margin-bottom: 0.5em;
  text-align: left;
  font-size: 2.5rem;
  line-height: 2rem;
  color: #fb7f30;
  margin-left: 3rem;
}
.tdc-hima p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  text-align: justify;
  margin-left: 3rem;
  margin-right: 6rem;
}

.tdc img {
  width: 25%;
  margin-left: 3rem;
}

.tdc-hima .cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #fb7f30;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgb(1, 1, 2, 0.5);
}
/*end tdc*/

/* bindes */
.bindes {
  padding-top: 3em;
}

.bindes-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -99;
  transform: scaleY(-1) skew(0, 5deg);
  background-color: white;
}

.bindes-hima h2 {
  margin-bottom: 0.5em;
  text-align: left;
  font-size: 2.5rem;
  line-height: 2rem;
  color: #fb7f30;
  margin-left: 3rem;
}
.bindes-hima p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  text-align: justify;
  margin-left: 3rem;
  margin-right: 6rem;
}

.bindes img {
  width: 25%;
  margin-left: 3rem;
}

.bindes-hima .cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #fb7f30;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgb(1, 1, 2, 0.5);
}
/*end bindes*/

/* Intro koas*/
.koas {
  padding-top: 2em;
  padding-bottom: 2em;
  flex-direction: column;
}

.koas-hima p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.2rem;
  color: black;
  text-align: justify;
  margin-left: 13rem;
  margin-right: 13rem;
}

.koas img {
  width: 100%;
}
/* End koas */

/*bagian sejarah*/
.sejarah {
  padding-top: 8em;
  padding-bottom: 2em;
  display: flex;
  align-items: center;
}

.sejarah-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -99;
  transform: scaleY(-1) skew(0, 5deg);
  background-color: white;
}
.sejarah .sejarah-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5em;
}

.sejarah-left img {
  width: 26vw;
  margin-bottom: 0.5em;
}
.sejarah-left img:hover {
  transform: scale(1.2) translateY(10px);
  transition: 0.4s;
}
.divisi-left p {
  font-weight: 300;
  color: black;
}

.sejarah-item h2 {
  margin-bottom: 0.5em;
  text-align: left;

  font-size: 2.5rem;
  line-height: 2rem;
  color: #fb7f30;
  margin-left: 1.2rem;
}

.sejarah-right .sejarah-item p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  text-align: justify;
}
.sejarah-right .sejarah-item ol {
  text-align: justify;
}
.sejarah-right .sejarah-item ul {
  text-align: justify;
}
.sejarah-right .sejarah-item li {
  color: #fb7f30;
  font-weight: bold;
}
.sejarah-right .sejarah-item a {
  margin-bottom: 0.5rem;
}

.sejarah-hima h2 {
  margin-bottom: 0.5em;
  text-align: left;
  font-size: 2.5rem;
  line-height: 2rem;
  color: #fb7f30;
  margin-left: 3rem;
}
.sejarah-hima p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  text-align: justify;
  margin-left: 3rem;
  margin-right: 6rem;
}
/* end sejarah */

/* Intro Section */
/*bagian tombol selengkapnya*/
.intro-item .cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #fb7f30;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgb(1, 1, 2, 0.5);
}
/* end bagian tombol selengkapnya*/
.intro {
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
  align-items: center;
}
.intro-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -99;
  transform: scaleY(-1) skew(0, 5deg);
  background-color: white;
}
.intro .intro-left,
.divisi .divisi-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5em;
}

.intro-left img {
  width: 26vw;
  margin-bottom: 0.5em;
}
.intro-left img:hover {
  transform: scale(1.2) translateY(10px);
  transition: 0.4s;
}
.divisi-left p {
  font-weight: 300;
  color: black;
}
.intro-item h2 {
  margin-bottom: 0.5em;
  text-align: left;
  margin-top: 0.1rem;
  font-size: 2.5rem;
  line-height: 2rem;
  color: #fb7f30;
}
.divisi-item h2 {
  margin-bottom: 0.8em;
}
.intro-right .intro-item p,
.divisi-right .divisi-item p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  text-align: justify;
}
/* End Intro Section */

/* Leader Section */
.leader-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
}
.leader-section .leader-left p {
  font-size: 2em;
  font-weight: 300;
  color: black;
  font-style: italic;
}
.br {
  display: block;
}
.leader-section .leader-left h1 {
  font-weight: bold;
  color: #fb7f30;
  line-height: 4rem;
}
.leader-section .leader-left p span {
  font-weight: 500;
  color: #fb7f30;
}
.leader-section .next-gallery img,
.leader-section .before-gallery img {
  height: 3em;
}
button.next-gallery img:hover,
button.before-gallery img:hover {
  filter: drop-shadow(0px 10px 10px rgb(255, 255, 255));
}
.leader-section .next-gallery,
.leader-section .before-gallery {
  position: relative;
}
.leader-section .before-gallery img {
  transform: scaleX(-1);
}
.leader-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -99;
  transform: scaleY(-1) skew(0, 5deg);
  background-color: #feffed;
}
.leader-background-below {
  height: 180vh;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -100;
  background-color: white;
}
.gallery-wrapper {
  display: flex;
  width: 50%;
}
.gallery {
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
}
.gallery-card:hover {
  /* transform: scale(1.1); */
  border: 2px solid white;
  transition: all 100ms ease-in-out;
}
.gallery-item {
  grid-area: 1 / 1 / 2 / 2;
}
.gallery-card {
  width: max-content;
  height: max-content;
  border-radius: 1em;
  background-color: #fb7f30;
}
.gallery-card .image {
  background-color: #ffffff;
  height: 23em;
  background-size: cover;
  background-position: top center;
  border-radius: 1em 1em 0 0;
  transition: all 200ms ease-in-out;
}
.gallery-image-2 {
  height: 23em !important;
}
.gallery-image-3 {
  height: 22em !important;
}
.gallery-image-4 {
  height: 21em !important;
}
.gallery-image-5 {
  height: 20em !important;
}
.gallery-image-6 {
  height: 19em !important;
}
.gallery-image-7 {
  height: 18em !important;
}
.gallery-image-8 {
  height: 17em !important;
}
.gallery-image-9 {
  height: 16em !important;  
}
.gallery-item-2,
.gallery-item-3,
.gallery-item-4,
.gallery-item-5,
.gallery-item-6,
.gallery-item-7,
.gallery-item-8,
.gallery-item-9 {
  filter: blur(5px) !important;
  transition: all 200ms ease-in-out;
}
.gallery-item-2 {
  z-index: -1;
  margin-left: 3em !important;
}
.gallery-item-3 {
  z-index: -2;
  margin-left: 6em !important;
}
.gallery-item-4 {
  z-index: -3;
  margin-left: 9em !important;
}
.gallery-item-5 {
  z-index: -4;
  margin-left: 12em !important;
}
.gallery-item-6 {
  z-index: -5;
  margin-left: 15em !important;
}
.gallery-item-7 {
  z-index: -6;
  margin-left: 15em !important;
}
.gallery-item-8 {
  z-index: -7;
  margin-left: 15em !important;
}
.gallery-item-9 {
  z-index: -8;
  margin-left: 15em !important;
}
.gallery-card .periode {
  position: absolute;
  padding: 0.5em;
  background-color: #fb7f30;
  border-radius: 1em 0 1em 0;
  color: white;
  font-size: 0.8em;
}
.gallery-card .info {
  padding: 0.8em;
  display: flex;
  width: 16em;
  flex-direction: column;
  align-items: center;
}
.gallery-card .name {
  font-weight: 600;
  color: white;
}
.gallery-card .instagram {
  display: flex;
  align-items: center;
  margin-top: 0.5em;
  font-size: 1em;
  color: white;
}
.gallery-card .instagram img {
  margin-right: 0.5em;
  height: 0.8em;
}
/* END Leader Section */

/* Visi-Misi Section*/
.visi-misi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 3em;
}
.visi-item,
.misi-item,
.tujuan-item {
  background-color: white;
  padding: 1.5em;
  margin-top: 2em;
  box-shadow: 0px 27px 87.5087px rgba(2, 40, 43, 0.1);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visi,
.value-misi,
.value-tujuan {
  flex-basis: unset;
  margin-left: 1em;
  width: 70%;
}
.visi-item .title h2,
.misi-item .title h2,
.tujuan-item .title h2 {
  margin-top: 0;
}
.visi-misi h1 {
  text-align: center;
  margin-top: 1;
  font-size: 3em;
}
.visi-item .title,
.misi-item .title,
.tujuan-item .title {
  text-align: center;
  color: #fb7f30;
  width: 30%;
}
.visi,
.value-misi,
.value-tujuan {
  padding-left: 0;
}
.visi li,
.value-misi li,
.value-tujuan li {
  padding-left: 0;
  list-style: decimal;
  margin-bottom: 0.5em;
}
/* END Visi-Misi Section*/

/* Structure Section */
.org-structure {
  padding-top: 8em;
  padding-bottom: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.org-structure h2 {
  text-align: center;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: bold;
}
.org-structure-item {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  width: 100%;
}

.org-structure-item .title {
  font-size: 1.2em;
  font-weight: 600;
  color: black;
}
.org-structure-wrapper {
  margin-right: 1.5em;
}
.structure-card1 {
  align-items: center;
  width: 100%;
  border-radius: 1em 0 1em 0;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  margin-right: 1.5em;
  background-color: white;
  box-shadow: 0px 3px 10px rgba(183, 211, 220, 0.15);
}

.structure-card1:hover {
  transform: scale(1.05);
  border: 2px solid var(--blue);
}
.structure-card1 img {
  width: 60%;
  border-radius: 10px;
}
.structure-card1 img {
  margin-bottom: 0.5em;
}

/* End Org-Structure Section */

/* Intro Section */
.intro {
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
  align-items: center;
}
.intro .intro-left,
.divisi .divisi-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5em;
}
.intro-left img {
  width: 30vw;
  margin-bottom: 0.5em;
}
.intro-left p,
.divisi-left p {
  font-weight: 300;
  color: black;
}
.intro-item h2,
.divisi-item h2 {
  margin-bottom: 0.1em;
}
.intro-right .intro-item p,
.divisi-right .divisi-item p {
  margin-bottom: 1em;
  line-height: 1.5;
  font-weight: 400;
  color: black;
}
/* End Intro Section */

/* Org-Structure Section */
.org-structure {
  padding-top: 5em;
  padding-bottom: 8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.org-structure h2 {
  text-align: center;
  line-height: 1.5;
}
.org-structure-item {
  display: flex;
  flex-direction: column;
  margin-top: 1.5em;
  width: 100%;
}
.org-structure-item .title {
  margin-bottom: 0.5em;
  font-size: 1.5em;
  font-weight: 600;
  color: black;
}
.org-structure-wrapper {
  padding-top: 1em;
  padding-right: 1em;
  padding-left: 1em;
  display: flex;
  margin-right: 1.5em;
  justify-content: center;
}
.structure-card {
  align-items: center;
  width: 100%;
  border-radius: 1em 0 1em 0;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  margin-right: 1.5em;
  background-color: white;
  box-shadow: 0px 3px 10px rgba(183, 211, 220, 0.15);
}
.structure-card-division img {
  width: auto !important;
  height: 12em;
}
.structure-card-co img {
  width: 10em !important;
}
.structure-card:hover {
  transform: scale(1.05);
  border: 2px solid #fb7f30;
}
.structure-card img {
  width: 15em;
}
.structure-card img {
  margin-bottom: 0.5em;
}
.structure-card p,
.structure-card-division h3,
.structure-card h3 {
  text-align: center;
}
.structure-card p {
  line-height: 1.5;
  font-weight: 400;
  color: black;
}
.structure-card-co p {
  font-weight: 400;
  font-size: 1em;
  color: black;
}
/* End Org-Structure Section */
/* filter-departement section */
.hero2-section {
  display: flex;
  min-height: 40vh;
  align-items: center;
  justify-content: space-around;
  background-image: url(img/pengurus/pengurus252.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero2-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: 0%;
  background: linear-gradient(0deg, #fb7f30 2%, rgba(10, 10, 10, 0) 40%);
}
.hero2-section .hero {
  padding: 1.2rem 7%;
  max-width: 150rem;
  text-align: center;
}
.hero2-section h1 {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.5rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.5;
  mix-blend-mode: difference;
  color: #fb7f30;
}
.filter-division {
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  justify-content: center;
}
.btn-pill {
  margin-top: 3em;
  border-radius: 10em;
  margin-right: 1.5em;
  border: 2px solid #fb7f30;
  color: #fb7f30;
  background-color: white;
}
.btn-pill.active,
.btn-pill:hover {
  border-color: #fb7f30;
  background-color: #fb7f30;
  color: white;
}

/* END filter-division section */

/* Divisi Section */
.divisi {
  padding-top: 1em;
  display: flex;
  align-items: center;
  background-color: white;
}
.divisi-left img {
  width: 70vh;
  margin-bottom: 0.5em;
}
.divisi-right h2 {
  line-height: 3rem;
}
/* End Divisi Section */

/* program Section */
.program {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.program-wrapper {
  padding-top: 1em;
  display: flex;
  justify-content: space-between;
  padding-left: 3em;
  padding-right: 3em;
  width: 100%;
}
.program-wrapper .program-item.left {
  width: 50%;
  margin-right: 3em;
}
.program-wrapper .program-item.right {
  width: 50%;
}
.program-item {
  align-items: baseline;
  justify-content: center;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
}
.program-title {
  margin-bottom: 0.5em;
  font-size: 1.5em;
}
.program-desc {
  line-height: 1.5;
}
.program-card {
  width: auto;
  border-radius: 1em 0 1em 0;
  padding: 1.5em;
  display: flex;
  margin-bottom: 1em;
  flex-direction: column;
  background-color: white;
  font-weight: 500;
  box-shadow: 0px 3px 10px rgba(183, 211, 220, 0.15);
}
.program-card:hover {
  box-shadow: 0px 8px 25px rgba(183, 211, 220, 0.338);
  transform: scale(1);
}
.program-card p {
  line-height: 1.5;
  font-weight: 400;
  color: black;
}
/* End program Section */

/* RESPONSIVE SECTION */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hide-mobile-only {
    display: none;
  }
  .logo {
    height: 2.5em;
  }
  .container {
    padding-right: 1em;
    padding-left: 1em;
  }

  /* hamburger mobile */
  button.hamburger:active,
  button.close-hamburger:active,
  button.hamburger:focus,
  button.close-hamburger:focus {
    background-color: unset;
  }
  .hamburger {
    display: inline-block;
    font-size: 20px;
    color: white;
  }
  .hamburger.show {
    display: none;
  }
  .close-hamburger.show {
    display: inline-block;
    font-size: 20px;
    color: white;
  }
  .close-hamburger {
    display: none;
  }
  .hamburger,
  .close-hamburger {
    border: none;
    padding: 0;
    background-color: transparent;
  }
  /* .hamburger i, .close-hamburger i{
    color: white;
  } */
  .hamburger i,
  .close-hamburger i {
    color: #fb7f30;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header a.a-without-bg {
    color: black;
    /* text-shadow: unset;
    background-color: unset;
    padding: unset; */
  }
  header a.active-without-bg {
    color: var(--blue);
  }
  ul {
    padding: 0;
  }
  #nav-list,
  #nav-right {
    display: none;
  }
  #nav-left {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
  }
  header ul,
  #nav-list.show {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #nav-list .active {
    margin-top: 1em;
    width: 100%;
    padding-left: 3rem;
  }

  #nav-list button.dropbtn {
    margin-top: 1em;
    padding-bottom: 0.5rem;
    padding-left: 3rem;
  }
  #nav-list li .dropdown-content {
    padding-left: 2rem;
  }
  /* tdc Section */
  .tdc {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }

  .tdc-hima h2 {
    text-align: left;
    font-size: 2.5rem;
    line-height: 2rem;
    color: #fb7f30;
    margin-left: 1rem;
  }
  .tdc-hima h1 {
    font-size: 1rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  .tdc-hima p {
    margin-bottom: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
    text-align: justify;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tdc img {
    width: 70%;
  }
  /* END tdc */

  /* Intro bindes*/
  .bindes {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }

  .bindes-hima h2 {
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2.5rem;
    line-height: 2rem;
    color: #fb7f30;
    margin-left: 1rem;
  }
  .bindes-hima p {
    margin-bottom: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
    text-align: justify;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .bindes img {
    width: 70%;
  }
  /* End bindes */

  /* Intro koas*/
  .koas {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }

  .koas-hima p {
    margin-bottom: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
    text-align: justify;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .koas img {
    width: 100%;
  }
  /* End koas */

  /* Intro sejarah */
  .sejarah {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }
  .sejarah .sejarah-left {
    margin-right: 0;
  }

  .sejarah-left img {
    width: 60vw;
  }
  .sejarah-left p {
    font-weight: 300;
    color: black;
  }
  .sejarah-item h2 {
    margin-bottom: 0.8em;
  }

  .sejarah-right .sejarah-item p {
    margin-bottom: 1em;
    line-height: 1.3;
  }
  .sejarah-right .sejarah-item ol {
    text-align: justify;
  }
  .sejarah-right .sejarah-item ul {
    text-align: justify;
    margin-left: 1rem;
  }
  .sejarah-right .sejarah-item li {
    color: #fb7f30;
    font-weight: bold;
  }
  .sejarah-right .sejarah-item a {
    margin-bottom: 0.5rem;
  }
  .sejarah-hima h2 {
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2.5rem;
    line-height: 2rem;
    color: #fb7f30;
    margin-left: 1rem;
  }
  .sejarah-hima p {
    margin-bottom: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
    text-align: justify;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  /* End sejarah */

  /* Hero Section */
  .hero-section {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .hero-section .hero-bg {
    background-size: cover;
  }
  h1 {
    margin-top: 1em;
    text-align: center;
  }
  .hero-section .hero-right img {
    width: 5em;
    margin-left: 1em;
  }
  .hero-section .hero-right img:nth-child(1) {
    margin-left: 0;
  }
  .tagline {
    padding: 0.8em;
    box-shadow: 0px 24.2635px 78.6396px rgba(2, 40, 43, 0.1);
    border-radius: 19.7703px;
  }
  .tagline span {
    font-size: 1.8em;
  }
  .tagline p {
    font-size: 0.8em;
  }

  .tagline p span {
    font-size: 1em;
  }
  /* END Hero Section */

  /* Wave Section */
  .wave-section {
    position: relative;
    height: 5em;
    overflow-x: hidden;
  }
  .ocean {
    height: 5em;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .wave {
    position: absolute;
    width: 300vw;
    height: 5em;
    background: url("assets/wave.svg") repeat-x;
    background-size: auto 100%;
    top: 0;
    animation: wave 10s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0) scaleX(-1);
  }
  /* End Wave Section */

  /* Intro sejarah */
  .sejarah {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }
  .sejarah .sejarah-left {
    margin-right: 0;
  }

  .sejarah-left img {
    width: 60vw;
  }
  .sejarah-left p {
    font-weight: 300;
    color: black;
  }
  .sejarah-item h2 {
    margin-bottom: 0.8em;
  }

  .sejarah-right .sejarah-item p {
    margin-bottom: 1em;
    line-height: 1.3;
  }
  .sejarah-right .sejarah-item ol {
    text-align: justify;
  }
  .sejarah-right .sejarah-item ul {
    text-align: justify;
    margin-left: 1rem;
  }
  .sejarah-right .sejarah-item li {
    color: #fb7f30;
    font-weight: bold;
  }
  .sejarah-right .sejarah-item a {
    margin-bottom: 0.5rem;
  }
  .sejarah-hima h2 {
    margin-bottom: 0.5em;
    text-align: left;
    font-size: 2.5rem;
    line-height: 2rem;
    color: #fb7f30;
    margin-left: 1rem;
  }
  .sejarah-hima p {
    margin-bottom: 1em;
    line-height: 1.5;
    font-weight: 400;
    color: black;
    text-align: justify;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  /* End sejarah */

  /* Intro Section */
  .intro {
    padding-top: 2em;
    padding-bottom: 2em;
    flex-direction: column;
  }
  .intro .intro-left,
  .divisi .divisi-left {
    margin-right: 0;
  }
  .divisi-left {
    margin-left: 4em;
  }
  .intro-left img,
  .divisi-left img {
    width: 60vw;
  }
  .intro-left p,
  .divisi-left p {
    font-weight: 300;
    color: black;
  }
  .intro-item h2 {
    margin-bottom: 0.8em;
  }
  .divisi-item h2 {
    margin-bottom: 0.8em;
    font-size: 2em;
    text-align: center;
  }
  .intro-right .intro-item p,
  .divisi-right .divisi-item p {
    margin-bottom: 1em;
    line-height: 1.3;
  }
  /* End Intro Section */

  /* Org-Structure Section */
  .org-structure {
    padding-bottom: 2em;
  }
  .org-structure-item {
    margin-top: 1em;
  }
  .org-structure-item .title {
    font-size: 1.2em;
  }
  .org-structure-wrapper {
    flex-direction: column;
    padding: 0;
    padding-top: 0.5em;
    margin-right: 0;
  }
  .structure-card {
    padding: 0.5em;
  }
  /* End Org-Structure Section */

  /* Leader Section */
  .leader-section {
    justify-content: center;
    flex-direction: column;
    height: 60vh;
  }
  .leader-section .leader-left {
    margin-bottom: 2em;
  }
  .leader-section .leader-left p {
    font-size: 1em;
  }
  .leader-section .next-gallery img,
  .leader-section .before-gallery img {
    height: 2em;
  }
  .leader-background {
    height: 65vh;
  }
  .gallery-wrapper {
    width: 100%;
  }
  .gallery-card .image {
    height: 8em;
  }
  .gallery-image-2 {
    height: 7em !important;
  }
  .gallery-image-3 {
    height: 6em !important;
  }
  .gallery-image-4 {
    height: 5em !important;
  }
  .gallery-image-5 {
    height: 4em !important;
  }
  .gallery-image-6 {
    height: 3em !important;
  }
  .gallery-image-7 {
    height: 2em !important;
  }
  .gallery-image-8 {
    height: 1em !important;
  }
  .gallery-image-9 {
    height: 0.5em !important;
  }
  .gallery-item-2 {
    margin-top: 3em !important;
  }
  .gallery-item-3 {
    margin-top: 6em !important;
    display: none !important;
  }
  .gallery-item-4 {
    display: none !important;
    margin-top: 9em !important;
  }
  .gallery-item-5 {
    display: none !important;
    margin-top: 12em !important;
  }
  .gallery-item-6 {
    display: none !important;
    margin-top: 15em !important;
  }
  .gallery-item-7 {
    display: none !important;
    margin-top: 18em !important;
  }
  .gallery-item-8 {
    display: none !important;
    margin-top: 21em !important;
  }
  .gallery-item-9{
    display: none !important;
    margin-top: 23em !important;
  }
  .gallery-card .info {
    padding: 0.5em;
    width: 12em;
  }
  /* END Leader Section */

  /* Visi-Misi Section*/
  .visi-item,
  .misi-item,
  .tujuan-item {
    flex-direction: column;
  }
  .visi-item .title,
  .misi-item .title,
  .tujuan-item .title {
    margin-bottom: 1em;
    flex-basis: unset;
    width: 100%;
  }
  .visi,
  .value-misi,
  .value-tujuan {
    width: 100%;
  }
  .visi li,
  .value-misi li,
  .value-tujuan li {
    list-style: decimal;
    margin-bottom: 0.5em;
  }
  .visi-misi h1 {
    font-size: 2em;
  }
  .visi-misi h2 {
    font-size: 1.5em;
  }
  /* END Visi-Misi Section*/
  .hero2-section h1 {
    margin-top: 1rem;
    text-align: center;
    font-size: 1.6rem;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    line-height: 1.5;
    mix-blend-mode: difference;
    color: #fb7f30;
  }
  .structure-card1 img {
    width: 100%;
    border-radius: 10px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 1000px) {
  .hide-mobile-only {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    margin-bottom: 3em;
    flex-direction: column-reverse;
    justify-content: center;
  }
  h1 {
    font-size: 3em;
    text-align: center;
  }
  .hero-section .hero-right {
    margin-top: 3em;
  }
  .hero-section .hero-right img {
    width: 6em;
  }
  .hero-section .hero-right img:nth-child(1) {
    margin-left: 0;
  }
  /* END Hero Section */
  /* Leader Section */
  .leader-section {
    flex-direction: column;
  }
  .leader-section .leader-left p {
    margin-bottom: 2em;
  }
  .leader-section .before-gallery img {
    transform: scaleX(-1);
  }
  .leader-background {
    top: 75em;
  }
  .gallery-wrapper {
    width: 100%;
  }
  .gallery-card .image {
    height: 15em;
  }
  .gallery-image-2 {
    height: 14em !important;
  }
  .gallery-image-3 {
    height: 13em !important;
  }
  .gallery-image-4 {
    height: 12em !important;
  }
  .gallery-image-5 {
    height: 11em !important;
  }
  .gallery-image-6 {
    height: 10em !important;
  }
  .gallery-image-7 {
    height: 9em !important;
  }
  .gallery-image-6 {
    height: 8em !important;
  }
  /* END Leader Section */

  /* Documentation Section */
  .about-activity {
    padding: 1em;
    width: 100%;
  }
  .about-activity .activity {
    font-size: 1em;
  }
  .about-activity .desc {
    font-size: 0.8em;
  }
  /* END Documentation Section */
  /* Visi-Misi Section*/
  .visi-item .title,
  .misi-item .title,
  .tujuan-item .title {
    font-size: 0.8em;
    text-align: center;
    color: var(--blue);
    width: 40em;
  }
  .visi li,
  .value-misi li,
  .value-tujuan li {
    list-style: decimal;
    margin-bottom: 0.5em;
  }
  /* END Visi-Misi Section*/
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  /* intro Section */
  .intro {
    /* flex-wrap: wrap; */
    background-color: unset;
  }
  /* End intro Section */

  /* Org-Structure Section */
  .org-structure-wrapper {
    flex-wrap: wrap;
  }

  .org-structure h2 {
    font-size: 2rem;
  }
  /* End Org-Structure Section */

  /* filter-division section */
  .filter-division {
    flex-wrap: wrap;
  }
  .btn-pill {
    margin-bottom: 0.5em;
    margin-top: 1em;
  }
  /* END filter-division section */

  /* Divisi Section */
  .divisi {
    flex-wrap: wrap;
  }
  .divisi-right h2 {
    line-height: 2rem;
  }
  /* End Divisi Section */

  /* program Section */
  .program-wrapper .program-item.left {
    width: auto;
    margin-right: 0em;
  }
  .program-wrapper .program-item.right {
    width: auto;
  }
  .program-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 1em;
    padding-right: 1em;
  }
  .program-item.right {
    margin-top: 0.5em;
  }
  .program-item.left {
    margin-top: 0.5em;
  }
  .program-title {
    font-size: 1.2em;
  }
  /* End program Section */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    padding-left: 6em;
    padding-right: 6em;
  }
}
@keyframes slideBefore {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes slideNext {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -100vw;
  }
}
