/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Dosis", sans-serif;
  color: #444444;
}

a {
  color: #1e0be3;
  text-decoration: none;
}

a:hover {
  color: #1e0be3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dosis", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1e0be3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #1e0be3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* flex-direction: column; */
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  background: #ffffff;
  display: flex;
  align-items: center;
}

#header .logo{
  display: flex;
  align-items: center;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  margin-top: -5px;
}
.logo img{
 margin-right: 10px;
}

.site-name {
  margin-left: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 60px;
  font-family:'Roboto', sans-serif; 
}
@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

@media (max-width: 991px) {
  .flag-icon {
    width: 16px;
    height: 16px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #1e0be3;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000000;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(16, 31, 29, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li+li {
  margin: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #21413c;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1e0be3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 70px);
  background: url("../img/WTB_1\ -\ Photo.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: #1e0be3;
  background: #1e0be3;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

.justify-text {
  text-align: justify; 
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f2f9;
}

.section-bg-pict {
  position: relative;
  background: url('../img/WTB_4\ -\ Photo.jpg');
  background-size: cover;
  background-position: center;
}

.section-bg-pict::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1; /* Ensure the overlay is below the content */
}

.section-bg-pict .container {
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #21413c;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-box {
  display: flex;
  align-items: flex-start; 
  margin-bottom: 15px;
  padding: 15px;
  border: 0.5px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.about .icon-box i {
  font-size: 28px;
  color: #1e0be3;
  margin-right: 15px; 
}

.about .icon-box .text {
  display: flex;
  flex-direction: column; 
}

.about .icon-box h4 {
  font-size: 16px;
  font-weight: 550;
  color: #21413c;
  margin: 0; 
}

.about .icon-box p {
  font-size: 13px;
  color: #848484;
  line-height: 1.4;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about .icon-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .about .icon-box i {
    margin-bottom: 8px; 
  }
}
/*--------------------------------------------------------------
# Progres
--------------------------------------------------------------*/
.progres .progres-image{
  transition: all 0.3s;
}

.progres .progres-image:hover{
  transform: scale(1.15);
}

.progres-image {
  margin: 10px; /* Atur jarak antar gambar */
}

.slick-prev:before,
.slick-next:before {
  color: blue !important;
}

/*--------------------------------------------------------------
# Unit
--------------------------------------------------------------*/
.unit .spec-title {
  margin-bottom: 30px;
}

.unit .custom-button {
  border-color: #1e0be3;
  color: #1e0be3;
  background-color: transparent;
  border-radius: 0;
  border-width: 1.8px;
  border-style: solid;
  transition: all 0.3s ease;
}

.unit .custom-button:hover {
  border-color: #1e0be3;
  background-color: #1e0be3;
  color: #ffffff;
}

.unit .brochure-download{
  margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.info h4, .info p, .info a {
  color: #444444;
}


.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #1e0be3;
  float: left;
  width: 44px;
  height: 44px;
  background: #e1e1f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #21413c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #43857a;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1e0be3;
  color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#16408f;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

#footer .copyright {
  padding-top: 30px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background:  #6891dc45;
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 0%;
  text-align: center;
  width: 46px;
  height: 36px;
  transition: 0.3s;
  box-shadow: #ddd;
}

#footer .social-links a:hover {
  background: #ffffff;
  color: #16408f;
  text-decoration: none;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}