*, 
html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #b3ced3;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
}

.pagination-active {
  background-color: #b3ced3;
}

/* NAVBAR RESPONSIVE */
nav {
  background-color: #b3ced3;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

nav div img {
  width: 235px;
}

nav ul li a {
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #000000;
  font-weight: bold;
  padding: 8px 0;
  font-size: 25px;
  transition: all;
  transition-duration: 300ms;
  border-bottom: 5px solid #b3ced3;
}

nav ul li a:hover {
  color: dodgerblue;
  border-bottom: 5px solid dodgerblue;
}

.menu-icon {
  font-size: 28px;
  display: none;
  color: #000000;
  /* background-color: #ffffff83; */
  /* border-radius: 8px; */
  box-shadow: 0 30px 0px 0 #b3ced3;
}

/* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 200px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.youtube-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.youtube-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.youtube-button img {
  width: 24px;
  height: 24px;
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}

/* RESPONSIVE NAVBAR */
@media only screen and (max-width : 440px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 200px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}


/* RESPONSIVE NAVBAR IPHONE SE */
@media only screen and (max-width : 375px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}

/* RESPONSIVE NAVBAR SAMSUNG GALAXY S8+*/
@media only screen and (max-width : 360px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 200px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}

/* RESPONSIVE NAVBAR IPAD MINI*/
@media only screen and (max-width : 768px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}

/* RESPONSIVE NAVBAR IPAD AIR*/
@media only screen and (max-width : 820px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 45%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #ffffff;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 200px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}

/* RESPONSIVE NAVBAR IPAD PRO*/
@media only screen and (max-width : 1024px) {
  nav {
    flex-wrap: wrap;
    /* position: fixed; */
    width: 100%;
    top: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li:last-of-type {
    padding-bottom: 8px;
  }
  
  nav ul.hidden {
    display: none;
  }
  
  nav div img {
    width: 235px;
  }
  
  .menu-icon {
    display: flex;
    align-items: center;
  }

  /* .video {
  float: center;
  height: 50%;
  width: 50%;
} */

  /* CONTENT POP-UP */
/* Gaya latar belakang gelap */
    #popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    /* Kotak pop-up */
    #popup-ads {
      position: absolute;
      top: 42%; left: 50%;
      transform: translate(-50%, -50%);
      background: #00000083;
      color: rgb(255, 255, 255);
      padding: 20px;
      width: 350px;
      text-align: center;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: bold;
    }

    /* Tombol tutup */
    #close-popup {
      background: red;
      color: rgb(255, 255, 255);
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      box-shadow: 0 0px 10px 0 #000000;
    }

.button-instant-opening {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-opening:hover {
  background-color: dodgerblue;
  color: #ffffff;
}

/* MAIN OPENING */
.container-opening {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.container-opening img {vertical-align: middle;}

.container-opening .content-opening {
  position: absolute;
  bottom: 0;
  background: rgb(255, 255, 255); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */
  color: #000000;
  width: 100%;
  padding: 40px;
  justify-content: left;
  text-align: left;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.content-opening-2 {
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* NEW SLIDESHOW */
/* Position the image container (needed to position the left and right arrows) */
.container-slideshow {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  text-align: center;
  background-color: #b3ced3;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-slideshow,
.next-slideshow {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 5px 5px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: #b3ced3b4;
}

/* Position the "next button" to the right */
.next-slideshow {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow:hover,
.next-slideshow:hover {
  background-color: dodgerblue;
}

/* Number text (1/3 etc) */
.numbertext-slideshow {
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #b3ced386;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #b3ced3;
  padding: 2px 16px;
  color: rgb(0, 0, 0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column-slideshow {
  float: left;
  width: 16.66%;
  text-align: left;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img {
  vertical-align: middle;
  width: 100%;
  max-height: 100%;
  /* border-radius: 80px; */
}

.running-text {
  position: absolute;
  top: 50%;
  left: 50%;
  display: contents;
  transform: translate(-50%, -50%);
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-style: italic;
}

.marquee {
  height: 40px;
  width: 90%;
  /* color: #ffffff;
  border: 1px solid white; */
  margin-bottom: 20px;
}

/* CONTENT MEDIA SOSIAL */
.tiktok-button {
  bottom: 110px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.tiktok-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}

.facebook-button {
  bottom: 65px;
  left: 20px;
  font-size: 16px;
  gap: 8px;
  text-decoration: none;
  align-items: center;
  display: inline-flex;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
}

.facebook-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.facebook-button img {
  width: 24px;
  height: 24px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  bottom: 20px;
  left: 20px;
}

.instagram-button:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #003333; */
}

.instagram-button img {
  width: 24px;
  height: 24px;
}

/* Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 200px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
}

/* Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 5px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

.popup-header {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 10px;
}

.popup-header img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.popup-body {
  padding: 15px;
  color: #333;
}

.popup-body p {
  margin-bottom: 15px;
}

.popup-body button {
  width: 100%;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-body button:hover {
  background: #000000;
}

.whatsapp {
  background: #25d366;
  width: 100%;
}

.buttonwhatsapp {
  position: center;
  background: red;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0px 10px 0 #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmail-button {
  border: none;
  background-color: #ffffff00;
  color: #585858;
  position: fixed;
  font-size: 10px;
  bottom: 175px;
  left: 5px;
  padding: 10px;
  gap: 8px;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  writing-mode: vertical-rl;
  /* opacity: 0.5; */
}

.col-center {
  float: none;
  justify-items: center;
}

.pagination {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  justify-items: center;
}

.pagination a {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  font-weight: bold;
  justify-items: center;
}

.pagination a.active {
  background-color: dodgerblue;
  color: #ffffff;
}

/*.pagination a:hover:not(.active) {*/
/*  text-align: center;*/
/*  font-size: 21px;*/
/*  font-weight: bold;*/
/*  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
/*  color: #ffffff;*/
/*  background-color: #000000;*/
/*}*/

.icon-bar {
  width: 100%;
  background-color: #00000083;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 21.2px 0px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.icon-bar a:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #ffffff;
}

.active-navbar {
  background-color: dodgerblue;
}
}
  
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}

img {
  vertical-align: middle;
  /* max-width: 1000px; */
  max-height: 600px;
}
  
/* CARD CONTENT */
*, *:before, *:after {
  box-sizing: inherit;
}

.card-marketing {
  /* border-radius: 8px; */
  /* box-shadow: 0 0px 10px 0 #ffffff83; */
  color: #000000;
  /* margin: 1px; */
  /* padding: 1 5px; */
  text-align: center;
  background-color: #b3ced3;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.ph-chats {
  color: rgb(0, 0, 0);
}

.ph-money {
  color: rgb(0, 0, 0);
}

.ph-steps {
  color: rgb(0, 0, 0);
}

.ph-map-trifold {
  color: rgb(0, 0, 0);
}

.ph-layout {
  color: rgb(0, 0, 0);
}

.ph-solar-roof {
  color: rgb(0, 0, 0);
}

.ph-hard-hat {
  color: rgb(0, 0, 0);
}

.ph-read-cv-logo {
  color: rgb(0, 0, 0);
}

.ph-timer {
  color: rgb(0, 0, 0);
}

.container-about {
  position: relative;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 17px;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
  justify-content: center;
  box-shadow: 0 0px 10px 0 #b3ced3;
  padding: 10px;
  background-color: #b3ced3b4;
}

.card-price {
  /* border-radius: 8px; */
  box-shadow: 0 0px 10px 0 #000000;
  color: #000000;
  margin: 40px;
  padding: 1 5px;
  padding-top: 15px;
  text-align: center;
  background-color: #ffffff;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.card-galeri {
  /* border-radius: 8px; */
  box-shadow: 0 0px 10px 0 #000000;
  color: #000000;
  margin: 40px;
  padding: 1 5px;
  text-align: center;
  background-color: #ffffff;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.a-link {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.card-galeri1 {
  /* border-radius: 8px; */
  box-shadow: 0 0px 10px 0 #000000;
  color: #000000;
  margin: 40px;
  padding: 1 5px;
  text-align: center;
  background-color: #ffffffb4;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.button-instant-klik {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #ff0000;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-klik:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #ad8500; */
  color: #ffffff;;
}

.button-instant-klik-2 {
  color: #ffffff;
  border: none;
  /* border-radius: 8px; */
  padding: 14px 28px;
  margin: 20px;
  font-size: 16px;
  font-weight: bold;
  transition: all;
  transition-duration: 300ms;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #25D366;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 10px 0 #000000;
  justify-content: center;
  border-radius: 5px;
}

.button-instant-klik-2:hover {
  background-color: dodgerblue;
  /* border-bottom: 10px solid #ad8500; */
  color: #ffffff;;
}

.container {
  padding: 5px;
  width: 100%;
  text-decoration: none;
  justify-content: center;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
  text-decoration: none;
}
  
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    position: relative;
  }
}

.heading-2 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 25px;
  /* font-weight: bold; */
  /* margin-top: 1px; */
}

.heading-3 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 25px;
  /* font-weight: bold; */
  margin-bottom: 10px;
  padding: 5px;
}

.heading-4 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 25px;
  /* font-weight: bold; */
  margin-top: 1px;
  margin-bottom: 1px;
}

.heading-5 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  background: linear-gradient(#b3ced3, #00bcd4);
  padding: 40px;
  font-size: 25px;
  /* font-weight: bold; */
  margin-top: 15px;
}

.heading-6 {
  /* margin-top: 10px;
  margin-bottom: 10px; */
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 25px;
  /* font-weight: bold; */
}

.heading-7 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 25px;
  margin-top: 20px;
  /* font-weight: bold; */
}

.heading-8 {
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(0, 0, 0);
  background-color: white;
  font-size: 25px;
  margin-top: 20px;
  /* font-weight: bold; */
}
  
.des-heading-2 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.des-heading-3 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.des-heading-4 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.column-test {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row-test::after {
  content: "";
  clear: both;
  display: table;
}
  
/* CONTENT WORK */

.column-work {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
  color: #ffffff;
  /*padding: 50px;*/
}

.card-work {
  border-radius: 8px;
  box-shadow: 0 10px 10px 0 #003333;
  color: #ffffff;
  margin: 30px;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1 5px;
  text-align: center;
  background-color: #25D366;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: lighter;
}

.card-work:hover {
  background-color: #003333;
  border-bottom: 10px solid #003333;
  color: #25D366;
}
  
/* Create two equal columns that floats next to each other */
.column-grid {
  float: left;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: lighter;
  background-color: #b3ced3;
}

/* Clear floats after the columns */
.row-grid:after {
  content: "";
  display: table;
  clear: both;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: lighter;
  color: #ffffff;
}

.grid-p-1 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #000000;
}

.grid-p-2 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #000000;
}

.img-grid {
  max-width: 600px;
  max-height: 600px;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .column-img {
    width: 100%;
    display: block;
    position: relative;
    text-decoration: none;
  }
}  
  .footer {
    position: relative;
    padding: 30px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(#b3ced3, #00bcd4);
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    /* font-weight: bold; */
  }
  
  .column-foo {
    float: left;
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
    text-decoration: none;
  }
  
  .row-foo {
    content: normal;
    clear: both;
    display: table;
    text-decoration: none;
  }
  
  .card-foo {
    /* box-shadow: 0 4px 8px 0 rgba(red, green, blue, alpha); */
    margin: 5px;
    text-align: center;
    text-decoration: none;
  }
  
  .tags {
    float: left;
    margin: 2px;
    padding: 8px;
    border: #000000 2px solid;
    text-align: center;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: bold; */
    list-style: none;
  }

  .tags:hover {
    background-color: dodgerblue;
    /* border-bottom: 10px solid #003333; */
    color: #ffffff;
    text-decoration: none;
  }

  .tags1 {
    float: left;
    margin: 2px;
    padding: 8px;
    border: #000000 2px solid;
    text-align: center;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: bold; */
    list-style: none;
  }

  .a-link-tags {
  color: #000000;
  text-decoration: none;
}

.a-link-tags:hover {
  background-color: dodgerblue;
  /* border-bottom: 5px solid #ad8500; */
  color: #000000;
}

.a-link-tags1 {
  color: #000000;
  text-decoration: none;
}
  
  .footer-copyright {
    position: relative;
    /* left: 0;
    bottom: 0; */
    width: 100%;
    padding: 70px;
    background-color: #00bcd4;
    color: #000000;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
@media only screen and (max-width: 600px) {
  .column-foo {
    width: 100%;
    display: block;
    position: relative;
    text-decoration: none;
  }
}

.img-pages {
  width: 100%;
  background-color: black;
  max-height: 250px;
  position: relative;
}

.img-pages img {
  position: relative;
  max-height: 250px;
}

.heading-centered {
  color: rgb(0, 0, 0);
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25pt;
}

.paragraf-centered {
  color: white;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* star */

.heading {
  font-size: 25px;
  margin-right: 25px;
}

.fa {
  font-size: 25px;
}

.checked {
  color: orange;
}

/* Three column layout */
.side {
  float: left;
  width: 15%;
  margin-top: 10px;
}

.middle {
  float: left;
  width: 70%;
  margin-top: 10px;
}

/* Place text to the right */
.right {
  text-align: right;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The bar container */
.bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
}

/* Individual bars */
.bar-5 {width: 70%; height: 18px; background-color: #04AA6D;}
.bar-4 {width: 35%; height: 18px; background-color: #2196F3;}
.bar-3 {width: 10%; height: 18px; background-color: #00bcd4;}
.bar-2 {width: 4%; height: 18px; background-color: #ff9800;}
.bar-1 {width: 0%; height: 18px; background-color: #f44336;}

/* Responsive layout - make the columns stack on top of each other instead of next to each other */
@media (max-width: 710px) {
  .side, .middle {
    width: 100%;
  }
  /* Hide the right column on small screens */
  .right {
    display: none;
  }
}