@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800,900&display=swap");
/********** Template CSS **********/
:root {
  --primary: #fbc02d;
  --secondary: #fff0e6;
  --light: #f8f8f9;
  --dark: #214790;
  --success: #198754;
}

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

/*** 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 {
  font-weight: 500;
  transition: 0.5s;
}

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

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

.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 ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(0, 29, 35, 0.8); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 12px solid var(--primary);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, 0.8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

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

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

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

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(1);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  /* background: var(--primary); */
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

/* .testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}  */

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 85%;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 99;
}

.testimonial-carousel:hover .owl-nav {
  width: 75%;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

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

/*** Footer ***/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  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: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

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

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.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: var(--primary);
}

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

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #fbc02d;
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: #fbc02d;
  border-color: #fbc02d;
}

.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
}
.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.block-21 .blog-img {
  display: block;
  height: 80px;
  width: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.block-21 .text {
  width: calc(100% - 100px);
}
.block-21 .text .heading {
  font-size: 18px;
  font-weight: 300;
}
.block-21 .text .heading a {
  color: #000000;
}
.block-21 .text .heading a:hover,
.block-21 .text .heading a:active,
.block-21 .text .heading a:focus {
  color: #133a62;
}
.block-21 .text .meta > div {
  display: inline-block;
  font-size: 12px;
  margin-right: 5px;
}
.block-21 .text .meta > div a {
  color: gray;
}

.cta-desc > h1,
.cta-desc > .h1,
.cta-desc > h2,
.cta-desc > .h2,
.cta-desc > h3,
.cta-desc > .h3,
.cta-desc > h4,
.cta-desc > .h4,
.cta-desc > h5,
.cta-desc > .h5,
.cta-desc > h6,
.cta-desc > .h6 {
  color: white;
}

.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 #fbc02d;
  border-radius: 10px;
  transition: 0.5s;
}

.gallery-carousel .owl-dot.active {
  background: #fbc02d;
  border-color: #fbc02d;
}

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

.product-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #fbc02d;
  border-radius: 10px;
  transition: 0.5s;
}

.product-carousel .owl-dot.active {
  background: #fbc02d;
  border-color: #fbc02d;
}

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

.productlain-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #fbc02d;
  border-radius: 10px;
  transition: 0.5s;
}

.productlain-carousel .owl-dot.active {
  background: #fbc02d;
  border-color: #fbc02d;
}

.productlain-carousel .owl-stage{display: flex;}
.productlain-items {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: rgba(0, 29, 35, 0.8); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 12px solid var(--primary);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.keunggulan::before {
  content: "";
  background: linear-gradient(
    to right,
    rgba(240, 116, 4, 1),
    rgba(243, 144, 54, 1)
  );
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  position: absolute;
  z-index: -1;
}

.keunggulan-item-title img {
  filter: invert(56%) sepia(35%) saturate(6331%) hue-rotate(3deg)
    brightness(98%) contrast(97%);
}

.keunggulan-item {
  overflow: hidden;
}

.keunggulan-item .card-body {
  z-index: 1;
  transition: 0.5s ease-in-out;
}

.keunggulan-item-title .card-title {
  transition: 0.5s ease-in-out;
}

.keunggulan-item::before {
  background: #fbc02d;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s ease-in-out;
  z-index: 0;
  overflow: hidden;
}

.keunggulan-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.keunggulan-item:hover .card-body,
.keunggulan-item:hover .card-body .keunggulan-item-title .card-title {
  color: white !important;
}

.keunggulan-item:hover .card-body img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg)
    brightness(99%) contrast(107%);
}

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

.btn.btn-success {
  color: #ffffff;
}

.btn.btn-success:hover {
  color: var(--success);
  background: transparent;
}

.contact-btn-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
}

.homebg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../images/home-bg.jpeg");
  background-color: black;
  filter: grayscale(100%);
}

.line-bg {
  position: relative;
  width: 150px;
  display: block;
  margin: 0 auto;
}
.line-bg:before,
.line-bg:after {
  position: absolute;
  content: "";
  width: 75px;
  bottom: 0;
  height: 3px;
}
.line-bg:after {
  left: 0;
  border-radius: 0 0 0 10px;
}
.line-bg:before {
  right: 0;
  border-radius: 0 10px 0 0;
}
.line-bg.y-w:after {
  background: #fbc02d;
}
.line-bg.y-w:before {
  background: #ffffff;
}
.line-bg.y-b:after {
  background: #fbc02d;
}
.line-bg.y-b:before {
  background: #214790;
}
.line-bg.left-line {
  margin: 0;
}

.blue-btn {
  background-image: linear-gradient(
    to right,
    #214790 0%,
    #3d7efc 51%,
    #214790 100%
  );
  color: #fff;
  background-size: 200% auto;
  transition: all 0.3s ease 0s;
}
.blue-btn.big-btn {
  font-size: 18px;
}
.blue-btn.big-btn2 {
  font-size: 20px;
}
.blue-btn.solid {
  background: #fbc02d;
  padding: 11px 24px;
  font-size: 15px;
}
.blue-btn.solid:hover {
  background: #f0ad05;
}
.blue-btn:active,
.blue-btn:focus,
.blue-btn:visited {
  outline: none;
  box-shadow: unset;
}
.blue-btn:hover {
  background-position: right center;
  color: rgba(255, 255, 255, 0.75);
}

.yellow-btn {
  background-image: linear-gradient(
    to right,
    #fbc02d 0%,
    #fb972d 51%,
    #fbc02d 100%
  );
  color: #fff;
  background-size: 200% auto;
  transition: all 0.3s ease 0s;
}
.yellow-btn.big-btn {
  font-size: 18px;
}
.yellow-btn.big-btn2 {
  font-size: 20px;
}
.yellow-btn.solid {
  background: #fbc02d;
  padding: 11px 24px;
  font-size: 15px;
}
.yellow-btn.solid:hover {
  background: #f0ad05;
}
.yellow-btn:active,
.yellow-btn:focus,
.yellow-btn:visited {
  outline: none;
  box-shadow: unset;
}
.yellow-btn:hover {
  background-position: right center;
  color: rgba(255, 255, 255, 0.75);
}

.latest-news-grid {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
.latest-news-grid .news-img a img {
  transition: all 0.3s ease 0s;
  transform: scale(1);
}
.latest-news-grid .news-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 30px 35px;
  color: #ffffff;
  z-index: 1;
}
.latest-news-grid .news-info .news-date {
  color: #fbc02d;
  margin-bottom: 13px;
}
.latest-news-grid .news-info .news-title {
  font-size: 28px;
  line-height: 36px;
  margin: 0;
}
.latest-news-grid .news-info .news-title a {
  color: #ffffff;
}
.latest-news-grid .news-info .news-title a:hover {
  color: #fbc02d;
}
.latest-news-grid .news-info:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 220%;
  left: 0;
  bottom: 0;
  display: block;
  background-image: linear-gradient(
    to top,
    rgba(33, 71, 144, 0.85) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  background-image: -webkit-linear-gradient(
    to top,
    rgba(33, 71, 144, 0.85) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  background-image: -moz-linear-gradient(
    to top,
    rgba(33, 71, 144, 0.85) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  background-image: -ms-linear-gradient(
    to top,
    rgba(33, 71, 144, 0.85) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  background-image: -o-linear-gradient(
    to top,
    rgba(33, 71, 144, 0.85) 30%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 0 0 4px 4px;
  z-index: -1;
}
.latest-news-grid.small-grid .news-info {
  padding: 0 25px 25px;
}
.latest-news-grid.small-grid .news-info .news-title {
  font-size: 18px;
  line-height: 27px;
}
.latest-news-grid.small-grid .news-info .news-desc {
  display: none;
}
.latest-news-grid:hover .news-img a img {
  transform: scale(1.25);
}
.latest-news-grid.home-style6 .news-info:after {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(255, 255, 255, 0) 70%
  ) !important;
}

.gallery-grid {
  position: relative;
  overflow: hidden;
}
.gallery-grid .view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease 0s;
  z-index: 2;
  border-radius: 100%;
}
.gallery-grid .view-btn i {
  display: block;
}
.gallery-grid .view-btn i:before {
  font-size: 45px;
}
.gallery-grid .gallery-title {
  position: absolute;
  content: "";
  left: 0;
  bottom: -55px;
  background: #214790;
  padding: 10px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  z-index: 20;
  transition: all 0.3s ease 0s;
}
.gallery-grid:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #214790;
  content: "";
  transition: all 0.3s ease 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.gallery-grid:hover .view-btn {
  visibility: visible;
  opacity: 1;
}
.gallery-grid:hover .gallery-title {
  bottom: 0;
}
.gallery-grid:hover:after {
  opacity: 0.5;
  visibility: visible;
}

.button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

@keyframes stretch {
    0% {
        transform: scale(1);
    }
  
    100% {
        transform: scale(.9);
    }
}

.service-item:hover .keunggulan-icon{
    animation-name: stretch;
    animation-duration: .4s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
