/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("../../../ionicons/2.0.1/css/ionicons.min.css");
@import url("../../../css-1");
body {
  font-family: "Montserrat Alternates", sans-serif;
  font-family: "Manjari", sans-serif;
  color: #444444;
}

a {
  color: #009961;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", 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 #009961;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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: #009961;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled .navbar a {
  /* background: rgba(40, 40, 40, 0.9); */
  color: rgba(40, 40, 40, 0.9);
}

#header.header-scrolled,
#header.header-inner-pages {
  /* background: rgba(40, 40, 40, 0.9); */

  background: #ffffff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}
@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# 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;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #009961;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #282828;
}

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

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

/**
* Desktop Navigation 
*/
.top-navbar {
  padding: 0;
  background: #ffffff;
}

.top-navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.top-navbar li {
  position: relative;
}

.top-navbar > ul > li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.top-navbar a,
.top-navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #212529;
  transition: 0.3s;
  position: relative;
}

.top-navbar a i,
.top-navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.top-navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.top-navbar a:hover:before,
.top-navbar li:hover > a:before,
.top-navbar .active:before {
  visibility: visible;
  width: 100%;
}

.top-navbar a:hover,
.top-navbar .active,
.top-navbar .active:focus,
.top-navbar li:hover > a {
  color: #009961;
}

.top-navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #009961;
}

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

.top-navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #282828;
}

.top-navbar .dropdown ul a i {
  font-size: 12px;
}

.top-navbar .dropdown ul a:hover,
.top-navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #009961;
}

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

.top-navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .top-navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .top-navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

#icon-utama {
  max-width: 100px;
  max-height: 100px;
  position: relative;
  margin-top: 8px;
  bottom: 0;
}

#navigasi {
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-top: 0em;
  margin-bottom: 0em;
  width: 50%;
}

.dropup {
  position: relative;
  display: inline-block;
}

.myopd {
  top: auto !important;
  bottom: 105% !important;
  left: -75% !important;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 500ms ease;
  transform: translate(0%, 0px) !important;
  -webkit-transition: 500ms ease;
  -webkit-transform: translate(0%, -0px) !important;
  max-width: 100%;
  min-width: 270px;
}

.myopd::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 46%;
  transform: translateX(-46%);
  -webkit-transform: translateX(-46%);
  border: 10px solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 10px;
  border-top: 10px solid rgba(255, 255, 255, 0.9);
}

.dropup .title {
  z-index: 9999;
  white-space: nowrap;
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 2px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0) scale(0);
  -webkit-transform: translate(-50%, 0) scale(0);
  opacity: 0;
  transition: 300ms ease;
  -webkit-transition: 300ms ease;
}

.dropup:hover .title {
  transform: translate(-50%, 15px) scale(1);
  -webkit-transform: translate(-50%, 15px) scale(1);
  opacity: 1;
}

.heroNav {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media (max-width: 1399.98px) {
  #icon-utama {
    max-width: 90px;
    max-height: 90px;
  }
}
@media only screen and (max-width: 768px) {
  #navigasi {
    width: 100%;
  }
}

@media only screen and (min-width: 376px) and (max-width: 425px) {
  #navigasi {
    width: 80%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
#header.header-scrolled #navbar .mobile-nav-toggle {
  /* background: rgba(40, 40, 40, 0.9); */
  color: #343a40;
}

@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(15, 15, 15, 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: #282828;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
}
#hero .bg-overlay {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .youtube-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
/* @media (min-aspect-ratio: 16/9) {
  #hero iframe {
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  #hero iframe {
    width: 177.78vh;
  }
} */

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#009961 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .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);
}

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

#hero .play-btn:hover::after {
  border-left: 15px solid #009961;
  transform: scale(20);
}

#hero .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 (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

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

.page-banner {
  position: relative;
  padding: 0;
  color: #212529;
  background: #d1e7dd;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
/*--------------------------------------------------------------
# Page Banner
--------------------------------------------------------------*/
.page-banner .image-layer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.page-banner .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner h1 {
  position: relative;
  /* font-size: 42px; */
  color: #212529;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0;
}

.page-banner .banner-inner {
  text-align: center;
}

.page-banner .inner-container {
  position: relative;
  padding: 140px 0px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #8fffd6;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.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: #009961;
  line-height: 1;
}

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

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

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

/*--------------------------------------------------------------
# news Sectionnews-section
--------------------------------------------------------------*/
.news-section .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.news-section .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-bottom: 5px;
  position: relative;
}

.news-section .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  bottom: 0;
  left: 0;
}

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

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

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

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

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

.news-section .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #009961;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #009961;
}

.news-section .content .btn-learn-more:hover {
  background: #009961;
  color: #fff;
  text-decoration: none;
}
.news-box {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}

.news-items-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.news-box img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.news-items img {
  width: 105%;
  position: absolute;
  top: 0;
  left: -5%;
  transition: all 0.3s;
}

.news-items-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  transition: all 0.4s;
}

.news-items .news-items-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.news-items-description {
  transform: translateY(0.5rem);
  transition: all 0.4s;
  opacity: 0;
}

.news-items:hover .news-items-content {
  bottom: 2rem;
}

.news-items:hover .news-items-description {
  opacity: 1;
  transform: none;
}
.news-items:hover .news-items-description a {
  opacity: 1;
  transform: none;
  text-decoration: none;
}

.news-items:hover img {
  left: 0;
}
.news-section .intro-news-filter {
  position: relative;
  z-index: 1;
  border-bottom: solid #009961;
}
.news-section .nav-tabs .nav-link.active {
  color: rgba(255, 255, 255, 0.7);
  background: #009961;
  border-bottom: solid #009961;
}
.news-section .nav-tabs .nav-link {
  color: #009961;
}
.news-items:hover .news-items-overlay {
  opacity: 1;
}

.news-section .single-post-list {
  position: relative;
  z-index: 1;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  border-radius: 10px;
}
.news-section .single-post-list .post-list-thumbnail {
  border-radius: 10px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  max-width: 130px;
  width: 130px;
}
.news-section .single-post-list:hover .post-list-thumbnail::after,
.news-section .single-post-list:focus .post-list-thumbnail::after {
  opacity: 1;
  visibility: visible;
}

.news-section .single-post-list .post-list-thumbnail::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 100;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}
.news-section .single-post-list .post-list-thumbnail .social-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 80%;
  bottom: 20px;
  left: 10%;
  right: 10%;
  z-index: 300;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  opacity: 0;
  visibility: hidden;
}
.news-section .single-post-list .post-list-thumbnail .social-btn a {
  border: 1px solid #fff;
  padding: 4px 5px;
  color: #ffffff;
  border-style: none;
  font-size: 18px;
}

.news-section .single-post-list:hover .post-list-thumbnail .social-btn,
.news-section .single-post-list:focus .post-list-thumbnail .social-btn {
  opacity: 1;
  visibility: visible;
}

.news-section .single-post-list .post-list-thumbnail .social-btn a:hover,
.news-section .single-post-list .post-list-thumbnail .social-btn a:focus {
  color: #009961;
}

.news-section .single-post-list .post-list-thumbnail .social-btn a {
  color: #ffffff;
  font-size: 25px;
}
.news-section .single-post-list .post-list-thumbnail .social-btn {
  visibility: hidden;
}

.news-section .single-post-list:hover .post-list-thumbnail::after,
.news-section .single-post-list:focus .post-list-thumbnail::after {
  opacity: 1;
  visibility: visible;
}
.news-section .single-post-list .post-list-thumbnail img {
  height: 80px;
  max-height: 80px;
  width: 100%;
  border-radius: 10px;
}
.news-section .single-post-list .post-list-content span {
  color: #6d6d6d;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
.news-section .single-post-list .post-list-content a {
  font-size: 14px;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity));
}
.news-section .single-post-list .post-list-content a:hover {
  font-size: 14px;
  color: #009961;
}
.bg-thumb {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.image {
  background-color: #eee;
  max-height: 280px;
  min-height: 150px;
  overflow: hidden;
  padding: 0;
}

.image .bg-thumb img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.image .bg-thumb:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.featured-posts .post-footer {
  margin-top: 30px;
}

.featured-posts .title::after,
.featured-posts .date::after,
.featured-posts .comments::after,
.featured-posts .hits::after {
  content: "|";
  display: inline-block;
  margin: 0 7px;
  font-size: 0.9em;
  color: #ccc;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

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

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

.services .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.services .icon-box:hover h4 a {
  color: #009961;
}

.content-side .content-inner {
  position: relative;
  display: block;
  margin-right: -30px;
  padding-right: 35px;
}
.content-side .post-details {
  color: #25282a;
  line-height: 1.6;
  font-family: sans-serif;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  word-spacing: normal;
  word-break: break-word;
  text-justify: distribute;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/background/forest.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #00b371;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.card-info-1 {
  text-decoration: none;
  outline: none;
}

.card-flyer {
  border-radius: 5px;
}

.card-flyer .image-box {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.card-flyer .image-box img {
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  width: 100%;
  height: auto;
}

.card-flyer:hover .image-box img {
  opacity: 0.7;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}

.card-flyer .text-box {
  text-align: center;
}

.card-flyer .text-box .text-container {
  padding: 30px 18px;
}

.card-flyer {
  background: #ffffff;
  /* margin-top: 50px; */
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}

.card-flyer:hover {
  background: #fff;
  box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.card-flyer .text-box p {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000000;
}

.card-flyer .text-box h6 {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Roboto Black", sans-serif;
  letter-spacing: 1px;
  color: #00acc1;
}

.card-flyer .text-link:hover {
  text-decoration: underline;
}
.cta .card {
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 5px;
  min-height: 250px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

/* @media (max-width: 768px) {
min-height: 350px;
}

@media (max-width: 420px) {
min-height: 300px;
} */

.cta .card-has-bg {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  background-size: 120%;
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-position: center center;
}

.cta .card-has-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(80%);
  -ms-filter: grayscale(80%);
  -o-filter: grayscale(80%);
  filter: grayscale(80%);
}

.cta .card-has-bg:hover {
  transform: scale(0.98);
  box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
  background-size: 150%;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.cta .card-img-overlay:hover {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background: rgb(35, 79, 109);
  background: linear-gradient(
    0deg,
    rgba(4, 69, 114, 0.5) 0%,
    rgba(4, 69, 114, 1) 100%
  );
}

.cta .media img {
  border: solid 3px rgba(255, 255, 255, 0.3);
}

.cta .card-meta {
  color: #26bd75;
}

.cta .card-body {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.cta .card-body:hover {
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 30px;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.cta .card-img-overlay:hover {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background: rgb(35, 79, 109);
  background: linear-gradient(
    0deg,
    rgba(35, 79, 109, 0.3785889355742297) 0%,
    rgba(69, 95, 113, 1) 100%
  );
}

@media (max-width: 768px) {
  .cta .card-has-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .cta .card-has-bg:hover {
    transform: scale(0.98);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
    background-size: cover;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .cta .card-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .cta .card-has-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .cta .card-has-bg:hover {
    transform: scale(0.98);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
    background-size: cover;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .cta .card-title {
    font-size: 0.7rem;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #009961;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background-color: #f9f9f9;
  padding-top: 30px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  /* background: #fff; */
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  /* background: url("https://img.freepik.com/free-vector/silhouette-skyline-illustration_53876-78787.jpg?w=1380&t=st=1680256756~exp=1680257356~hmac=3da678b6662da007de7fab949a8f94528cde58de516319e2344b666b855f5e56") center center no-repeat; */
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

/* .counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
} */

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}
.counts .counter-box {
  display: block;
  background: #f6f6f6;
  padding: 40px 20px 37px;
  text-align: center;
}

.counters .text {
  font-size: 15px;
  color: #757575;
  line-height: 1.6em;
  font-weight: 500;
  font-family: "Montserrat Alternates", sans-serif;
}

.counts .title-counters {
  display: block;

  font-weight: 700;
  color: #666;
  line-height: 28px;
}

.counts .counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #909090;
  font-size: 18px;
  font-weight: 500;
}

.counts .counter-box i {
  font-size: 60px;
  margin: 0 0 15px;
  color: #009961;
}

.counts .counter-box.colored p,
.counts .counter-box.colored i,
.counts .counter-box.colored .counter {
  color: #fff;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #009961;
}

.counts .counters p {
  margin: 5px 0 0;
  padding: 0;
  color: #909090;
  font-size: 18px;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# 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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

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

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

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

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

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# 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 #009961;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(40, 40, 40, 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;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #009961;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-kontak-form {
  width: 100%;
  background: #fff;
}

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

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

.contact .php-kontak-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-kontak-form ::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
  height: 44px;
}
.contact .php-kontak-form .sent-message br + br {
  margin-top: 25px;
}

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

.contact .php-kontak-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-kontak-form input,
.contact .php-kontak-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-kontak-form input:focus,
.contact .php-kontak-form textarea:focus {
  border-color: #009961;
}

.contact .php-kontak-form input {
  height: 44px;
}

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

.contact .php-kontak-form button[type="submit"] {
  background: #009961;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-kontak-form button[type="submit"]:hover {
  background: #00b371;
}
.contact {
  background-color: #f9f9f9;
}

.contact .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.contact .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}

.contact .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.contact .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.contact .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.contact .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.contact .box ul li {
  padding-bottom: 16px;
}

.contact .box ul i {
  color: #009961;
  font-size: 18px;
  padding-right: 4px;
}

.contact .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.contact .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.contact .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #009961;
  color: #009961;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.contact .box .btn-buy:hover {
  background: #009961;
  color: #fff;
}

.contact .recommended {
  border-color: #009961;
}

.contact .recommended .btn-buy {
  background: #009961;
  color: #fff;
}

.contact .recommended .btn-buy:hover {
  background: #00b371;
  border-color: #00b371;
}

.contact .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #009961;
  border-radius: 50px;
}
.contact .icon-box {
  width: 100%;
  padding: 20px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.contact .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.contact .icon-box .icon i {
  font-size: 28px;
}

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

.contact .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

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

.contact .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.contact .icon-box:hover h4 a {
  color: #009961;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9f9;
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #424242;
  content: "/";
}

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

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .widgets-section {
  position: relative;
  padding: 50px 0px 20px;
}
#footer .social-links {
  margin: 0 0 40px 0;
}

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

#footer .social-links a:hover {
  background: #00b371;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom .inner {
  position: relative;
  padding: 30px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #009961;
}
.logo-footer {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.address {
  position: relative;
  margin-bottom: 20px;
}

#footer .about-widget h5 {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 5px;
}

#footer .about-widget .text {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 500;
  margin: 0 0;
  color: #999999;
}

#footer .underline {
  position: relative;
  font-weight: 600;
  color: #999999;
}
#footer .underline:hover {
  color: #00cc81;
  text-decoration: none;
}

#footer .underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  color: #fff;
  background-color: #00cc81;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  #footer .underline:hover::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.divider {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin: 3rem auto;
  color: #e5e5e5;
  width: 100%;
}

.divider.divider-margin-lg {
  margin: 5rem auto;
}

.divider::after,
.divider::before {
  content: "";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  height: 1px;
  background-color: #eee;
}

.divider::before {
  display: none;
  margin-right: 0.5rem;
}

.divider::after {
  margin-left: 0.5rem;
}

.divider.divider-thick::after,
.divider.divider-thick::before {
  height: 3px;
}

.divider.divider-sm {
  width: 55%;
}

.divider.divider-xs {
  width: 35%;
}

.divider a,
.divider i,
.divider-text {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  line-height: 1;
  font-size: 18px !important;
  text-align: center;
}

.divider a,
.divider-text {
  width: auto;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.divider a:hover {
  color: #888;
}

.divider.divider-right::before {
  display: block;
}

.divider.divider-right::after {
  display: none;
}

.divider.divider-center::before {
  display: block;
}

.divider.divider-border i,
.divider.divider-rounded i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #bbb;
  background-color: #f5f5f5;
  border-radius: 50%;
}

.divider.divider-border::after,
.divider.divider-border::before,
.divider.divider-rounded::after,
.divider.divider-rounded::before {
  margin-left: 0;
  margin-right: 0;
}

.divider.divider-border {
  color: #e5e5e5;
}

.divider.divider-border i {
  line-height: 38px;
  background-color: transparent;
  border: 1px solid #eee;
}

.divider.divider-line::after,
.divider.divider-line::before {
  margin-left: 0;
  margin-right: 0;
}

.top-advert {
  padding: 5px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.top-advert a,
.top-advert img {
  display: block;
}

.bnews-title {
  display: block;
  float: left;
  margin-top: 2px;
  padding-top: 0.3em;
  text-transform: uppercase;
}

.bnews-slider {
  float: left;
  width: 970px;
  margin-left: 20px;
  min-height: 0;
}

@media (min-width: 768px) .pb-md-16 {
  padding-bottom: 6rem !important;
}
@media (min-width: 768px) .pt-md-14 {
  padding-top: 4.5rem !important;
}
.text-center {
  text-align: center !important;
}
.pb-12 {
  padding-bottom: 3.5rem !important;
}
.pt-10 {
  padding-top: 2.5rem !important;
}

.profil-bupati {
  background-image: url(../images/background/pattern-2.png);
  top: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover;
}
.share-post {
  position: relative;
  padding: 50px 10px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.share-post ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0px 5px 10px;
}

.share-post ul .facebook a {
  background: #3b5998;
}

.share-post ul li a {
  position: relative;
  display: block;
  text-align: center;
  min-width: 140px;
  font-size: 14px;
  padding: 10px 25px;
  line-height: 24px;
  color: #ffffff;
  background: #222222;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.share-post ul li a .icon {
  position: relative;
  font-size: 12px;
  vertical-align: middle;
  padding-right: 10px;
}

.share-post ul .twitter a {
  background: #55acee;
}

/*--------------------------------------------------------------
# box infografis
--------------------------------------------------------------*/
.box-infografis {
  text-align: center;
  color: #fff;
  position: relative;
}

.box-infografis .box-content,
.box-infografis:after {
  width: 100%;
  position: absolute;
  left: 0;
}

.box-infografis:after {
  content: "";
  height: 330px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.08) 69%,
    rgba(0, 0, 0, 0.76) 100%
  );
  top: 0;
  transition: all 0.5s ease 0s;
}

.box-infografis .post:hover,
.box-infografis .title:hover {
  display: block;
  transform: translateY(145px);
  transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}

.box-infografis:hover:after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.01) 0,
    rgba(0, 0, 0, 0.09) 11%,
    rgba(0, 0, 0, 0.12) 13%,
    rgba(0, 0, 0, 0.19) 20%,
    rgba(0, 0, 0, 0.29) 28%,
    rgba(0, 0, 0, 0.29) 29%,
    rgba(0, 0, 0, 0.42) 38%,
    rgba(0, 0, 0, 0.46) 43%,
    rgba(0, 0, 0, 0.53) 47%,
    rgba(0, 0, 0, 0.75) 69%,
    rgba(0, 0, 0, 0.87) 84%,
    rgba(0, 0, 0, 0.98) 99%,
    rgba(0, 0, 0, 0.94) 100%
  );
}

.box-infografis img {
  width: 100%;
  max-height: 330px;
}

.box-infografis .box-content {
  padding: 20px;
  margin-bottom: 20px;
  bottom: 0;
  z-index: 1;
}

.box-infografis .title {
  display: none;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.box-infografis .post {
  display: none;
  padding: 8px 0;
  font-size: 15px;
}

.box-infografis .social li a,
.box-infografis.icon li a {
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
}

.box-infografis:hover .post,
.box-infografis:hover .title {
  display: block;
  transform: translateY(0);
}

.box-infografis .social {
  list-style: none;
  padding: 0 0 5px;
  margin: 40px 0 25px;
  opacity: 0;
  position: relative;
  transform: perspective(500px) rotateX(-90deg) rotateY(0) rotateZ(0);
  transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
}

.box-infografis:hover .social {
  opacity: 1;
  transform: perspective(500px) rotateX(0) rotateY(0) rotateZ(0);
}

.box-infografis .social:before {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
}

.box-infografis .social li {
  display: inline-block;
}

.box-infografis .social li a {
  display: block;
  width: 40px;
  height: 40px;
  /* line-height: 40px !important; */
  background: #009961;
  margin-right: 10px;
  transition: all 0.3s ease 0s;
}
.box-infografis .social li a i {
  line-height: 40px !important;
}

.box-infografis .social li a:hover {
  background: #bea041;
}

.box-infografis .social li:last-child a {
  margin-right: 0;
}

@media only screen and (max-width: 990px) {
  .box-infografis {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# gallery Pariwisata
--------------------------------------------------------------*/

figure.gallery-f {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000000;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.gallery-f * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

figure.gallery-f img {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
}

figure.gallery-f i {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: #000000;
  width: 60px;
  height: 60px;
  line-height: 70px;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

figure.gallery-f .tittle-gallery {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 30px 25px;
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  z-index: 2;
}

figure.gallery-f.navy {
  background-color: #2b3c4e;
}
figure.gallery-f.navy i {
  color: #222f3d;
}

figure.gallery-f.green {
  background-color: #229955;
}

figure.gallery-f.green i {
  color: #1e8449;
}

figure.gallery-f:hover .tittle-gallery {
  opacity: 1;
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.5s ease 300ms;
  -moz-transition: all 0.5s ease 300ms;
  -ms-transition: all 0.5s ease 300ms;
  -o-transition: all 0.5s ease 300ms;
  transition: all 0.5s ease 300ms;
}

figure.gallery-f:hover img,
figure.gallery-f.hover img {
  opacity: 0.3;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

figure.gallery-f:hover i,
figure.gallery-f.hover i {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/*--------------------------------------------------------------
# Pengumuman
--------------------------------------------------------------*/

.pengumuman {
  background-color: #f9f9f9;
}

.pengumuman .box {
  padding: 40px 20px;
  text-align: left;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pengumuman .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}
.pengumuman .box a {
  color: #282828;
}
.pengumuman .box a:hover {
  color: #009961;
  text-decoration: none;
}

.pengumuman .box .info {
  padding-left: 15px;
  list-style: none;
  color: #282828;
  text-align: left;
  line-height: 20px;
  font-size: 14px;
}

.pengumuman .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pengumuman .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pengumuman .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pengumuman .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pengumuman .box ul li {
  padding-bottom: 16px;
}

.pengumuman .box ul i {
  color: #009961;
  font-size: 18px;
  padding-right: 4px;
}

.pengumuman .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pengumuman .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pengumuman .box .btn-buy:hover {
  background: #009961;
  color: #fff;
}

.pengumuman .recommended {
  border-color: #009961;
}

.pengumuman .selengkapnya-pengumuman a {
  color: #0b5ed7;
}
.pengumuman .selengkapnya-pengumuman a:hover {
  color: #084298;
}

.pengumuman .recommended-badge {
  position: absolute;
  top: 20px;
  left: 11%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #009961;
  border-radius: 50px;
}
.pengumuman .icon-box {
  width: 100%;
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.pengumuman .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.pengumuman .icon-box .icon i {
  font-size: 28px;
}

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

.pengumuman .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

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

.pengumuman .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.pengumuman .icon-box:hover h4 a {
  color: #009961;
}

@media only screen and (max-width: 990px) {
  .pengumuman .recommended-badge {
    left: 25%;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
}
