* {
  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;
}
.bold {
  font-weight: 600;
}

/* 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 Navigasi */
.navigasi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15vh;
  background: #255b8d;
  color: #e5e5e5;
}
.navigasi a {
  color: #e5e5e5;
}
.link a:hover {
  text-decoration: underline;
}
.isiNavigasi {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  /* margin-top: 150px; */
}
.logo {
  display: flex;
  height: 100%;
  width: 45%;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}
.logo 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);
  background: rgba(37, 91, 141, 1);
  pointer-events: all;
}
.hamburger {
  position: absolute;
  font-size: 30px;
  right: 0;
  opacity: 0;
  pointer-events: none;
}

.chat {
  position: fixed;
  bottom: 0;
  right: 3%;
  /* border: 5px solid black; */
  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;
}
/* .chatWith.muncul {
    border-radius: 10px 10px 0 0;
  } */
.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;
  color: #333;
}
.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 Contact Us */
.contactUs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  color: #333;
  margin: 50px 0;
}
.isiContactUs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  height: 100%;
  gap: 10px;
  /* border: 1px solid black; */
}
.isiContactUs h2 {
  width: 100%;
}
.contactUs1 {
  height: 100%;
  width: 49%;
  /* border: 1px solid black; */
  /* margin-right: 25px; */
}
.contactUs2 {
  height: 100%;
  width: 49%;
  overflow: hidden;
}

/* 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: #333;
  color: #e5e5e5;
  /* border: 10px solid bisque; */
  flex-wrap: wrap;
}
.isiFooter1 {
  width: 10%;
  height: 100%;
  /* background: green; */
  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;
}
