/********** Template CSS **********/
:root {
  --primary: #1BA1A2;
  --secondary: #145573 ;
  --dongker: #1B297B;
  --red: #E01C1E;
  --light: white;
  --dark: #000;
  --abu: #e5e5e5;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Control Tambahan Start ***/
.bg-nav{
    background-color: var(--dongker);    
}

.bg-utama1{
  background-color: var(--primary);
}

.bg-utama{
  background: linear-gradient(to right, rgba(27, 161, 162, 1), rgba(20, 85, 115, 1));
}

.bg-kedua{
  background-color: var(--secondary);
}

.bg-section{
  background-color: var(--abu);
}

.bg-merah{
  background-color: var(--red);
}

.bg-hitam{
  background-color: var(--dark);
}

.text-utama{
  color: var(--primary);
}

.text-kuning{
  color: var(--secondary);
}

.text-merah{
  color: var(--red);
}

.text-putih{
  color: var(--light);
}

.border-putih{
  color: var(--light);
}

@media only screen and (max-width: 767px) {
    .fz-9{
        font-size: 9px;
    }
}

.fz-12{
    font-size: 12px;
}

.fz-20{
  font-size: 20px;
}

.title-berita{
  position: absolute;
  z-index: 2;
}

.rad-left-10{
  border-top-left-radius: 10px;
}

blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 20px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

blockquote p {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.sidebar{
  position: sticky;
  top: 90px;
}

@media (min-width: 767.98px) {
  .footer-about {
      margin-top: -24px;
      margin-bottom: -112px;
  }
}

.btn {
  font-weight: 700;
  transition: .5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-utama {
  color: #FFFFFF;
  border: 1px #FFF solid;
}

.btn.btn-utama:hover {
  color: var(--primary);
  background-color: var(--light);
}

.btn.btn-kedua {
  color: var(--secondary);
  border: 1px var(--secondary) solid;
}

.btn.btn-kedua:hover {
  color: var(--light);
  background-color: var(--secondary);
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
    .service-item {
        text-align:left;
        height:240px;
    }
}

@media only screen and (min-width: 1200px) {
    .service-item {
        height:230px;
    }
}

.service-item {
    padding:10px;
    background: white;
    transition: .5s;
    border-radius: 8px;
}
.service-item p{
    color: #0F0F0F;
}

.service-item h5{
    color: var(--secondary);
}

.service-item:hover {
    margin-top: -10px;
    /*background: var(--secondary-color);*/
}

.service-item:hover p{
    color: var(--primary);
}

.service-item:hover h5{
    color: var(--dark);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #545454;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-item .blog-img img  {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(255, 255, 255, .7);
}

.team-item:hover .team-social p {
  color: #fff;
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--light);
  height: 100%;
  padding: 20px;
  /* border-radius: 10px 0 0 10px; */
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background: linear-gradient(to right, rgba(27, 161, 162, 1), rgba(20, 85, 115, 1));
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}

@keyframes animate-loading {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
/*** Control Tambahan End ***/

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: yellow;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-home {
  height: 95vh;
  overflow: hidden;
}

.carousel-home .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-home .carousel-inner .carousel-item {
  height: 100%;
  position: relative;
}

.carousel-home .carousel-inner .carousel-item .overlay {
  position: absolute;
  background-color: #000;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}

.carousel-home .carousel-inner .carousel-caption {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  left: 15%;
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  justify-content: center;
  text-align: center;
  padding-bottom: 1.25rem;
  color: #fff;
  z-index: 2;
}

.carousel-home .carousel-inner .carousel-caption .caption-content {
  /*background: rgba(0, 0, 0, 0.5);*/
  /*padding: 20px 40px;*/
  border-radius: 1rem;
  text-align: center;
}

.carousel-home
.carousel-inner
.carousel-item
.carousel-caption
.carousel-caption-title {
  position: relative;
  width: fit-content;
}

.carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
  color: #fff;
  font-size: 40px;
  /*width: fit-content;*/
  margin: 0;
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
      font-size: 35px;
      text-align: center;
  }
}
.carousel-home .carousel-control-next {
  background-color: var(--primary);
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.carousel-home .carousel-control-prev {
  background-color: var(--primary);
  height: 100px;
  width: 50px;
  top: calc(50% - 50px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.bg-zoom-anim img {
  animation: scale 30s linear infinite;
}

@keyframes scale {
  50% {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
  }
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #fff;
  border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
  color: var(--primary);
  border-color: #fff;
  background: #fff;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.img-zoom {
    transition: all ease-in-out .3s;
}

.pengumuman-item:hover .img-zoom {
    transform: scale(1.2);
}

.artikel-item:hover .img-zoom {
    transform: scale(1.2);
}

.owl-carousel .owl-stage {
  display: flex;
}
.artikel-item {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}
.artikel-box {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 80px; */ /*This is optional*/
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.artikel-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artikel-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.artikel-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gallery-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.gallery-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-overlay {
  opacity: 0;
  transition: ease-in-out 0.2s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.btn-square-contact {
  width: 75px;
  height: 75px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 20px;
}

.btn-square-contact {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-square-contact:hover {
  color: var(--primary);
  background: transparent;
}

.keunggulan-container {
    transition: all ease-in-out .3s;
}

.keunggulan-container:hover {
    background-color: var(--primary) !important;
}

.contact-btn {
  position: fixed;
  /* display: none; */
  left: 30px;
  bottom: 30px;
  z-index: 99;
}

/*--------------------------------------------------------------
  # Video Slider
  --------------------------------------------------------------*/
  @media only screen and (max-width: 767px){
      .video-wrapper{
          height: 90vh;
      }
  }
  
  @media only screen and (min-width: 992px){
      .video-wrapper{
          height: 110vh;
      }
  }
  
  .video-wrapper{
    width: 100%;
    overflow: hidden;
  }
  .video-wrapper .wrapper__video, .video-wrapper iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .ytp-watermark,:not(.ytp-mweb-player) .ytp-watermark:not(.ytp-no-hover):hover {
    opacity: 0 !important;
  }
  
  .position-relative{
    position:relative;
  }
  .position-absolute{
    position:absolute;
  }
  .text-center{
    text-align:center;
  }
  .top-20{
    top:20%;
  }
  .top-25{
    top:25%;
  }
  .text-white{
    color:#fff;
  }
  .text-black{
    color:#000;
  }
  .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    top: 0;
  }
  .banner-search {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 600px;
    height: 56px;
    padding: 0 3px 0 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    z-index: 5;
    border: 1px solid transparent;
    color: #212121;
    margin: 0 auto;
  }
  .banner-search-input {
    line-height: 1.44;
    font-weight: 400;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    position: relative;
    z-index: 400;
    font-size: 14px;
    color: #212121;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 54px;
    caret-color: #ff5722;
  }
  .home-page-search-button {
    font-size: 16px;
    line-height: 1.44;
    font-weight: 500;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    flex: none;
    padding: 0 40px;
    height: 48px;
    border-radius: 6px;
    margin-left: 16px;
    background: #61af4c;
    color: #fff;
    border: #61af4c;
    cursor: pointer;
  }
  .search-box_popover {
    position: absolute;
    top: 68px;
    left: 0;
    width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 8%);
    overflow: hidden;
  }
  input:focus,textarea:focus {
    outline-color:transparent;
  }
  .fs-46{
    font-size:46px;
  }
  .fs-28{
    font-size:28px;
  }
  .revo-button {
    color: #fff !important;
    font-size: 14px !important;
    line-height: 35px !important;
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(71,160,255,1) !important;
    letter-spacing: 2px;
    font-weight: 700;
    padding-left: 20px;
    border-radius: 3px;
    padding-right: 20px;
    border:none;
  }
  .revo-button:hover{
    cursor:pointer;
  }

/*================================================
Zig - zag Halaman Perpustakaan
=================================================*/
.event-area {
  background-color: #fafafa;
}

.single-event-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #ffffff;
}

.single-event-box .event-image {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.single-event-box .event-image .image {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-event-box .event-image .image img {
  display: none;
}

.single-event-box .event-image .image.bg1 {
  background-image: url(../../assets/img/blog-image/1.jpg);
}

.single-event-box .event-image .image.bg2 {
  background-image: url(../../assets/img/blog-image/2.jpg);
}

.single-event-box .event-image .image.bg3 {
  background-image: url(../../assets/img/blog-image/3.jpg);
}

.single-event-box .event-image .image.bg4 {
  background-image: url(../../assets/img/blog-image/4.jpg);
}

.single-event-box .event-content {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.single-event-box .event-content .content {
  padding: 40px 30px;
}

.single-event-box .event-content .content .date {
  color: #2fba1b;
  margin-top: -5px;
  font-size: 50px;
  font-weight: 300;
}

.single-event-box .event-content .content .date sup {
  text-transform: uppercase;
  color: #524552;
  top: -22px;
  left: -6px;
  font-size: 18px;
  font-weight: 500;
}

.single-event-box .event-content .content .date sub {
  font-size: 15px;
  left: -53px;
  top: -1px;
  color: #818181;
}

.single-event-box .event-content .content h3 {
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 600;
}

.single-event-box .event-content .content h3 a {
  display: inline-block;
}

.single-event-box .event-content .content ul {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 10px;
}

.single-event-box .event-content .content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  color: #554955;
  padding-left: 15px;
  padding-right: 15px;
}

.single-event-box .event-content .content ul li span {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  /* font-weight: 600; */
}

.single-event-box .event-content .content .default-btn {
  margin-top: 25px;
}

.single-event-box .imegg{
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 30%;
  max-width: 30%;
}
.single-event-box .konten{
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 70%;
  max-width: 70%;
}
.loc h3{
  text-transform: uppercase;
  color: #217911;
  font-weight: 900;
}
.avail{
  padding: 50px 0;
}
.avail .hae{
  display: inline-block;
  position: relative;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}
.avail .hae:before{
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #34b045;
  top: 0;
  left: -67px;
  top: 50%;
  transform: translateY(-50%);
}
.avail .hae:after{
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #34b045;
  top: 0;
  right: -67px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px){
  .single-event-box .konten {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  }
  .single-event-box {
  margin-bottom: 30px;
  }
  .single-event-box .event-image {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  }
  .single-event-box .event-image .image {
  background-image: unset;
  height: auto;
  }
  .single-event-box .event-image .image img {
  display: inline-block;
  }
  .single-event-box .event-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  }
  .single-event-box .event-content .content {
  padding: 30px 25px;
  }
  .single-event-box .event-content .content h3 {
  font-size: 20px;
  }
  .single-event-box .event-content .content ul li {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
  }
  .single-event-box .event-content .content ul li:last-child {
  margin-bottom: 0;
  }
  .single-event-box:last-child {
  margin-bottom: 0;
  }
}

/*================================
Youtube Embed
===================================*/

.gallery-carousel .owl-dots,
.gallery-video-carousel .owl-dots,
.home-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.gallery-carousel .owl-dot,
.gallery-video-carousel .owl-dot,
.home-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    transition: .5s
}

.gallery-carousel .owl-dot.active,
.gallery-video-carousel .owl-dot.active,
.home-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary)
}

.boxed-btn3-blue-product {
    display: inline-block;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    border: 1px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    background: #0071bd
}

.gallery-overlay {
    opacity: 0;
    transition: .2s ease-in-out
}

.yt-button {
    background: red;
    border-radius: 50%/10%;
    color: #fff;
    font-size: 18px;
    height: 2.7em;
    margin: 20px auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: .1em;
    transition: 150ms ease-out;
    width: 3.6em
    
    /* background-image:url(https://user-images.githubusercontent.com/943942/103335891-609fd680-4ac6-11eb-85e5-c31dab43b710.png);
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center; */
}

.yt-button:hover {
   background: maroon
}

.yt-button::before {
    background: inherit;
    border-radius: 5%/50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%
}

.yt-button::after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, .75);
    content: ' ';
    font-size: 12px;
    height: 0;
    margin: -1em 0 0 -.75em;
    top: 50%;
    position: absolute;
    width: 0
}

/*** Youtube Video start ***/
@media only screen and (max-width: 767px){
    .video {
        /*padding-right: 25px; */
        padding-bottom: 25px;
    }
    
    .img-welcome-kcl{
        width: 150px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(355%, 50%);
    }
    
    .btn-play span {
        top: 120%;
        left: 240%;
    }
}

@media (min-width: 780px) and (max-width: 1280px){
    .video {
        padding-right: 30px; 
        padding-bottom: 30px;
    }
    
    .img-welcome-kcl{
        width: 250px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(230%, 100%);
    }
    
    .btn-play span {
        top: 120%;
        left: 255%;
    }
}

@media only screen and (min-width: 1290px){
    .video {
        padding-right: 30px; 
        padding-bottom: 30px;
    }
    
    .img-welcome-kcl{
        width: 250px; 
        height:auto;
    }
    
    .btn-play {
        transform: translate(290%, 135%);
    }
    
    .btn-play span {
        top: 120%;
        left: 255%;
    }
}

.video {
    position: relative;
    border-radius: 10px;
}

.btn-play {
    position: absolute;
    z-index: 3;
    margin-left: -35px;
    box-sizing: content-box;
    display: flex;
    width: 30px;
    height: 40px;
    border-radius: 50%;

}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 270%;
    top: 150%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 270%;
    top: 150%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #145573bf;
    border-radius: 50%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: absolute;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



