/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 63px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  margin: 1px 0 0 0;
  padding-bottom: 10px;
  font-size: 40px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

.section-header p {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #06081f;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-header {
    padding-bottom: 20px;
  }
  .section-header p {
    font-size: 11px;
  }
  .section-header h2 {
    font-size: 35px;
  }

  section {
    padding: 30px 0;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.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
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/bg2.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fcff00;
}

.hero h2 {
  color: #ffffff;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  text-decoration: none;
}

.hero .btn-get-started:hover{
  background: #a80b93;;
  box-shadow: 0px 5px 30px rgba(241, 9, 222, 0.4);
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

#hero .animated {
  animation: up-down 4s ease-in-out infinite alternate-reverse both;
}

.hero-img {
  animation: up-down 4s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(0); /* Posisi awal, tidak bergerak */
  }
  50% {
    transform: translateY(-20px); /* Posisi setengah animasi, bergerak ke atas */
  }
  100% {
    transform: translateY(0); /* Posisi akhir, kembali ke posisi awal */
  }
}


@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
    background: url(../img/bg1.png) top center no-repeat;
    height: 75vh;
    background-size: cover;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: -22px;
  }

  .hero .hero-img img {
    width: 75%;
  }
  .hero .hero-img img{
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    background: url(../img/bg1.png) top center no-repeat;
    height: 85vh;
    padding: 120px 0 60px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero .hero-img img {
    width: 70%;
    padding-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0 40px 0;
    background: url(../img/bg1.png) top center no-repeat;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero .hero-img img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f2f2f296;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.about h2 {
  font-size: 42px;
  font-weight: 700;
  color: #012970;
  text-align: center;
}

.about p {
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

.col-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about .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;
}

.about .des-btn:hover {
  background: #012970;
  border-color: #012970;
}

.about .des-btn:hover {
  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 #fff;
  color: #ffffff;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
  text-decoration: none;
}

.about .btn-read-more:hover{
  background: #a80b93;;
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

.carousel-indicators .button {
  background-color: #012970;
}

.carousel-indicators .active {
  background-color: #012970;
}

.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: 35px;
  }
  .about p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 10px 0 60px;
}
.box {
  padding: 0 35px;
}

.counts .count-box {
  display: flex;
  width: 90%;
  position: relative;
  overflow: hidden;
  margin-left: auto; 
  margin-right: auto; 
  padding: 10px;

  background: #3c015e;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 20px;
}
.isi-box {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
}
.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #ffffff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #ffffff;
}

.counts .count-box p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: white;
}

.counts .count-box img {
  width: 70%;
  height: auto;
  object-fit: cover;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Pelayanan
--------------------------------------------------------------*/
.pelayanan .pelayanan-box {
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.29);
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  border-radius: 10%;
  line-height: 1.9;
}

.pelayanan .pelayanan-box .img-fluid {
  padding-bottom: 5px;
  border-radius: 10%;
  max-width: 40%;
  height: auto;
}

.pelayanan .pelayanan-box h3 {
  color: #444444;
  font-weight: 600;
}

.pelayanan .pelayanan-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 20px;
  text-decoration: none;
}

.pelayanan .pelayanan-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.pelayanan .pelayanan-box.ungu {
  border-bottom: 3px solid #3c015e;
}

.pelayanan .pelayanan-box.ungu .read-more {
  color: #3c015e;
}

.pelayanan .pelayanan-box.ungu:hover {
  background: linear-gradient(#3c015e, #23112A 500px)
}

.pelayanan .pelayanan-box:hover h3{
  color: #fcff00;
}

.pelayanan .pelayanan-box:hover p,
.pelayanan .pelayanan-box:hover .read-more {
  color: #fff;
}

.pelayanan .pelayanan-box:hover .read-more:hover {
  color: #fcff00;
}

.pelayanan .pelayanan-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.service .section-header {
  text-align: center;
  padding-bottom: 40px;
}

.service .row{
  margin-left: 35px;
  margin-right: 35px ;
}

.service .section-header h2{
  margin: 1px 0 0 0;
  padding-bottom: 10px;
  font-size: 40px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

.service .section-header p {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #06081f;
  text-transform: uppercase;
}

.service .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.29);
  text-align: center;
  transition: 0.3s; 
  height: 100%;
  border-radius: 10%;
}

.service .box img {
  padding: 30px 60px;
  transition: 0.5s;
  transform: scale(1.1);
}

.service .box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 25px 20px;
  color: #012970;
  text-decoration: none;
}


.service .box .read-more:hover {
  color: #a80b93;
}

.service .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.service .box:hover h3{
  color: #a80b93;
}

.service .box:hover{
  box-shadow: 0px 0 30px rgba(27, 2, 34, 0.33);
}

.service .box:hover img {
  transform: scale(1);
}


/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.project .project-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s;
  border-radius: 10%;
  line-height: 1.9;
}

.project .project-box .img-fluid {
  padding-bottom: 10px;
  border-radius: 10%;
}

.project .project-box h3 {
  color: #444444;
  font-weight: 700;
}

.project .project-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  text-decoration: none;
}

.project .project-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.project .project-box.ungu {
  border-bottom: 3px solid #3c015e;
}

.project .project-box.ungu .read-more {
  color: #3c015e;
}

.project .project-box.ungu:hover {
  background: linear-gradient(#3c015e, #23112A 500px)
}

.project .project-box:hover h3{
  color: #fcff00;
}

.project .project-box:hover p,
.project .project-box:hover .read-more {
  color: #fff;
}

.project .project-box:hover .read-more:hover {
  color: #fcff00;
}

.project .project-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-item{
  border-radius: 50px; 
  border-bottom: 3px solid #3c015e;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(57, 2, 102, 0.26);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .b {
 border-bottom: 10% #3c015e;
}


.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #1227e4;
  opacity: 1;
  border: 1px solid #ffffff;;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color:#cc0abc;;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

  /*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
  .cta {
    background: url(../img/elemen1.png) top center no-repeat;
    background-size: cover;
    padding: 60px 0;
  }
  
  .cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  .cta p {
    color: #fff;
  }
  
  .cta .cta-btn {
    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: 30px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
  }
  
  .cta .cta-btn:hover {
    background: #a80b93;;
    border-color: #920980;;
  }

  .cta .cta-btn:hover {
    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: 30px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #ffffff;
  }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# mitra Details
--------------------------------------------------------------*/
.portfolio-menu{
	text-align:center;
}
.portfolio-menu ul li{
	display:inline-block;
	margin:0;
	list-style:none;
	padding:10px 15px;
	cursor:pointer;
	-webkit-transition:all 05s ease;
	-moz-transition:all 05s ease;
	-ms-transition:all 05s ease;
	-o-transition:all 05s ease;
	transition:all .5s ease;
}

.portfolio-item{
	width:100%;
  justify-content: center;
}
.portfolio-item .item{
	width:150px;
	margin-bottom:20px;
}
.portfolio-item .item img {
  width: 100%; 
  height: auto; 
}
@media (max-width: 768px) {
  .portfolio-item {
    width: 107%;
  }
  .portfolio-item .item {
    width: 87px;
  }
}

/*--------------------------------------------------------------
  # karir
--------------------------------------------------------------*/
.karir-menu{
	text-align:center;
}
.karir-menu ul li{
	display:inline-block;
	margin:0;
	list-style:none;
	padding:10px 15px;
	cursor:pointer;
	-webkit-transition:all 05s ease;
	-moz-transition:all 05s ease;
	-ms-transition:all 05s ease;
	-o-transition:all 05s ease;
	transition:all .5s ease;
}

.karir-item{
	width:100%;
  justify-content: center;
}
.karir-item .item{
	width:350px;
	margin-bottom:20px;
  padding-left: 10px;
  padding-right: 10px;
}
.karir-item .item img {
  width: 100%; 
  height: auto; 
}

.email-btn-container {
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 15vh; 
}

.email-btn {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.email-btn:hover {
  background-color: #2980b9;
}

.email-btn i {
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
  }
  .contact .info-box {
    padding: 5px;
  }
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(#3c015e, #23112A 500px);
  padding: 0 0 0px 0;
  font-size: 14px;
}


.footer .footer-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;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #be09a6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    background-color: #14a74a;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.whatsapp-button:hover{
  background-color: #c6c90f;
}

.whatsapp-button .fab-icon {
  margin-top: 10px;
  color: white;
  }

  @media (max-width: 768px) {
    .whatsapp-button {
      /* bottom: 290px; Mengubah jarak dari bawah layar */
      right: 10px; /* Mengubah jarak dari kanan layar */
    }
  
    .whatsapp-button .fab-icon {
      font-size: 24px; 
      padding-top: 4px; 
    }
  }