
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(to bottom, #87CEEB, #ffffff);
}

a {
  color: #fb0102;
  text-decoration: none;
}

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

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

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

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

.back-to-top i:hover {
  color: #fb0102;
}

.back-to-top:hover {
  background: #103b9c;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: #ffffff;
}

#header.header-scrolled {
  background: #ffffff;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.5);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  background: #103b9c;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  margin: 10px 10px 10px 15px;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #ffffff;
  text-decoration: none;
}

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

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #103b9c;
  }

  #header.header-scrolled,
  #header .header-container {
    background: #103b9c;
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #36343a;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #103b9c;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #ffffff;
  justify-content: center;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #ffffff;
  background: #006ff7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fb0102;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fb0102;
  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(29, 28, 31, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 15px;
  background: #103b9c;
  padding: 10px 25px;
  margin: 5px 15px 5px 15px;
  border-radius: 50px;
  color: #ffffff;
      justify-content: center;

}

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

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fb0102;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #103b9c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Beranda Section
--------------------------------------------------------------*/
#beranda {
  width: 100%;
  background: url('../img/gedung.png') no-repeat center center;
  background-size: cover;
  position: relative;
  height: calc(110vh - -5px); /* Adjusted to fill remaining height after navbar */
  display: flex;
  position: relative; /* Added for positioning the vehicle */
  overflow: hidden; /* To ensure the vehicle stays within bounds */
  justify-content: center;
  align-items: center;
  margin-top: -79px;
  margin-bottom: -35px;
}

#beranda .container {
  margin-top: -250px;
  z-index: 2;
}

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

#beranda h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  color: #fb0102;
}

#beranda h2 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 1000;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#beranda .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #ffffff;
  background: #103b9c;
}

#beranda .btn-get-started:hover {
  background: #fb0102;
}

.cloud {
  position: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.cloud1 {
  top: 10%;
  left: -200px;
  width: 200px;
  height: 100px;
  background-image: url('../img/awan/11.png');
  animation-duration: 30s;
  animation: moveClouds 60s linear infinite;
}

.cloud2 {
  top: 20%;
  left: -250px;
  width: 250px;
  height: 125px;
  background-image: url('../img/awan/12.png');
  animation-duration: 40s;
  animation: moveClouds2 60s linear infinite;
}

.cloud3 {
  top: 30%;
  left: -400px;
  width: 300px;
  height: 150px;
  background-image: url('../img/awan/13.png');
  animation-duration: 50s;
  animation: moveClouds 60s linear infinite;
}

.cloud4 {
  top: 10%;
  left: -200px;
  width: 70px;
  height: 100px;
  background-image: url('../img/awan/11.png');
  animation-duration: 30s;
  animation: moveClouds3 60s linear infinite;
}

.cloud5 {
  top: 20%;
  left: -250px;
  width: 50px;
  height: 125px;
  background-image: url('../img/awan/12.png');
  animation-duration: 80s;
  animation: moveClouds4 60s linear infinite;
}

.cloud6 {
  top: 30%;
  left: -300px;
  width: 100px;
  height: 150px;
  background-image: url('../img/awan/13.png');
  animation-duration: 60s;
  animation: moveClouds3 60s linear infinite;
}

@keyframes moveClouds {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120vw);
  }
}

@keyframes moveClouds2 {
  0% {
    transform: translateX(150vw);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveClouds3 {
  0% {
    transform: translateX(180vw);
  }
  100% {
    transform: translateX(-70vw);
  }
}

@keyframes moveClouds4 {
  0% {
    transform: translateX(-70vw);
  }
  100% {
    transform: translateX(150vw);
  }
}

.car-movement {
  overflow: hidden;
  height: 120px; /* Adjust height to accommodate two lanes */
  width: 130%;
  position: fixed;
  margin-right: -30%;
  margin-left: -30%;
  margin-top: 560px;
}

.car-movement2 {
  overflow: hidden;
  height: 100px; /* Adjust height to accommodate two lanes */
  width: 130%;
  position: fixed;
  margin-left: -30%;
  margin-top: 710px;
}

.car1 {
  position: absolute;
  width: 150px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  animation: run1 linear infinite;
}

.car2 {
  position: absolute;
  width: 120px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  animation: run2 linear infinite;
}

.car-1 {
  animation-duration: 18s;
  animation-delay: 0s;
}

.car-2 {
  animation-duration: 18s;
  animation-delay: 4s;
}

.car-3 {
  animation-duration: 18s;
  animation-delay: 8s;
}

.car-4 {
  animation-duration: 18s;
  animation-delay: 12s;
}

.car-5 {
  animation-duration: 18s;
  animation-delay: 16s;
}

.car-6 {
  animation-duration: 18s;
  animation-delay: 20s;
}

@keyframes run1 {
  0% {
    right: -100px;
    bottom: 15px;
  }
  100% {
    right: 100%;
    bottom: 15px;
  }
}

@keyframes run2 {
  0% {
    left: -100px;
    bottom: 15px;
    transform: scaleX(-1); /* Normal direction */
  }
  100% {
    left: 100%;
    bottom: 15px;
    transform: scaleX(-1); /* Flipped direction */
  }
}


@media (min-width: 1290px) {
  #beranda {
    background-attachment: fixed;
    margin-bottom: 35px;
  }
  .cloud {
    position: fixed;
  }
  .car-movement {
    position: fixed;
  }
  .car-movement2 {
    position: fixed;
  }
}

@media (min-width: 1000px) and (max-width: 1289px) {
  #beranda {
    background-attachment: fixed;
    margin-bottom: -48px; /* Pengaturan khusus untuk layar antara 1000px dan 1023px */
  }

  #beranda .container {
    margin-top: -200px;
    z-index: 2;
  }
  
  #beranda h1 {
    font-size: 40px;
  }
  

  .cloud {
    width: 200px; /* Adjust width as needed */
  }
  .car-movement {
    margin-top: 490px;
  }
  
  .car-movement2 {
    margin-top: 605px;
  }

  .car1 {
    width: 120px; /* Adjust width as needed */
    }
  
  .car2 {
    width: 120px; /* Adjust width as needed */
  }
}

@media (min-width: 950px) and (max-width: 999px) {
  #beranda {
    background-attachment: fixed;
    margin-bottom: -48px; /* Pengaturan khusus untuk layar antara 1000px dan 1023px */
  }

  #beranda .container {
    margin-top: -200px;
  }
  
  #beranda h1 {
    font-size: 32px;
  }
  
  .cloud {
    width: 150px; /* Adjust width as needed */
  }
  .car-movement {
    overflow: hidden;
    height: 120px; /* Adjust height to accommodate two lanes */
    width: 130%;
    position: fixed;
    margin-right: -30%;
    margin-left: -30%;
    margin-top: 490px;
  }
  
  .car-movement2 {
    overflow: hidden;
    height: 100px; /* Adjust height to accommodate two lanes */
    width: 130%;
    position: fixed;
    margin-left: -30%;
    margin-top: 605px;
  }

  .car1 {
    width: 120px; /* Adjust width as needed */
    }
  
  .car2 {
    width: 120px; /* Adjust width as needed */
  }
}

@media (min-width: 500px) and (max-width: 949px) {
  #beranda {
    background-attachment: fixed;
    margin-bottom: -48px; /* Pengaturan khusus untuk layar antara 1000px dan 1023px */
  }

  #beranda .container {
    margin-top: -235px;
  }
  
  #beranda h1 {
    font-size: 32px;
    line-height: 40px;
  }
  
  .cloud {
    width: 150px; /* Adjust width as needed */
  }
  .car-movement {
    overflow: hidden;
    height: 120px; /* Adjust height to accommodate two lanes */
    width: 130%;
    position: fixed;
    margin-right: -10%;
    margin-left: -30%;
    margin-top: 490px;
  }
  
  .car-movement2 {
    overflow: hidden;
    height: 100px; /* Adjust height to accommodate two lanes */
    width: 130%;
    position: fixed;
    margin-left: -30%;
    margin-top: 610px;
  }

  .car1 {
    width: 110px; /* Adjust width as needed */
    }
  
  .car2 {
    width: 110px; /* Adjust width as needed */
  }
}

@media (max-width: 499px) {
  #beranda {
    background-attachment: fixed;
    margin-bottom: -48px; /* Pengaturan khusus untuk layar antara 1000px dan 1023px */
  }

  #beranda .container {
    margin-top: -235px;
  }
  
  #beranda h1 {
    font-size: 25px;
    line-height: 40px;
  }
  
  .cloud {
    width: 150px; /* Adjust width as needed */
  }
  .car-movement {
    overflow: hidden;
    height: 120px; /* Adjust height to accommodate two lanes */
    width: 200%;
    position: fixed;
    margin-left: -280%;
    margin-right: -200%;
    margin-top: 490px;
  }
  
  .car-movement2 {
    overflow: hidden;
    height: 100px; /* Adjust height to accommodate two lanes */
    width: 200%;
    position: fixed;
    margin-left: -280%;
    margin-top: 610px;
    margin-right: -200%;
  }

  .car1 {
    width: 110px; /* Adjust width as needed */
    }
  
  .car2 {
    width: 110px; /* Adjust width as needed */
  }
}

/*--------------------------------------------------------------
# Main General
--------------------------------------------------------------*/
#main {
  position: relative;
  z-index: 3;
  background-color: #ffffff;
  margin-top: -38px;
}


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

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

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #103b9c;
  bottom: 0;
  left: 0;
}

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

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f6f6f7;
  text-align: center;
  padding: 5px 0;
}

.clients img {
  width: 40%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Tentang
--------------------------------------------------------------*/

.tentang .content h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 40px;
}

.tentang .content p {
  text-align: justify;
}

.tentang .content ul {
  list-style: none;
  padding: 0;
}

.tentang .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.tentang .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #103b9c;
  
}

.tentang .content p:last-child {
  margin-bottom: 0;
}


.tentang .iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto; 
}

.tentang .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; 
}
@media (max-width: 768px) {
  .tentang .iframe-container {
    margin-bottom: 10px;
    padding-bottom: 56.25%; 
  }

  .tentang .content {
    flex-direction: column; 
  }
}


@media (min-width: 769px) and (max-width: 991px) {
  .tentang .iframe-container {
    margin-bottom: 10px;
    padding-bottom: 56.25%; 
  }
}

@media (min-width: 992px) and (max-width: 1216px) {
  .tentang .iframe-container {
    margin-top: 160px;
    padding-bottom: 56.25%; 
  }
}

@media (min-width: 1215px) and (max-width: 1289px) {
  .tentang .iframe-container {
    margin-top: 100px;
    padding-bottom: 56.25%; 
  }
}

@media (min-width: 1290px) {
  .tentang .content {
    display: flex; 
    align-items: flex-start;
    justify-content: space-between;
  }

  .tentang .iframe-container {
    margin-top: 40px;
    padding-bottom: 56.25%; 
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #103b9c;
  padding: 40px 0 20px 0;
  color: #ffffff;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Informasi
--------------------------------------------------------------*/
.informasi .content {
  padding: 30px;
  background: #103b9c;
  border-radius: 4px;
  color: #fb0102;
}

.informasi .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.informasi .content p {
  margin-bottom: 30px;
}

/* Gaya untuk Header Tabel */
.table thead th {
  background-color: #ff0033; /* Warna merah untuk header */
  color: #ffffff; /* Warna teks putih untuk kontras */
  text-align: center;
}

/* Gaya untuk Kolom Bergaris (Striped) */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2; /* Warna abu-abu muda untuk baris ganjil */
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #e6e6e6; /* Warna abu-abu sedikit lebih gelap untuk baris genap */
}

/* Tombol untuk Status */
.status-btn {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

/* Warna untuk Tombol Berdasarkan Status */
.status-approved {
  background-color: #28a745; /* Hijau untuk status Approved */
}

.status-pending {
  background-color: #ffc107; /* Kuning untuk status Pending */
  color: #212529; /* Warna teks gelap untuk kontras */
}

.status-rejected {
  background-color: #dc3545; /* Merah untuk status Rejected */
}

/* Gaya untuk Sel Tabel */
.table td {
  text-align: center; /* Teks di tengah */
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/team/team.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fb0102;
  font-size: 50px;
  font-weight: 700;
  text-shadow: 1px 1px 2px black, 0 0 1em hsl(0, 0%, 0%), 0 0 0.2em #000000;
}

.cta p {
  color: #fb0102;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fb0102;
  color: #fb0102;
}

.cta .cta-btn:hover {
  background: #103b9c;
  border: 2px solid #103b9c;
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.berita .berita-carousel,
.berita .berita-slider {
  overflow: hidden;
}

.berita .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fb0102;
}

.berita .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fb0102;
  margin: 0 auto;
}

.berita .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.berita .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.berita .testimonial-item .quote-icon-left,
.berita .testimonial-item .quote-icon-right {
  color: #00cc95;
  font-size: 26px;
}

.berita .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.berita .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.berita .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.berita .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.berita .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fb0102;
  opacity: 1;
  border: 1px solid #103b9c;
}

.berita .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #103b9c;
}

.berita a.btn-get-started.berita {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #ffffff;
  background: #fb0102;
}

.berita a.btn-get-started.berita:hover {
  background: #103b9c;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}

.contact .info i {
  font-size: 20px;
  color: #fb0102;
  float: left;
  width: 44px;
  height: 44px;
  background: #103b9c;
  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: #36343a;
}

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



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f7;
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f0f2;
  z-index: 3;
  position: relative;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9f8f9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fb0102;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #103b9c;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fb0102;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #103b9c;
  color: #fb0102;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #103b9c;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #103b9c;
  color: #fb0102;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #103b9c;
  color: #fb0102;
  text-decoration: none;
}