* {
  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 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; */
  /* border: 1px solid black; */
}
.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;
  /* border: 1px solid black; */
  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%;
  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;
  /* border: 1px solid palevioletred; */
  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 About Us */
.aboutUs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #333;
}
.isiAboutUs {
  margin-top: 50px;
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.about1 {
  width: 55%;
}
.about2 {
  width: 40%;
  height: 100%;
}
.about2 img {
  width: 90%;
}

/* Section Visi Misi */
.visiMisi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url("../img/visiMisi2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* border: 1px solid black; */
  color: #333;
  padding: 50px;
}
.visiMisi h2 {
  color: white;
}
.visiMisi p {
  width: 70%;
}
.visi p {
  margin-left: 30%;
}
.isiVisiMisi {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
}
.visi {
  text-align: right;
  width: 40%;
  height: 100%;
  transform: translateY(-75px);
}
.visiMid {
  width: 10%;
  height: 50%;
}
.visiMid img {
  height: 60%;
  width: 100%;
  object-fit: cover;
  /* border: 1px solid black; */
  padding: 100px 0;
}
.misi {
  width: 40%;
  height: 100%;
  transform: translateY(75px);
}

/* Section CEO */
.CEO {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.isiCEO {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 1px solid black; */
  margin: 0 auto;
}
.isiCEO1 {
  width: 40%;
  text-align: right;
}
.isiCEO2 {
  width: 15%;
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.isiCEO2 img {
  width: 100%;
  border: 3px solid #333;
  border-radius: 50%;
}
.isiCEO3 {
  width: 40%;
}

/* Section Office n Team */
.officeNTeam {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid black; */
}
.isiOfficeNTeam {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  width: 100%;
  height: 100%;
}
.flexImg,
.flexImg2,
.flexImg3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  gap: 10px;
}
.flexImg3 {
  align-items: flex-start;
}
.img1,
.img4,
.img5 {
  object-fit: cover;
  width: 30%;
  height: 100%;
}
.img2,
.img3,
.img6 {
  object-fit: cover;
  width: 60%;
  height: 100%;
  /* border: 1px solid black; */
  /* z-index: 99; */
}
.flexImg2 {
  align-items: flex-start;
}
.img7 {
  width: 100%;
  object-fit: cover;
  margin-top: 10px;
}

/* 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;
}
