.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background-color: #3c015e;
  }
  
  .header.header-scrolled {
    background: #3c015e;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  }
  
  .header .logo {
    line-height: 0;
    height: 5px;
  }
  
  .header .logo img {
    height: 25px;
    max-height: 40px;
    margin-right: 6px;
  }
  
  @media (max-width: 768px) {
    .header .logo img{
      height: 20px;
    }
  }
  
  .header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
  }
  
  
  
  /*--------------------------------------------------------------
  # 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;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    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: #ff81ee;
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #4154f1;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #5969f3;
  }
  
  .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: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }
  
  .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: #4154f1;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .megamenu {
    position: static;
  }
  
  .navbar .megamenu ul {
    margin-top: 5px;
    right: 0;
    padding: 10px;
    display: flex;
  }
  
  .navbar .megamenu ul li {
    flex: 1;
  }
  
  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: #013289;
  }
  
  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #4154f1;
  }
  
  .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: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @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(1, 22, 61, 0.9);
    transition: 0.3s;
  }
  
  .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;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #4154f1;
  }
  
  .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: #fff;
    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: #4154f1;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }


/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
.button-back {
    padding-top:100px;
}
.button-back .bi-arrow-left-circle {
    font-size:30px;
    color: #3c015e;
}
.button-back .bi-arrow-left-circle-fill {
    font-size:30px;
    color: #3c015e;
}

.arrow-icon i:last-child {
    display: none;
}

.arrow-icon:hover i:first-child {
    display: none;
}

.arrow-icon:hover i:last-child {
    display: inline;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-top:20px;
}
.about h3 {
    font-size: 20px;
    font-weight: 700;
    color: #939398;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  
  .about h2 {
    font-size: 50px;
    font-weight: 700;
    color: #012970;
    padding-right : 25px;
  }

  .about p {
    text-align : justify;
    padding-right : 25px;
    font-size: 18px;
  }
  
  .about .content p {
    margin: 15px 0 30px 0;
    line-height: 24px;
  }

  .carousel-indicators .button {
    background-color: #012970;
  }
  
  .carousel-indicators .active {
    background-color: #012970;
  }
  
  .carousel-inner img {
    width: 100%; 
    height: auto;
    max-width: 100%;
  }

  .carousel-caption h5{
    padding-bottom: 0px;
    color: #ffffff;
    font-weight: 700;
  }
  
  .carousel-caption p{
    padding: 0px;
    margin: auto;
  }

  @media (max-width: 768px) {
    .about h2 {
      font-size : 30px;
    }
    .about h3 {
      font-size : 15px;
    }
    .about .content p {
      font-size : 12px;
      line-height: 20px;
    }
  }
/*--------------------------------------------------------------
# Grid Section
--------------------------------------------------------------*/
.grid {
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 30px;
    
}
.grid p {
    text-align : justify;
    padding-right : 25px;
    font-size: 18px;
}

.grid-button {
    padding-right: 40px;
    padding-left: 40px;
}

.grid-about {
    padding : 0 40px;
}

.grid-about img{
    width: 95%; 
    height: auto;
    max-width: 100%;
    border-radius: 20px;
}

.separator-section {
    background-color: #f8f8f8;
  }

.konten {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 25px;
  }
.konten h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #012970;
    padding-top: 40px;
}
.column {
    position: relative;
  }
  
.column::before,
.column::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd; 
  }
  
.column::before {
    left: 0;
    height:80%;
  }
  
.column::after {
    right: 0;
    height:80%;
  }

.separator {
    border-right: 1px solid #ccc;
    height:450px;
}
.center h2{
    text-align:center;
}
.grid-container {
    padding: 20px;
}

.des-proyek {
    padding: 0 30px;
}

.des-proyek h4 {
    color: #969696;
}

@media (max-width: 768px) {
  .column::before,
  .column::after {
    display: none;
  }
  .row.grid {
    flex-direction: column-reverse;
  }
  .col.separator.center {
    margin-bottom: 20px; /* Atur jarak antara kolom pada layar kecil */
  }
  .konten {
    margin-top: 5px;
  }
  .konten h1 {
    font-size: 30px;
  }
  .des-proyek h3 {
    font-size: 20px;
  }
  .grid p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Galery foto
--------------------------------------------------------------*/
.galery h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #012970;
    padding-top: 40px;
}

.dokumentasi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .galery h1 {
    font-size: 30px;
    padding-top: 5px;
  }
  .dokumentasi .col {
    display: none;
  }
  .dokumentasi .col-6 {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: linear-gradient(#3c015e, #23112A 500px);
    padding: 0 0 0px 0;
    font-size: 14px;
  }
  
  
  .footer .footer-top {
    /* background: url(../img/footer-bg.png) no-repeat right top; */
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
  }
  
  @media (max-width: 992px) {
    .footer .footer-top {
      background-position: center bottom;
    }
  }
  
  .footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  .footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
  }
  
  .footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
  }
  
  .footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
    color: white;
  }
  
  .footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgb(255, 255, 255);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .footer-top .social-links a:hover {
    color: #a80b93;;
  }
  
  .footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    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: #d0d4fc;
    font-size: 12px;
    line-height: 0;
  }
  
  .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: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
  }
  
  .footer .footer-top .footer-links ul a:hover {
    color: #a80b93;;
  }
  
  .footer .footer-top .footer-contact p {
    line-height: 26px;
    color: white  ;
  }
  
  .footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #012970;
  }
  
  .footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #012970;
  }