
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  .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;
  }


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-beasiswa {
  padding-top:100px;
}

.about-beasiswa h1 {
  font-size: 40px;
  padding-top: 10px;
}

.about-beasiswa p{
  text-align: justify;
  font-size: 20px;
  padding-right: 2px;
}

/*--------------------------------------------------------------
# Beasiswa
--------------------------------------------------------------*/
.img-profile {
  max-width: 100%;
  height: auto;
  display: block; 
  margin-left: auto; 
  margin-right: auto;
  border-radius: 15px;
}

.row-teks {
  margin-top: 20px;
  padding: 5px;
}
.row-teks h1 {
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  color: #000;
}
.row-teks h2 {
  font-size: 25px;
  text-align: justify;
  font-weight: bold;
  color: #000;
  margin: 0 20px; 
  padding: 10px 0;
  line-height: 1.5;
}
.row-teks p {
  margin: 0 20px;
  padding: 10px 0;
  font-size: 20px;
  text-align: justify;
  color: #000;
}
.row-teks li {
  margin: 0 20px;
  padding: 3px 0;
  font-size: 20px;
  text-align: justify;
  color: #000;
}
.row-teks li span{
  font-weight: bold;
}
.row-teks span {
  font-weight: bold;
}
.row-teks a  {
  margin-left: auto; 
  margin-right: auto;
}

.row-teks ol {
  list-style-type: none; 
  counter-reset: my-counter; 
  padding-left: 0; 
}
.row-teks ol li::before {
  content: counter(my-counter) "."; 
  counter-increment: my-counter; 
  font-weight: bold; 
}

@media (max-width: 768px) {
  .row-teks h1 {
    font-size: 30px;
  }
  .row-teks h2 {
    font-size: 20px;
    margin: 0 10px; 
    padding: 5px 0;
  }
  .row-teks p {
    font-size: 16px;
    margin: 0 10px;
    padding: 5px 0;
  }
  .row-teks li {
    font-size: 16px;
    margin: 0 10px;
    padding: 3px 0;
  }
  .info-panel .des-btn {
    font-size: 14px;
    padding: 6px 20px;
    width: auto;
  }
}


/* Info Panel */
.info-panel {
  background-color: white;
  margin-bottom: 20px;
  margin-top: -80px;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
}

.info-panel .des-btn {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 30px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #012970;
  color: #012970;
  text-decoration: none;

  width: 190px; 
  display: block; /* Mengubah menjadi block agar bisa rata tengah */
  margin: 0 auto; /* Membuatnya rata tengah */
  margin-top: 30px;
  margin-bottom: 30px;
}

.info-panel .des-btn:hover {
  background: #012970;
  border-color: #012970;
  color: #fafafa;
}


@media (max-width: 576px) {
  .info-panel {
    background-color: white;
    margin-bottom: 20px;
    margin-top: -30px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
  }
  .row-teks h1 {
    font-size: 25px;
  }
  .row-teks h2 {
    font-size: 18px;
    margin: 0 5px; 
    padding: 5px 0;
  }
  .row-teks p {
    font-size: 14px;
    margin: 0 5px;
    padding: 5px 0;
  }
  .row-teks li {
    font-size: 14px;
    margin: 0 5px;
    padding: 3px 0;
  }
  .info-panel .des-btn {
    font-size: 12px;
    padding: 5px 15px;
  }
}



/*--------------------------------------------------------------
# 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;
}