 /* css untuk halaman utama */
 .container1frontpage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideshowfrontpage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.slidefrontpage {
  width: 100%;
  height: 100%;
  opacity: 1; /* Set opacity slide pertama menjadi 1 */
  position: absolute;
  transition: opacity 2s ease; /* Efek fade out dengan durasi 2 detik */
}

.slidefrontpage.active {
  opacity: 1; /* Menampilkan slide yang aktif */
}

.slidefrontpage:not(.active) {
  opacity: 0; 
}

.slidefrontpage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container2frontpage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: -webkit-box;
  justify-content: center;
  align-items: center;
  background-size: cover;
  pointer-events: none;
  left: -5%;
}
.container2frontpage img {
  background-size: cover;
}
.teks-judulfrontpage {
  position: absolute;
  top: 45%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}
.teks-judulfrontpage h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: orange;
}
.teks-judulfrontpage p {
  font-size: 1.5em;
  margin-bottom: 5px;
  font-family: 'Nexa-ExtraLight', sans-serif;
}
.teks-judulfrontpage h2 {
  margin-top: 4%;
  font-size: 2em;
  margin-bottom: 10px;
}
.learn-more-btnfrontpage {
  background-color: #c88d36;
  border: none;
  color: white;
  margin-top: 15%;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
.container3frontpage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigatorfrontpage {
  position: absolute;
  width: 100%;
  bottom: 21%;
  right: 0%;
  z-index: 2;
}
.linefrontpage {
  display: inline-block;
  width: 60px;
  height: 8px;
  background-color: #bbb;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 3px;
}
.linefrontpage.active {
  background-color: #c88d36;
}
/* end css untuk halaman utama */

/* css css untuk about us  */
.text-judul-about-us {
  height: 95vh;
  margin-top: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30%;
  color: black;
  width: 50vw;
}
.text-judul-about-us h1 {
  font-size: 3em;
  margin-bottom: 10px;
  font-weight: bold;
  color: black;
}
.text-judul-about-us h2 {
  margin-top: 0%;
  font-size: 2em;
  margin-bottom: -5px;
  font-weight: bold;
}
.text-judul-about-us h3 {
  margin-top: 4%;
  font-size: 1em;
  margin-bottom: 10px;
  color: black;
  margin-right: 20%;
}
.text-judul-about-us p {
  font-size: 1.6em;
  margin-bottom: 2px;
  font-weight: bold;
}
/* end css untuk about us  */


/* css untuk our service */
.container1service {
  text-align: center;
  padding-top: 10%;
}
.our-serviceservice {
  font-size: 45px;
  text-transform: uppercase;
  padding-bottom: 1%;
  margin-top: -5%;
}
.container2service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0%;
  padding-left: 2%;
  padding-right: 5%;
}
.columnservice {
  display: flex;
  align-items: center;
}
.iconservice {
  width: 200px;
  height: 200px;
  background-image: url('path/to/your/image.jpg');
  background-size: cover;
  background-position: center;
  margin-right: -4%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.title-service {
  font-size: 24px;
}
.text-service {
  font-size: 14px;
}
.content-service {
  flex-grow: 1;
}
.title-service,
.text-service {
  margin: 0;
}
/* end css untuk our service */

/* css untuk latest news  */
.containershort {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
  position: relative;
}
.containershort2 {
  width: 80%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background-color: #f7f8fb;
  overflow: hidden;
  position: relative;
}
.slideshort {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transition: transform 0.5s ease;
  padding-left: 30px;
}
.slideshort:not(:first-child) {
  transform: translateX(100%);
}
.news-imageshort {
  width: 40%;
  height: auto;
  margin-right: 40px;
  border-radius: 10px;
}
.news-detailsshort {
  width: 70%;
  padding-left: 50px;
}
.latest-newsshort {
  font-size: 50px;
}
.see-allshort {
  position: absolute;
  top: 15%;
  right: 5%;
  font-style: italic;
  color: #C88D36;
}
.news-titleshort {
  font-size: 16px;
  margin-top: 0;
  padding-bottom: 10px;
}
.news-dateshort {
  margin-top: 5px;
  padding-bottom: 25px;
}
.news-contentshort {
  margin-top: 10px;
}
.read-moreshort {
  margin-top: 10px;
  background-color: #C88D36;
  border-radius: 5px;
  padding: 5px;
  color: white;
}
.navigatorshort {
  position: absolute;
  bottom: 10%;
  right: 5%;
}
.lineshort {
  width: 60px;
  height: 8px;
  background-color: #bbb;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.lineshort.active {
  background-color: #717171;
}

.lineshort-container {
  display: flex;
}
.lineshort-container .lineshort {
  margin-right: 10px;
}
.lineshort:hover {
  background-color: #999;
}
.lineshort.active {
  background-color: #717171;
}
.lineshort-container {
  display: flex;
}
.lineshort-container .lineshort {
  margin-right: 5px;
}
.gambarnewsshort {
  border-radius: 10px;
}
/* end css untuk latest news */

/* css untuk review */
.background-container {
  background-image: url('/assets/img/reviewback.png');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}
.container1review {
  text-align: center;
  padding-top: 20%;
}
.review-title {
  font-size: 45px;
  text-transform: uppercase;
  color: black;
  margin-top: -11%;
}
.container2review {
  height: 60vh;
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.review-box {
  width: calc(29.33% - 20px);
  margin-top: -5%;
  margin-bottom: 11%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 70px;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.review-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}
.review-details {
  flex-grow: 1;
  margin-left: 10px;
}
.review-username {
  margin-left: 50px;
  font-size: 16px;
}
.review-rating {
  margin-top: 5px;
  margin-left: 45px;
  font-size: 0;
}
.review-content {
  margin: 0;
  margin-top: 50px;
  color: #717171;
  font-style: italic;
  text-align: center;
}
/* end css untuk review */


/* css untuk show */
.background-container-show {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.background-image-show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container1show {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.container1show h1 {
  font-size: 45px;
}
.container2show {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}
.container2show p {
  font-size: 21px;
  font-style: italic;
}
.see-more-show {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: white;
  background-color: black;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  cursor: pointer;
}
/* end css untuk show */


/* css untuk our client */
.roadmapau {
  display: none;
}
.container1client {
  text-align: center;
  margin-bottom: 5%;
}

.our-clientsclient {
  font-size: 8.5vh;
  text-transform: uppercase;
  margin-top: 5%;
  margin-bottom: -3%;
}

.container2client {
  display: flex;
  justify-content: center;
}

.gridclient {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2%;
}

.columnclient {
  border: 0px solid black;
  width: 120px;
  height: 70px;
  margin-bottom: 30px;
  margin-left: 100px;
  margin-right: 100px;
}

.columnclient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* css untuk our client */




@media (max-width: 575px) {
  /* css untuk halaman utama */
  .container1frontpage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slideshowfrontpage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .slidefrontpage {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    transition: opacity 2s ease; 
  }
  
  .slidefrontpage.active {
    opacity: 1; 
  }
  
  .slidefrontpage:not(.active) {
    opacity: 0;
  }
  
  .slidefrontpage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .container2frontpage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -5%;
    visibility: hidden;
  }
  .container2frontpage img {
    max-width: 100%;
    max-height: 100%;
  }
  .teks-judulfrontpage {
    position: absolute;
    top: 75%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 1%; /* Padding 1% */
    border-radius: 10px;
  }
  .teks-judulfrontpage h1 {
    font-size: 8vw;
    margin-bottom: 10px;
    font-weight: bold;
    color: orange;
  }
  .teks-judulfrontpage p {
    font-size: 5vw;
    margin-bottom: 5px;
    font-family: 'Nexa-ExtraLight', sans-serif;
  }
  .teks-judulfrontpage h2 {
    margin-top: 4%;
    font-size: 5.6vw;
    margin-bottom: 10px;
  }
  .learn-more-btnfrontpage {
    background-color: #c88d36;
    border: none;
    color: white;
    margin-top: 13%;
   margin-bottom:3%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }
  .container3frontpage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigatorfrontpage {
    position: absolute;
    bottom: 23%;
    right: 0;
    left: 2%;
    z-index: 2;
  }
  .linefrontpage {
    display: inline-block;
    width: 40px;
    height: 8px;
    background-color: #bbb;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
  }
  .linefrontpage.active {
    background-color: #c88d36;
  }
  /* end css untuk halaman utama */
  
  /* css css untuk about us  */
  .hero-text-middle-container {
    height: 50vh;
    width: 30vw;
    /* top: 20%; */
  }
  .text-judul-about-us {
    height: 80%;
    width: 140%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 45vw;
    color: black;
}
  
  .text-judul-about-us h1 {
    font-size: 5vw;
    margin-bottom: 0.5vh;
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: black;
  }
  
  .text-judul-about-us h2 {
    margin-top: 1vh;
    font-size: 4vw;
    margin-bottom: -0.5vh;
    font-weight: bold;
  }
  
  .text-judul-about-us h3 {
    margin-top: 1vh;
    font-size: 3vw;
    margin-bottom: 1vh;
    width: 85vw;
    color: black;
    margin-right: 2vw;
  }
  
  .text-judul-about-us p {
    font-size: 4.2vw;
    margin-bottom: 0.5vh;
    font-weight: bold;
  }
  /* end css untuk about us  */
  
  




  
  /* css untuk our service */
  .fp-tableCell {
    height: 100%;
  }
  .container1service {
    text-align: center;
    padding-top: 10vh; 
  }
  
  .our-serviceservice {
    font-size: 4vw; 
    text-transform: uppercase;
    padding-bottom: 1vh; 
    margin-top: -5vh; 
  }
  
  .container2service {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-left: 2vw; 
    padding-right: 5vw; 
    
  }
  
  .columnservice {
    display: flex;
    align-items: center;
  }
  
  .iconservice {
    width: 15vw;
    height: 15vw; 
    background-image: url('path/to/your/image.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 2vw; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2vw;

  }
  
  .title-service {
    font-size: 3.4vw;
  }
    
  .content-service {
    flex-grow: 1;
  }
  
  .title-service{
    margin-top: 2vw;
  }
  .text-service {
    margin: 0;
    font-size: 2.8vw;
    margin-bottom: 3vw;
  }
  /* end css untuk our service */
  
  /* css untuk latest news  */
 .containershort {
  top: 5%;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
  position: relative;
  padding: 2%;
  box-sizing: border-box; 
}

.containershort2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f7f8fb;
  overflow: hidden;
  position: relative;
  padding: 2%;
}

.containershort > div, .containershort2 > div {
  flex: 0 0 100%;
  margin: 1%; 
  box-sizing: border-box; 
  min-width: 200px; 
  margin-top: 0.6%;
}
    
  .slideshort {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s ease;
    padding: 0vh 7px;
  }

  .slideshort img {
    width: 100%;     
    height: auto;
    margin-right: 22px;
    border-radius: 10px;
  }
  .slideshort:not(:first-child) {
    transform: translateX(100%);
  }
  .news-imageshort {
    width: 100%;
    height: auto;
    /* margin-right: 2vw; */
    border-radius: 10px;
  }
  .news-detailsshort {
    width: 100%;
    padding-left: 1px;
  }
  .latest-newsshort {
    font-size: 8vw;
    margin-top: 10vw;
  }
  .see-allshort {
    position: absolute;
    top: 68vh;
    left: 60vw;
    font-style: italic;
    color: #C88D36;
    z-index: 5;
  }
  .news-titleshort {
    font-size: 4vw;
    margin-top: 0;
    padding-bottom: 1vh;
  }
  .news-dateshort {
    margin-top: 1vh;
    padding-bottom: 2vh;
  }
  .news-contentshort {
    margin-top: 1vh;
  }
  .read-moreshort {
    margin-top: 1vh;
    background-color: #C88D36;
    border-radius: 5px;
    padding: 0.5vh 1vh;
    color: white;
  }
  .navigatorshort {
    display: none;
    position: absolute;
    bottom: 5vh;
    right: 5vw;
  }
  .lineshort {
    width: 6vw;
    height: 1vh;
    background-color: #bbb;
    margin-left: 0.5vw;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 1vw;
  }
  .lineshort:hover {
    background-color: #999;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 0.5vw;
  }
  .gambarnewsshort {
    border-radius: 10px;
  }
  /* end css untuk latest news */
  
  /* css untuk review */
  .background-container {
    background-image: url('/assets/img/reviewback.png');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
  }
  .container1review {
    text-align: center;
    padding-top: 20%;
  }
  .review-title {
    font-size: 45px;
    text-transform: uppercase;
    color: black;
    margin-top: -11%;
  }
  .container2review {
    height: 60vh;
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .review-box {
    width: calc(29.33% - 20px);
    margin-top: -5%;
    margin-bottom: 11%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 70px;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }
  .review-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .review-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
  }
  .review-details {
    flex-grow: 1;
    margin-left: 10px;
  }
  .review-username {
    margin-left: 50px;
    font-size: 16px;
  }
  .review-rating {
    margin-top: 5px;
    margin-left: 45px;
    font-size: 0;
  }
  .review-content {
    margin: 0;
    margin-top: 50px;
    color: #717171;
    font-style: italic;
    text-align: center;
  }
  /* end css untuk review */
  
  
  /* css untuk show */
  .background-container-show {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .background-image-show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container1show {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  .container1show h1 {
    font-size: 35px;
  }
  .container2show {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
  }
  .container2show p {
    font-size: 16px;
    font-style: italic;
  }
  .see-more-show {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: white;
    background-color: black;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    cursor: pointer;
  }
  /* end css untuk show */
  
  
  /* css untuk our client */
  .container1client {
    display: none;
  }
  
  .container2client {
    display: none;
  }
  
  .roadmapau {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .roadmapau img {
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  /* css untuk our client */

}



@media (min-width: 576px) and (max-width: 767px){
  /* css untuk halaman utama */
  .container1frontpage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .container1frontpage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slideshowfrontpage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .slidefrontpage {
    width: 100%;
    height: 100%;
    opacity: 1;
    position: absolute;
    transition: opacity 2s ease; 
  }
  
  .slidefrontpage.active {
    opacity: 1;
  }
  
  .slidefrontpage:not(.active) {
    opacity: 0; 
  }
  
  .slidefrontpage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container2frontpage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -5%;
    visibility: hidden;
  }
  .container2frontpage img {
    max-width: 100%;
    max-height: 100%;
  }
  .teks-judulfrontpage {
    position: absolute;
    top: 75%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); 
    padding: 1%; 
    border-radius: 10px; 
  }
  .teks-judulfrontpage h1 {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: bold;
    color: orange;
  }
  .teks-judulfrontpage p {
    font-size: 1.1em;
    margin-bottom: 5px;
    font-family: 'Nexa-ExtraLight', sans-serif;
  }
  .teks-judulfrontpage h2 {
    margin-top: 4%;
    font-size: 1.6em;
    margin-bottom: 10px;
  }
  .learn-more-btnfrontpage {
    background-color: #c88d36;
    border: none;
    color: white;
    margin-top: 13%;
   margin-bottom:3%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
  }
  .container3frontpage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigatorfrontpage {
    position: absolute;
    bottom: 23%;
   
    left: 2%;
    z-index: 2;
  }
  .linefrontpage {
    display: inline-block;
    width: 40px;
    height: 8px;
    background-color: #bbb;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
  }
  .linefrontpage.active {
    background-color: #c88d36;
  }
  /* end css untuk halaman utama */
  
  /* css css untuk about us  */
  .hero-text-middle-container {
    height: 50vh;
    width: 30vw;
    /* top: 20%; */
  }
  .text-judul-about-us {
    height: 80%;
    width: 140%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 45vw;
    color: black;
}
  
  .text-judul-about-us h1 {
    font-size: 5vw;
    margin-bottom: 0.5vh;
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: black;
  }
  
  .text-judul-about-us h2 {
    margin-top: 1vh;
    font-size: 4vw;
    margin-bottom: -0.5vh;
    font-weight: bold;
  }
  
  .text-judul-about-us h3 {
    margin-top: 1vh;
    font-size: 3vw;
    width: 85vw;
    margin-bottom: 1vh;
    color: black;
    margin-right: 2vw;
  }
  
  .text-judul-about-us p {
    font-size: 4.2vw;
    margin-bottom: 0.5vh;
    font-weight: bold;
  }
  /* end css untuk about us  */
  /* css untuk our service */
  .container1service {
    text-align: center;
    margin-top: 50px;
    padding-top: 10vh;
  }
  
  .our-serviceservice {
    font-size: 3vw; 
    text-transform: uppercase;
    padding-bottom: 1vh; 
    margin-top: -5vh;
  }
  
  .container2service {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-left: 2vw; 
    padding-right: 5vw; 
    
  }
  
  .columnservice {
    display: flex;
    align-items: center;
  }
  
  .iconservice {
    width: 20vw; 
    height: 20vw;
    background-image: url('path/to/your/image.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 1vw; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2vw;

  }
    
  .content-service {
    flex-grow: 1;
  }
  
  .title-service{
    margin-top: 2vw;
  }
  .text-service {
    margin: 0;
    font-size: 2.2vw;
    margin-bottom: 2vw;
  }
  /* end css untuk our service */

  /* css untuk latest news  */
 .containershort {
  top: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
  position: relative;
  padding: 2%;
  box-sizing: border-box;
}

.containershort2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f7f8fb;
  overflow: hidden;
  position: relative;
}

.containershort > div, .containershort2 > div {
  flex: 0 0 100%;
  margin: 1%; 
  margin-top: -1%;
  box-sizing: border-box; 
  min-width: 55%;
}
    
  .slideshort {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s ease;
    padding: 0vh 0;
  }

  .slideshort img {
    width: 100%;     
    height: auto;
    border-radius: 10px;
  }
  .slideshort:not(:first-child) {
    transform: translateX(100%);
  }
  .news-imageshort {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .news-detailsshort {
    width: 100%;
    padding-left: 1px;
  }
  .latest-newsshort {
    font-size: 5vh;
    margin-top: 15vw;
  }
  .see-allshort {
    position: absolute;
    font-size: 2vh;
    top: 17vh;
    left: 78vw;
    font-style: italic;
    color: #C88D36;
    z-index: 5;
  }
  .news-titleshort {
    font-size: 3vw;
    margin-top: 0;
    padding-bottom: 1vh;
  }
  .news-dateshort {
    font-size: 2vh;
    margin-top: 1vh;
    padding-bottom: 2vh;
  }
  .news-contentshort {
    width: 95%;
    font-size: 2vh;
    margin-top: 1vh;
  }
  .read-moreshort {
    margin-top: 1vh;
    font-size: 2vh;
    background-color: #C88D36;
    border-radius: 5px;
    padding: 0.5vh 1vh;
    color: white;
  }
  .navigatorshort {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
  }
  .lineshort {
    width: 6vw;
    height: 1vh;
    background-color: #bbb;
    margin-left: 0.5vw;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 1vw;
  }
  .lineshort:hover {
    background-color: #999;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 0.5vw;
  }
  .gambarnewsshort {
    border-radius: 10px;
  }
  /* end css untuk latest news */
  /* css untuk our client */
  .roadmapau{
    display: none ;
  }
  .container1client {
    text-align: center;
    margin-bottom: 5%;
  }
  
  .our-clientsclient {
    font-size: 5.5vh;
    text-transform: uppercase;
    margin-top: 5%;
    margin-bottom: -3%;
  }
  
  .container2client {
    display: flex;
    justify-content: center;
  }
  
  .gridclient {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2%;
  }
  
  .columnclient {
    border: 0px solid black;
    width: 100px;
    height: 70px;
    margin-bottom: 60px;
    margin-left: 4vw;
    margin-right: 4vw;
}
  
  .columnclient img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
}


@media (min-width: 768px) and (max-width: 1024px){
  /* css untuk halaman utama */  
  .container1frontpage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slideshowfrontpage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .slidefrontpage {
    width: 100%;
    height: 100%;
    opacity: 1; 
    position: absolute;
    transition: opacity 2s ease; 
  }
  
  .slidefrontpage.active {
    opacity: 1;
  }
  
  .slidefrontpage:not(.active) {
    opacity: 0;
  }
  
  .slidefrontpage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container2frontpage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -5%;
    visibility: hidden;
  }
  .container2frontpage img {
    max-width: 100%;
    max-height: 100%;
  }
  .teks-judulfrontpage {
    position: absolute;
    top: 75%;
    left: 5%;
    transform: translateY(-70%);
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); 
    padding: 5%; 
    border-radius: 10px; 
  }
  .teks-judulfrontpage h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: bold;
    color: orange;
  }
  .teks-judulfrontpage p {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-family: 'Nexa-ExtraLight', sans-serif;
  }
  .teks-judulfrontpage h2 {
    margin-top: 4%;
    font-size: 2em;
    margin-bottom: 10px;
  }
  .navigatorfrontpage {
    position: absolute;
    padding-bottom: 20px;
    bottom: 21%;
    right: 58.5%;
    z-index: 2;
  }
  .learn-more-btnfrontpage {
    background-color: #c88d36;
    border: none;
    color: white;
    margin-top: 10%;
    margin-bottom:0%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
  }

  /* css css untuk about us  */
  .hero-text-middle-container {
    height: 30vh;
    width: 30vw;
    /* top: 20%; */
  }
  .text-judul-about-us {
    height: 80%;
    width: 135%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40vw;
    color: black;
}
  
  .text-judul-about-us h1 {
    font-size: 5vw;
    margin-bottom: 0.5vh;
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: black;
  }
  
  .text-judul-about-us h2 {
    /* margin-top: 1vh; */
    font-size: 3vw;
    margin-bottom: -0.5vh;
    font-weight: bold;
  }
  
  .text-judul-about-us h3 {
    margin-top: 1vh;
    font-size: 2.4vw;
    margin-bottom: 1vh;
    color: black;
    margin-right: 2vw;
  }
  
  .text-judul-about-us p {
    font-size: 4.2vw; 
    margin-bottom: 0.5vh;
    font-weight: bold;
  }
  /* end css untuk about us  */

/* css untuk our service */
  .container1service {
    text-align: center;
    padding-top: 10vh; 
  }
  
  .our-serviceservice {
    font-size: 3vw; 
    text-transform: uppercase;
    padding-bottom: 1vh;
    margin-top: -5vh; 
  }
  
  .container2service {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-left: 2vw; 
    padding-right: 5vw;
    
  }
  
  .columnservice {
    display: flex;
    align-items: center;
  }
  
  .iconservice {
    width: 20vw; 
    height: 20vw; 
    background-image: url('path/to/your/image.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 1vw; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2vw;

  }
    
  .content-service {
    flex-grow: 1;
  }
  
  .title-service{
    margin-top: 2vw;
  }
  .text-service {
    margin: 0;
    font-size: 2.2vw;
    margin-bottom: 2vw;
  }
  /* end css untuk our service */

  /* css untuk latest news  */
 .containershort {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fb;
  position: relative;
  padding: 2%; 
  box-sizing: border-box;
}

.containershort2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f7f8fb;
  overflow: hidden;
  position: relative;
  padding: 2%; 
}

.containershort > div, .containershort2 > div {
  flex: 0 0 100%; 
  margin: 1%; 
  box-sizing: border-box; 
  min-width: 200px; 
  margin-top: 0.6%;
}
    
  .slideshort {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s ease;
    padding: 0vh 0;
  }

  .slideshort img {
    width: 95%;     
    height: auto;
    border-radius: 10px;
  }
  .slideshort:not(:first-child) {
    transform: translateX(100%);
  }
  .news-imageshort {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .news-detailsshort {
    width: 100%;
    padding-left: 1px;
  }
  .latest-newsshort {
    font-size: 5vh;
    margin-top: 10vw;
  }
  .see-allshort {
    position: absolute;
    font-size: 2vh;
    top: 113vw;
    left: 70vw;
    font-style: italic;
    color: #C88D36;
    z-index: 5;
  }
  .news-titleshort {
    font-size: 2vh;
    margin-top: 0;
    padding-bottom: 1vh;
  }
  .news-dateshort {
    font-size: 2vh;
    margin-top: 1vh;
    padding-bottom: 2vh;
  }
  .news-contentshort {
    width: 97%;
    font-size: 2vh;
    margin-top: 1vh;
  }
  .read-moreshort {
    margin-top: 1vh;
    font-size: 2vh;
    background-color: #C88D36;
    border-radius: 5px;
    padding: 0.5vh 1vh;
    color: white;
  }
  .navigatorshort {
    display: none;
    position: absolute;
    bottom: 5vh;
    right: 5vw;
  }
  .lineshort {
    width: 6vw;
    height: 1vh;
    background-color: #bbb;
    margin-left: 0.5vw;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 1vw;
  }
  .lineshort:hover {
    background-color: #999;
  }
  .lineshort.active {
    background-color: #717171;
  }
  .lineshort-container {
    display: flex;
  }
  .lineshort-container .lineshort {
    margin-right: 0.5vw;
  }
  .gambarnewsshort {
    border-radius: 10px;
  }
  /* end css untuk latest news */

  /* css untuk show */
  .background-container-show {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .background-image-show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container1show {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  .container1show h1 {
    font-size: 55px;
  }
  .container2show {
    position: absolute;
    width: 70%;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
  }
  .container2show p {
    font-size: 36px;
    font-style: italic;
  }
  .see-more-show {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: white;
    background-color: black;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    cursor: pointer;
  }
  /* end css untuk show */

  /* css untuk our client */
  .container1client {
    text-align: center;
    margin-bottom: 5%;
  }
  
  .our-clientsclient {
    font-size: 50px;
    text-transform: uppercase;
    margin-top: 5%;
    margin-bottom: -3%;
  }
  
  .container2client {
    display: flex;
    justify-content: center;
  }
  
  .gridclient {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2%;
  }
  
  .columnclient {
    border: 0px solid black;
    width: 150px;
    height: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  .columnclient img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* css untuk our client */
}

@media (min-width: 1025px) and (max-width: 1199px){
  .container2frontpage{
    height: 100%;
    width: 160%;
  }

  .teks-judulfrontpage{
    top: 50%;
  }
  .hero-text-middle-container {
    height: 30vh;
    width: 30vw;
    /* top: 20%; */
  }
  .text-judul-about-us {
    height: 80%;
    width: 150%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 35vw;
    color: black;
  }
  
  .text-judul-about-us h1 {
    font-size: 5vw;
    margin-bottom: 0.5vh;
    display: flex;
    justify-content: center;
    font-weight: bold;
    color: black;
  }
  
  .text-judul-about-us h2 {
    /* margin-top: 1vh; */
    font-size: 3vw;
    margin-bottom: -0.5vh;
    font-weight: bold;
  }
  
  .text-judul-about-us h3 {
    margin-top: 1vh;
    font-size: 2.4vw;
    margin-bottom: 1vh;
    color: black;
    margin-right: 2vw;
  }
  
  .text-judul-about-us p {
    font-size: 4.2vw;
    margin-bottom: 0.5vh;
    font-weight: bold;
  }
  /* end css untuk about us  */

  /* css untuk our client */
  .container1client {
    text-align: center;
    margin-bottom: 5%;
  }
  
  .our-clientsclient {
    font-size: 50px;
    text-transform: uppercase;
    margin-top: 5%;
    margin-bottom: -3%;
  }
  /* css untuk our client */
  .roadmapau{
    display: none ;
  }
  .container1client {
    text-align: center;
    margin-bottom: 5%;
  }
  
  .our-clientsclient {
    font-size: 5.5vh;
    text-transform: uppercase;
    margin-top: 5%;
    margin-bottom: -3%;
  }
  
  .container2client {
    display: flex;
    justify-content: center;
  }
  
  .gridclient {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2%;
  }
  
  .columnclient {
    border: 0px solid black;
    width: 100px;
    height: 70px;
    margin-bottom: 60px;
    margin-left: 4vw;
    margin-right: 4vw;
}
  
  .columnclient img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
}

/* @media (min-width: 1200px) and (max-width: 1399px){
  .container2frontpage{
    height: 100%;
    width: 180%;
    left: -20%;
  }
} */