/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --villoz-font: "Plus Jakarta Sans", sans-serif;
  --villoz-heading-font: "Plus Jakarta Sans", serif;
  --villoz-special-font: "reeyregular", cursive;
  --villoz-text: #424242;
  --villoz-text-rgb: 115, 122, 131;
  --villoz-text-dark: #859ab7;
  --villoz-text-dark-rgb: 133, 154, 183;
  --villoz-text-gray: #89868d;
  --villoz-text-gray-rgb: 137, 134, 141;
  --villoz-base: #537eac;
  --villoz-base-rgb: 83, 126, 172;
  --villoz-gray: #f0f6fd;
  --villoz-gray-rgb: 240, 246, 253;
  --villoz-white: #fff;
  --villoz-white-rgb: 255, 255, 255;
  --villoz-black: #132742;
  --villoz-black-rgb: 19, 39, 66;
  --villoz-black2: #0e1e34;
  --villoz-black2-rgb: 14, 30, 52;
  --villoz-black3: #000;
  --villoz-black3-rgb: 0, 0, 0;
  --villoz-border-color: #d6e2f0;
  --villoz-border-color-rgb: 214, 226, 240;
  --villoz-letter-space: 0.1em;
  --villoz-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  color: var(--villoz-text, #424242);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--villoz-base, #537eac);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--villoz-heading-font, "Plus Jakarta Sans", serif);
  color: var(--villoz-black, #132742);
  font-weight: 600;
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

h1 {font-size: 24px;}
h2 {font-size: 22px;}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--villoz-base, #537eac);
}

.background-gray {
  background-color: var(--villoz-gray, #f0f6fd);
}

.background-black {
  background-color: var(--villoz-black, #132742);
}

.background-black-2 {
  background-color: var(--villoz-black2, #0e1e34);
}

.villoz-text-dark {
  color: var(--villoz-text-dark, #859ab7);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.villoz-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--villoz-base, #537eac);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  transition: 500ms;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.villoz-btn > i {
  font-style: normal;
  background-color: var(--villoz-base, #537eac);
  padding: 10.25px 38.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.villoz-btn:hover > i {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.villoz-btn > span {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--villoz-black, #132742);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
}
.villoz-btn:hover > span {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.villoz-btn--border {
  background-color: transparent;
  border: 1px solid rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}
.villoz-btn--border > i {
  background-color: transparent;
}
.villoz-btn--border:hover {
  border-color: var(--villoz-black, #132742);
}
.villoz-btn--black > i {
  background-color: var(--villoz-black, #132742);
}
.villoz-btn--black > span {
  background-color: var(--villoz-base, #537eac);
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--villoz-base, #537eac);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--villoz-text, #737a83);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--villoz-text, #737a83);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--villoz-black, #132742);
  font-family: var(--villoz-special-font, "reeyregular", cursive);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--villoz-black, #132742);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--villoz-base, #537eac);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}
 /* scroll to top */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--villoz-black, #132742);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top::after {
  position: absolute;
  content: "\e927";
  font-family: "icomoon" !important;
  text-align: center;
  line-height: 50px;
  font-size: 17px;
  color: var(--villoz-base, #537eac);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top__circle path {
  stroke: var(--villoz-base, #537eac);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 0px;
}
@media (min-width: 992px) {
  .post-pagination {
    margin-top: 0px;
  }
}
.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #eff2f6;
  align-items: center;
  justify-content: center;
  color: var(--villoz-text, #737a83);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}
@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.post-pagination a:hover {
  background-color: var(--villoz-base, #537eac);
  color: #fff;
}
.post-pagination li:first-child a {
  background-color: var(--villoz-base, #537eac);
  color: #fff;
}
.post-pagination li:last-child a {
  background-color: var(--villoz-black, #132742);
  color: #fff;
}
.post-pagination li + li {
  margin-left: 10px;
}

.villoz-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.villoz-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.villoz-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.villoz-owl__carousel--basic-nav .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.villoz-owl__carousel--basic-nav .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--villoz-gray, #f0f6fd);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--villoz-text, #737a83);
  border-radius: 50%;
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  transition: all 500ms ease;
}
.villoz-owl__carousel--basic-nav .owl-nav button span:hover {
  background-color: var(--villoz-black, #132742);
  color: var(--villoz-white, #fff);
}
.villoz-owl__carousel--basic-nav .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.villoz-owl__carousel--basic-nav .owl-dots .owl-dot span {
  background-color: var(--villoz-black, #132742);
  margin: 0;
  width: 7px;
  height: 7px;
  transition: 500ms ease;
  opacity: 0.3;
  display: inline-block;
  border-radius: 50%;
}
.villoz-owl__carousel--basic-nav .owl-dots .owl-dot:hover span, .villoz-owl__carousel--basic-nav .owl-dots .owl-dot.active span {
  background-color: var(--villoz-black, #132742);
  transform: scale(2);
  opacity: 1;
}
.villoz-owl__carousel--basic-nav .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}

.sec-title {
  padding-bottom: 60px;
}
.sec-title__tagline {
  margin: 0;
  color: var(--villoz-text, #737a83);
  font-size: 14px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: var(--villoz-letter-space, 0.1em);
  font-weight: 600;
  margin-bottom: 7px;
}
.sec-title__tagline::before {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  background-color: var(--villoz-base, #537eac);
  margin-bottom: 17px;
}
.sec-title.text-center .sec-title__tagline::before {
  margin-left: auto;
  margin-right: auto;
}
.sec-title.text-end .sec-title__tagline::before {
  margin-left: auto;
}
.sec-title__title {
  margin: 0;
  font-size: 30px;
  color: var(--villoz-black, #132742);
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: -10px;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .sec-title__title {
    font-size: 50px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--villoz-black, #132742);
  color: var(--villoz-white, #fff);
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--villoz-gray, #f0f6fd);
  background-image: none;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  color: var(--villoz-text, #737a83);
}
.ui-datepicker-calendar td a {
  border-color: var(--villoz-border-color, #d6e2f0);
  background-color: var(--villoz-gray, #f0f6fd);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--villoz-border-color, #d6e2f0);
  background-color: var(--villoz-gray, #f0f6fd);
  background-image: none;
  color: var(--villoz-text, #737a83);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--villoz-white, #fff);
  background-color: var(--villoz-base, #537eac);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--villoz-white, #fff);
  background-color: var(--villoz-base, #537eac);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}



/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--villoz-text, #737a83);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: var(--villoz-gray, #f0f6fd);
  color: var(--villoz-text, #737a83);
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 195px;
  padding-top: 20px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select .dropdown-menu {
  border: none;
}
.form-one .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
}
.form-one .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
}
.form-one .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--villoz-text, #737a83);
  background-color: var(--villoz-gray, #f0f6fd);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-one .bootstrap-select .dropdown-menu > li:hover > a,
.form-one .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  border-color: var(--villoz-base, #537eac);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
}
.main-footer__top {
  padding: 30px 0px;
}
@media (min-width: 768px) {
  .main-footer__top {
    padding: 60px 0px;
  }
}
.main-footer__top .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .main-footer__top .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.main-footer__logo {
  display: inline-flex;
}
.main-footer__social {
  display: flex;
  gap: 10px;
}
.main-footer__social a {
  width: 45px;
  height: 45px;
  border-radius: 22.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all 500ms ease;
  background-color: var(--villoz-black2, #0e1e34);
  color: var(--villoz-white, #fff);
}
.main-footer__social a:hover {
  color: var(--villoz-black2, #0e1e34);
  background-color: var(--villoz-white, #fff);
}
@media (min-width: 768px) {
  .main-footer__social a {
    font-size: 20px;
    width: 55px;
    height: 55px;
    border-radius: 27.5px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  mix-blend-mode: luminosity;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .main-footer__bg {
    background-size: unset;
  }
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}
@media (min-width: 768px) {
  .main-footer__bottom__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .main-footer__bottom__inner {
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    padding-bottom: 30px;
  }
}

.footer-widget {
  margin-bottom: 20px;
}
.footer-widget__form {
  position: relative;
  width: 100%;
  max-width: 470px;
}
.footer-widget__form input[type=email] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-text, #737a83);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 70px;
  transition: all 500ms ease;
}
.footer-widget__form input[type=email]:focus {
  color: var(--villoz-text, #737a83);
}
@media (min-width: 768px) {
  .footer-widget__form input[type=email] {
    height: 70px;
  }
}
.footer-widget__form button[type=submit] {
  background-color: var(--villoz-base, #537eac);
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--villoz-white, #fff);
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: all 500ms ease;
  width: 45px;
  height: 50px;
}
.footer-widget__form button[type=submit]:hover {
  background-color: var(--villoz-black, #132742);
  color: var(--villoz-white, #fff);
}
@media (min-width: 768px) {
  .footer-widget__form button[type=submit] {
    height: 60px;
    width: 55px;
  }
}
.footer-widget__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--villoz-white, #fff);
  margin: 0;
  margin-top: -5px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer-widget__title {
    font-size: 20px;
  }
}
.footer-widget__copyright {
  font-size: 14px;
  color: var(--villoz-text-dark, #859ab7);
  line-height: 2.25em;
  margin: 0;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .footer-widget__copyright {
    font-size: 16px;
  }
}
.footer-widget__copyright a {
  color: inherit;
}
.footer-widget__copyright a:hover {
  color: var(--villoz-white, #fff);
}
.footer-widget__contact, .footer-widget__links {
  margin-bottom: 0;
}
.footer-widget__contact li, .footer-widget__links li {
  font-size: 14px;
  color: var(--villoz-text-dark, #859ab7);
  font-weight: 400;
  line-height: 2.25em;
}
@media (min-width: 768px) {
  .footer-widget__contact li, .footer-widget__links li {
    font-size: 16px;
  }
}
.footer-widget__contact li a, .footer-widget__links li a {
  color: #E8F2FD;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__contact li a:hover, .footer-widget__links li a:hover, .Contact-widget__contact li a:hover {
  background-size: 100% 1px;
}
.footer-widget__contact li a:hover, .footer-widget__links li a:hover {
  color: var(--villoz-white, #fff);
}
.footer-widget__text {
  font-size: 14px;
  color: var(--villoz-text-dark, #859ab7);
  line-height: 2.25em;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 768px) {
  .footer-widget__text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .footer-widget__text {
    margin-bottom: 33px;
  }
}

.Contact-widget__contact li {margin-top: 8px; margin-bottom: 8px;

}

.Contact-widget__contact li a {
  color: #0F5CAE;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.Contact-widget__contact li a:hover {
  color: #666666;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .topbar-one {
    display: block;
  }
}
@media (min-width: 1200px) {
  .topbar-one {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.topbar-one .container-fluid {
  max-width: 1710px;
}
.topbar-one__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .topbar-one__inner {
    flex-direction: row;
  }
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 500;
  color: var(--villoz-white, #fff);
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item + .topbar-one__info__item {
  margin-left: 20px;
}
.topbar-one__info__icon {
  font-size: 12px;
  color: var(--villoz-white, #fff);
  position: relative;
  top: 0px;
  margin-right: 5px;
}
.topbar-one__right {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .topbar-one__right {
    margin-top: 0;
    margin-left: auto;
  }
}
.topbar-one__menu {
  margin: 0;
  display: flex;
  align-items: center;
}
.topbar-one__menu li {
  color: var(--villoz-white, #fff);
  font-size: 12px;
  font-weight: 500;
}
.topbar-one__menu li + li {
  margin-left: 20px;
}
.topbar-one__menu li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__menu li a:hover {
  background-size: 100% 1px;
}
.topbar-one__social {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
  padding: 1.5px 0;
  padding-left: 30px;
  margin-left: 30px;
  line-height: 1em;
}
.topbar-one__social a {
  font-size: 13px;
  color: var(--villoz-white, #fff);
  transition: all 500ms ease;
}
.topbar-one__social a:hover {
  color: var(--villoz-black, #132742);
}
.topbar-one__social a + a {
  margin-left: 25px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 91;
}
header.fixed-top {
  background-color: var(--villoz-base, #f0f6fd);
}

.main-header__bottom {
  border-bottom: 1px solid rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .main-header__bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.main-header__bottom .container-fluid {
  max-width: 1710px;
  display: flex;
  align-items: center;
}
.main-header__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}
@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__cart, .main-header__search {
  font-size: 24px;
  color: var(--villoz-white, #fff);
  transition: all 500ms ease;
  line-height: 1em;
  padding: 8px 0;
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--villoz-black, #132742);
}
.main-header__search {
  padding-left: 30px;
  margin-left: 30px;
  border-left: 1px solid rgba(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}
.main-header__cart {
  margin-left: 20px;
}
.main-header__btn {
  display: none;
}
@media (min-width: 992px) {
  .main-header__btn {
    margin-left: 30px;
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .main-header__btn {
    margin-left: 0px;
  }
}
.main-header__btn > span {
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
}
.main-header__btn:hover {
  border-color: var(--villoz-base, #537eac);
}
.main-header__nav {
  margin-left: auto;
  margin-right: auto;
}
.main-header--three .topbar-one {
  background-color: var(--villoz-black, #132742);
}
.main-header--three .topbar-one__info__icon {
  color: var(--villoz-base, #537eac);
}
.main-header--three .topbar-one .topbar-one__social a:hover {
  color: var(--villoz-base, #537eac);
}
.main-header--three .main-header__nav {
  margin-left: 131px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__nav {
    margin-left: auto;
  }
}
.main-header--three .mobile-nav__btn span {
  background-color: var(--villoz-black, #132742);
}
.main-header--three .main-menu .main-menu__list > li > a {
  color: var(--villoz-text, #737a83);
}
.main-header--three .main-menu .main-menu__list > li.current > a,
.main-header--three .main-menu .main-menu__list > li:hover > a {
  color: var(--villoz-black, #132742);
}
.main-header--three .main-header__cart,
.main-header--three .main-header__search {
  color: var(--villoz-black, #132742);
  border-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.1);
}
.main-header--three .main-header__cart:hover,
.main-header--three .main-header__search:hover {
  color: var(--villoz-base, #537eac);
}
.main-header--three .villoz-btn--border {
  border-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.1);
  color: var(--villoz-black, #132742);
}
.main-header--three .villoz-btn--border:hover {
  border-color: var(--villoz-base, #537eac);
}
.main-header--three .main-header__btn > span {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
.main-header--three .sticky-header--cloned {
  background-color: var(--villoz-white, #fff);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--villoz-black, #132742);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--villoz-black-rgb, 19, 39, 66), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned .main-header__cart:hover,
.sticky-header--cloned .main-header__search:hover {
  color: var(--villoz-base, #537eac);
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--villoz-white, #fff);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 33.5px;
  padding-bottom: 33.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 57px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--villoz-white, #fff);
  font-weight: 500;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li > a::after {
  content: "";
  position: absolute;
  top: calc(50% + 5px);
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  transform: translateX(-50%) scale(0);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 153.95 72.84"><g><path d="M25.54,69.27a29.6,29.6,0,0,0,14.57,3.57,29.56,29.56,0,0,0,14.56-3.57L140,20c6.82-3.94,12.26-12,14-20C80.29,4.19,31.93,27.38,0,54.52Z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 153.95 72.84"><g><path d="M25.54,69.27a29.6,29.6,0,0,0,14.57,3.57,29.56,29.56,0,0,0,14.56-3.57L140,20c6.82-3.94,12.26-12,14-20C80.29,4.19,31.93,27.38,0,54.52Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: transform 500ms ease;
  transform-origin: top center;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--villoz-white, #fff);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after {
  transform: translateX(-50%) scale(1);
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -40px;
  min-width: 230px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--villoz-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--villoz-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 14px;
  line-height: 26px;
  color: var(--villoz-text, #737a83);
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 500;
  display: flex;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  color: var(--villoz-base, #537eac);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--villoz-gray, #f0f6fd);
  color: var(--villoz-black, #132742);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--villoz-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--villoz-black, #132742);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--villoz-base, #537eac);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  padding: 163px 0 120px;
  position: relative;
  background-color: var(--villoz-black2, #0e1e34);
}
@media (max-width: 767px) {
  .cta-one {
    padding: 110px 0 80px;
  }
}
.cta-one__bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
.cta-one__overlay-one {
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
}
.cta-one__overlay-two {
  position: absolute;
  left: 0;
  top: -30px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
}
.cta-one__content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 590px;
  margin: auto;
}
.cta-one__content .villoz-btn,
.cta-one__content .villoz-btn > i {
  background-color: var(--villoz-black, #132742);
}
.cta-one__content .villoz-btn > span {
  background-color: var(--villoz-white, #fff);
}
.cta-one__content .villoz-btn:hover {
  color: var(--villoz-black, #132742);
}
.cta-one__sub-title {
  color: var(--villoz-white, #fff);
  font-family: var(--villoz-special-font, "reeyregular", cursive);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cta-one__sub-title {
    font-size: 24px;
  }
}
.cta-one__title {
  position: relative;
  margin: 0;
  text-transform: uppercase;
  font-size: 60px;
  margin-bottom: 29px;
  color: var(--villoz-white, #fff);
}
.cta-one__title::after {
  position: absolute;
  right: -50px;
  top: -27px;
  content: "";
  background-image: url(../images/shapes/cta-1-border.png);
  width: 53px;
  height: 46px;
}
@media (max-width: 767px) {
  .cta-one__title::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .cta-one__title {
    font-size: 35px;
  }
}

.cta-two {
  position: relative;
  background-color: var(--villoz-base, #537eac);
  text-align: center;
  padding: 20px 0 25px;
}
.cta-two__title {
  color: var(--villoz-white, #fff);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 991px) {
  .cta-two__title {
    line-height: 1.3;
  }
}

.cta-three {
  position: relative;
  background-color: var(--villoz-base, #537eac);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.cta-three__box {
  position: relative;
  padding: 0 0 0 145px;
  min-height: 115px;
}
@media (max-width: 767px) {
  .cta-three__box {
    padding-left: 0;
  }
}
.cta-three__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 115px;
  height: 115px;
  background-color: rgba(18, 39, 66, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cta-three__icon {
    position: relative;
    margin-bottom: 20px;
  }
}
.cta-three__icon img {
  max-width: 56px;
}
.cta-three__title {
  color: var(--villoz-white, #fff);
  font-size: 30px;
  margin: 0 0 14px;
}
.cta-three__text {
  color: #c2ddf9;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 1199px) {
  .cta-three__text br {
    display: none;
  }
}
.cta-three .villoz-btn {
  margin-top: 31px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-three .villoz-btn > i {
    padding: 10.25px 28.5px;
  }
}
.cta-three .villoz-btn > i,
.cta-three .villoz-btn {
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
}
.cta-three .villoz-btn:hover {
  color: var(--villoz-white, #fff);
}
@media (max-width: 767px) {
  .cta-three .text-end {
    text-align: left !important;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .gallery-one {
    padding: 80px 0;
  }
}
.gallery-one .container {
  max-width: 1572px;
}
@media (max-width: 767px) {
  .gallery-one .container {
    max-width: 540px;
  }
}
.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}
.gallery-one--home-one {
  padding: 0;
  background-color: var(--villoz-white, #fff);
}
.gallery-one--home-one .container {
  max-width: 1755px;
  z-index: 2;
  position: relative;
}
.gallery-one .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}
.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-one__filter__list li {
  cursor: pointer;
}
.gallery-one__filter__list li span {
  display: block;
  font-size: 10px;
  background-color: var(--villoz-gray, #f0f6fd);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--villoz-letter-space, 0.1em);
  padding: 15px 20px;
  line-height: 1.2em;
}
.gallery-one__filter__list li.active span, .gallery-one__filter__list li:hover span {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--villoz-black, #132742);
}
.gallery-one__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--villoz-base-rgb, 83, 126, 172), 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-one__card__hover .img-popup {
  position: relative;
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-one__card__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}
.gallery-one__card__icon::after, .gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--villoz-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
}
.gallery-two--about {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .gallery-two--about {
    padding: 80px 0;
  }
}
.gallery-two .container {
  max-width: 1380px;
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--villoz-black, #132742);
}
.gallery-two__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-two__card__hover .img-popup {
  position: relative;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
}
.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-two__card__icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
.gallery-two__card__icon::after, .gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--villoz-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-three {
  position: relative;
}
.gallery-three__carousel {
  position: relative;
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
  padding-top: 120px;
}
@media (max-width: 767px) {
  .gallery-three__carousel {
    padding-top: 80px;
  }
}
.gallery-three__card {
  position: relative;
  overflow: hidden;
  background-color: var(--villoz-black, #132742);
}
.gallery-three__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-three__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-three__card__hover .img-popup {
  position: relative;
}
.gallery-three__card:hover img {
  transform: scale(1.05);
}
.gallery-three__card:hover .gallery-three__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-three__card__icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
.gallery-three__card__icon::after, .gallery-three__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--villoz-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-three__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  padding: 40px;
  border: 1px solid var(--villoz-border-color, #d6e2f0);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar {
    padding-left: 25px;
    padding-right: 20px;
  }
}
.sidebar__single {
  padding: 0px;
}
@media (min-width: 1200px) {
  .sidebar__single {
    padding: 0px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 40px;
}
.sidebar__title {
  margin: 0;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: 26px;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 64px;
  background-color: var(--villoz-gray, #f0f6fd);
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
  border: none;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--villoz-black, #132742);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  border-bottom: 1px solid var(--villoz-border-color, #d6e2f0);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 20px;
}
.sidebar__posts__title {
  margin: 0;
  color: var(--villoz-black, #132742);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: -5px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}
.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--villoz-text, #737a83);
  font-size: 13px;
  line-height: 1em;
  transition: all 500ms ease;
}
.sidebar__posts__meta a:hover {
  color: var(--villoz-black, #132742);
  text-shadow: 0 0 1px currentColor;
}
.sidebar__posts__meta a i {
  color: var(--villoz-base, #537eac);
  margin-right: 3px;
}
.sidebar__categories {
  margin-bottom: -18px;
  margin-top: -18px;
}
.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--villoz-border-color, #d6e2f0);
}
.sidebar__categories li a {
  font-size: 16px;
  color: var(--villoz-text, #737a83);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 7px 0;
}
.sidebar__categories li a::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 14px;
}
.sidebar__categories li a:hover {
  padding: 7px 20px;
  background-color: var(--villoz-gray, #f0f6fd);
  color: var(--villoz-black, #132742);
}
.sidebar__categories li a:hover::after {
  text-shadow: 0 0 0px currentColor;
  color: var(--villoz-base, #537eac);
}
.sidebar__projects__card {
  position: relative;
}
.sidebar__projects__card__image img {
  width: 100%;
}
.sidebar__projects__card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 0 24px 21px;
  background: linear-gradient(to bottom, rgba(var(--villoz-white-rgb, 255, 255, 255), 0) 40%, var(--villoz-black, #132742) 100%);
}
.sidebar__projects__card__title {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 600;
  color: var(--villoz-white, #fff);
  margin: 0;
  margin-bottom: -4px;
}
.sidebar__projects__card__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}
.sidebar__projects__card__title a:hover {
  background-size: 100% 1px;
}
.sidebar__projects__carousel .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.sidebar__projects__carousel .owl-dots {
  position: absolute;
  bottom: 13px;
  right: 30px;
  gap: 5px;
}
.sidebar__projects__carousel .owl-dots .owl-dot span {
  background-color: var(--villoz-white, #fff);
  border-width: 0px;
  opacity: 0.3;
  width: 6px;
  height: 6px;
}
.sidebar__projects__carousel .owl-dots .owl-dot:hover span, .sidebar__projects__carousel .owl-dots .owl-dot.active span {
  transform: none;
  opacity: 1;
  background-color: rgba(var(--villoz-white-rgb, 255, 255, 255), 1);
  border-color: rgba(var(--villoz-white-rgb, 255, 255, 255), 1);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background-color: var(--villoz-gray, #f0f6fd);
  font-size: 12px;
  font-weight: 600;
  color: var(--villoz-text, #737a83);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 6.5px 19.5px;
}
.sidebar__tags a:hover {
  color: var(--villoz-white, #fff);
  background-color: var(--villoz-base, #537eac);
}
.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 26px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--villoz-gray, #f0f6fd);
  font-size: 16px;
  color: var(--villoz-black, #132742);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
.sidebar__comments__title {
  margin: 0;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--villoz-text, #737a83);
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--villoz-black, #132742);
}

.villa-sidebar {
  position: relative;
  border: 1px solid var(--villoz-border-color, #d6e2f0);
  padding: 24px 28px 23px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-sidebar {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 991px) {
  .villa-sidebar {
    margin: 0 0 50px;
  }
}
.villa-sidebar--right {
  position: relative;
}
@media (max-width: 991px) {
  .villa-sidebar--right {
    margin: 50px 0 0;
  }
}
.villa-sidebar__title {
  font-size: 18px;
  margin: 0 0 26px;
}
.villa-sidebar .accordion-item {
  position: relative;
  background-color: transparent;
  border: none;
  margin: 26px 0 0;
  padding: 26px 0 0;
  border-radius: 0;
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
}
.villa-sidebar .accordion-item .accordion-button {
  margin: 0 0 11px;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--villoz-black, #132742);
  box-shadow: none;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
}
.villa-sidebar .accordion-item .accordion-button::after {
  position: absolute;
  top: 2.5px;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  width: auto;
  height: auto;
  background: transparent;
  transform: none;
}
.villa-sidebar .accordion-item .accordion-button.collapsed::after {
  transform: rotate(180deg);
}
.villa-sidebar .accordion-item .accordion-body {
  padding: 0;
  margin: 0;
}
.villa-sidebar .price-ranger {
  position: relative;
}
.villa-sidebar .price-ranger #slider-range {
  margin: 23px 0 0;
  background: var(--villoz-border-color, #d6e2f0);
  border: none;
  height: 3px;
  border-radius: 0;
  position: relative;
}
.villa-sidebar .price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--villoz-base, #537eac);
}
.villa-sidebar .price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -6px;
  background: var(--villoz-base, #537eac);
  border: 0;
  height: 15px;
  width: 15px !important;
  border-radius: 50%;
  margin-left: -1px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.villa-sidebar .price-ranger .ranger-min-max-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 0 0;
}
.villa-sidebar .price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--villoz-text, #737a83);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  padding: 0;
  background-color: transparent;
}
.villa-sidebar .price-ranger .ranger-min-max-block input[type=text].max {
  text-align: right;
}
.villa-sidebar__lists {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.villa-sidebar__lists li {
  display: block;
  position: relative;
  color: var(--villoz-text, #737a83);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 13px;
}
.villa-sidebar__lists li label {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0px;
  padding-left: 22px;
  text-transform: none;
  cursor: pointer;
  transition: all 400ms ease;
}
.villa-sidebar__lists li label:hover {
  color: var(--villoz-base, #537eac);
}
.villa-sidebar__lists li label span:before {
  position: absolute;
  top: 2px;
  left: 1.5px;
  display: block;
  background-color: var(--villoz-base, #537eac);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.villa-sidebar__lists li input[type=checkbox] {
  display: none;
}
.villa-sidebar__lists li input[type=checkbox] + label span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 2px solid var(--villoz-border-color, #d6e2f0);
}
.villa-sidebar__lists li input[type=checkbox]:checked + label span {
  border-color: var(--villoz-base, #537eac);
}
.villa-sidebar__lists li input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.villa-sidebar__lists__ratings {
  position: relative;
  letter-spacing: 1.5px;
  color: #fcbd14;
}
.villa-sidebar__lists__ratings .disable {
  color: var(--villoz-border-color, #d6e2f0);
}

.villa-details-sidebar {
  position: relative;
}
@media (max-width: 991px) {
  .villa-details-sidebar {
    margin: 50px 0 0;
  }
}
.villa-details-sidebar--left {
  position: relative;
}
@media (max-width: 991px) {
  .villa-details-sidebar--left {
    margin: 0 0 50px;
  }
}
.villa-details-sidebar__booking {
  position: relative;
  background-color: var(--villoz-gray, #f0f6fd);
  margin-bottom: 30px;
}
.villa-details-sidebar__booking__title {
  background-color: var(--villoz-black, #132742);
  color: var(--villoz-white, #fff);
  font-size: 16px;
  padding: 18px 20px 20px;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-details-sidebar__booking__title {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.villa-details-sidebar__form {
  position: relative;
  padding: 38px 40px 40px;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-details-sidebar__form {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.villa-details-sidebar__form .villoz-btn {
  width: 100%;
}
.villa-details-sidebar__control {
  position: relative;
  margin: 0 0 19px;
}
.villa-details-sidebar__control label {
  display: block;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: var(--villoz-black, #132742);
  margin: 0 0 9px;
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle,
.villa-details-sidebar__control input[type=text],
.villa-details-sidebar__control input[type=number],
.villa-details-sidebar__control input[type=email] {
  display: block;
  width: 100%;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-text, #737a83);
  height: 50px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  border: none;
  outline: none;
  padding: 0 30px;
}
.villa-details-sidebar__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle {
  padding: 0 30px;
  background-color: var(--villoz-white, #fff);
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--villoz-text, #737a83);
  font-size: 13px;
  font-weight: 500;
  height: 50px;
  text-transform: capitalize;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.villa-details-sidebar__control .bootstrap-select .dropdown-menu {
  border: none;
}
.villa-details-sidebar__control .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  line-height: 50px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 13px;
  color: var(--villoz-text, #737a83);
}
.villa-details-sidebar__control .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
}
.villa-details-sidebar__control .bootstrap-select .dropdown-menu > li > a {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--villoz-text, #737a83);
  background-color: var(--villoz-white, #fff);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.villa-details-sidebar__control .bootstrap-select .dropdown-menu > li:hover > a,
.villa-details-sidebar__control .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  border-color: var(--villoz-base, #537eac);
}
.villa-details-sidebar__checkbox {
  position: relative;
  margin: 16px 0 29px;
  padding: 0;
  list-style-type: none;
}
.villa-details-sidebar__checkbox li {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 100%;
  margin: 9px 0 0;
}
.villa-details-sidebar__checkbox li label {
  position: relative;
  display: flex;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--villoz-text, #737a83);
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  width: 100%;
}
.villa-details-sidebar__checkbox li label span {
  margin-left: auto;
}
.villa-details-sidebar__checkbox li label:before {
  position: absolute;
  top: 8px;
  left: 4px;
  display: block;
  background-color: var(--villoz-base, #537eac);
  content: "";
  width: 8px;
  height: 8px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
  z-index: 2;
  border-radius: 50%;
}
.villa-details-sidebar__checkbox li input[type=checkbox] {
  display: none;
}
.villa-details-sidebar__checkbox li input[type=checkbox] + label::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  background-color: var(--villoz-white, #fff);
  cursor: pointer;
  border-radius: 50%;
  transition: all 300ms ease;
  border: 2px solid var(--villoz-border-color, #d6e2f0);
}
.villa-details-sidebar__checkbox li input[type=checkbox]:checked + label::after {
  border-color: var(--villoz-base, #537eac);
}
.villa-details-sidebar__checkbox li input[type=checkbox]:checked + label:before {
  opacity: 1;
}
.villa-details-sidebar__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--villoz-black, #132742);
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
  margin: 0 0 12px;
  padding: 9px 0 0;
}
.villa-details-sidebar__total span {
  color: var(--villoz-base, #537eac);
  display: block;
}
.villa-details-sidebar__title {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 26px;
}
.villa-details-sidebar__post {
  position: relative;
  border: 1px solid var(--villoz-border-color, #d6e2f0);
  padding: 34px 39px 19px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-details-sidebar__post {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.villa-details-sidebar__post__item {
  position: relative;
  min-height: 60px;
  margin-bottom: 20px;
  padding: 0 0 20px 80px;
  border-bottom: 1px solid var(--villoz-border-color, #d6e2f0);
}
.villa-details-sidebar__post__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.villa-details-sidebar__post__item__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.villa-details-sidebar__post__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.villa-details-sidebar__post__item__price {
  display: block;
  line-height: 0.8;
  font-size: 14px;
  color: var(--villoz-base, #537eac);
  font-weight: 600;
  margin-bottom: 4px;
}
.villa-details-sidebar__post__item__title {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 7px;
}
.villa-details-sidebar__post__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.villa-details-sidebar__post__item__title a:hover {
  background-size: 100% 1px;
}
.villa-details-sidebar__post__item__text {
  line-height: 1;
  font-size: 14px;
  margin: 0;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--villoz-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--villoz-black, #132742);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--villoz-black2, #0e1e34);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--villoz-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--villoz-base, #537eac);
}

.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 RGBA(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--villoz-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--villoz-white, #fff);
  font-size: 12px;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--villoz-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--villoz-base, #537eac);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--villoz-base, #537eac);
  border: none;
  outline: none;
  color: var(--villoz-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--villoz-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--villoz-base, #537eac);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--villoz-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--villoz-base, #537eac);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--villoz-base, #537eac);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--villoz-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--villoz-black, #132742);
  position: relative;
  padding-top: 228px;
  padding-bottom: 88px;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}
.page-header > .container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-header__title {
  margin: 0;
  color: var(--villoz-white, #fff);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  margin-top: -10px;
  margin-bottom: -10px;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 45px;
line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .page-header__title {
    font-size: 50px;
line-height: 1.2;
  }
}
a.Titelbreadcrumb {
 color: var(--villoz-white, #fff);
}
a.Titelbreadcrumb:hover {
 text-decoration: underline;
}
.page-header .banner-form__wrapper {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
.page-header .banner-form__position {
  bottom: -43px;
}
@media (max-width: 767px) {
  .page-header .banner-form__position {
    position: relative;
    bottom: -120px;
  }
}
.page-header .banner-form__position .row {
  --bs-gutter-x: 0;
}
.page-header .banner-form__position .row > * {
  padding-left: 0;
  padding-right: 0;
}
.page-header .banner-form__position .col-lg-4 {
  width: 29.3%;
}
@media (max-width: 991px) {
  .page-header .banner-form__position .col-lg-4 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-header .banner-form__position .col-lg-4 {
    width: 100%;
  }
}
.page-header .banner-form__position .col-lg-2 {
  width: 20.9%;
}
@media (max-width: 991px) {
  .page-header .banner-form__position .col-lg-2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-header .banner-form__position .col-lg-2 {
    width: 100%;
  }
}
.page-header .banner-form__position .col-lg-3 {
  width: 20.4%;
}
@media (max-width: 991px) {
  .page-header .banner-form__position .col-lg-3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-header .banner-form__position .col-lg-3 {
    width: 100%;
  }
}
.page-header .banner-form__position .col-lg-1 {
  width: 8.5%;
}
@media (max-width: 991px) {
  .page-header .banner-form__position .col-lg-1 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-header .banner-form__position .col-lg-1 {
    width: 100%;
  }
}
.page-header .banner-form__position .villoz-btn {
  height: 93px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .page-header .banner-form__position .villoz-btn {
    width: 85px;
  }
}
@media (max-width: 991px) {
  .page-header .banner-form__position .villoz-btn {
    width: 100px;
    bottom: -93px;
    top: auto;
  }
}
.page-header--blank {
  padding: 0;
  height: 140px;
}
@media (max-width: 1199px) {
  .page-header--blank {
    height: 160px;
  }
}
@media (max-width: 991px) {
  .page-header--blank {
    height: 170px;
  }
}
@media (max-width: 767px) {
  .page-header--blank {
    height: 101px;
  }
}

.villoz-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  margin-top: -7px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.villoz-breadcrumb li {
  font-size: 12px;
  color: var(--villoz-white, #fff);
  display: flex;
  align-items: center;
}
.villoz-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 10px;
  margin-right: 10px;
}
.villoz-breadcrumb li span,
.villoz-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1em;
}
.villoz-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.villoz-breadcrumb li a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  background-color: var(--villoz-white, #fff);
  background-size: cover;
  padding: 70px 0;
}
.client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 83px;
  transition: all 500ms ease;
}
.client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto !important;
}
.client-carousel__one__item:hover {
  background-color: var(--villoz-gray, #f0f6fd);
}
.client-carousel__one__item:hover img {
  opacity: 0.6;
}
.client-carousel--with-border {
  position: relative;
  padding-bottom: 0;
}
.client-carousel--with-border .client-carousel__one {
  border-bottom: 1px solid var(--villoz-border-color, #d6e2f0);
  padding-bottom: 70px;
}
.client-carousel--destination-page {
  position: relative;
  padding-top: 0;
}
.client-carousel--destination-page .client-carousel__one {
  padding-top: 68px;
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
}

.client-carousel-one {
  position: relative;
  background: var(--villoz-white, #fff);
  padding: 0 0 60px;
}
.client-carousel-one .client-carousel__one {
  padding: 74px 0 0;
}
.client-carousel-one .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  line-height: 0.8;
}
.client-carousel-one .owl-theme .owl-nav button {
  width: 26px;
  height: 27px;
  background-color: var(--villoz-gray, #f0f6fd);
  margin: 0 2.5px;
  padding: 0;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--villoz-black, #132742);
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 0;
}
.client-carousel-one .owl-theme .owl-nav button:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
.client-carousel-one .owl-theme .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--villoz-border-color, #d6e2f0);
  z-index: -1;
}
.client-carousel-one .owl-theme .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 110px;
  content: "";
  height: 1px;
  background-color: var(--villoz-white, #fff);
}
.client-carousel-one .client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 103px;
  transition: all 500ms ease;
}
.client-carousel-one .client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto;
}
.client-carousel-one .client-carousel__one__item:hover {
  background-color: #f8f5f0;
}
.client-carousel-one .client-carousel__one__item:hover img {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  background-color: var(--villoz-base, #537eac);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 184px 0 304px;
  margin-bottom: -344px;
}
@media (max-width: 767px) {
  .banner-one {
    margin-bottom: -250px;
  }
}
.banner-one .container {
  position: relative;
  z-index: 2;
}
.banner-one__title {
  color: var(--villoz-white, #fff);
  font-size: 70px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 991px) {
  .banner-one__title {
    font-size: 45px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .banner-one__title {
    font-size: 36px;
    margin-top: 0;
  }
}
.banner-one__content {
  position: relative;
  z-index: 2;
  background-color: var(--villoz-white, #fff);
  margin: 88px 0 0;
  padding: 31px 40px 36px;
}
@media (max-width: 991px) {
  .banner-one__content {
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .banner-one__content {
    margin-top: 30px;
  }
}
.banner-one__ratings {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fcbd14;
  letter-spacing: 3px;
  border-bottom: 1px solid var(--villoz-border-color, #d6e2f0);
  padding: 0 0 20px;
  margin: 0 0 12px;
}
.banner-one__text {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
}
.banner-one__text span {
  color: var(--villoz-black, #132742);
}
.banner-two {
  position: relative;
}
.banner-two__carousel {
  position: relative;
  margin: 0 auto;
}
.banner-two__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  text-align: right;
  position: absolute;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 991px) {
  .banner-two__carousel.owl-carousel .owl-nav {
    display: none;
  }
}
.banner-two__carousel.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  z-index: 4;
  left: 40px;
  top: 0;
  width: 52px;
  height: 52px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  transition: all 500ms ease;
  font-size: 16px;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0;
}
.banner-two__carousel.owl-carousel .owl-nav .owl-prev:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
@media (min-width: 1400px) {
  .banner-two__carousel.owl-carousel .owl-nav .owl-prev {
    left: 110px;
  }
}
.banner-two__carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  z-index: 4;
  right: 40px;
  top: 0;
  width: 52px;
  height: 52px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  transition: all 500ms ease;
  font-size: 16px;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0;
}
.banner-two__carousel.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
@media (min-width: 1400px) {
  .banner-two__carousel.owl-carousel .owl-nav .owl-next {
    right: 110px;
  }
}
.banner-two__carousel .active .banner-two__image {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}
.banner-two__image {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 824px;
  width: 100%;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  background-color: var(--villoz-black, #132742);
}
@media (max-width: 767px) {
.banner-two__image {
  height: 420px;
}
}
.banner-two__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.6);
}
.banner-two__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  margin: 0 auto;
  padding: 293px 0 0;
  max-width: 1200px;
}
@media (max-width: 767px) {
  .banner-two__content {
    padding-top: 260px;
  }
}
.banner-two__content__top {
  position: relative;
  text-align: center;
  margin: 0 0 100px;
}
@media (max-width: 991px) {
  .banner-two__content__top {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .banner-two__content__top {
    margin-bottom: 40px;
  }
}
.banner-two__title {
  position: relative;
  color: var(--villoz-white, #fff);
  font-size: 70px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  margin: 0 0 15px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .banner-two__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .banner-two__title {
    font-size: 30px;
  }
}
.banner-two__title__sub {
  position: absolute;
  left: 144px;
  top: -68px;
  display: inline-block;
  background-position: left top;
  background-size: cover;
  height: 85px;
  width: 238px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 20px 0;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@media (max-width: 767px) {
  .banner-two__title__sub {
    left: 34px;
    top: -78px;
  }
}
.banner-two__title__sub span {
  transform: rotate(2deg);
  display: block;
}
.banner-two__text {
  color: var(--villoz-white, #fff);
  font-weight: 600;
  margin: 0;
}
.banner-two .row {
  --bs-gutter-x: 0;
}
.banner-two .row > * {
  padding-left: 0;
  padding-right: 0;
}
.banner-two .col-lg-4 {
  width: 29.3%;
}
@media (max-width: 991px) {
  .banner-two .col-lg-4 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .banner-two .col-lg-4 {
    width: 100%;
  }
}
.banner-two .col-lg-2 {
  width: 20.9%;
}
@media (max-width: 991px) {
  .banner-two .col-lg-2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .banner-two .col-lg-2 {
    width: 100%;
  }
}
.banner-two .col-lg-3 {
  width: 20.4%;
}
@media (max-width: 991px) {
  .banner-two .col-lg-3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .banner-two .col-lg-3 {
    width: 100%;
  }
}
.banner-two .col-lg-1 {
  width: 8.5%;
}
@media (max-width: 991px) {
  .banner-two .col-lg-1 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .banner-two .col-lg-1 {
    width: 100%;
  }
}
.banner-two .villoz-btn {
  height: 93px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .banner-two .villoz-btn {
    width: 85px;
  }
}
@media (max-width: 991px) {
  .banner-two .villoz-btn {
    width: 100px;
    bottom: -93px;
    top: auto;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  overflow: hidden;
  background-color: var(--villoz-black, #132742);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 0;
}
.feature-one__content {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .feature-one__content {
    padding: 80px 0;
  }
}
.feature-one__content .sec-title__tagline {
  color: var(--villoz-text-dark, #859ab7);
}
.feature-one__content .sec-title__title {
  color: var(--villoz-white, #fff);
}
.feature-one__wrapper {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .feature-one__wrapper {
    margin-right: -300px;
  }
}
.feature-one__wrapper__middle-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--villoz-base, #537eac);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 60px;
  color: var(--villoz-white, #fff);
}
.feature-one__wrapper__middle-icon img {
  max-height: 60px;
  transform: scale(1);
  transition: 500ms ease;
}
@media (max-width: 767px) {
  .feature-one__wrapper__middle-icon {
    display: none;
  }
}
.feature-one__wrapper:hover .feature-one__wrapper__middle-icon img {
  transform: scale(0.95);
}
.feature-one__item {
  position: relative;
  background-color: var(--villoz-white, #fff);
  padding: 36px 25px 36px 136px;
}
@media (max-width: 991px) {
  .feature-one__item {
    padding-left: 120px;
  }
}
.feature-one__item::after {
  position: absolute;
  right: 10px;
  top: 0;
  width: 6px;
  height: 50px;
  content: "";
  background-color: var(--villoz-gray, #f0f6fd);
}
.feature-one__item:hover .feature-one__item__icon span {
  transform: scale(0.9);
}
.feature-one__item__icon {
  width: 77px;
  height: 77px;
  background-color: var(--villoz-gray, #f0f6fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--villoz-base, #537eac);
  position: absolute;
  left: 40px;
  bottom: 0;
  top: 0;
  margin: auto 0;
}
.feature-one__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
}
@media (max-width: 991px) {
  .feature-one__item__icon {
    left: 30px;
  }
}
.feature-one__item__title {
  font-size: 20px;
  margin: 0 0 9px;
}
.feature-one__item__text {
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}
.feature-one__image {
  text-align: right;
  position: relative;
  max-width: 745px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .feature-one__image {
    margin: 0 auto;
    text-align: center;
  }
}
.feature-one__image::after {
  position: absolute;
  left: -51px;
  top: 0;
  width: 21px;
  height: 38%;
  background-color: var(--villoz-base, #537eac);
  content: "";
}
.feature-one__image img {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .feature-one__image img {
    max-width: none;
  }
}

.feature-two {
  position: relative;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--villoz-base, #537eac);
  padding: 75px 0;
}
.feature-two__item {
  position: relative;
  padding: 0 0 0 102px;
}
.feature-two__item:hover .feature-two__item__icon::after {
  animation: bounceIn 1s linear;
  animation-duration: 1s;
  animation-duration: 1s;
  animation-duration: 2s;
}
.feature-two__item__icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 62px;
  line-height: 1;
  color: var(--villoz-white, #fff);
}
.feature-two__item__icon::after {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 68px;
  height: 68px;
  content: "";
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.15);
  border-radius: 50%;
  z-index: -1;
}
.feature-two__item__title {
  color: var(--villoz-white, #fff);
  font-size: 20px;
  margin: 0 0 15px;
}
.feature-two__item__text {
  color: #c2ddf9;
  font-size: 14px;
  line-height: 30px;
  margin: 0;
}

/*--------------------------------------------------------------
# Villa
--------------------------------------------------------------*/
.villa-one {
  position: relative;
  padding: 120px 0 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: var(--villoz-white, #fff);
}
@media (max-width: 767px) {
  .villa-one {
    padding-top: 80px;
  }
}
.villa-one--home-three {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .villa-one--home-three {
    padding: 80px 0;
  }
}
.villa-one--destination {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .villa-one--destination {
    padding: 80px 0;
  }
}

.villa-card {
  position: relative;
  background-color: var(--villoz-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.villa-card:hover .villa-card__image::before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms linear;
}
.villa-card:hover .villa-card__image::after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 600ms linear;
}
.villa-card__image {
  position: relative;
}
.villa-card__image img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease, opacity 500ms ease;
  transform: scale(1);
}
.villa-card__image::before {
  background: rgba(var(--villoz-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 500ms linear;
}
.villa-card__image::after {
  background: rgba(var(--villoz-white-rgb, 255, 255, 255), 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
  pointer-events: none;
  transition: all 600ms linear;
}
.villa-card__like {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.2);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  font-size: 14px;
  color: var(--villoz-white, #fff);
}
.villa-card__like:hover {
  background-color: var(--villoz-black, #132742);
}
.villa-card__flash {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
.villa-card__flash__label {
  display: table;
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3.9px 10px;
  margin-bottom: 10px;
}
.villa-card__flash__label.off {
  background-color: #f25a43;
}
.villa-card__btns {
  position: absolute;
  right: 30px;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.07);
}
.villa-card__btns a {
  display: inline-block;
  width: 36px;
  height: 34px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.villa-card__btns a.villoz-image-popup {
  background-image: linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(240, 246, 253) 100%);
}
.villa-card__btns a:hover {
  color: var(--villoz-base, #537eac);
}
.villa-card__btns__count {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: var(--villoz-base, #537eac);
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 7px;
  font-weight: 600;
  color: var(--villoz-white, #fff);
}
.villa-card__content {
  position: relative;
  padding: 31px 30px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card__content {
    padding-left: 25px;
    padding-right: 22px;
  }
}
.villa-card__ratings {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fcbd14;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.villa-card__address {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 1px;
}
.villa-card__title {
  font-size: 18px;
  line-height:28px;
  margin: 0 0 0px;
}
.villa-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.villa-card__title a:hover {
  background-size: 100% 1px;
}
.villa-card__price {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  line-height: 30px;
  color: var(--villoz-base, #537eac);
  margin-bottom: 24px;
}
.villa-card__price__disable {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-right: 2px;
  text-decoration: line-through;
}
.villa-card__price__shift {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-left: 2px;
}
.villa-card__meta {
  position: relative;
  margin: 0;
  padding: 8px 20px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--villoz-gray, #f0f6fd);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card__meta {
    padding-left: 18px;
    padding-right: 15px;
  }
}
.villa-card__meta li {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.villa-card__meta li span {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  line-height: inherit;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card__meta li span {
    margin-right: 2px;
  }
}
.villa-card--small {
  position: relative;
}
.villa-card--small .villa-card__image img {
  min-height: 241px;
  object-fit: cover;
}
.villa-card--small .villa-card__btns {
  right: 20px;
  bottom: -14px;
}
.villa-card--small .villa-card__content {
  border: 1px solid var(--villoz-border-color, #d6e2f0);
  border-top: none;
  padding: 21px 19px 19px;
}
.villa-card--small .villa-card__address {
  font-size: 12px;
  margin-top: 6px;
  margin-bottom: -3px;
}
.villa-card--small .villa-card__title {
  font-size: 20px;
  line-height: 26px;
}
.villa-card--small .villa-card__price {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 14px;
}
.villa-card--small .villa-card__price__disable,
.villa-card--small .villa-card__price__shift {
  font-size: 12px;
}
.villa-card--no-border .villa-card__content {
  border: none;
  padding-left: 20px;
  padding-left: 20px;
}

.villa-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .villa-two {
    padding: 80px 0;
  }
}
.villa-two .container {
  max-width: 1600px;
}

.villa-card-two {
  position: relative;
  background-color: var(--villoz-white, #fff);
}
.villa-card-two:hover .villa-card-two__content {
  background-color: var(--villoz-white, #fff);
}
.villa-card-two:hover .villa-card-two__image img {
  transform: scale(1.05);
}
.villa-card-two:hover .villa-card-two__price__disable,
.villa-card-two:hover .villa-card-two__price__shift,
.villa-card-two:hover .villa-card-two__address {
  color: var(--villoz-text, #737a83);
}
.villa-card-two:hover .villa-card-two__title {
  color: var(--villoz-black, #132742);
}
.villa-card-two__image {
  position: relative;
  overflow: hidden;
}
.villa-card-two__image img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease, opacity 500ms ease;
  transform: scale(1);
}
.villa-card-two__image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-image: linear-gradient(0deg, rgba(var(--villoz-black2-rgb, 14, 30, 52), 1) 0%, rgba(var(--villoz-black2-rgb, 14, 30, 52), 0) 100%);
  width: 100%;
  height: 100%;
}
.villa-card-two__like {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.2);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  font-size: 14px;
  color: var(--villoz-white, #fff);
}
.villa-card-two__like:hover {
  background-color: var(--villoz-black, #132742);
}
.villa-card-two__flash {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
.villa-card-two__flash__label {
  display: table;
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3.9px 10px;
  margin-bottom: 10px;
}
.villa-card-two__flash__label.off {
  background-color: #f25a43;
}
.villa-card-two__btns {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  max-width: 72px;
  margin-top: -11px;
}
.villa-card-two__btns a {
  display: inline-block;
  width: 36px;
  height: 34px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.villa-card-two__btns a.villoz-image-popup {
  background-image: linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(240, 246, 253) 100%);
}
.villa-card-two__btns a:hover {
  color: var(--villoz-base, #537eac);
}
.villa-card-two__btns__count {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: var(--villoz-base, #537eac);
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 7px;
  font-weight: 600;
  color: var(--villoz-white, #fff);
}
.villa-card-two__content {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  padding: 0 30px 24px;
  z-index: 2;
  transition: all 500ms linear;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-two__content {
    padding: 0 22px 18px;
  }
}
.villa-card-two__ratings {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fcbd14;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.villa-card-two__address {
  font-size: 14px;
  color: #a7bddc;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 1px;
  transition: all 300ms linear;
}
.villa-card-two__title {
  font-size: 24px;
  line-height: 36px;
  margin: 0 0 0px;
  color: var(--villoz-white, #fff);
}
.villa-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.villa-card-two__title a:hover {
  background-size: 100% 1px;
}
.villa-card-two__price {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  line-height: 30px;
  color: var(--villoz-base, #537eac);
  margin: 0 0 0px;
  transition: all 300ms linear;
}
.villa-card-two__price__disable {
  font-size: 14px;
  color: #a7bddc;
  margin-right: 2px;
  text-decoration: line-through;
  transition: all 300ms linear;
}
.villa-card-two__price__shift {
  font-size: 14px;
  color: #a7bddc;
  margin-left: 2px;
  transition: all 300ms linear;
}
.villa-card-two__meta {
  position: relative;
  margin: 0;
  padding: 8px 40px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--villoz-gray, #f0f6fd);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-two__meta {
    padding-left: 18px;
    padding-right: 15px;
  }
}
.villa-card-two__meta li {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.villa-card-two__meta li span {
  display: inline-block;
  font-size: 14px;
  margin-right: 9px;
  line-height: inherit;
  position: relative;
  top: 1px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-two__meta li span {
    margin-right: 2px;
  }
}
.villa-card-two--small {
  position: relative;
}
.villa-card-two--small .villa-card-two__image img {
  min-height: 320px;
  object-fit: cover;
}
.villa-card-two--small .villa-card-two__content {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 11px;
}
.villa-card-two--small .villa-card-two__address {
  font-size: 12px;
  margin-top: 6px;
  margin-bottom: -3px;
}
.villa-card-two--small .villa-card-two__title {
  font-size: 20px;
  line-height: 26px;
}
.villa-card-two--small .villa-card-two__price {
  font-size: 18px;
  line-height: 26px;
}
.villa-card-two--small .villa-card-two__price__disable,
.villa-card-two--small .villa-card-two__price__shift {
  font-size: 12px;
}
.villa-card-two--small .villa-card-two__meta {
  padding-left: 30px;
  padding-right: 30px;
}

.villa-card-list {
  position: relative;
  height: 100%;
}
.villa-card-list--full-width {
  position: relative;
}
@media (min-width: 1200px) {
  .villa-card-list--full-width .villa-card-list__content {
    height: 100%;
    min-height: 324px;
    padding: 72px 50px;
  }
  .villa-card-list--full-width .villa-card-list__btns {
    top: 50px;
    right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-list--full-width .villa-card-list__content {
    padding: 39px 50px;
  }
  .villa-card-list--full-width .villa-card-list__btns {
    top: 50px;
    right: 50px;
  }
}
.villa-card-list .col-lg-5 {
  padding-right: 0;
  width: 42.8%;
}
@media (max-width: 767px) {
  .villa-card-list .col-lg-5 {
    width: 100%;
    padding-right: 15px;
  }
}
.villa-card-list .col-lg-7 {
  padding-left: 0;
  width: 57.2%;
}
@media (max-width: 767px) {
  .villa-card-list .col-lg-7 {
    width: 100%;
    padding-left: 15px;
  }
}
.villa-card-list__image {
  position: relative;
}
.villa-card-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 241px;
}
.villa-card-list__like {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--villoz-black-rgb, 19, 39, 66), 0.2);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  font-size: 14px;
  color: var(--villoz-white, #fff);
}
.villa-card-list__like:hover {
  background-color: var(--villoz-black, #132742);
}
.villa-card-list__flash {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}
.villa-card-list__flash__label {
  display: table;
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3.9px 10px;
  margin-bottom: 10px;
}
.villa-card-list__flash__label.off {
  background-color: #f25a43;
}
.villa-card-list__content {
  position: relative;
  background-color: var(--villoz-white, #fff);
  padding: 31px 30px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-list__content {
    padding-left: 25px;
    padding-right: 22px;
  }
}
@media (max-width: 767px) {
  .villa-card-list__content {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
  }
}
.villa-card-list__btns {
  position: absolute;
  right: 30px;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 767px) {
  .villa-card-list__btns {
    top: 20px;
    right: 20px;
  }
}
.villa-card-list__btns a {
  display: inline-block;
  width: 36px;
  height: 34px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.villa-card-list__btns a.villoz-image-popup {
  background-image: linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(240, 246, 253) 100%);
}
.villa-card-list__btns a:hover {
  color: var(--villoz-base, #537eac);
}
.villa-card-list__btns__count {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: var(--villoz-base, #537eac);
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 7px;
  font-weight: 600;
  color: var(--villoz-white, #fff);
}
.villa-card-list__ratings {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fcbd14;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.villa-card-list__address {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 1px;
}
.villa-card-list__title {
  font-size: 24px;
  line-height: 36px;
  margin: 0 0 0px;
}
.villa-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.villa-card-list__title a:hover {
  background-size: 100% 1px;
}
.villa-card-list__price {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  line-height: 30px;
  color: var(--villoz-base, #537eac);
  margin-bottom: 24px;
}
.villa-card-list__price__disable {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-right: 2px;
  text-decoration: line-through;
}
.villa-card-list__price__shift {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-left: 2px;
}
.villa-card-list__meta {
  position: relative;
  margin: 0;
  padding: 8px 30px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--villoz-gray, #f0f6fd);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-list__meta {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.villa-card-list__meta li {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.villa-card-list__meta li span {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  line-height: inherit;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .villa-card-list__meta li span {
    margin-right: 2px;
  }
}

.villa-page {
  position: relative;
  padding: 43px 0 20px;
}
@media (max-width: 991px) {
  .villa-page {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .villa-page {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.villa-page__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.villa-page__showing-text {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
}
.villa-page__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  line-height: 1;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.villa-page__nav li {
  list-style: none;
  display: inline-block;
  font-size: 22px;
  color: var(--villoz-text, #737a83);
  transition: all 500ms ease;
  cursor: pointer;
}
.villa-page__nav li:hover, .villa-page__nav li.active-btn {
  color: var(--villoz-base, #537eac);
}
.villa-page__showing-sort {
  margin: 0 0 0 27px;
}
@media (max-width: 767px) {
  .villa-page__showing-sort {
    margin: 15px 0 0;
  }
}
.villa-page__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 340px !important;
  font-family: var(--villoz-font, "Plus Jakarta Sans", sans-serif);
}
@media (max-width: 360px) {
  .villa-page__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !important;
  }
}
.villa-page__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.villa-page__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.villa-page__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 64px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--villoz-gray, #f0f6fd) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--villoz-text, #737a83) !important;
  font-size: 14px;
  line-height: 64px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.villa-page__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--villoz-text, #737a83);
}
.villa-page__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
}
.villa-page__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--villoz-text, #737a83);
  background-color: var(--villoz-gray, #f0f6fd);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.villa-page__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.villa-page__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  border-color: var(--villoz-base, #537eac);
}

/*--------------------------------------------------------------
# Villa details
--------------------------------------------------------------*/
.villa-details-one {
  position: relative;
  padding: 53px 0;
}
.villa-details-one__info {
  position: relative;
}
.villa-details-one__address {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 0;
}
.villa-details-one__title {
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 9px;
}
.villa-details-one__price-wrap {
  display: flex;
  align-items: center;
}
.villa-details-one__price {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  line-height: 30px;
  color: var(--villoz-base, #537eac);
}
.villa-details-one__price__disable {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-right: 3px;
  text-decoration: line-through;
}
.villa-details-one__price__shift {
  font-size: 14px;
  color: var(--villoz-text, #737a83);
  margin-left: 2px;
}
.villa-details-one__flash {
  position: relative;
  display: flex;
}
.villa-details-one__flash__label {
  display: table;
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3.9px 10px;
  margin: 0;
  margin-left: 10px;
}
.villa-details-one__flash__label.off {
  background-color: #f25a43;
}
.villa-details-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0 0px 0px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 15px;
}
@media (max-width: 1199px) {
  .villa-details-one__meta {
    margin-left: 0;
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .villa-details-one__meta {
    padding: 0;
    border: none;
    margin: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .villa-details-one__meta {
    display: relative;
    border: none;
    margin: 0;
    padding: 0;
  }
}
.villa-details-one__meta__item {
  position: relative;
  padding: 7px 0 0 64px;
  min-height: 53px;
}
@media (max-width: 767px) {
  .villa-details-one__meta__item {
    margin-top: 20px;
  }
}
.villa-details-one__meta__item:hover .villa-details-one__meta__icon span {
  transform: rotateY(180deg);
}
.villa-details-one__meta__icon {
  width: 43px;
  height: 43px;
  background-color: var(--villoz-gray, #f0f6fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--villoz-base, #537eac);
  position: absolute;
  left: 0;
  top: 0;
}
.villa-details-one__meta__icon span {
  display: block;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.villa-details-one__meta__number {
  font-size: 15px;
  line-height: 1;
  margin: 0 0 9px;
}
.villa-details-one__meta__name {
  margin: 0;
  line-height: 1;
  font-size: 11px;
}

.villa-details-two {
  position: relative;
  background-color: var(--villoz-gray, #f0f6fd);
  border-top: 1px solid var(--villoz-border-color, #d6e2f0);
  padding: 22px 0;
}
.villa-details-two__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .villa-details-two__wrapper {
    display: block;
  }
}
.villa-details-two__reviews {
  display: flex;
  align-items: center;
  color: #fcbd14;
  font-size: 14px;
  letter-spacing: 3px;
}
.villa-details-two__reviews__text {
  margin: 0 0 0 6px;
  color: var(--villoz-text, #737a83);
  letter-spacing: 0;
}
.villa-details-two__btns {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}
@media (max-width: 767px) {
  .villa-details-two__btns {
    margin-top: 10px;
  }
}
.villa-details-two__btns a {
  display: inline-block;
  font-size: 14px;
  color: var(--villoz-text, #737a83);
}
.villa-details-two__btns a:hover {
  color: var(--villoz-base, #537eac);
}
.villa-details-two__btns a span {
  font-size: 12px;
  margin-right: 10px;
}

.villa-details-gallery {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.villa-details-gallery__carousel {
  position: relative;
  margin: 0 auto;
}
.villa-details-gallery__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  text-align: right;
  position: absolute;
  outline: none;
  top: 46%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.villa-details-gallery__carousel.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  z-index: 4;
  left: 20px;
  top: 0;
  width: 52px;
  height: 52px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  transition: all 500ms ease;
  font-size: 16px;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.villa-details-gallery__carousel.owl-carousel .owl-nav .owl-prev:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
@media (min-width: 1400px) {
  .villa-details-gallery__carousel.owl-carousel .owl-nav .owl-prev {
    left: 50px;
  }
}
.villa-details-gallery__carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 0;
  width: 52px;
  height: 52px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  transition: all 500ms ease;
  font-size: 16px;
  border-radius: 50%;
  padding: 0 !important;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.villa-details-gallery__carousel.owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--villoz-base, #537eac);
  color: var(--villoz-white, #fff);
}
@media (min-width: 1400px) {
  .villa-details-gallery__carousel.owl-carousel .owl-nav .owl-next {
    right: 50px;
  }
}
.villa-details-gallery__carousel:hover .owl-nav .owl-prev {
  left: 30px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1400px) {
  .villa-details-gallery__carousel:hover .owl-nav .owl-prev {
    left: 60px;
  }
}
.villa-details-gallery__carousel:hover .owl-nav .owl-next {
  right: 30px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1400px) {
  .villa-details-gallery__carousel:hover .owl-nav .owl-next {
    right: 60px;
  }
}
.villa-details-gallery__item {
  position: relative;
}
.villa-details-gallery__item img {
  width: 100%;
  height: auto;
}
.villa-details-gallery__btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 40px;
  z-index: 2;
  width: 1170px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .villa-details-gallery__btns {
    width: 920px;
  }
}
@media (max-width: 991px) {
  .villa-details-gallery__btns {
    width: 700px;
  }
}
@media (max-width: 767px) {
  .villa-details-gallery__btns {
    width: 100%;
    right: 40px;
    left: auto;
  }
}
.villa-details-gallery__btns a {
  display: inline-block;
  width: 36px;
  height: 34px;
  background-color: var(--villoz-white, #fff);
  color: var(--villoz-black, #132742);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.07);
}
.villa-details-gallery__btns a.villoz-image-popup {
  background-image: linear-gradient(90deg, rgba(254, 253, 253, 0) 0%, rgb(240, 246, 253) 100%);
}
.villa-details-gallery__btns a:hover {
  color: var(--villoz-base, #537eac);
}
.villa-details-gallery__btns__count {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: var(--villoz-base, #537eac);
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 7px;
  font-weight: 600;
  color: var(--villoz-white, #fff);
}
/* Aanvulling */

.emailinput2 {
    display: none !important;
    visibility: hidden;
}
img.FrontRental {height: 300px;} .mr-10 {margin-right: 10px;}
.LogoTop {width: 270px; height: auto;}
@media (max-width: 575px) {
.LogoTop {width: 140px; height: auto;}
}
img.FrontImage {object-fit:cover;object-position:right bottom;overflow:hidden; width:100%; height: 100%;}
a.NavMobSoc {display: inline-block; margin-right: 15px;

}
.trostict {color: var(--villoz-text-dark, #859ab7);}
.footerBG {background-image: url(https://www.arubavillarentals.com/images/backgrounds/palm-leaf-close-up-01.jpg);  no-repeat center center fixed; -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.page-header__bg { background-image: url(https://www.arubavillarentals.com/images/headers/drone-photo-Eagle-Beach-01.jpg); }
button.nav-link {width: 90%; background-color: #DDDDDD; color: #537eac; padding: auto 10px; text-align:left; border: 1px solid #DDDDDD;border-radius: 4px;margin-bottom:8px;}
button.active, button.active:hover, button.active:focus, button.nav-link:hover {background-color: var(--villoz-base, #537eac); color: var(--villoz-white, #fff);border: 1px solid #537eac;border-radius: 4px;}
li.InfoVilla {display: inline-block; width: 45%; margin-right:10px; padding: 0px;}
table.calendarAvail{font-size:13px;line-height:17px;width:90%}
table.calendarAvail td,table.calendarAvail th{padding:3px}
table.calendarAvail td.dagnummer,label.dagnummer,.dagnummer{background:#E7FFDB;color:#000}
table.calendarAvail td.dagbezet,label.dagbezet,.dagbezet{background:#FFA3A3;color:#000}
table.calendarAvail td.dagaanbieding,label.dagaanbieding,.dagaanbieding{background:#B8FFFF;color:#000}
table.calendarAvail td.MonthName{background:#7A7A7A;color:#FFF;font-weight:700}
img.IntroSlide {object-fit:cover;object-position:0 0;overflow:hidden;height: 360px;}
img.StayRental {object-fit:cover;object-position:0 0;overflow:hidden;height: 270px;}
img.ImgTop{object-position:0 0}
img.ImgT20{object-position:0 20%}
img.ImgMid{object-position:0 50%}
img.ImgT80{object-position:0 80%}
img.ImgBot{object-position:left bottom}
    .page-header__titleRental {
        font-size: 20px;
        line-height: 1.2;
        color:#FFF;font-weight:700
    }
@media (min-width: 992px) {
    .page-header__titleRental {
        font-size: 24px;
        line-height: 1.2;
    }
}

.table-pricing th {
        --bs-table-color: #FFFFFF;
    --bs-table-bg: #f0f6fd;
    --bs-table-border-color: #f0f6fd;
    --bs-table-active-bg: #bacbe6;
background-color: var(--villoz-base, #f0f6fd);
color: #FFFFFF;
}
@media (max-width: 992px) {
table.prijslijst {
    font-size: 12px;
    line-height: 18px;
    padding: 3px;
}
}
#map {width: 100%;
    height: 400px;
    border-radius: 10px;
    z-index:1;
}
@media (max-width: 698px) {
#map {height: 250px;
}
}