/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
    font-family: 'Museo Sans-std';
    src: url(../fonts/MuseoSans-300.otf);
}

@font-face {
    font-family: 'Museo Sans-med';
    src: url(../fonts/MuseoSans_500.otf);
}

@font-face {
    font-family: 'Museo Sans-bold';
    src: url(../fonts/MuseoSans_700.otf);
}
:root {
  --fontFamily: 'Karla', sans-serif;
  --fontFamily2: 'Roboto', sans-serif;
  --mainColor: #239D60;
  --secondColor: #212125;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --paragraphColor: #666666;
  --card-title-fontSize: 24px;
  --fontSize: 15px;
  --transition: 0.5s;
  --boxShadow: rgba(163, 163, 163, 0.52) 0px 10px 10px;
}

body {
  font-family: 'Museo Sans-std', sans-serif;;
  color: #444444;
}

a {
  color: #239D60;
  text-decoration: none;
}

a:hover {
  color: #232323;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Museo Sans-med', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #239D60;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #239D60;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #333;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #212125;
  height: 40px;
  font-size: 12px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #FCD70B;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
  border-left: 4px solid #089bfd;
  padding-left: 10px;
}

#header .logo img {
  max-height: 35px;
}

/*--------------------------------------------------------------
# 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;
}
.kuma {
  box-shadow: 0 2px 28px #00000017;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #212125;
  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: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #239D60;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #239D60;
}

.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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: #239D60;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.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: #0b2341;
  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(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #239D60;
}

.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: #239D60;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 84.4vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(4, 12, 21, 0.5); */
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #239D60;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: #239D60;
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #239D60;
}

#hero .btn-get-started {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #239D60;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #239D60;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  /* background-color: #f6f9fd; */
  background-color:#239d6012;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Karla', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;;
  color: #0f2f57;
}

.section-title h1{
  font-size: 32px;
  color: #232323;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title h1::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #239D60;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #239D60;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #239D60;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #239D60;
}

.about .content .btn-learn-more:hover {
  background: #239D60;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Galeri
--------------------------------------------------------------*/
.alazea-portfolio.row {
  margin-right: -10px;
  margin-left: -10px;
}
.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px;
}

.single-service-area {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.single-service-area:last-child {
  margin-bottom: 0;
}

.single-service-area .service-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  max-width: 45px;
  width: 45px;
}

.single-service-area .service-content p {
  margin-bottom: 0;
}

.alazea-portfolio.row {
  margin-right: -10px;
  margin-left: -10px;
}

.alazea-portfolio .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.single_portfolio_item {
  position: relative;
  z-index: 10;
  margin-top: 20px;
  overflow: hidden;
  height: 400px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_portfolio_item {
    height: 290px;
  }
}


@media only screen and (max-width: 992px) {
    .fluid{
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media only screen and (max-width: 767px) {
  .single_portfolio_item {
    height: 300px;
  }
  .maklon {
    padding: 20px 20px;
  }
  .maklon:after{
    display: none;
  }
  .maklon:before{
    display: none;
  }
}

.single_portfolio_item .portfolio-thumbnail {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: calc(100% - 20px);
  position: absolute;
  height: 100%;
  top: 0;
  left: 10px;
  right: 10px;
  background-repeat: no-repeat;
}

.single_portfolio_item .portfolio-hover-overlay {
  width: calc(100% - 20px);
  height: 100%;
  top: 0;
  left: 10px;
  right: 10px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  background-color: #000000a3;
  position: absolute;
  z-index: 10;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.single_portfolio_item .portfolio-hover-overlay a {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 30;
}

.single_portfolio_item .portfolio-hover-overlay a .port-hover-text h3 {
  font-size: 28px;
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_portfolio_item .portfolio-hover-overlay a .port-hover-text h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single_portfolio_item .portfolio-hover-overlay a .port-hover-text h3 {
    font-size: 16px;
  }
}

.single_portfolio_item .portfolio-hover-overlay a .port-hover-text h5 {
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .single_portfolio_item .portfolio-hover-overlay a .port-hover-text h5 {
    font-size: 14px;
  }
}

.single_portfolio_item:hover {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.single_portfolio_item:hover .portfolio-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-page .single_portfolio_item {
  height: 320px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #ffffff;
  right: 0;
  text-align: center;
  padding-right: 0;
  top: 40px;
  width: 36px;
  height: 36px;
  background-color: #b40001;
  line-height: 36px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: 'Roboto', sans-serif;;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #239D60;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #239D60;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#239D60 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #239D60;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #239D60;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon img {
  color: #fff;
  width: 50px;
}


.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #239D607a;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a,.services .icon-box h4 span {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #239D60;
  border-color: #239D60;
}

.services .icon-box:hover .icon {
  background: #232323;
}

.services .icon-box:hover .icon i {
  color: #239D60;
}

.services .icon-box:hover .icon::before {
  background: #0b28577a;
}

.services .icon-box:hover h4 a,.services .icon-box:hover h4 span,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.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 .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #239D60;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #239D60;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta-btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #239D60;
  color: #fff;
}

.cta-btn:hover {
  background: #239D60;
  border: 2px solid #239D60;
}

.cta-btn2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #239D60;
  color: #239D60;
}

.cta-btn2:hover {
  background: #239D60;
  color:#fff;
  border: 2px solid #239D60;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #239D60;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #239D60;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #239D60;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #239D60;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #239D60;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: 'Karla', sans-serif;;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #239D60;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #239D60;
}

.pricing .featured .get-started-btn {
  background: #239D60;
  color: #fff;
  border-color: #239D60;
}

.pricing .featured .get-started-btn:hover {
  background: #239D60;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: 'Karla', sans-serif;;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #239D60;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  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;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #239D60;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: #239D60;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #239D60;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #239D60;
  min-height: 60px;
  margin-top: 100px;
}

.breadcrumbs li {
  color:#fff;
}

.breadcrumbs li a{
  color:#fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 5px 0 0px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #209159;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #239D60;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #239D60;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #212125;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #239D60;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #fff;
  font-size: 18px;
  line-height: 1;
}

#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-contact-card {
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
}

.footer-contact-card i {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}

.footer-contact-card h5 {
  color: var(--whiteColor);
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 600;
}

.footer-contact-card p a {
  color: #fff;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc107;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #239D60;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #239D60;
}

#footer .copyright {
  /* border-top: 1px solid #0f2f57; */
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.bg-grey{
  background:#F1F1F1;
}

/*--------------------------------------------------------------
# Antar Jemput
--------------------------------------------------------------*/

#antar-jemput {
    padding: 60px 0;
}

#antar-jemput #antar-jemput-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
}

#antar-jemput #antar-jemput-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

#antar-jemput #antar-jemput-flters li:hover,
#antar-jemput #antar-jemput-flters li.filter-active {
    background: #089bfd;
    color: #fff;
}

#antar-jemput #antar-jemput-flters li:last-child {
    margin-right: 0;
}

#antar-jemput .antar-jemput-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

#antar-jemput .antar-jemput-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#antar-jemput .antar-item {
    position: relative;
    height: 700px;
    overflow: hidden;
}

#antar-jemput .antar-item figure {
    background: #fff;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

#antar-jemput .antar-item figure:hover img {
    /* opacity: 0.4; */
    transition: 0.3s;
}

#antar-jemput .antar-item figure .link-preview,
#antar-jemput .antar-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
}

#antar-jemput .antar-item figure .link-preview i,
#antar-jemput .antar-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
}

#antar-jemput .antar-item figure .link-preview:hover,
#antar-jemput .antar-item figure .link-details:hover {
    background: #089bfd;
}

#antar-jemput .antar-item figure .link-preview:hover i,
#antar-jemput .antar-item figure .link-details:hover i {
    color: #fff;
}

#antar-jemput .antar-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
}

#antar-jemput .antar-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
}

#antar-jemput .antar-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 20px);
}

#antar-jemput .antar-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
}

#antar-jemput .antar-item .antar-jemput-info {
    background: #fff;
    text-align: center;
    padding: 20px;
    height: 450px;
    border-radius: 0 0 3px 3px;
}

#antar-jemput .antar-item .antar-jemput-info h4 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
}

#antar-jemput .antar-item .antar-jemput-info h4 a {
    color: #333;
}

#antar-jemput .antar-item .antar-jemput-info h4 a:hover {
    color: #089bfd;
}

#antar-jemput .antar-item .antar-jemput-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
#antar-jemput .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#antar-jemput  .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
#antar-jemput .antar-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 20px;
  height: 450px;
  border-radius: 0 0 3px 3px;
}
.btn-get-started {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px;
  border-radius: 25px;
  transition: 0.5s;
  margin: 20px;
  color: #fff;
  background: #089bfd;
}

@media(max-width:1500px){
  .navbar a, .navbar a:focus {
      padding: 10px 0 10px 20px;
      font-size: 16px;
  }
  #header .logo img {
    max-height: 26px;
  }
}
/*--------------------------------------------------------------
# Paket Wisata Jogja
--------------------------------------------------------------*/
.prod1{
  margin: 20px 5px;
  transition: transform .2s;
  background:#fff;
  padding: 20px 25px;
  box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
  -webkit-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
}
.prod1:hover{
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.prod1 h3{
  /*text-align: center;*/
  font-size: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.prod1 h6{
  font-weight: 500;
  color: #000;
}
.prod1 h4{
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.prod1 .bord{
  border-left: 1px solid #00000047;
}
.prod1 .ikon i{
  min-width: 30px;
  font-size: 25px;
  margin: 10px 0px;
}
.ikon{
    color: #000000b5;
    margin-bottom: 15px;
}
.learn_more{
  display: inline-block;
  background: #fff;
  padding: 8px 35px;
  border-radius: 5px;
  color: #0071b3;
  border: 2px solid #0071b3;
  margin: 20px 0px;
  font-weight: 700;
}
.learn_more:hover{
  background: #0071b3;
  border: 2px solid #0071b3;
  color: #fff;
}
.ket{
  color: #0000009c;
  font-style: italic;
}
.ket ul li{
    list-style: inherit;
}
.prod1 ol, ul {
  padding-left: 0;
}
.brand {
  padding-top: 30px;
  border-top: #089bfd solid 6px;}

.brand-bg {
  background: #ebebeb;
  padding: 15px 0px;
  font-family: Arial;
}

.margin {
  margin-bottom: 30px;
}

.brand-bg .brand_box {
  background: #fff;
  padding: 0px 0px 30px 0px ;
  border-radius: 15px;
}
.brand-bg .brand_box > img {
  height: 90px;
  width: auto;
  margin: 8px;
  border-radius: 15px;
}
/* .brand-bg .brand_box h3 {
  font-size: 27px;
  font-weight: bold;
  color: #131313;
  padding: 17px 0px 0px 0px;
} */
.red {
  color: #ff0000;
}

.brand-bg .brand_box span {
  display: block;
  color: #19449b;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 3px;
} 
.brand-bg .brand_box i {
  padding: 0px 2px;
}
.brand-bg .brand_box > img {
  height: 90px;
  width: auto;
  margin: 8px;
  border-radius: 15px;
}
.button {
  background-color: #089bfd;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
}
.button a{
  color:#fff;
}
.brand_box h5, .brand_box p{
  font-size:16px;
  color:#666666;
  padding: 0 10px 0 30px;
  margin: 0 0 20px 0;
}

.brand_box h4,.brand_box h3 {
  font-size: 16px;
  color:#666666;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
}
.prod{
  margin: 20px 5px;
  transition: transform .2s;
  background-color:#fff;
  padding: 20px 25px;
  box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
  -webkit-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
}
.prod:hover{
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.prod h3{
  /*text-align: center;*/
  font-size: 20px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.prod h6{
  font-weight: 500;
  color: #000;
}
.prod h4{
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.prod .bord{
  border-left: 1px solid #00000047;
}
.prod .ikon i{
  min-width: 30px;
  font-size: 25px;
  margin: 10px 0px;
}
.harga-prod{
  height:62px;
}
.ket ul li {
  list-style: inherit;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #212125a6;
}
.single-widget-area {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.single-widget-area .widget-title {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.single-widget-area .widget-title h4 {
  position: relative;
  z-index: 5;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.single-widget-area .widget-content img {
  margin-top: 20px;
  margin-bottom: 15px;
}

.single-widget-area .widget-content p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.single-widget-area .single-latest-post {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.single-widget-area .single-latest-post:last-child {
  margin-bottom: 0;
}

.single-widget-area .single-latest-post .post-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  margin-right: 30px;
}

.single-widget-area .single-latest-post .post-content .post-title h6 {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.single-widget-area .single-latest-post .post-content .post-title h6:hover,
.single-widget-area .single-latest-post .post-content .post-title h6:focus {
  color: #A32325;
}

.single-widget-area .single-latest-post .post-content .post-date {
  display: block;
  font-size: 14px;
  margin-bottom: 0;
  color: #4a4a4a;
  line-height: 1;
}

.single-widget-area .popular-tags li a {
  display: inline-block;
  margin: 4px;
  padding: 10px 15px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  color: #212529;
  background-color: #f9f9f9;
}

.single-widget-area .popular-tags li a:hover,
.single-widget-area .popular-tags li a:focus {
  color: #ffffff;
  background-color: #b40001;
}

.single-widget-area .author-widget {
  border: 1px solid #ebebeb;
  padding: 30px;
}

.single-widget-area .author-widget .author-thumb-name {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
}

.single-widget-area .author-widget .author-thumb-name .author-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  max-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-widget-area .author-widget .author-thumb-name .author-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
}

.single-widget-area .author-widget .author-thumb-name .author-thumb img {
  border-radius: 50%;
}

.single-widget-area .author-widget .author-thumb-name .author-name h5 {
  margin-bottom: 3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-widget-area .author-widget .author-thumb-name .author-name h5 {
    font-size: 14px;
  }
}

.single-widget-area .author-widget .author-thumb-name .author-name p {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-widget-area .author-widget .author-thumb-name .author-name p {
    font-size: 13px;
  }
}

.single-widget-area .author-widget .social-info a {
  display: inline-block;
  margin-right: 20px;
  color: #4a4a4a;
}

.single-widget-area .author-widget .social-info a:hover {
  color: #b40001;
}

.single-widget-area .single-best-seller-product {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.single-widget-area .single-best-seller-product::after {
  margin-bottom: 0;
}

.single-widget-area .single-best-seller-product .product-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  margin-right: 30px;
}

.single-widget-area .single-best-seller-product .product-info a {
  display: block;
  color: #212529;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.single-widget-area .single-best-seller-product .product-info a:hover,
.single-widget-area .single-best-seller-product .product-info a:focus {
  color: #303030;
}

.single-widget-area .single-best-seller-product .product-info p {
  margin-bottom: 0;
  color: #303030;
  font-weight: 500;
}

.single-widget-area .single-best-seller-product .product-info .ratings i {
  font-size: 12px;
  color: #ff9800;
}

.single-widget-area .search-form {
  position: relative;
  z-index: 2;
}

.single-widget-area .search-form input {
  background-color: #ffffff;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #4a4a4a;
  border: 1px solid #ebebeb;
  border-radius: 0;
}

.single-widget-area .search-form input:focus {
  box-shadow: none;
}

.single-widget-area .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 10;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
  color: #303030;
  border: 1px solid #ebebeb;
  border-left: none;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.single-widget-area .search-form button:hover {
  color: #b40001;
}

.single-post-details-area {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.single-post-details-area .post-content .post-title {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-post-details-area .post-content .post-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .single-post-details-area .post-content .post-title {
    font-size: 24px;
  }
}

.single-post-details-area .post-content .post-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.single-post-details-area .post-content .post-meta a {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-right: 30px;
}

.single-post-details-area .post-content .post-meta a:last-child::after {
  content: '/';
  top: 0;
  left: -20px;
  position: absolute;
  z-index: 1;
}

.single-post-details-area .post-content .post-meta a i {
  margin-right: 5px;
  color: #b40001;
}

.single-post-details-area .post-content .post-meta a:hover {
  color: #b40001;
}

.single-post-details-area .post-content blockquote {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  background-color: #f9f9f9;
}

.single-post-details-area .post-content blockquote .blockquote-text h5:last-child {
  color: #b40001;
}
.mobile-nav-toggle {
  color: #000;
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*================================================
Index 02 About Area CSS
=================================================*/
.about-img-2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url("../images/about/about-2-img.jpg");
  height: 100%;
  border-radius: 15px;
}

.about-img-2 img {
  display: none;
}

.about-img-2 .about-img-text {
  max-width: 350px;
  border-radius: 15px;
  line-height: 1.4;
  position: absolute;
  right: -15px;
  top: -15px;
}

.about-img-2 .about-img-text h4 {
  color: var(--whiteColor);
  background-color: #239D60;
  padding: 15px 25px;
  position: relative;
  margin: 15px 0px 15px 15px;
  border-radius: 15px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
  display: flex;
}

.about-img-2 .about-img-text h4 span {
  color: var(--mainColor);
  margin-right: 10px;
  align-self: center;
}

.about-img-2 .about-img-text::before {
  content: '';
  width: 50%;
  height: 100%;
  border-radius: 15px;
  background-color: #212125;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}

.about-text-area-2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-text-area-2 .default-button {
  margin-top: 25px;
}

.about-card {
  position: relative;
  padding-left: 85px;
  max-width: 500px;
  margin-top: 25px;
}

.about-card i {
  width: 70px;
  height: 70px;
  font-size: 35px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--mainColor);
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--whiteColor);
  position: absolute;
  left: 0;
}

.about-card h4 {
  margin-bottom: 10px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.about-card:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.default-section-title span {
  color: var(--mainColor);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  font-weight: 600;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}
.default-section-title h3 {
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 800;
}

.default-button {
  padding: 12px 35px;
  border-radius: 25px;
  position: relative;
  display: inline-block;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  overflow: hidden !important;
  color: var(--whiteColor);
  border: 1px solid #239D60;
  background-color: #239D60;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fontFamily2);
}
.about-text-area-2 .default-button {
  margin-top: 25px;
}
.default-button:hover {
  color: var(--whiteColor);
  border-color: var(--secondColor);
  background-color: var(--secondColor);
}
/*================================================
Index 02 Features Area CSS
=================================================*/
.feature-card-2 {
  margin-top: 30px;
  padding: 30px 30px;
  position: relative;
  padding-left: 105px;
  border-radius: 5px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--whiteColor);
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
}

.feature-card-2 .feature-card-icon {
  width: 60px;
  height: 60px;
  font-size: 35px;
  /* padding-top: 15px; */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--secondColor);
  background-color: var(--mainColor);
  border-radius: 65% 35% 68% 32% / 45% 29% 71% 55%;
  -webkit-animation: border-radius-animation 5s infinite linear forwards;
          animation: border-radius-animation 5s infinite linear forwards;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  position: absolute;
  left: 30px;
}

.feature-card-2 h4 {
  color: var(--blackColor);
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.feature-card-2 p {
  color: var(--paragraphColor);
}

.feature-card-2:hover {
  background-color: var(--secondColor);
}

/* .feature-card-2:hover .feature-card-icon {
  color: var(--mainColor);
} */
/*================================================
Animation CSS
=================================================*/
@keyframes top-bottom {
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes left-right {
  50% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}

@keyframes left-right {
  50% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}

@-webkit-keyframes half-spin {
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@keyframes half-spin {
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@-webkit-keyframes full-spin {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@keyframes full-spin {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@-webkit-keyframes breathe {
  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(188, 237, 243, 0.466);
            box-shadow: 0 0 0 15px rgba(188, 237, 243, 0.466);
  }
}

@keyframes breathe {
  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(188, 237, 243, 0.466);
            box-shadow: 0 0 0 15px rgba(188, 237, 243, 0.466);
  }
}

@-webkit-keyframes comma-effect {
  50% {
    color: var(--whiteColor);
    background-color: var(--mainColor);
  }
}

@keyframes comma-effect {
  50% {
    color: var(--whiteColor);
    background-color: var(--mainColor);
  }
}

@-webkit-keyframes border-radius-animation {
  30% {
    border-radius: 50% 50% 22% 78% / 38% 61% 39% 62%;
  }
  60% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes border-radius-animation {
  30% {
    border-radius: 50% 50% 22% 78% / 38% 61% 39% 62%;
  }
  60% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.features {
  position: relative;
}
.features:before {
  content: '';
  position: absolute;
  background: #fff;
  bottom: 0;
  height: 200px;
  width: 100%;
}
.default-section-title-middle {
  max-width: 635px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#wisata, #wisata-paket, #wisata-detil {
  color: #000000;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#wisata h2, #wisata-paket h2, #galeri h2, #blog h2 {
  line-height: 0.6;
  color: #239D60;
  padding-bottom: 1rem;
}
#wisata .card-img-overlay span,
#wisata-paket .card-img-overlay span {
  color: #239D60;
  background-color: #ffffff;
  padding:5px 10px;    
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 5px;
  filter: drop-shadow(3px 3px 3px #094d16);
}
#wisata .card:hover .card-body,
#wisata-paket .card:hover .card-body {
  background-color: #239D60;
  color: #eeeeee !important;
}
#wisata .card:hover .card-img-overlay span,
#wisata-paket .card:hover .card-img-overlay span {    
  background-color: #239D60;
  color: #eeeeee !important;
  filter: drop-shadow(3px 3px 3px #dddddd);
}
#wisata a, #wisata-paket a  {
  position: relative;
}
#divHarga, .harga-paket {
  background-color: #212125;
  text-align: center!important;
  color:#fff;
}
.harga-paket  span.text-bg-warning{
  color: #198653 !important;
}
.feature-card-2:hover  h4, .feature-card-2:hover p{
  color:#fff;
}
.owl-gallery .card{
  height:205px;
  overflow:hidden;
}
/*================================================ Index 01 Blog Area CSS =================================================*/
.blog-card {
  margin-top: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}
.blog-card::before {
  content: '';
  width: 95%;
  height: 50%;
  border-radius: 15px;
  transition: 0.5s ease-in-out;
  background-color: var(--mainColor);
  position: absolute;
  bottom: 0px;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
}
.blog-card .blog-img-area {
  position: relative;
}
.blog-card .blog-img-area img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
}
.blog-card .blog-img-area .blog-img-date {
  width: 60px;
  height: 60px;
  text-align: center;
  padding-top: 6px;
  border-radius: 50%;
  display: inline-block;
  color: var(--fixWhiteColor);
  background-color: var(--mainColor);
  font-size: 18px;
  position: absolute;
  right: 30px;
  bottom: -30px;
  z-index: 3;
}
.blog-card .blog-img-area .blog-img-date span {
  display: block;
  margin-bottom: 5px;
  line-height: 1;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.blog-card .blog-img-area .blog-img-date span:last-child {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--fontFamily2);
}
.blog-card .blog-text-area {
  padding: 5px 30px 25px;
  border-radius: 0px 0px 15px 15px;
  background-color: var(--whiteColor);
  position: relative;
  z-index: 2;
}
.blog-card .blog-text-area .blog-date ul {
  margin: 0;
  padding: 0px;
  list-style: none;
}
.blog-card .blog-text-area .blog-date ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  color: var(--paragraphColor);
  font-size: 15px;
  font-family: var(--fontFamily2);
}
.blog-card .blog-text-area .blog-date ul li::before {
  content: '/';
  font-size: 15px;
  position: absolute;
  right: -10px;
}
.blog-card .blog-text-area .blog-date ul li:last-child {
  margin-right: 0px;
}
.blog-card .blog-text-area .blog-date ul li:last-child::before {
  display: none;
}
.blog-card .blog-text-area .blog-date ul li i {
  margin-right: 3px;
  color: var(--mainColor);
  font-size:18px;
}
.blog-card .blog-text-area h4 {
  line-height: 1.4;
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  height:75px;
}
.blog-card:hover::before {
  bottom: -10px;
}
.blog-date ul {
  margin: 0;
  padding: 0px;
  list-style: none;
}
.blog-date ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  color: var(--paragraphColor);
  font-size: 15px;
  font-family: var(--fontFamily2);
}
.blog-date ul li::before {
  content: '/';
  font-size: 15px;
  position: absolute;
  right: -10px;
}
.blog-date ul li:last-child {
  margin-right: 0px;
}
.blog-date ul li:last-child::before {
  display: none;
}
.blog-date ul li i {
  margin-right: 3px;
  color: var(--mainColor);
}
.blog-img-area{
  height:225px;
  overflow:hidden;
}
/*================================================
Blog Details Page CSS
=================================================*/
.blog-details-text-area img {
  border-radius: 15px;
}

.blog-details-text-area span {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 25px;
  color: var(--whiteColor);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--mainColor);
  position: relative;
  top: -20px;
  left: 20px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--fontFamily2);
}

.blog-details-text-area .blog-date {
  margin-bottom: 15px;
}

.blog-details-text-area .blog-qoute {
  padding: 30px;
  position: relative;
  margin-bottom: 20px;
}

.blog-details-text-area .blog-qoute i {
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--mainColor);
}

.blog-details-text-area .blog-qoute p {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--blackColor);
  font-size: 17px;
  font-weight: 600;
}

.recent-news-card {
  margin-top: 20px;
  min-height: 90px;
  position: relative;
  padding-left: 105px;
}

.recent-news-card img {
  position: absolute;
  left: 0;
}

.recent-news-card h5 {
  line-height: 1.4;
  padding-top: 5px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px !important;
  font-size: var(--fontSize);
}

.recent-news-card p {
  font-size: 14px;
}

.blog-text-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 0px;
  padding: 3px 15px 15px 15px;
  background-color: #f9fafb;
}

.blog-text-footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.blog-text-footer ul li {
  display: inline-block;
}

.blog-text-footer ul li span {
  font-weight: 600;
  /*margin-right: 10px;*/
  padding: 0px !important;
  background-color: transparent !important;
}

.blog-text-footer .tag-area {
  margin-top: 12px;
}

.blog-text-footer .tag-area ul li {
  margin-right: 5px;
  cursor: pointer;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.blog-text-footer .tag-area ul li i {
  color: var(--mainColor);
}

.blog-text-footer .tag-area ul li:hover {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  color: var(--mainColor);
}

.blog-text-footer .tag-area ul li:first-child {
  padding: 0px;
}

.blog-text-footer .social-icons {
  margin-top: 12px;
}

.blog-text-footer .social-icons ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--mainColor);
  background-color: white;
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-text-footer .social-icons ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
/*================================================
Sidebar area CSS
=================================================*/
.sidebar-card {
  padding: 30px 25px;
  border-radius: 15px;
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.sidebar-card h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.sidebar-card h3::before {
  content: '';
  width: 30%;
  height: 2px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  bottom: 0;
}

.popular-cases-sidebar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.popular-cases-sidebar-card img {
  margin-right: 15px;
  border-radius: 10px;
  width:100px;
}
.blog-date {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.blog-date li {
  display: inline-block;
  position: relative;
  margin-right: 15px;
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.blog-date li i {
  margin-right: 5px;
  color: var(--mainColor);
}

.blog-date li::before {
  content: '/';
  position: absolute;
  right: -12px;
}

.blog-date li:last-child {
  margin-right: 0px;
}

.blog-date li:last-child::before {
  display: none;
}

.popular-cases-sidebar-card h5 {
  line-height: 1.4;
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 600;
}

.popular-cases-sidebar-card p a {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--fontFamily2);
}

.sidebar-category-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-category-card ul li {
  margin-top: 12px;
  font-weight: 500;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.sidebar-category-card ul li i {
  font-size: 12px;
  color: var(--mainColor);
  margin-right: 5px;
}

.sidebar-event-info .sidebar-event-info-card {
  margin-bottom: 15px;
}

.sidebar-event-info .sidebar-event-info-card h6 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.sidebar-event-info .sidebar-event-info-card p i {
  color: var(--mainColor);
  margin-right: 3px;
}

.sidebar-event-organizer .seo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.sidebar-event-organizer .seo-name img {
  border-radius: 50%;
  margin-right: 10px;
}

.sidebar-event-organizer .seo-name h6 {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
}

.sidebar-event-organizer .sidebar-event-organizer-card {
  margin-top: 15px;
}

.sidebar-event-organizer .sidebar-event-organizer-card h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.sidebar-event-organizer .sidebar-event-organizer-card p i {
  color: var(--mainColor);
  margin-right: 3px;
}

.search-box .input-group {
  border: 1px solid #eeeeee;
  border-radius: 15px;
  overflow: hidden;
}

.search-box .form-control {
  background-color: var(--whiteColor);
  border: 0px;
  padding: 10px;
  border-radius: 15px 0px 0px 15px;
}

.search-box .btn {
  border-radius: 0px;
  color: var(--whiteColor);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--mainColor);
}

.search-box .btn:hover {
  background-color: var(--secondColor);
}

.sidebar-tag ul {
  margin: 10px 0px 0px;
  padding: 0px;
  list-style: none;
}

.sidebar-tag ul li {
  display: inline-block;
}

.sidebar-tag ul li a {
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
  margin-right: 5px;
  margin-top: 10px;
}

.sidebar-tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
#wisata .card .card-body h4{
    color:#000;
}
#wisata .card:hover .card-body h4{
    color:#fff;
}
.owl-gallery .card-title {
    display:none;
}

.owl-gallery .card:hover .card-title{
    display:block;
}
.owl-gallery .card{
    border:none;
  }
@media(min-width:1400px){
  .owl-gallery .card{
    height:300px;
    overflow:hidden;
    border:none;
  }
}
@media(max-width:768px){
  #hero {
    height: 173px;
    margin-top: 110px;
  }
.breadcrumbs {
    margin-top: 110px;
}
  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  
  .about-img-2 .about-img-text {
    right: unset;
    left: 0;
    top: unset;
    bottom: 15px;
    max-width: 325px;
}
.about-img-2 .about-img-text h4 {
    padding: 15px;
}
.owl-gallery .card {
    height: 120px;
    overflow: hidden;
}
.about-img-2 {
    background-image: unset;
    height: auto;
}
.about-img-2 img {
    display: block;
    height: 300px;
    object-fit: cover;
    width: 100%;
    object-position: bottom;
    border-radius: 10px;
    margin-top: 50px;
}



}