/*
Template Name: Styles Komuna
Version: 1.0
*/
:root {
  --color-green: #809b5a;
  --color-brown: #935f60;
  --color-blue: #1f8787;
  --color-gray: #777777;
  --primary-color: #017c7f;
  --primary-color-rgb: 1, 124, 127;
  --green-secondary: #809b5a;
  --green-light: #eef8f8;
}
@font-face {
  /* ../img/komuna/DJI_0005_1.webp */
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf")
    format("truetype");
  font-style: normal;
  /* font-weight: normal;
  */
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish/Mulish-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  /* font-weight: normal;
   */
}
/* -----------------------------------------------------------------------------

# Base - Genral & Typography

----------------------------------------------------------------------------- */
html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
  overflow-x: visible;
}
/* html { overflow-y: hidden; }

body { overflow-y: scroll; } */

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #0a111b;
  overflow-x: hidden;
  /* overflow: hidden; */
}
body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #017c7f;
  text-decoration: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #0a111b;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
  margin: 0;
}

h1,
.h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}
@media only screen and (max-width: 767.96px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}
@media only screen and (max-width: 575.96px) {
  h1,
  .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2,
.h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}
@media only screen and (max-width: 767.96px) {
  h2,
  .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media only screen and (max-width: 575.96px) {
  h2,
  .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3,
.h3 {
  font-size: 2rem;
  font-weight: 700;
  /* line-height: 2.25rem; */
}
@media only screen and (max-width: 575.96px) {
  h3,
  .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media only screen and (max-width: 575.96px) {
  h4,
  .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6,
.h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #0a111b;
  margin: 0 0 1.25rem 0;
}
p:last-child {
  margin: 0;
}
main {
  background-color: var(--color-green);
}
main h2,
h3,
h4,
h5,
h6,
main .cfc h2,
h3 {
  color: var(--color-blue);
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}
.circle:before {
  content: "";
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #017c7f;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}
.circle:after {
  content: "";
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #017c7f;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}
@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}
@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.mt-80 {
  margin-top: 80px;
}
@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}
@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}
@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}
.black-bg {
  background-color: #0a111b;
}
.gray-bg {
  background-color: #f5f5f5;
}

.orange-text {
  color: #017c7f;
}
.green-blue-bg {
  background-color: var(--color-blue);
}

.blue-bg {
  background-color: #162133;
}

.green-btn {
  background-color: #809b5a !important;
  color: #fff !important;
  border: 1px solid #809b5a !important;
}
.green-btn:hover {
  color: #809b5a !important ;
  background-color: #fff !important;
  border: 1px solid #809b5a !important;
}

.brown-btn {
  background-color: #8a4545 !important;
  color: #fff !important;
  border: 1px solid #8a4545 !important;
}
.brown-btn:hover {
  color: #8a4545 !important;
  background-color: #fff !important;
  border: 1px solid #8a4545 !important;
}
.blue-btn {
  background-color: var(--color-blue) !important;
  color: #fff !important;
  /* border: 1px solid var(--color-blue) !important; */
}
.blue-btn:hover {
  color: var(--color-blue) !important;
  background-color: #fff !important;
  /* border: 1px solid var(--color-blue) !important; */
}

.green-text {
  color: var(--color-green) !important;
}
.brown-text {
  color: var(--color-brown) !important;
}
.blue-text {
  color: var(--color-blue) !important;
}
.gray-text {
  color: var(--color-gray);
}

a.boxed-btn {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  background-color: #017c7f;
  color: #fff;
  border: 1px solid #017c7f;
  padding: 10px 20px;
  width: fit-content;
}

a.bordered-btn {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #017c7f;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-green);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: var(--color-blue);
}

a.boxed-btn,
a.bordered-btn,
a.cart-btn {
  border-radius: 50px;
}

a.read-more-home-brown-btn {
  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;
  /* padding: 10px 20px; */
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
a.read-more-home-brown-btn:hover {
  color: #8a4545;
}
a.read-more-home-brown-btn:hover i {
  background-color: #fff;
  /*  border: 2px solid #8a4545; */
}
a.read-more-home-brown-btn i {
  margin-left: 10px;
  border-radius: 50%;
  background-color: #8a4545;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

a.read-more-home-green-btn {
  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;
  /* padding: 10px 20px; */
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
a.read-more-home-green-btn:hover {
  color: #809b5a;
}
a.read-more-home-green-btn:hover i {
  background-color: #fff;
  /*  border: 2px solid #FFF; */
}
a.read-more-home-green-btn i {
  margin-left: 10px;
  border-radius: 50%;
  background-color: #809b5a;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-title h3 {
  /* font-size: 32px; */
  position: relative;
  padding-bottom: 15px;
}

/* .section-title h3:after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 2px;
    background-color: $primary-color;
    margin: 0 auto;
} */
.section-title p {
  font-size: 15px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 80px;
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.breadcrumb-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.breadcrumb-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}
/* .breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.8;
} */

/* scroll bar */
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(200, 12%, 90%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(200, 12%, 80%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(200, 8%, 65%);
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
  color: #0a111b;
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
}
.top-header-area.header-black {
  background-color: #0a111b;
}

@media (max-width: 992px) {
  .top-header-area.header-black {
    background-color: transparent;
  }
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link,
.top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu {
  position: relative;
}
nav.main-menu ul.main-menu-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 150px 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr 150px 1fr 1fr 1fr;
  gap: 5px;
  position: relative;
}
nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav.main-menu ul li {
  display: inline-block;
}
nav.main-menu ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  display: block;
  padding: 10px 5px;
}
@media (max-width: 1366px) {
  nav.main-menu ul li a {
    font-size: 15px;
  }
}
nav.main-menu ul > li {
  position: relative;
}
nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  width: 220px;
  padding: 15px 15px;
  margin: 0;
  left: 0;
  /* top: 50px; */
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;
}
nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}
nav.main-menu ul ul.sub-menu li a {
  color: #555;
  font-weight: 300;
  padding: 7px 10px;
  font-size: 13px;
}
nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}
nav.main-menu ul li:last-child a {
  display: inline-block;
}
nav.main-menu > ul li:last-child {
  float: right;
}

.site-logo {
  max-width: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

ul.sub-menu li:last-child {
  float: none !important;
}

.mobile-container .mobile-bar {
  display: none;
  z-index: 2;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 20px;
  float: left;
  width: 100%;
  background: transparent;
  padding: 4px 0;
  min-height: 42px;
}

.mobile-nav,
.mobile-nav__content {
  display: none;
}

@media (max-width: 992px) {
  .mobile-container .mobile-bar {
    display: block;
  }
  .mobile-container .mobile-bar .mobile-reveal-toggle {
    background-color: var(--color-green);
    height: 40px;
    width: 40px;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    border: none;
  }
  .mobile-container .mobile-bar .mobile-reveal-toggle i {
    color: #fff;
  }
}
@media (max-width: 992px) {
  .mobile-nav img,
  .mobile-nav svg {
    height: auto;
    width: 200px;
  }
  .mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    z-index: 999;
  }
  .mobile-nav__wrapper.expanded {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.83);
    opacity: 0.8;
    cursor: pointer;
  }
  .mobile-nav__content {
    display: block;
    width: 300px;
    background-color: #1f8787;
    z-index: 10;
    position: absolute;
    left: 0;
    height: 100%;
    overflow-y: auto;
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .mobile-nav__content .logo-box {
    /* margin-bottom: 20px;
    margin-top: 30px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-nav__content .logo-box h1 {
    color: #fff;
    font-size: 1.2rem; /* 20px */
  }
  .mobile-nav__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
  }
  .mobile-nav__container .main-menu__list {
    display: block;
  }
  .mobile-nav__container .main-menu__list li a:focus,
  .mobile-nav__container .main-menu__list li a:active {
    color: #fff;
  }
  .mobile-nav__content .main-menu__list,
  .mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  }
  .mobile-nav__content .main-menu__list ul li a {
    padding-left: 2em;
  }
  .mobile-nav__content .main-menu__list ul li ul li a {
    padding-left: 3em;
  }
  .mobile-nav__content .main-menu__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1.5em; /* 24px */
    color: #fff;
    font-size: 1rem; /* 16px */
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding: 10px 20px;
  }
  .mobile-nav__content .main-menu__list li a.red-active,
  .mobile-nav__content .main-menu__list li a.red-active button {
    background-color: #809b5a;
    color: #fff;
  }
  .mobile-nav__content .main-menu__list li a.expanded {
    color: #fff;
    background-color: #809b5a;
  }
  .mobile-nav__content .main-menu__list li a span {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .mobile-nav__content .main-menu__list li a span.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .mobile-nav__content .main-menu__list li a button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #fff;
    background-color: #809b5a;
  }
  .mobile-nav__content .main-menu__list ul.sub-menu li:hover a {
    color: #fff;
  }
}
.logo-box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 15px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #017c7f;
}

.main-menu-wrap {
  position: relative;
}

.mean-container a.meanmenu-reveal {
  color: #0a111b;
}
.mean-container a.meanmenu-reveal span {
  background-color: #0a111b;
}
.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}
.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}
.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}
.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a,
.top-header-area.sepherate-header .header-icons a {
  color: #0a111b;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}
nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 8px;
  font-size: 15px;
  font-weight: 300;
}
nav.main-menu ul li.current-list-item > a {
  color: #017c7f;
}
nav.main-menu ul ul.sub-menu li:hover a,
nav.main-menu li:hover > a {
  color: #017c7f;
}
nav.main-menu li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-header-area .header-icons a:hover {
  color: #017c7f;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}
.sticky-wrapper.is-sticky .top-header-area {
  background-color: #0a111b;
  padding: 35px 0;
}

.top-header-area {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: #051922;
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}
.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #017c7f;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
.search-bar-tablecell button[type="submit"] {
  border: none;
  background-color: #017c7f;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}
.search-bar-tablecell input::-webkit-input-placeholder {
  color: #fff;
}
.search-bar-tablecell input::-moz-placeholder {
  color: #fff;
}
.search-bar-tablecell input:-ms-input-placeholder {
  color: #fff;
}
.search-bar-tablecell input::-ms-input-placeholder {
  color: #fff;
}
.search-bar-tablecell input::placeholder {
  color: #fff;
}
.search-bar-tablecell button[type="submit"] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.search-bar-tablecell h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-area {
  background-color: #0a111b;
  color: #fff;
  padding: 50px 0;
  z-index: 1;
  position: relative;
}

.footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
}
.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}
.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-review {
  display: flex;
  gap: 65px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.copyright {
  background-color: #0a111b;
  border-top: 1px solid #232a35;
}
.copyright p {
  margin: 0;
  color: #fff;
  /*  opacity: 0.7; */
  padding: 16px 0;
  font-size: 15px;
}
.copyright a {
  color: #017c7f;
  font-weight: 700;
}
.copyright a:hover {
  color: #01adb2;
}

.social-icons ul {
  padding: 16px 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  gap: 5px;
  align-items: center;
}

@media (max-width: 768px) {
  .social-icons ul {
    justify-content: center;
  }
    
}
.social-icons ul li {
  display: inline-block;
}
.social-icons ul li svg {
  height: 20px;
  width: 20px;
}
.social-icons ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  /* opacity: 0.7; */
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 50px;
}

.footer-box ul li a {
  color: #fff;
}
.copyright ul li svg,
.footer-box ul li svg {
  fill: #fff;
}
.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}
.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #017c7f;
}

@media (max-width: 576px) {
  .footer-review {
    gap: 30px;
  }
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.navbar-brand:hover {
  opacity: 0.7;
}
a.boxed-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.boxed-btn:hover {
  background-color: #fff;
  color: #017c7f;
}
a.bordered-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.bordered-btn:hover {
  background-color: #017c7f;
  color: #fff;
}

ul.sub-menu a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
ul.sub-menu li:hover a {
  color: #017c7f;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.video-play-btn:hover {
  background-color: #051922;
  color: #fff;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.tof-btn i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.tof-btn:hover {
  color: #017c7f;
}
a.tof-btn:hover i {
  margin-left: 10px;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-logo-item:hover {
  opacity: 0.7;
}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-box.pages ul li:hover a {
  color: #017c7f;
}
.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-box.subscribe form button:hover {
  background-color: #017c7f;
  color: #0a111b;
}

.social-icons ul li:hover a {
  color: #017c7f;
}
.social-icons ul li:hover svg {
  fill: #017c7f;
}
.social-icons ul li svg,
.social-icons ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
ul.social-link-team li a:hover {
  background-color: #0a111b;
  color: #017c7f;
}

.counter-box {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}
a.button,
button {
  border-radius: 50px !important;
}
.wte-trip-options
  .wte-trip-guest-wrapper
  .select-wrapper
  .wte-qty-number
  button {
  border-radius: 0 !important;
}

.trip-container-ea h1.entry-title {
  color: #fff;
}
.trip-content-area {
  margin-bottom: 100px;
}
.single-trip .entry-header .wte-title-duration .duration {
  background-color: var(--color-blue);
}
.single-trip .entry-header .wte-title-duration .days {
  background-color: #fff;
}
.wptravelengine_css_v2
  .nav-tab-wrapper
  .tab-anchor-wrapper
  .nav-tab.nav-tab-active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}
.trip-container-ea h2 {
  color: var(--color-blue) !important;
}

/* a.button,
button {
  border-radius: 50px !important;
  background-color: #809b5a !important;
  border-color: #809b5a !important;
  color: #fff  ;
}
a.button:hover,
button:hover {
  background: #017c7f !important;
} */
.category-trips-single
  .category-trips-single-inner-wrap
  .category-trip-viewmre-btn {
  background-color: #809b5a !important;
  border-color: #809b5a !important;
}
.wpte-booking-area .wpte-bf-btn.wte-book-now {
  background-color: #809b5a !important;
}
.wpte-booking-area .wpte-bf-btn:active,
.wpte-booking-area .wpte-bf-btn:hover {
  background-color: #017c7f !important;
}
.wte-check-button:hover {
  color: #fff;
  background-color: #017c7f;
}

.wte-booking-summary-info-title {
  background-color: rgba(128, 155, 90, 0.7) !important;
}
input[type="submit"] {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
  background-color: #809b5a;
  color: #fff;
  font-weight: 400;
  /* text-transform: uppercase; */
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
}
input[type="submit"]:hover {
  background-color: #017c7f;
  color: #fff;
}

div.owl-controls,
.owl-controls div {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination-wrap ul li:hover a {
  background-color: #017c7f;
  color: #fff;
}

.icons a i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.icons a:hover i {
  color: #017c7f;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.cart-btn:hover {
  background-color: #0a111b;
  color: #017c7f;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
ul.sub-menu li:hover a {
  color: #017c7f;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.comment-text-body h4 a:hover {
  color: #017c7f;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
ul.product-share li:hover a {
  color: #017c7f;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}
.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-product-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-bar-tablecell button[type="submit"] {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-bar-tablecell button[type="submit"]:hover {
  background-color: #fff;
  color: #000;
}

span.close-btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
span.close-btn:hover {
  color: #fff;
}

a.mobile-show.search-bar-icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.mobile-show.search-bar-icon:hover {
  color: #017c7f;
}

.hero-swiper-area {
  background-color: #1f8787;
}

.swiper {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 50px 50px;
}

.swiper-slide {
  height: 100%;
  width: 100%;
  position: relative;
}

.swiper-content-area {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.swiper-content-area::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  opacity: 0.6;
  /* background: linear-gradient(to bottom, rgba(7, 33, 46, 0.7), transparent 75%); */
}

.swiper-content-area video,
.swiper-content-area img {
  display: block;
  width: 100%;
  height: 100vh;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.swiper-content-area .ytplayer-video {
  width: 100%;
  height: 100vh;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.swiper-content-text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  color: #fff;
  width: 100%;
  padding: 0 20px;
}

.swiper-pagination-bullet {
  background: #1f8787 !important;
  opacity: 1 !important;
  height: 15px !important;
  width: 15px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff !important;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url(../img/komuna/DJI_0005_1.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  display: table;
  height: 100%;
  text-align: center;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: 100%;
  position: relative;
  /*  z-index: 1; */
}

html,
body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.6;
  /* background: linear-gradient(to bottom, rgba(7, 33, 46, 0.7), transparent 75%);
  z-index: -1; */
}

.hero-text p.subtitle {
  color: #017c7f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}
.hero-text p.description {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 22px !important;
  }
  .hero-text p.description {
    font-size: 18px;
  }
}
.hero-area div {
  height: 100%;
}
.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}
.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}
.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.hero-btns {
  margin-top: 35px;
}
.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

.homepage-bg-1 {
  background-image: url(../img/hero-bg.jpg);
}

.homepage-bg-2 {
  background-image: url(../img/hero-bg-2.jpg);
}

.homepage-bg-3 {
  background-image: url(../img/hero-bg-3.jpg);
}

.homepage-slider {
  height: 100%;
}
.homepage-slider div {
  height: 100%;
}
.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}
.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}
.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  background-color: #020c0e;
  position: relative;
  z-index: 1;
}
.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0a111b;
  content: "";
  z-index: -1;
  opacity: 0.7;
}

.owl-nav div {
  height: auto;
  top: 50%;
  color: #fff;
  background-color: var(--color-green);
  font-size: 48px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.testimonial-sliders .owl-nav div {
  color: var(--color-green) !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 576px) {
  .owl-nav div {
    font-size: 36px;
    width: 40px;
    height: 40px;
  }
}

.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: -55px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: -55px;
  margin-top: -30px;
}
@media (max-width: 576px) {
  .owl-prev {
    left: -45px;
  }
  .owl-next {
    right: -45px;
  }
}

.info-section {
  position: relative;
  background-color: #1f8787;
  background-image: url("../img/komuna/forms/signal.png"),
    url("../img/komuna/forms/komuna.png");
  background-position: 20% 15%, 50% 95%;
  background-repeat: no-repeat;
  background-size: 250px auto, 450px auto;
  height: 65%;
}
.info-section .section-title {
  margin-bottom: 0px;
  margin-top: 100px;
}
.info-section .section-title h3,
.info-section .section-title p {
  color: #fff;
}
.info-section .section-title h3 {
  width: 640px;
  margin: 0 auto;
}
.info-section .section-title .info-btns {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .info-section {
    background-position: 20% 15%, 50% 95%;
    background-size: 200px auto, 400px auto;
  }
}
@media (max-width: 992px) {
  .info-section {
    background-size: 150px auto, 250px auto;
    /* height: 50%; */
  }
  .info-section .section-title h3 {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .info-section {
    background-position: 50% 10%, 50% 95%;
    background-size: 100px auto, 200px auto;
  }
}
.approach-section {
  position: relative;
  /* background-color: #935f60; */
}
.approach-section .approach-img-top {
  position: absolute;
  top: -17.5rem;
  right: 0;
  height: 500px;
  width: auto;
  opacity: 0.7;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 4s ease-in-out infinite;
}
.approach-section .approach-img-bottom {
  position: absolute;
  bottom: -11rem;
  left: 0;
  height: 350px;
  width: auto;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}
.approach-section .section-title h3,
.approach-section .section-title p {
  color: #777777;
}
.approach-section .section-title p {
  width: 75%;
  max-width: 75%;
}
.approach-section .section-title h3 {
  width: 640px;
  margin: 0 auto;
}
.approach-section .approach-sliders .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.approach-section .approach-sliders .single-approach-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.container-slider {
  padding: 0 50px;
}
@media (max-width: 576px) {
  .container-slider {
    padding: 0 60px;
  }
}

.container-custom {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.single-offer-item {
  background-color: #809b5a;
  border-radius: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.single-offer-item .offer-title {
  margin: auto;
}
.single-offer-item .offer-image a {
  display: block;
  height: 100%;
  width: 100%;
}
.single-offer-item .offer-image img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.single-offer-item p {
  color: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: auto;
}
.single-offer-item p span {
  font-weight: 700;
}
.single-offer-item .offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all, 1s;
  transition: all, 1s;
}
.single-offer-item .offer-description {
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.single-offer-item .offer-description h6,
.single-offer-item .offer-description p {
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  color: white;
  font-size: 18px;
}
.single-offer-item .offer-description h1 {
  color: #fff;
  font-size: 20px;
}
.single-offer-item .offer-description p {
  font-weight: 400;
}
.single-offer-item:hover .offer-overlay {
  opacity: 0.7;
  background-color: rgb(0, 0, 0);
}
.single-offer-item:hover .offer-description {
  bottom: 0;
  opacity: 1;
}

@media (min-width: 576px) {
  .container-custom {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container-custom {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container-custom {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-custom {
    width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container-custom {
    width: 1368px;
  }
}
@media (max-width: 1200px) {
  .single-offer-item p {
    font-size: 16px;
    padding: 15px 20px;
  }
  .single-offer-item .offer-image img {
    height: 35rem;
  }
  .single-offer-item .offer-description {
    padding: 25px 15px;
  }
  .single-offer-item .offer-description p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .approach-section .section-title h3 {
    width: 100%;
    margin: 0 auto;
  }
  .approach-section .approach-img-top {
    top: -13.5rem;
    height: 350px;
  }
  .approach-section .approach-img-bottom {
    bottom: -11rem;
    height: 350px;
  }
  .single-offer-item .offer-image img {
    height: 30rem;
  }
}
@media (max-width: 576px) {
  .approach-section .approach-img-top {
    top: -7.5rem;
    height: 200px;
  }
  .approach-section .approach-img-bottom {
    bottom: -7rem;
    height: 250px;
  }
}
/* animation float */
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.common-section,
.territory-section {
  background-color: #809b5a;
}
.common-section .section-title,
.territory-section .section-title {
  margin-top: 80px;
}
.common-section .section-title h3,
.common-section .section-title p,
.territory-section .section-title h3,
.territory-section .section-title p {
  color: #fff;
}
.common-section .section-title p,
.territory-section .section-title p {
  width: 100%;
  max-width: 100%;
}
.section-btns,
.territory-section .section-title .section-btns {
  margin-top: 20px;
}
.territory-img {
  position: relative;
}
.territory-img img.primary-image {
  position: relative;
  z-index: 1;
  max-height: 500px;
  /*  width: 500px; */
}
.territory-img img.forma-2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 45%;
  width: auto;
}

.territory-img img.forma-1 {
  position: absolute;
  bottom: -35%;
  left: -5%;
  height: 60%;
  width: auto;
}

/* Section demonstration video */
.demonstration-section {
  height: 100%;
  position: relative;
}
.demonstration-section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 992px) {
  .demonstration-section {
    height: 50%;
  }
}
/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.testimonial-sliders .owl-stage {
  display: flex;
}
.testimonial-sliders .owl-stage .owl-item {
  height: auto;
}
.testimonial-sliders .owl-stage .owl-item .single-testimonial-slider {
  height: 100%;
}

.testimonial-section {
  position: relative;
  background-color: #809b5a;
}
.testimonial-section .section-title {
  margin-bottom: 50px;
}
.testimonial-section .section-title h6,
.testimonial-section .section-title h3,
.testimonial-section .section-title p {
  color: #fff;
}
.testimonial-section .section-title p {
  width: 100%;
  max-width: 100%;
}
.testimonial-section .section-title h3 span,
.testimonial-section .section-title h6 span {
  font-weight: 400;
}
.testimonial-section .client-img {
  text-align: center;
  margin-bottom: 50px;
}
.testimonial-section .client-img img {
  max-width: 200px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonial-section .testimonial-client-item {
  background-color: #935f60;
  /*  min-height: 250px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 30px 20px 30px;
  border-radius: 20px;
}
.testimonial-section .testimonial-client-item p {
  color: #fff;
}
.testimonial-section .testimonial-client-item span {
  color: #fff;
}
.testimonial-section .testimonial-client-item .testimonial-detail {
  margin-bottom: 20px;
}
.testimonial-section .testimonial-client-item .testimonial-client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial-section
  .testimonial-client-item
  .testimonial-client
  .client-thumbnail {
  margin-right: 20px;
}
.testimonial-section
  .testimonial-client-item
  .testimonial-client
  .client-thumbnail
  img {
  height: 61px;
  width: 61px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}
.testimonial-section
  .testimonial-client-item
  .testimonial-client
  .client-data
  span {
  font-weight: 700;
}
.testimonial-section .testimonial-img-bottom {
  position: absolute;
  bottom: -7%;
  left: 0%;
  height: 350px;
  width: auto;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .testimonial-section {
    background-position: 0% 110%;
    background-size: 18rem auto;
  }
}
@media (max-width: 576px) {
  .testimonial-section {
    background-position: 0% 110%;
    background-size: 15rem auto;
  }
  .testimonial-section .client-img {
    display: none;
  }
}
/* 
YTPlayer
*/
.yt-section {
  height: 100%;
}
.yt-section .ytplayer-section {
  height: 100%;
}

/* .mbYTP_wrapper{
  z-index: ;
} */
/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
  background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
  background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
  background-image: url(../img/latest-news/news-bg-4.jpg);
}

.news-bg-5 {
  background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
  background-image: url(../img/latest-news/news-bg-6.jpg);
}

.latest-news-bg {
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.latest-news-bg img {
  width: 100%;
}

.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}
.single-latest-news h3 a {
  /* color: #0a111b; */
  color: #1f8787;
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: #0a111b;
  font-size: 0.85em;
}
p.blog-meta span:last-child {
  margin-right: 0;
}
p.blog-meta span i {
  margin-right: 5px;
  color: var(--color-green);
}
p.excerpt {
  line-height: 1.8;
  color: #555;
}

.latest-news a.boxed-btn {
  margin-top: 80px;
}

.news-text-box {
  background-color: #fff;
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.single-latest-news {
  margin-bottom: 30px;
}

.single-artcile-bg {
  background-image: url(../img/latest-news/news-bg-3.jpg);
  height: 450px;
}

.pagination-wrap {
  margin-top: 40px;
}
.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination-wrap ul li {
  display: inline-block;
}
.pagination-wrap ul li a {
  color: #6f6f6f;
  font-size: 15px;
  background-color: #f3f3f3;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 3px;
  font-weight: 600;
  border-radius: 50px;
}
.pagination-wrap ul li a.active {
  background-color: #017c7f;
  color: #fff;
}

.single-artcile-bg {
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}
.single-article-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.single-article-text h2.blog-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--color-blue);
}
.single-article-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #0a111b;
}

.comments-list-wrap {
  margin: 100px 0;
}
.comments-list-wrap h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.comment-template h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.single-comment-body {
  position: relative;
}

.comment-user-avater {
  position: absolute;
  left: 0;
  top: 0;
}
.comment-user-avater img {
  width: 60px;
  max-width: 60px;
  border-radius: 50%;
}

.comment-text-body {
  padding-left: 80px;
  margin-bottom: 40px;
}
.comment-text-body h4 {
  font-size: 18px;
  font-weight: 600;
}

span.comment-date {
  opacity: 0.5;
  font-size: 80%;
  font-weight: 700;
  margin-left: 5px;
}

.comment-text-body h4 a {
  color: #0a111b;
  font-size: 80%;
  margin-left: 10px;
  border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
  margin-left: 75px;
}

.comment-text-body p {
  color: #888;
  line-height: 2;
  margin: 0;
}

.comment-template h4 {
  margin-bottom: 10px;
}
.comment-template > p {
  opacity: 0.7;
  margin-bottom: 30px;
}
.comment-template form p input[type="text"] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #0a111b;
}
.comment-template form p input[type="email"] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #0a111b;
  margin-left: 10px;
}
.comment-template form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 15px;
  color: #0a111b;
  border-radius: 5px;
  height: 250px;
  resize: none;
  width: 100%;
}
.sidebar,
.sidebar-section {
  /* margin-left: 30px; */
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.sidebar-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-blue);
}
.sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-section ul li {
  line-height: 1.5;
}
.sidebar-section ul li a {
  color: #555;
  font-size: 15px;
}
.sidebar-section > div {
  margin-bottom: 20px;
}
.sidebar-section > div:last-child {
  margin-bottom: 0;
}

.recent-posts ul li,
.archive-posts ul li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}

.recent-posts ul li:before,
.archive-posts ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  /* content: "\f105"; */
  /* content puntito de lista */
  content: "•";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.tag-section ul li {
  display: inline-block;
}
.tag-section ul li a.tag-link {
  background-color: #9fbc7b;
  color: #fff;
  padding: 3px 10px;
  display: block;
  border-radius: 5px;
  margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
  background-color: #f5f5f5;
}
.cart-banner .image-column {
  position: relative;
  margin-top: 40px;
}
.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(242, 129, 35, 0.75);
}
.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #017c7f;
}
.cart-banner .image-column .price-box .inner-price .price {
  color: #0a111b;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}
.cart-banner .image-column .price-box .inner-price .price strong {
  color: #0a111b;
  font-size: 24px;
}
.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}
.cart-banner .content-column h3 {
  font-size: 40px;
}
.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}
.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}
.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid #017c7f;
}
.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #017c7f;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
  position: absolute;
  background-color: rgba(173, 173, 173, 0.5);
  color: #fff;
  width: 120px;
  height: 120px;
  text-align: center;
  line-height: 122px;
  border-radius: 50%;
  font-size: 40px;
  padding-left: 5px;
  display: block;
  z-index: 2;
  top: 50%;
  margin-top: -45px;
  -webkit-box-shadow: 0 0 5px #adadad;
  box-shadow: 0 0 5px #adadad;
  left: 50%;
  margin-left: -45px;
}

.abt-bg {
  /* background-image: url(../img/abt.jpg); */
  min-height: 400px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  /* border-top-right-radius: 10px;
  border-bottom-left-radius: 10px; */
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #0a111b;
  opacity: 0.3;
}

.abt-section .abt-text {
  padding: 50px;
  /* padding-left: 30px; */
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.abt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--color-gray);
}
.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}
.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../img/1.jpg);
  background-size: cover;
  padding: 110px 0px 115px;
}
.shop-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
}
.shop-banner .sale-percent {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #017c7f;
}
.shop-banner .sale-percent span {
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
  color: #0a111b;
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}
.green-bg {
  background-color: #809b5a !important;
}
.brown-bg {
  background-color: #935f60 !important;
}
.about-us-section h3 {
  color: #fff;
}
.about-us-section p {
  color: #fff;
}
.about-us-section .list-box .list-icon i {
  color: #fff !important;
  border: 2px #fff dotted;
}
.e-territory-section {
  position: relative;
  background-color: #935f60;
}
.e-territory-section .section-title {
  margin-top: 80px;
}
.e-territory-section .section-title h3,
.e-territory-section .section-title p {
  color: #fff;
}
.e-territory-section .section-title p {
  width: 100%;
  max-width: 100%;
}
.e-territory-section .section-title .section-btns {
  margin-top: 20px;
}
.forma-1,
.e-territory-section .e-territory-forma-1 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  height: 350px;
  width: auto;
  opacity: 0.5;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 4s ease-in-out infinite;
}
.forma-2,
.e-territory-section .e-territory-forma-2 {
  position: absolute;
  bottom: 25%;
  right: 0;
  height: 350px;
  width: auto;
  opacity: 0.7;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation: float-180 4s ease-in-out infinite;
  animation: float-180 4s ease-in-out infinite;
}
.greenModal .modal-content,
.territoryModalOne .modal-content {
  background-color: #809b5a;
}
.brownModal .modal-content,
.territoryModalTwo .modal-content {
  background-color: #935f60;
}
.blueModal .modal-content,
.territoryModalThree .modal-content {
  background-color: #1f8787;
}

.komModal .modal-content {
  border-radius: 30px;
  background-image: url("../img/komuna/experience/forma.svg");
  background-position: left -5rem bottom -5rem;
  background-repeat: no-repeat;
  background-size: 325px auto;
}
.komModal .modal-content .modal-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: none;
  padding: 30px 30px 10px 30px;
  text-align: center;
}
.komModal .modal-content .modal-header button.close:active,
.komModal .modal-content .modal-header button.close:focus {
  outline: none;
  border: 1px solid white;
}
.komModal .modal-content .modal-header h5 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 70px;
  line-height: normal;
}
.komModal .modal-content .modal-header button {
  color: #fff;
}
.komModal .modal-content .modal-body {
  padding: 5px 100px 5px 100px;
  text-align: center;
}
.komModal .modal-content .modal-body p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}
.komModal .modal-content .modal-footer {
  position: relative;
  height: 100px;
  border-top: none;
}
.komModal .modal-content .modal-footer .scroll-content-modal {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

/* modal xl */
@media (min-width: 576px) {
  .modal-custom-xl {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .modal-custom-xl {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .modal-custom-xl {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .modal-custom-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .modal-custom-xl {
    max-width: 1368px;
  }
}
@media (max-width: 992px) {
  .e-territory-section .container-custom .row.align-items-center:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .forma-1,
  .e-territory-section .e-territory-forma-1 {
    bottom: 33%;
    left: 5%;
    height: 350px;
  }
  .forma-2,
  .e-territory-section .e-territory-forma-2 {
    bottom: 15%;
    height: 350px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .komModal .modal-content {
    background-size: 275px auto;
  }
  .komModal .modal-content .modal-header h5 {
    padding: 0 20px;
  }
  .komModal .modal-content .modal-body {
    padding: 5px 50px;
  }
}
@media (max-width: 576px) {
  .forma-1,
  .e-territory-section .e-territory-forma-1 {
    bottom: 33%;
    left: 5%;
    height: 250px;
  }
  .forma-2,
  .e-territory-section .e-territory-forma-2 {
    bottom: 12%;
    height: 250px;
  }
  .komModal .modal-content {
    background-size: 225px auto;
  }
  .komModal .modal-content .modal-header h5 {
    font-size: 25px;
    padding: 0 10px;
  }
  .komModal .modal-content .modal-body {
    padding: 5px 20px;
  }
}
/* animation float */
@-webkit-keyframes float-180 {
  0% {
    -webkit-transform: translateY(0px) rotate(180deg);
    transform: translateY(0px) rotate(180deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(180deg);
    transform: translateY(0px) rotate(180deg);
  }
}
@keyframes float-180 {
  0% {
    -webkit-transform: translateY(0px) rotate(180deg);
    transform: translateY(0px) rotate(180deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(180deg);
    transform: translateY(0px) rotate(180deg);
  }
}
.community-section {
  position: relative;
  background-color: #809b5a;
  height: auto;
}
.community-section .section-title h3,
.community-section .section-title p {
  color: #fff;
}
.community-section .section-title p {
  width: 75%;
  max-width: 75%;
}
.community-section .section-title h3 {
  width: 65%;
  margin: 0 auto;
}

.community-sliders div.owl-controls,
.community-sliders .owl-controls div {
  color: #935f60;
}

.single-community-slider {
  text-align: center;
}

.single-community-item {
  background-color: #809b5a;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.single-community-item .community-image a {
  display: block;
  height: 100%;
  width: 100%;
}
.single-community-item .community-image img {
  width: 100%;
  height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.single-community-item .community-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all, 1s;
  transition: all, 1s;
}
.single-community-item .community-description {
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.single-community-item .community-description h6,
.single-community-item .community-description p {
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  color: white;
  font-size: 18px;
}
.single-community-item .community-description h1 {
  color: #fff;
  font-size: 20px;
}
.single-community-item:hover .community-overlay {
  opacity: 0.7;
  background-color: rgb(0, 0, 0);
}
.single-community-item:hover .community-description {
  bottom: 0;
  opacity: 1;
}

.single-content-section {
  height: 100%;
}

.more-info-section {
  position: relative;
  background-color: #1f8787;
  background-image: url("../img/komuna/single/background_0.svg");
  height: auto;
}
.more-info-section .section-title {
  margin-top: 40px;
  margin-bottom: 40px;
}
.more-info-section .section-title span.subtitle {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
}
.more-info-section .section-title h3,
.more-info-section .section-title p {
  color: #fff;
}
.more-info-section .section-title p {
  width: 75%;
  max-width: 75%;
}
.more-info-section .section-title h3 {
  width: 65%;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}
.feature-bg:after {
  background-image: url("../img/komuna/experience/PANO0015_1.webp");
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 5px;
}

.team-bg-1 {
  background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/team-4.jpg);
}

.team-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  background-color: #ddd;
}

.single-team-item {
  position: relative;
}
.single-team-item h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}
.single-team-item h4 span {
  font-size: 70%;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
ul.social-link-team li {
  display: inline-block;
}
ul.social-link-team li a {
  color: #fff;
  background-color: #017c7f;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.contact-from-section .form-title h2,
.contact-from-section .form-title p {
  color: #fff;
}
.form-title {
  margin-bottom: 25px;
}
.form-title h2 {
  font-size: 25px;
}
.form-title p {
  font-size: 15px;
  line-height: 1.8;
}
.contact-form div.komuna-contact p {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.contact-form div.komuna-contact p input[type="text"],
.contact-form div.komuna-contact p input[type="tel"],
.contact-form div.komuna-contact p input[type="email"] {
  width: 50%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.contact-form div.komuna-contact p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #fbfbfb;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}
.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}
.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #017c7f;
  top: 2px;
}
.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}
.find-location p i {
  margin-right: 10px;
  color: #017c7f;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #e74c3c;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}
#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}
#form_status span.notice {
  color: yellow;
}
#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}
#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}
#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 80px;
}
.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.product-filters ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  margin: 15px;
  border: 2px solid #0a111b;
  color: #323232;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
}
.product-filters ul li.active {
  border: 2px solid #017c7f;
  background-color: #017c7f;
  color: #fff;
}

.single-product-item {
  margin-bottom: 30px;
}

.product-image {
  padding: 30px;
  padding-bottom: 0;
}
.product-image img {
  width: 90%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-product-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

p.product-price {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}

a.cart-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background-color: #017c7f;
  color: #fff;
  padding: 10px 20px;
}
a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a111b;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.product-share li {
  display: inline-block;
}
ul.product-share li a {
  display: block;
  color: #0a111b;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}
tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: #0a111b;
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: #0a111b;
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}
tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}
.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}
.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type="text"] {
  border: 1px solid #ddd;
  color: #0a111b;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef !important;
}
.card.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}
.card.single-accordion:last-child {
  margin-bottom: 0;
}
.card.single-accordion .card-header h5 button {
  color: #0a111b;
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #efefef;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid #f9f9f9;
}

.billing-address-form {
  padding: 20px;
}
.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}
.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p,
.card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #017c7f;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}
table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}
table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid #eeeeee;
}

.single-product-item {
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;
  padding-bottom: 50px;
  border-radius: 5px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}
.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 28px;
  margin-bottom: 20px;
}
.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}
.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #017c7f;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px #017c7f dotted;
  border-radius: 999px;
}

.part-values-aboutus {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}
.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  height: 100%;
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

/* Forms contacto form 7 */

.wpcf7-form .form_list_check {
  display: flex;
  flex-direction: column;
}
/* .wpcf7-form textarea {
  width: 100%;
} */
.imagen-box,
.imagen-about-us-box {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.imagen-medium {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .about-item-invert {
    flex-direction: column-reverse;
  }
  .about-item-normal {
    flex-direction: column;
  }
}

.modal-header .close {
  padding: 0;
  width: 30px;
  height: 30px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  background-color: transparent !important;
}

.category-trips-single
  .category-trips-single-inner-wrap
  .category-trip-prc-title-wrap
  .category-trip-title
  a {
  color: #267c7f !important;
}
.category-grid,
[class*="wte-col-"]:not(.category-list),
.wte-category-outer-wrap .category-main-wrap.category-grid {
  max-width: none !important;
}
.category-list .category-trips-single-inner-wrap .category-trip-aval-time {
  justify-content: end;
}
.wte-accordion
  .wte-accordion-item
  > .wte-accordion-header
  .wte-accordion-button::before {
  border-radius: 0 !important;
}
.wpte_price-toggle-btn-mb,
.wpte-booking-area .wpte-bf-price-wrap {
  display: none !important;
}
.wpte-booking-area .wpte-booking-inner-wrapper {
  padding-top: 24px !important;
}

/* Hidden recaptcha */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* wpadminbar */
html:has(#wpadminbar) .sticky-wrapper .top-header-area {
  margin-top: 32px;
}
@media screen and (max-width: 782px) {
  html:has(#wpadminbar) .mobile-nav__wrapper,
  html:has(#wpadminbar) .sticky-wrapper .top-header-area {
    margin-top: 46px;
  }
}

/* post navigation */
.post-navigation {
  margin-top: 40px;
  /*  margin-bottom: 40px; */
}
.post-navigation .nav-previous {
  float: left;
}
.post-navigation .nav-next {
  float: right;
}

.post-navigation .nav-next a,
.post-navigation .nav-previous a {
  color: #fff;
  font-size: 15px;
  background-color: var(--color-green);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 5px;
  margin: 3px;
  font-weight: 400;
  border-radius: 50px;
}
.post-navigation .nav-next a:hover,
.post-navigation .nav-previous a:hover {
  background-color: #017c7f;
  color: #fff;
}
/* Custom styles */
.explore-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 50px;
  padding-left: 30px;
}
.explore-text h3 {
  /* font-size: 32px; */
  font-weight: 700;
  color: #017c7f;
  margin-bottom: 16px;
}
.explore-text p {
  font-size: 15px;
  color: var(--color-gray);
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
  width: 100%;
}

.page-content {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
}
.without-page-content {
  padding: 40px 30px;
  border-radius: 10px;
}
.without-page-content h1,
.without-page-content h2,
.without-page-content h3,
.without-page-content h4,
.without-page-content h5,
.without-page-content h6,
.without-page-content p {
  color: #fff;
}
/* Style child */
/* Forms contacto form 7 */

.wpcf7-form h2 {
  color: var(--primary-color);
  font-size: 28px;
}
.wpcf7-form .form_list_check {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .wpcf7-form h2 {
    font-size: 25px;
    text-align: center;
  }
}
/* .wpcf7-form textarea {
    width: 100%;
  } */

/*hide coupons*/
.wte-coupon-whole-wrap {
  display: none !important;
}
/*hide filters trips*/
.advanced-search-wrapper {
  display: none !important;
}
@media (min-width: 1025px) {
  .wp-travel-engine-archive-outer-wrap
    .advanced-search-wrapper
    + .wp-travel-engine-archive-repeater-wrap {
    padding-left: 0 !important;
  }
}
/*width trips*/
.wp-travel-engine-archive-repeater-wrap {
  max-width: 100% !important;
}
.wpte-trip-category .wpte-trip-category-img-wrap .wpte-trip-category-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.trip-facts-value li [class*="trip-facts-"] .value {
  font-weight: 400 !important;
}
/* single page trips */

.trip-container-ea .tab-content h3,
.trip-container-ea .tab-content h2,
.trip-container-ea form h2 {
  color: #017c7f !important;
  font-size: 20px !important;
}
.trip-container-ea p,
.trip-container-ea li,
.trip-container-ea form span,
.trip-container-ea form label {
  font-size: 15px !important;
}

.trip-post-content .secondary-trip-info .wte-trip-facts {
  background-color: var(--primary-color);
}
.trip-container-ea .category-trip-title,
.trip-post-content .secondary-trip-info .wte-trip-facts h2 {
  font-size: 20px !important;
}
.trip-post-content .secondary-trip-info .wte-trip-facts h2,
.trip-post-content .secondary-trip-info .wte-trip-facts .trip-facts-text,
.trip-post-content .secondary-trip-info .wte-trip-facts li label {
  color: #fff;
}
.trip-post-content .secondary-trip-info .wte-trip-facts .icon-holder {
  color: var(--green-secondary);
}

.trip-container-ea .wte-related-trips-wrapper .wte-related-trips__heading {
  font-size: 20px;
  color: var(--primary-color);
}
.category-trips-single
  .category-trips-single-inner-wrap
  .category-trip-detail-wrap
  .category-trip-desti
  [class^="category-trip-"]
  span,
.category-trips-single .button {
  font-size: 15px !important;
}
.single-trip .entry-header .wte-title-duration .days {
  background-color: #fff;
}
.widget-area {
  display: none !important;
}
.single-trip #primary {
  width: 100%;
  flex: 100%;
}
/*  .owl-carousel.owl-drag .owl-item{
    height: 600px;
  }
  .owl-carousel.owl-drag .owl-item .item{
    height: 100%;
    width: 100%;
  }
  
  .owl-carousel.owl-drag .owl-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
  } */
