* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face /*perintah untuk memanggil font eksternal*/ {
  font-family: "fontLogo"; /*memberikan nama bebas untuk font*/
  src: url("../fonts/BERNIERShade.ttf"); /*memanggil file font eksternalnya di folder*/
  /* font-weight: normal; */
  /* font-style: normal; */
  /* -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  text-rendering: optimizeLegibility; */
}
@font-face /*perintah untuk memanggil font eksternal*/ {
  font-family: "fontCakep"; /*memberikan nama bebas untuk font*/
  src: url("../fonts/mona-lisa-recut.otf"); /*memanggil file font eksternalnya di folder*/
}
@font-face /*perintah untuk memanggil font eksternal*/ {
  font-family: "kitacukurFont"; /*memberikan nama bebas untuk font*/
  src: url("../fonts/coolvetica-rg.otf"); /*memanggil file font eksternalnya di folder*/
}
.kitacukurFont {
  font-family: "kitacukurFont";
  font-weight: normal;
}

html {
  font-family: "Montaga", serif;
  color: #252020;
  line-height: 1.65;
  scroll-behavior: smooth;
}
a {
  color: #252020;
  text-decoration: none;
}

/* Back To Top Button */
.backToTop {
  /* color: #252020; */
  color: #f2a965;
  position: fixed;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  right: 5%;
  bottom: 7%;
  border-radius: 5px;
  background: rgb(34, 34, 34, 0.6);
  z-index: 5;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
}
.backToTop.show {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.backToTop:hover {
  color: #252020;
  background: rgb(219, 211, 30, 0.6);
}
.topButton {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  display: block;
  transform: translateY(13%);
  /* border: 1px solid black; */
}

/* Header Section */
header {
  width: 100%;
  height: 10vh;
  /* border: 1px solid black; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  /* overflow: hidden; */
  position: relative;
}
nav {
  /* border: 1px solid black; */
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.logo {
  /* border: 1px solid black; */
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.logoLink {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logoLink img {
  height: 30%;
}
.logoLink h1 {
  font-size: 24px;
  font-weight: normal;
  /* font-style: normal; */
  /* text-decoration: none; */
  font-family: "fontLogo";
}
.logoLink:hover {
  color: #f2a965;
}
.navLink {
  /* border: 1px solid black; */
  height: 100%;
  width: 50%;
}
.bigUl {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.bigUl li {
  list-style: none;
  cursor: pointer;
}
.bigUl a:hover {
  text-decoration: underline;
}
.bigUl img {
  height: 20px;
}
.gambarArrowDown {
  height: 12px !important;
  margin-left: 2px;
}
.clickService,
.clickInformation,
.clickLanguage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceUl,
.informationUl,
.languageUl {
  position: absolute;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s 0.1s ease-out;
  /* background: #fff; */
  background: #252020;
  border-top: 3px solid #cecece;
  border-bottom: 3px solid #cecece;
  padding: 10px;
}
.languageUl {
  transform: translate(-70%, -10px);
  width: max-content;
}
.serviceUl.on,
.informationUl.on,
.languageUl.on {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}
.languageUl.on {
  transform: translate(-100px, 0);
}
.serviceUl a,
.informationUl a,
.languageUl a {
  display: block;
  color: #cecece;
  padding: 5px 0;
}

/* Hero Section */
.heroSection {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  /* border: 1px solid red; */
  position: relative;
}
/* Left Hero Button */
.leftHero,
.rightHero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 45%;
  color: #cecece;
  font-size: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-family: "Pacifico", cursive;
  line-height: 45px;
  z-index: 1;
}
.leftHero {
  left: 5%;
}
.rightHero {
  right: 5%;
}
.leftHeroButton,
.rightHeroButton {
  height: 100%;
  cursor: pointer;
}
.subHero {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.isiSubHero {
  transform: translate(20%, -20%);
  color: #cecece;
  font-family: "fontCakep";
}
.isiSubHero h1 {
  font-size: 100px;
  font-weight: normal;
}
.isiSubHero h2 {
  font-size: 80px;
  font-weight: normal;
  margin-top: -30px;
}
.firstHero {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  background-image: url(../img/heroImg2.jpg);
}
.firstHero.on {
  opacity: 1;
}
.secondHero {
  background-image: url(../img/heroImg1.jpg);
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.secondHero.on {
  /* transform: scale(1); */
}
.secondHero.off {
  /* transform: scale(0); */
  opacity: 0;
}
.thirdHero {
  background-image: url(../img/heroImg3.jpg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  /* transform: scale(0); */
}
.thirdHero.on {
  /* transform: scale(1); */
  opacity: 1;
}

/* DIV WHO WHAT INF */
.whoWhatInf {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  /* border: 1px solid saddlebrown; */
  padding: 150px 0;
}
.whoWhatInf h2,
.contactSection h2 {
  font-family: "fontCakep";
  font-weight: normal;
  font-size: 32px;
}
.isiWhoWhatInf {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  gap: 15px;
  /* padding: 100px 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  /* border: 1px solid black; */
  color: #cecece;
}
.isiWhoWhatInf li {
  list-style: none;
}
.isiWhoWhatInf a {
  color: #cecece;
  cursor: pointer;
}
.isiWhoWhatInf a:hover {
  text-decoration: underline;
}
.isiWhoWhatInf .active {
  color: #f2a965;
}

/* ABOUT SECTION */
.aboutSection {
  background: #232020;
  width: 55%;
  padding: 200px 40px;
}
.aboutImageDiv img {
  width: 100%;
}

/* Service and Information */
.serviceAndInformation {
  width: 45%;
  /* border: 1px solid salmon; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 15px;
}

/* Service Section */
.serviceSection,
.informationSection {
  padding: 30px 40px;
  background: #232020;
  overflow: hidden;
}
.navService,
.navInformation {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.ulNavService,
.ulNavInformation {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.contentService,
.contentInformation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  /* border: 3px solid rgb(231, 235, 36); */
  /* overflow: hidden; */
}
.isiContentService,
.isiContentInformation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  /* align-content: center; */
  align-content: center;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.isiContentService.first,
.isiContentInformation.first {
  opacity: 1;
  transform: translateX(0);
}
.isiContentService.second,
.isiContentInformation.second {
  opacity: 1;
  transform: translateX(-100%);
}
.isiContentService.third,
.isiContentInformation.third {
  opacity: 1;
  transform: translateX(-200%);
}
.isiContentService.four,
.isiContentInformation.four {
  opacity: 1;
  transform: translateX(-300%);
}
.showService,
.showInformation {
  /* border: 1px solid yellow; */
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
}
.showService.active,
.showInformation.active {
  opacity: 1;
}

.serviceImageDiv,
.informationImageDiv {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  /* padding: 10px 30px; */
  /* border: 1px solid white; */
  background: #fff;
  margin: 20px 0;
}

/* Contact Section */
.contactSection {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 0;
  /* border: 1px solid black; */
}

/* Footer Section */
footer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
}
/* Responsive CSS Code */
@media screen and (max-width: 1024px) {
  /* Header Section */
  .hamburger {
    position: absolute;
    /* transform: translate(-50%, 5%); */
    right: 5%;
    /* top: 50%; */
    height: 50px;
    width: 50px;
    /* background: #9ddb0b; */
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
  .hamburger.on {
    position: fixed;
  }
  .stripe {
    /* height: 100%; */
    border: 2.2px solid #222;
    margin-top: 3.2px;
    width: 22px;
    transition: all 0.3s ease;
  }
  .stripe.on {
    border: 2.2px solid #f2a965;
  }
  .firstStripe.active {
    border: 2.2px solid #fff;
    width: 28px;
  }
  .midStripe.active {
    border: 2.2px solid #fff;
    width: 25px;
  }
  .lastStripe.active {
    border: 2.2px solid #fff;
    width: 22px;
  }
  .firstStripe.activeOn {
    border: 2.2px solid #f2a965;
    width: 28px;
  }
  .midStripe.activeOn {
    border: 2.2px solid #f2a965;
    width: 25px;
  }
  .lastStripe.activeOn {
    border: 2.2px solid #f2a965;
    width: 22px;
  }

  /* Nav To Right */
  .navLink {
    /* background: #fff; */
    /* background: rgba(30, 75, 48, 0.9); */
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    top: 0;
    right: 0;
    position: fixed;
    height: 100vh;
    width: 40vw;
    padding-top: 100px;
    padding-left: 20px;
    transform: translateX(105%);
    transition: all 1s ease;
    z-index: 2;
  }
  .navLink.on {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .bigUl {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .bigUl a {
    color: #fff;
  }
  .serviceUl,
  .informationUl,
  .languageUl {
    background: unset;
    /* border-top: 3px solid #fff; */
    /* border-bottom: 3px solid #fff; */
    width: 35vw;
  }
  .languageUl {
    transform: translate(0, -10px);
  }
  .languageUl.on {
    transform: translate(0);
  }
  .informationLink,
  .contactLink,
  .languageLink {
    transform: translateY(0);
    transition: all 0.5s ease;
  }
  .informationLink.on,
  .contactLink.on,
  .languageLink.on {
    transform: translateY(150px);
    transition: all 0.5s ease 0.2;
  }

  /* Hero Section */
  .isiSubHero {
    transform: translate(15%, -20%);
  }
  .isiSubHero h1 {
    font-size: 80px;
  }
  .isiSubHero h2 {
    font-size: 60px;
  }

  /* DIV WHO WHAT INF */

  .isiWhoWhatInf {
    width: 95%;
    flex-direction: column;
  }
  .aboutSection {
    width: 100%;
  }
  .serviceAndInformation {
    width: 100%;
    /* border: 5px solid yellowgreen; */
    flex-direction: row;
  }
  .serviceSection,
  .informationSection {
    width: 50%;
  }

  /* Footer */
  .contentFooter img {
    height: 100px;
  }
  .descFooter,
  .navFooter {
    font-size: 14px;
  }
}

@media screen and (max-width: 855px) {
  /* Hero Section */
  .isiSubHero {
    transform: translate(15%, -45%);
  }
  .isiSubHero h1 {
    font-size: 70px;
  }
  .isiSubHero h2 {
    font-size: 50px;
  }

  /* DIV WHO WHAT INF */
  .serviceAndInformation {
    flex-direction: column;
  }
  .serviceSection,
  .informationSection {
    width: 100%;
  }
  /* Footer */
  .contentFooter {
    row-gap: 50px;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .contentFooter img {
    height: 120px;
  }
  .descFooter {
    width: 60%;
  }
  .navFooter {
    column-gap: 50px;
    margin-left: 5%;
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: flex-start;
  }
}

@media screen and (max-width: 650px) {
  /* Hero Section */
  .leftHero,
  .rightHero {
    width: 40px;
    height: 40px;
    top: 45%;
    font-size: 30px;
    line-height: 35px;
  }
  .leftHero {
    left: 3%;
  }
  .rightHero {
    right: 3%;
  }
  .isiSubHero {
    transform: translate(10%, -45%);
  }

  /* Header Section */
  .navLink {
    width: 50vw;
  }
  .serviceUl,
  .informationUl,
  .languageUl {
    width: 40vw;
  }
  .bigUl {
    /* font-size: 14px; */
  }
  /* Section Header */
  /* .logoLink h1 {
    font-size: 16px;
  } */

  .aboutSection {
    padding: 200px 20px;
  }

  .serviceSection,
  .informationSection {
    padding: 30px 20px;
  }

  /* Footer */
  .contentFooter {
    flex-direction: column;
    row-gap: 20px;
  }
  .contentFooter img {
    width: inherit;
    /* border: 1px solid gainsboro; */
    height: 250px;
    width: 100%;
    object-fit: contain;
  }
  .descFooter {
    width: 100%;
  }
  .navFooter {
    margin-top: 10px;
    margin-left: 0%;
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  /* Header Section */

  /* .logoLink h1 {
    font-size: 14px;
  } */
  .navLink {
    width: 70vw;
  }
  .serviceUl,
  .informationUl,
  .languageUl {
    width: 60vw;
  }

  /* Hero Section */
  .isiSubHero {
    transform: translate(5%, -45%);
  }

  .whoWhatInf h2 {
    font-size: 22px;
  }
  .whoWhatInf a,
  .whoWhatInf p {
    font-size: 14px;
  }
  .aboutSection {
    padding: 200px 10px;
  }
  .serviceSection,
  .informationSection {
    padding: 30px 10px;
  }
}
