* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.65;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
.white {
  color: #e5e5e5;
}
.abu {
  color: #333;
}
.yellow {
  color: yellow;
}
.blue {
  color: #255b8d;
}

/* To Top Button */
.keAtas {
  font-size: 25px;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 3%;
  bottom: 8%;
  z-index: 100;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.keAtas.muncul {
  opacity: 1;
  transform: translateY(0);
}

/* Section Hero */
.hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.navigasi {
  position: relative;
  margin: 0 auto;
  height: 15%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  /* background: #c07734; */
}
.navigasi a {
  color: #e5e5e5;
}
.link a:hover {
  text-decoration: underline;
}
.logo {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}
.linkLogo img {
  height: 50px;
}
.logo h1 {
  font-size: 20px;
  width: 150%;
}
.link {
  width: 45%;
  position: relative;
}
.ulBesar {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
}
.linkCompany,
.linkServices,
.linkNews,
.linkContactUs {
  position: relative;
  transition: all 1s;
}
.ulCompany {
  position: absolute;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
  width: 150%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50px);
  transition: all 1s;
}
.ulNews {
  position: absolute;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
  width: 150%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50px);
  transition: all 1s;
}
.ulCompany.muncul,
.ulNews.muncul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.hamburger {
  position: absolute;
  font-size: 30px;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.headline {
  margin: 0 auto;
  width: 90%;
  height: 80%;
  color: #e5e5e5;
  font-size: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 9;
}
.bulet {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  /* height: 100%; */
  width: 150px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 9;
}
.bulet1,
.bulet2,
.bulet3 {
  /* border: 1px solid gold; */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  height: 17px;
  width: 17px;
  cursor: pointer;
  pointer-events: all;
}

.gambar1 {
  background-image: url("../img/william-william-NndKt2kF1L4-unsplash.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 5;
  transform: translateX(-100%);
  /* opacity: 0; */
  transition: all ease 2.5s;
}
.gambar2 {
  background-image: url("../img/rodrigo-abreu-lq9PxpwDZUk-unsplash.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 4;
  transform: translateX(0%);
  transition: all ease 2.5s;
}
.gambar3 {
  background-image: url("../img/timelab-pro-sWOvgOOFk1g-unsplash.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 3;
  transform: translateX(100%);
  /* opacity: 0; */
  transition: all ease 2.5s;
}
.gambar1.muncul {
  transform: translateX(0);
  opacity: 1;
}
.gambar2.munculKiri {
  transform: translateX(-100%);
  /* opacity: 0; */
}
.gambar2.munculKanan {
  transform: translateX(100%);
  /* opacity: 0; */
}
.gambar3.muncul {
  transform: translateX(0);
  opacity: 1;
}
.bgHitam {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 5;
}
.chat {
  position: fixed;
  bottom: 0;
  right: 3%;
  height: 250px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 101;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px 10px 0 0;
  transition: all ease-in-out 1s;
}
.chat.muncul {
  background: rgba(0, 0, 10, 0.8);
  pointer-events: all;
}
.chatAtas {
  height: 15%;
  width: 100%;
  display: flex;
  cursor: pointer;
  pointer-events: all;
}
.chatAtasKiri {
  width: 20%;
  height: 100%;
  background: #e5e5e5;
  border-radius: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 1.5s;
}
.chatAtasKiri.muncul {
  width: 0%;
}
.chatAtas img {
  height: 80%;
  width: 50%;
}
.chatWith {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #255b8d;
  color: #e5e5e5;
  border-radius: 0 10px 0 0;
  transition: all 1.5s;
  font-size: 14px;
  font-weight: 500;
}
.chatBawah {
  height: 0%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 1.5s;
}
.chatBawah.muncul {
  height: 85%;
  opacity: 1;
  pointer-events: all;
}
.chatBawah1 {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.chatBawah1 img {
  width: 10%;
  height: 20%;
  background: #255b8d;
  padding: 5px;
  border-radius: 20px;
}
.chatBawah1 h5 {
  background: #e5e5e5;
  border-radius: 0 10px 10px 10px;
  padding: 15px;
  width: 80%;
  font-weight: normal;
  font-size: 13px;
}
.chatBawah2 {
  height: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.chatBawah2 input {
  width: 80%;
  height: 60%;
  padding: 10px;
  border: 0;
  border-radius: 10px;
}
.chatBawah2 a {
  width: 10%;
  height: 40%;
  cursor: pointer;
}
.chatBawah2 a img {
  height: 100%;
}

/* Section About Us */
.aboutUs {
  margin: 0 auto;
  margin-top: 150px;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.kiriAbout {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.kiriAbout h2 {
  font-size: 32px;
  color: #4e7d80;
}
.kiriAbout img {
  width: 180%;
  margin-top: 20px;
}
.kananAbout {
  height: 300px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 50px solid black; */
}
.isiKananAbout {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: #4e7d80;
  outline: 30px solid white;
  padding: 30px;
}
.kananAbout h3 {
  font-weight: normal;
  font-size: 21px;
  width: 95%;
  text-align: right;
}

/* Section Strength */
.ourStrength {
  margin: 0 auto;
  margin-top: 150px;
  width: 90%;
  display: flex;
  height: 100%;
}
.kiriStrength {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.isiStrength {
  background: #c07734;
  height: 400px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  z-index: 2;
  outline: 30px solid white;
}
.isiStrength img {
  width: 80%;
  overflow: hidden;
  object-fit: cover;
}
.isiStrength p {
  height: 50%;
  text-align: center;
  color: #fff;
}
.strength1,
.strength2,
.strength3,
.strength4 {
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kananStrength {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.kananStrength h2 {
  z-index: 9;
  color: #c07734;
  font-size: 32px;
}
.kananStrength img {
  width: 180%;
  margin-top: 20px;
  z-index: 1;
}

/* Section Our Customer */
.ourCustomer {
  width: 100%;
  height: 500px;
  background-image: url("../img/cameron-venti-FPKnAO-CF6M-unsplash.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ourCustomer h2 {
  font-size: 32px;
  color: #fff;
}
.isiOurCustomer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.isiOurCustomer img {
  width: 60%;
}

/* Section Our Service */
.ourService {
  width: 100%;
  /* border: 2px solid black; */
  margin-top: 150px;
}
.ourService h2 {
  font-size: 32px;
  text-align: center;
}
.isiOurService {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5%;
  margin-bottom: 100px;
}
.isiOurService h5 {
  font-size: 22px;
}
.isiOurService img {
  width: 100%;
}
.kiriService,
.kananService {
  width: 40%;
  margin-top: 50px;
}
.kiriService.isiService2 {
  text-align: right;
}

/* Section Footer */
.sectionFooter {
  width: 100%;
  /* height: 500px; */
  background: cornflowerblue;
  background: #333;
  margin-top: 100px;
  padding: 50px 0;
}
.isiFooter {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #e5e5e5;
  flex-wrap: wrap;
}
.isiFooter1 {
  width: 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.isiFooter1 img {
  width: 100%;
}
.isiFooter2,
.isiFooter3,
.isiFooter4,
.isiFooter5 {
  width: 20%;
  height: 100%;
  /* border: 2px solid salmon; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.isiFooter2 {
  width: 25%;
}
.isiFooter p {
  font-size: 14px;
  font-weight: 300;
  margin-left: 10px;
}
.isiFooter a {
  color: #e5e5e5;
}
.isiFooter a:hover {
  font-weight: 400;
  text-decoration: underline;
}
.isiFooter h5 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
