/* Body */

* {
  padding: 0;
  margin: 0;
}

section {
  font-family: 'Poppins', sans-serif;
}

.preloader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: white;
	z-index: 9999;
}

/* .preloader .logo-preloader{ 
		width: 12.5rem;
		height: 12.5rem;
		background-image: url(../images/alazhar/logo_alsum.svg);
		background-repeat: no-repeat;
} */

.preloader .circles {
		display: flex;
		margin-top: 1rem ;
}

.circles .circle {
	width: 50px;
  height: 20px;
  background: #0773B6;
  margin-bottom: 10px;
  opacity: 1;

  /* Shared animation proprties apply to all */
  animation-name: pulse;
  animation-duration: 3s;
  animation-iteration-count: infinite;

}      

.circle:nth-child(1) {animation-delay: 0.0s; }
.circle:nth-child(2) {animation-delay: 0.5s; }
.circle:nth-child(3) {animation-delay: 1.0s; }
.circle:nth-child(4) {animation-delay: 1.5s; }
.circle:nth-child(5) {animation-delay: 2.0s; }
.circle:nth-child(6) {animation-delay: 2.5s; }

@keyframes pulse {
  50% {
    opacity: 0;
  }
}

/* ANIMATION */
.autoBlur {
 animation: autoBlurAnimation linear both;
 animation-timeline: view(65% auto);
}

@keyframes autoBlurAnimation {
  0% {
       filter: blur(20px);
  }
  100% {
       filter: blur(0px);
  }
}

.autoShow {
   animation: text-appear both;
   animation-timeline: view();
   animation-range: entry 20% cover 100vh;
}

@keyframes text-appear {
  from {
      opacity : 0;
      transform : translateY(100px);
}
to {
   opacity: 1;
   transform: translateY(0);
}

}

.reveal{
   animation: reveal both;
   animation-timeline: view(50% auto);
}

@keyframes reveal {
  from {
      filter: saturate(0) contrast(4) brightness(.1) blur(5px);
      opacity : 0;
      scale: .95;
      translate: 0 4rem;      
}
to {
   filter: none;
   opacity: 1;
   scale: 1;
   translate: 0 0;
}

}

.fadeUp{
   animation: fadeUp both;
   animation-timeline: view();
}

@keyframes fadeUp {
  from {
      opacity : 0;
      transform: translateY(10px) scale (0.5);
}
to {
   opacity : 1;
   transform: translateY(0) scale (1);
}

}

.appear{
   animation: appear linear;
   animation-timeline: view();
   animation-range: entry 0% cover 40%;
}

@keyframes appear {
  from {
      opacity : 0;
      scale: 0.5;
  }
  to {
    opacity : 1;
    scale: 1;
  }

}


.appearr{
   animation: appearr linear;
   /* animation-timeline: view();
   animation-range: entry 0% cover 40%; */
}

@keyframes appearr {
  from {
      opacity : 0;
      scale: 0.5;
  }
  to {
    opacity : 1;
    scale: 1;
  }

}

.appear-footer{
   animation: appear-footer linear;
   animation-timeline: view();
   animation-range: entry 0% cover 20%;
}

@keyframes appear-footer {
  from {
      opacity : 0;
      scale: 0.5;
  }
  to {
    opacity : 1;
    scale: 1;
  }

}



.p-text p {
  font-size: 16px;
  line-height: 27px;
}

.text-area {
  width: 95%;
}

.program-unggulan, .kampus {
   margin: auto;
   padding: 70px 0;
}

/* blm dipake */
section .btn-others {
  padding: 5px 15px;
  border: 2px solid #0773B6;
  color:  #0773B6;
}

section .btn-others:hover {
  background-color: #0773B6;
  color: #ffffff;
}


.date {
  font-size: 14px;
  color: #808080;
}


/* =========================== */
/* =========================== */

/* ================================================================= */

/* NAVBAR */

.navbar {
  transition: all 0.4s;
  height: auto;
}

    /* Change navbar styling on scroll */
    .navbar.active {
      background: #0773B6;
      height: 68px;
    } 


header {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #0773B6;
  position: fixed;
  z-index: 60;
  top: 0;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}


.navbar-brand img{
  width: 180px;
}

.navbar .nav-link{
  color: #ffffff;
  font-weight: 500;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

header .navbar-nav .nav-item.active {
  color: #ffa800;
}


.navbar-nav .nav-item .nav-link:hover {
  color: #ffa800;
}

.navbar-nav .btn-group .dropdown-menu a:hover {
  color: #ffa800;
  background-color: transparent;
}

.btn-pmb .btn-warning {
  background-color: #FFA11D;
  color: #ffffff;
  font-weight: 500;
}

.btn-pmb .btn-warning a{
  text-decoration: none;
  color: #ffffff;
}

.navbar-collapse .navbar-nav .dropdown-menu {
  background-color: #0773b6b6;
  margin-top: 15px;
 
}

.navbar-collapse .navbar-nav .dropdown-menu a{
  color: #ffffff;
  padding: 6px 25px;
}

.navbar-collapse .navbar-nav .dropdown-menu a:hover {

  color: #ffa800;
  font-weight: 600;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.dropend:hover > .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
}


.fade-enter-active, .fade-leave-active {
  transition : opacity .5s
}

.fade-enter, .fade-leave-to /* .fade-leave-active in < 2.1.8 *
*/{
 opacity: 0
}


@media (max-width: 1154px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  
  }

  .navbar-brand img{
    width: 110px;
  }

  .navbar-nav .nav-item {
    font-size: 15px;
    margin: 0 0px;
  }
}

@media (max-width: 991px) {
 
  .navbar-brand img{
    width: 100px;
  }

  .navbar .navbar-nav {
    padding-top: 20px;
    border-top: 1px solid #abfff2;
    margin-top: 20px;
  }

  .navbar .navbar-nav .nav-item {
    padding-bottom: 8px;
    padding-left: 5px;
  }

  .navbar .navbar-collapse .btn-header button{
    display: block;
  }

  .navbar .navbar-collapse .btn-header .btn-join{
    margin-left: -13px;
    margin-bottom: 15px;
  }

  .navbar .navbar-collapse .btn-header {
    margin-bottom: 30px;
  }

  .navbar-collapse{
  padding: 0 20px;
  background: #0773b6d0;
  padding-bottom: 20px;
}

  
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (max-width: 532px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar-brand img{
    width: 100px;
  }

  .navbar .navbar-toggler-icon {
    font-size: 15px;
  }

  .navbar .navbar-nav .nav-item {
    padding-bottom: 5px;
  }
}


/* ================================================================= */
/* FOOTER */
.footer {
  background-image: linear-gradient(#0773B6, #0773B6);
  height: auto;
  color: #ffffff;
  /* margin-top: 30px; */
  padding-top: 50px;
}

.footer .footer-content h5 {
  font-size: 20px;
}

.footer .redaksi-footer {
  width: 80%;
  text-align: justify;
  font-size: 10px;
}

.footer .redaksi-footer p {
  font-size: 14px;
  line-height: 25px;
}

.footer .footer-flip iframe{
  height:290px;
  width: 80%;
  
}

.footer .footer-content .footer-qr{
  width: 10px;
}


.footer .footer-copyright {
  font-size: 14px;
  margin-top: 30px;
  padding-top: 8px;
  background-color: #0773B6;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
}

.footer-copyright a {
  color: #ffffff;
}




/* jumbotron */

/* .jumbotron .carousel-item {
 transition-delay: transform 5s;
 transition-timing-function: ease;
} */

.jumbotron img {
   height: 100%; 
  

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* kampus */
.kampus {
  background-image: linear-gradient(#0773B6, #0773B6);
  color: #ffffff;
}

.kampus .container {
  margin: auto;
}

.kampus .img-kampus img {
  width: 320px;
  border-radius: 20% 0 20% 0;
  
}
.kampus .img-kampus {
  text-align: center;
}

.kampus .text-kampus .btn-kampus {
  background-color: #ffffff;
  color:  #0773B6;
  font-weight: 600;
  margin-right: 15px;
}

.kampus .text-kampus .nav-pills button {
  background-color: #ffffff;
  color:  #0773B6;
  font-weight: 600;
  margin-right: 15px;
}

.kampus .text-kampus .nav-pills button:hover {
  background-color: #ffa800;
  color:  #ffffff;
}

.kampus .text-kampus .nav-pills button.active {
  background-color: #ffa800;
  color:  #ffffff;
}

.kampus .text-kampus .text-detail-kampus {
  margin-top: 40px;
}

.kampus .text-kampus .text-detail-kampus button {
  border: 1px solid #ffffff;
  background-color: #0773B6;
  color: #ffffff;
}

.kampus .text-kampus .text-detail-kampus button .btn-detail-kampus {
  color: #ffffff;
  text-decoration: none;
}

.kampus .text-kampus .text-detail-kampus button:hover {
  color: #ffa800;
  border: 1px solid #ffa800;
}

.kampus .text-kampus .text-detail-kampus button .btn-detail-kampus:hover {
  color: #ffa800;
}


/* program unggulan */
.program-unggulan .container {
  margin: auto;
}

.program-unggulan .content-program {
  padding-top: 40px;
  width: 85%;
  margin: auto;
}

.program-unggulan .content-program img {
  width: 520px;
}

.program-unggulan .content-program .list-program {
  margin-top: 30px;
}

.program-unggulan .content-program .fa-square {
  color: #0773B6;
  margin-bottom: 25px;
}

/* testimoni */
.testimoni {
  background-color: #EBFCFF;
  padding: 50px 0;
}

.testimoni .content-testimoni {
  padding: 70px 0;
  width: 80%;
  margin: auto;
}

.testimoni .content-testimoni .content-text-testimoni {
  padding-left: 30px;
}

.testimoni .content-testimoni img {
  
  /* height: 120px; */
  border-radius: 10px;
  box-shadow: 1px 1px 4px rgb(204, 204, 204);
}

.testimoni .content-testimoni .name-testimoni h4 {
  font-weight: 500;
  
}

.testimoni .content-testimoni .name-testimoni p {
  margin-top: -7px;
  color: #0773B6;
  font-weight: 500;
}

.testimoni .content-testimoni .text-testimoni p {
  text-align: justify;
}



.testimoni .content-testimoni .nav-pills button {
  color: #0773B6;
  margin: 0 60px;
  font-weight: 400;
  font-size: 18px;
  background:transparent;
}

.testimoni .content-testimoni .nav-pills .active {
  border-bottom: 3px solid #0773B6;
}

.testimoni .content-testimoni .tab-content {
  width: 80%;
  margin: auto;
}

.testimoni .content-testimoni .tab-content .card {
  padding: 20px 20px 0;
   margin-top: 40px;
}

.testimoni .content-testimoni .tab-content .card img {
  width: 85px;
}

.testimoni .content-testimoni .tab-content .card .name-testimoni {
  margin-top: 15px;
}

.testimoni .content-testimoni .tab-content .card .profile-testimoni h6 {
  font-size: 18px;
}

.testimoni .content-testimoni .tab-content .card .profile-testimoni p {
  color: #0773B6;
  margin-top: -6px;
}

.testimoni .content-testimoni .tab-content .profile-testimoni {
  padding-left: 10px;
}

.testimoni .content-testimoni .tab-content .text-testimoni {
  margin-top: 15px;
  padding-left: 15px;
}


/* ======================================= */
/* ======================================= */
/* ======================================= */


.wa-icon {
  bottom: 20px;
  right: 20px;
  position: fixed;
  text-align: right;
}

.action {
  position : fixed;
  bottom : 30px;
  right : 30px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 5px rgb(99, 99, 99);
  /* text-align: right; */
   z-index: 999;
}

.action .img-wa-pop {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  transition: 0.3s ease-in-out;
}

.img-wa-pop:active img {
  transform: rotate(45deg);
}


.action .header-popup, .action .room-popup {
  position: absolute;
  bottom: 90px;
  background: #fff;
  min-width: 350px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  right: 3%;
  border: 1px solid #008E05;
 
}

.action .header-popup {
  border-radius: 20px;
  height: 330px;
  background-color: #008E05 ;
  color: #fff;
}

.action .room-popup {
  border-radius: 0 0 20px 20px;
}


.action.active .header-popup, .action.active .room-popup {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}


.action .room-popup .nav-pills button {
  color: #008E05;
  margin: 0px;
  padding: 10px;
  font-weight: 400;
  font-size: 15px;
  background:transparent;
}

.action .room-popup .nav-pills .active {
  border-bottom: 3px solid #ffa800;
}

.action .room-popup .tab-pane .card {
  padding: 20px;
  font-size: 15px;
}


.action .room-popup .tab-pane .card img {
  width: 18px;
}

.action .room-popup .tab-pane .card .disable-aja {
  visibility: hidden;
}