*,
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.parallax {
  width: 100%;
  height: 40vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.banner-footer {
  position: relative;
  background-image: url(../img/free\ stock/civil.jpg);
  padding: 50px 0;
}
.banner-footer .overlay {
  position: absolute;
  border-radius: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(89, 89, 89, 0.8);
  mix-blend-mode: multiply;
}
.banner-footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.banner-footer .container h1 {
  font-size: 50px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 4px;
  padding-bottom: 20px;
  color: #fff;
  z-index: 10;
}
.banner-footer .container p {
  font-size: 20px;
  max-width: 800px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
  color: #fff;
  z-index: 10;
}

/* slide form  */
.Contact-form {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.Contact-form .left-contact {
  width: 50%;
  height: 700px;
  /* background-color: #fff; */
}

.slider-form {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}
.slides-form {
  width: 500%;
  height: 700px;
  display: flex;
}
.slides-form input {
  display: none;
}
.slide-form {
  position: relative;
  width: 20%;
  height: 700px;
  transition: 2s;
}
.slide-form img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* manual nav */
.navigation-manual {
  position: absolute;
  width: 100%;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.manual-btn {
  width: 20px;
  height: 20px;
  border: 3px solid #1e90ff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}
.manual-btn:not(:last-child) {
  margin-right: 40px;
}
.manual-btn:hover {
  background: #1e90ff;
}
#radio1:checked ~ .first {
  margin-left: 0;
}
#radio2:checked ~ .first {
  margin-left: -20%;
}
#radio3:checked ~ .first {
  margin-left: -40%;
}
#radio4:checked ~ .first {
  margin-left: -60%;
}
/* nav automatic */
.navigation-auto {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 650px;
}
.navigation-auto div {
  width: 20px;
  height: 20px;
  border: 3px solid #1e90ff;
  padding: 5px;
  border-radius: 50%;
  transition: 1s;
}
.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-btn1 {
  background: #1e90ff;
}
#radio2:checked ~ .navigation-auto .auto-btn2 {
  background: #1e90ff;
}
#radio3:checked ~ .navigation-auto .auto-btn3 {
  background: #1e90ff;
}
#radio4:checked ~ .navigation-auto .auto-btn4 {
  background: #1e90ff;
}
/* slide form ahir  */

/* contact form  */
.Contact-form .right-contact {
  width: 50%;
  height: 700px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 30px;
}
.right-contact h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

.input-grup {
  position: relative;
  width: 80%;
  margin-bottom: 20px;
}

.input_form {
  width: 100%;
  padding: 10px;
  background: #e7e7e7;
  border-radius: 5px;
  outline: none;
  color: #444444;
  border: 2px solid #1e90ff;
}
.input_form2 {
  width: 100%;
  height: 100px;
  padding: 10px;
  background: #e7e7e7;
  border-radius: 5px;
  outline: none;
  color: #444444;
  border: 2px solid #1e90ff;
}
.placeholder_form {
  position: absolute;
  top: 10px;
  left: 8px;
  font-size: 16px;
  padding: 0px 5px;
  color: #1e90ff;
  transition: 0.3s;
  pointer-events: none;
}
.input_form:focus + .placeholder_form,
.input_form:not(:placeholder-shown) + .placeholder_form {
  top: -10px;
  background-color: #e7e7e7;
}
.input_form2:focus + .placeholder_form,
.input_form2:not(:placeholder-shown) + .placeholder_form {
  top: -10px;
  background-color: #e7e7e7;
}
/* contact form  */

/* footer */
.footer {
  position: relative;
  background-color: #1e90ff;
}
.pembatas-atas {
  width: 100%;
  height: 30px;
  top: 0;
  background-color: #007dfa;
  margin-bottom: 20px;
}
.pembatas-ahir {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 5px 60px;
  background-color: #007dfa;
}
.pembatas-ahir h6 {
  padding-top: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #c8c8c8;
  font-style: italic;
}
.pembatas-ahir div {
  display: flex;
  flex-direction: row;
}
.pembatas-ahir div h6 {
  margin-right: 2px;
}
.pembatas-ahir span {
  position: relative;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005ab3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.logo-mutidimensi {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.logo-mutidimensi img {
  width: 100%;
  height: 65%;
}

.pembatas-ahir span:hover {
  background-color: #00152a;
}
.pembatas-ahir span:not(:last-child) {
  margin-right: 10px;
}
.pembatas-ahir a {
  font-size: 15px;
  color: #c8c8c8;
  padding: 0;
  margin: 0;
}

#footer ul {
  list-style: none;
  padding: 0;
}
.logo-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}
.logo-phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  margin: 10px 0;
}

.logo-phone a {
  font-size: 25px;
  color: #fff;
}
.logo-footer {
  margin-bottom: 10px;
}
.logo-footer span {
  font-size: 23px;
  font-weight: 600;
  color: #fff;
}
#footer h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  margin-bottom: 5px;
  /* background-color: red; */
}
.social-links a {
  font-size: 25px;
  color: #fff;
  margin: 10px 0;
}
.social-links a:not(:last-child) {
  margin-right: 20px;
}

#footer p a {
  text-decoration: none;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  line-height: 30px;
  color: rgb(207, 207, 207);
}
#footer ul li:not(:last-child) {
  margin-bottom: 15px;
}
#footer ul li a {
  font-size: 18px;
  text-transform: capitalize;
  color: rgb(207, 207, 207);
  text-decoration: none;
  font-weight: 400;
}
#footer .col-lg-5,
.col-lg-2 {
  display: flex;
  flex-direction: column;
  align-items: '';
  text-align: left;
  margin-bottom: 0;
}
.box-translate {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.box-translate h6 {
  font-size: 16px;
  margin-right: 20px;
  color: #e7e7e7;
  margin-top: 5px;
}

@media (max-width: 991.98px) {
  .banner-footer .container h1 {
    font-size: 30px;
  }
  .banner-footer .container p {
    font-size: 18px;
  }
  #footer .col-lg-5,
  .col-lg-2 {
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer p {
    text-align: center;
  }
  .input-grup {
    width: 80%;
    margin-bottom: 30px;
  }

  .Contact-form {
    flex-direction: column;
  }
  .Contact-form .left-contact {
    width: 100%;
  }
  .Contact-form .right-contact {
    width: 100%;
  }
  .pembatas-ahir {
    flex-direction: column;
  }
  .logo-mutidimensi {
    width: 100px;
    position: relative;
  }

  .logo-mutidimensi img {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 5px;
    left: 0;
  }
}
@media (max-width: 575.98px) {
  .banner-footer .container h1 {
    font-size: 28px;
  }
  .banner-footer .container p {
    font-size: 16px;
  }
  .input-grup {
    width: 100%;
    margin-bottom: 20px;
  }
  .right-contact h2 {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .pembatas-ahir h6 {
    font-size: 10px;
  }
  .pembatas-ahir span {
    position: relative;
    height: 18px;
    width: 18px;
  }
  .pembatas-ahir a {
    font-size: 12px;
  }
  .box-translate {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo-mutidimensi {
    width: 80px;
    position: relative;
  }

  .logo-mutidimensi img {
    position: absolute;
    width: 100%;
    height: 40%;
    top: 5px;
    left: 0;
  }
}
