@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css);
@import url(https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.min.css);
:root {
  --primary-color: $primary-color;
  --secondary-color: $secondary-color;
  --tertiary-color: #f8f7f5;
  /* --tertiary-dark-color: #8fb417; */
  --black-color: var(--primary-color);
  --green-color: var(--secondary-color);
  /* --green-color: var(--tertiary-color);
  --green-dark-color: var(--tertiary-dark-color); */
  /* transparent color */
  --transparent-color: #ffffff00;
  /* bg-colors */
  --primary-bg-color: #ffffff;
  --secondary-bg-color: var(--secondary-color);
  --tertiary-bg-color: var(--tertiary-color);
  /* overlay color */
  --overlay-color: var(--primary-color) !important;
  /* text color */
  --font-size: 16px;
  --font-weight: 500;
  --primary-text-color: var(--primary-color);
  --secondary-text-color: var(--secondary-color);
  --tertiary-text-color: var(--tertiary-color);
}


:root {
  --gradient-primary-color: rgb(255, 255, 255);
  --gradient-secondary-color: rgba(0, 0, 0, 0);
}

/* gradient / overlays */
.gradient,
.overlay,
.overlay-green {
  position: relative;
}

.gradient > *,
.overlay > *,
.overlay-green > * {
  position: relative;
  z-index: 2;
}

.gradient::after,
.overlay::after,
.overlay-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.overlay::after,
.overlay-green::after {
  opacity: 0.9 !important;
}

.overlay::after,
.overlay-green::after {
  background-color: #000000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.overlay-green::after {
  background-color: #46a01b;
}

.gradient > *,
.overlay > * {
  z-index: 2;
}

.gradient-left::after {
  background: linear-gradient(to right, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-right::after {
  background: linear-gradient(to left, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-top::after {
  background: linear-gradient(to bottom, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-bottom::after {
  background: linear-gradient(to top, var(--secondary-color) 30%, var(--transparent-color) 70%);
}

.gradient-bg::after {
  background: linear-gradient(to right, var(--secondary-b-color) 30%, var(--secondary-color) 70%);
}

.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
}

.shadow {
  box-shadow: rgba(125, 125, 125, 0.15) 0px 0px 15px 0px;
}

.shadow-0 {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.shdaow-1 {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.fa-family {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

@media (min-width: 992px) {
  .absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }
}
@media (max-width: 992px) {
  .absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }
}
/* ul arrow */
/* ul list custom style */
ul {
  padding: 0;
}

ul li {
  list-style: none;
  margin-top: 8px;
  display: flex;
}

/* when using fontawesome icon  */
ul li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  content: "\f111";
  color: #9ea57d !important;
  margin-right: 15px;
  font-size: 12px;
  position: relative;
  top: -2px;
  /* background: var(--tertiary-color); */
}

/* when using image  */
/* ul li:before {
  content: url(../images/leaf-icon.png);  
  padding-right: 14px;
  margin-top: 1px;
  margin-right: 16px;
  width: 26px; 
  height: 24px; 
} */
*.ul-reset ul,
*.ul-reset ul li:before {
  padding: 0;
  margin: 0;
  list-style: none;
}

*.ul-reset ul li:before {
  content: none;
}

*.ul-white ul li:before,
.bg-secondary ul li:before,
.bg-tertiary ul li:before {
  color: #fff;
}

body {
  font-size: 20px;
  font-family: "Rajdhani", sans-serif;
  color: #373735;
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0.1rem;
  line-height: 1.1em;
  font-weight: 600;
  margin: 0;
  color: #383836;
}

h1 {
  color: #e8ebd8;
  font-size: 82px;
  line-height: 1em;
  letter-spacing: 0.1rem;
  opacity: 0.7;
}
@media (min-width: 992px) {
  h1 {
    max-width: 1100px;
  }
}

h2 {
  font-size: 38px;
  line-height: 1em;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

@media (max-width: 992px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
}
:root {
  --col-default-padding: 30px;
}

.breadcrumb > li:last-child {
  color: var(--secondary-color);
  font-weight: 700;
}

.text-primary {
  color: var(--primary-text-color) !important;
}

.text-secondary {
  color: var(--secondary-text-color) !important;
}

a.text-white,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: #fff !important;
}

/* grid layout */
.row {
  align-items: center;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

/* round corners */
.rounded-4 {
  border-radius: 0.4rem !important;
}

.rounded-5 {
  border-radius: 0.5rem !important;
}

.accordion .card-body p:last-child {
  margin-bottom: 0;
}

.arrow-fontawesome, .btn::after,
.btn-arrow::after, .btn-secondary::after,
.btn-secondary:focus::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  margin-right: 0px;
  font-weight: 900;
  font-size: 18px;
  opacity: 1;
  transition: all 0.2s;
  margin-left: 15px;
  position: relative;
  left: 0%;
  color: #fff !important;
  vertical-align: middle;
}
.arrow-fontawesome:hover::after, .btn:hover::after,
.btn-arrow:hover::after, .btn-secondary:hover::after {
  left: 3%;
  opacity: 1;
  color: #fff !important;
}

/* when using image icon */
.arrow-img::after {
  /* content: url(../images/leaf-icon.png);
  margin-left: 16px; */
  /* filter: invert(0%) sepia(0%) saturate(3207%) hue-rotate(132deg) brightness(1000%) contrast(100%); */
}

/* buttons css */
.btn,
.btn:focus,
.btn:hover {
  font-weight: 600 !important;
  border: 1px solid transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 15px !important;
  padding: 0.8rem 2rem !important;
  position: relative;
  text-transform: initial;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.3) !important; */
}

.btn-primary,
.btn-primary:focus {
  color: #fff !important;
  background: rgb(146.7568181818, 154.5681818182, 109.9318181818) !important;
}
.btn-primary:hover,
.btn-primary:focus:hover {
  color: #fff !important;
  background-color: rgb(119.3659090909, 126.1590909091, 87.3409090909) !important;
}

.btn-secondary,
.btn-secondary:focus {
  color: #fff !important;
  background: rgb(146.7568181818, 154.5681818182, 109.9318181818);
}
.btn-secondary:hover,
.btn-secondary:focus:hover {
  color: #fff !important;
  background-color: #f4f0e8 !important;
}
.btn-secondary::after,
.btn-secondary:focus::after {
  color: #fff !important;
}
.btn-secondary:hover::after,
.btn-secondary:focus:hover::after {
  color: #000 !important;
}

/* when using font awesome icon */
.btn-link,
.btn-link:hover {
  padding: 0 !important;
}

* {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat !important;
  word-break: initial !important;
}

html,
body {
  scroll-behavior: smooth;
}
html img,
body img {
  max-width: 100%;
}
html section,
body section {
  padding: 120px 0;
}
@media (max-width: 992px) {
  html section,
  body section {
    padding: 60px 15px;
  }
  html section [class*=col]:last-child,
  body section [class*=col]:last-child {
    margin-bottom: 0px;
  }
}
html section:first-child,
body section:first-child {
  margin-top: 0 !important;
}
html section:last-child,
body section:last-child {
  margin-bottom: 0 !important;
}
html section .section-heading,
body section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  html section .section-heading,
  body section .section-heading {
    width: 80%;
    margin-inline: auto;
  }
}
html section .section-heading .heading-label,
body section .section-heading .heading-label {
  display: block;
  color: var(--tertiary-co lor);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
}
html section .section-heading h2,
body section .section-heading h2 {
  margin-bottom: 20px;
}
html section h2,
body section h2 {
  margin-bottom: 20px;
}
html section .btn,
body section .btn {
  margin-top: 30px !important;
}
@media (max-width: 992px) {
  html section .btn,
  body section .btn {
    margin-top: 15px !important;
  }
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: var(--primary-color);
  word-break: break-all;
}

a:not(.reset),
a:not(.reset):hover,
a:not(.reset):focus {
  font-weight: 600;
  color: var(--primary-color);
}

a:not(.reset):hover {
  color: var(--secondary-color);
}

.testi-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 1;
  font-size: 74px;
  color: var(--secondary-text-color);
}
@media (max-width: 992px) {
  .testi-carousel .owl-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .div-404 {
    min-height: 300px;
    max-width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ---------------------------- Utils ------------------------------ */
/* gradient bg */
.gradient-bg-down {
  background: linear-gradient(to bottom, #f7faff 0%, #fff 20%, #fff 100%) !important;
}

.gradient-bg-up {
  background: linear-gradient(to top, #f7faff 0%, #fff 20%, #fff 100%) !important;
}

/* quote marks */
/* testimonials css start */
.quote {
  color: var(--secondary-text-color);
  font-size: 22px !important;
  font-weight: 600;
  margin-right: 8px;
}

.page-kontakt .mapouter,
.page-kontakt .gmap_canvas,
.page-kontakt .gmap_iframe {
  height: 600px !important;
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 600px;
}

@media (min-width: 992px) {
  .quote-start {
    margin-right: 8px;
  }
  .quote-end {
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-brand img {
    max-width: 180px;
    margin-bottom: 5px;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding: 2rem 0;
  }
  .navbar .container {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .navbar {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background: linear-gradient(135deg, #f4f0e8, rgb(146.7568181818, 154.5681818182, 109.9318181818), rgb(146.7568181818, 154.5681818182, 109.9318181818));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    border-bottom: 1px solid #ddd;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .navbar-collapse {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 992px) {
  ul.navbar-nav {
    align-items: center;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  ul.navbar-nav {
    gap: 0.6rem;
    margin-block: 60px;
  }
}
@media (max-width: 992px) {
  .navbar-light .navbar-toggler:focus {
    border: 0;
    box-shadow: none !important;
  }
}
div#navbarSupportedContent .navbar-nav .nav-link {
  position: relative;
  color: #373735;
  font-size: 22px;
  position: relative;
  text-decoration: none;
  padding: 8px 0 !important;
  display: inline-block;
}
@media (min-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-link:hover {
    color: rgb(105.1090909091, 111.0909090909, 76.9090909091) !important;
  }
}
div#navbarSupportedContent .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* start slightly below */
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: translateY(6px); /* slide from lower position */
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@media (min-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-link:hover::after {
    opacity: 1;
    transform: translateY(0); /* moves up into position */
  }
}
@media (max-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-link {
    font-size: 26px;
  }
}
div#navbarSupportedContent .navbar-nav .nav-item {
  margin: 0;
}
@media (min-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-item:not(:last-child) {
    margin-right: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-item {
    width: 100%;
    justify-content: center;
  }
}
div#navbarSupportedContent .navbar-nav .nav-item .nav-link {
  padding: 0;
  line-height: 1;
}
@media (max-width: 992px) {
  div#navbarSupportedContent .navbar-nav .nav-item .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    display: block;
  }
}
@media (max-width: 992px) {
  div#navbarSupportedContent .navbar-nav {
    margin: 2rem 0;
  }
}

/* footer */
footer {
  background-color: #373735;
  color: #fff;
  padding: 120px 0;
  align-items: flex-start !important;
  background-size: initial !important;
  background-position: left center !important;
  font-weight: 400 !important;
  position: relative;
}
@media (max-width: 992px) {
  footer {
    padding-block: 60px;
    padding-bottom: 60px;
  }
}
footer a {
  font-weight: normal !important;
}
footer a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
footer ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
footer ul li {
  margin-block: 0 !important;
}
footer ul li:before {
  content: none;
  margin-right: 0;
  margin-top: 0;
  /* background: var(--tertiary-color); */
}
footer .copy-right {
  margin-top: 15px;
}
footer .row {
  align-items: flex-start;
}
footer .row .heading {
  font-weight: 600;
  margin-bottom: 4px;
  color: #f4f0e8;
}
footer .row .col-links {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 992px) {
  footer .row .col-links {
    display: block;
    text-align: center;
  }
}
@media (max-width: 992px) {
  footer .row .col-links > div {
    margin-bottom: 30px;
  }
  footer .row .col-links > div a {
    margin: auto;
  }
}
footer .row .col-links span {
  color: #000 !important;
  font-weight: 600;
  font-size: 16px;
  display: block;
}
footer .row .col-links ul {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
footer .row .col-links ul li:last-of-type {
  margin-bottom: 0 !important;
}
footer .row .col-logo img {
  width: 70px;
}
footer .row .social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: start;
}
footer .row .social-icons a {
  margin-right: 15px;
}
footer .row .social-icons a:last-of-type {
  margin-right: 0 !important;
}
footer .row .social-icons a:hover {
  text-decoration: none !important;
}
footer .row .social-icons a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #a6ac86;
  border-radius: 50%;
}
footer .row .social-icons a span:hover {
  background: #737953;
  text-decoration: none;
}
footer .row .social-icons a span i {
  font-size: 24px;
  color: #fff;
}
footer .logo-bottom {
  margin-top: 60px;
  text-align: center;
}

header {
  position: relative;
}
header .container {
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  header .container {
    height: 550px !important;
  }
}
@media (max-width: 992px) {
  header .container {
    height: 350px !important;
  }
}
header .container .div-text {
  z-index: 1;
  padding: 0 !important;
  font-size: 120px;
  color: #fff !important;
  text-align: center;
}
header::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 0;
  opacity: 0.6;
}
header .symbol {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
  display: none;
}
header.vegas-container {
  overflow: initial !important;
}

.vegas-animation-bw {
  animation: kenburns ease-out;
}

@keyframes kenburns {
  0% {
    transform: scale(1.5) skew(0deg);
  }
  100% {
    transform: scale(1) skew(-10deg);
  }
}
.media-text-full {
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .media-text-full {
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .media-text-full > div {
    width: 50%;
  }
}
.media-text-full .div-img {
  min-height: 600px;
  background-size: cover;
}
@media (max-width: 992px) {
  .media-text-full .div-img {
    min-height: 300px;
  }
}
.media-text-full .div-text {
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .media-text-full .div-text {
    padding: 60px 30px;
  }
}
@media (min-width: 992px) {
  .media-text-full .div-text > div {
    max-width: 600px;
  }
}

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* bigger for smooth movement */
  background-image: url(../images/middle-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .parallax-bg::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  z-index: 0;
  opacity: 0.6;
}
.hero .container {
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 992px) {
  .hero .container {
    height: 400px;
  }
}
.hero .container h2 {
  z-index: 1;
  padding: 0 !important;
  font-size: 80px;
  color: #e8ebd8 !important;
  text-align: center;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .hero .container h2 {
    font-size: 40px;
  }
}
.hero .container::before {
  position: absolute;
  background-image: url(../images/arrow.png);
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 200px;
  height: 250px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .hero .container::before {
    height: 100px;
    left: 30px;
  }
}

.footer-cta {
  padding: 0;
  position: relative;
  background-color: #f4efe9;
}
.footer-cta .media-text-full {
  flex-direction: initial !important;
}
@media (max-width: 992px) {
  .footer-cta .media-text-full {
    flex-direction: column-reverse !important;
  }
}
.footer-cta .media-text-full .div-img {
  background-position: top center !important;
}
.footer-cta .media-text-full .div-text {
  background-color: none !important;
}
.footer-cta .media-text-full .names {
  text-decoration: underline;
  text-underline-offset: 12px;
}

body {
  overflow-x: hidden;
}
body main {
  background-color: #fff;
  z-index: 0;
  position: relative;
}

@media (min-width: 1200px) {
  .page-home header .container {
    height: 750px;
  }
}
.page-home header .symbol {
  display: block;
}
.page-home header h1 .hej {
  opacity: 0.6;
  font-weight: 500;
}
.page-home .s-1 {
  background: #f4efe9;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .page-home .s-1 {
    padding-top: 100px !important;
  }
}
.page-home .s-1 .boxes {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1200px) {
  .page-home .s-1 .boxes {
    flex-direction: column;
    row-gap: 30px;
  }
}
.page-home .s-1 .boxes .box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.5 ease-in-out;
}
.page-home .s-1 .boxes .box:hover .div-img::before {
  transform: scale(1.05) translateY(-10px);
}
.page-home .s-1 .boxes .box:hover img {
  transform: scale(1.05) translateY(-10px);
}
.page-home .s-1 .boxes .box:hover h3 {
  color: rgb(76.5954545455, 80.9545454545, 56.0454545455);
}
.page-home .s-1 .boxes .box .div-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .s-1 .boxes .box .div-img::before {
  position: absolute;
  content: "";
  z-index: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgb(146.7568181818, 154.5681818182, 109.9318181818);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .page-home .s-1 .boxes .box .div-img::before {
    width: 210px;
    height: 210px;
  }
}
.page-home .s-1 .boxes .box .div-img img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border: 4px solid #f4f0e8; /* Inner border */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .page-home .s-1 .boxes .box .div-img img {
    width: 200px;
    height: 200px;
  }
}
.page-home .s-1 .boxes .box h3 {
  margin-top: 30px;
  max-width: 200px;
  color: rgb(146.7568181818, 154.5681818182, 109.9318181818);
}
.page-home .s-1 .boxes .div-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .page-home .s-1 .boxes .div-sep {
    width: 90px;
    height: 250px;
  }
}
.page-home .s-2 {
  padding: 0;
}
@media (min-width: 992px) {
  .page-home .s-2 .media-text-full:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
.page-home .s-2 .div-text > div {
  max-width: 700px;
}
.page-home .s-2 .div-text .btn-link {
  margin-top: 15px;
  text-decoration: underline;
  display: inline-block;
  font-weight: 500;
}
.page-home .s-2 .div-points {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 992px) {
  .page-home .s-2 .div-points {
    padding-block: 100px;
  }
}
.page-home .s-2 .div-points h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.page-home .s-2 .div-points .div-ul {
  margin-top: 0px;
}
.page-home .s-2 .div-points .div-ul ul {
  margin-bottom: 0;
}
.page-home .s-2 .div-points .div-ul ul li {
  display: inline-block;
  margin-right: 16px;
  margin-block: 0;
  font-size: 20px;
}
.page-home .s-5 {
  background-image: url(../images/testi-bg.jpg);
  position: relative;
}
@media (min-width: 992px) {
  .page-home .s-5 {
    padding-block: 160px;
  }
}
@media (max-width: 992px) {
  .page-home .s-5 {
    padding-top: 100px;
  }
}
.page-home .s-5 .quote {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 0%;
  left: 25%;
  transform: translate(-50%, -40%);
}
@media (max-width: 992px) {
  .page-home .s-5 .quote {
    width: 150px;
    height: 150px;
  }
}
.page-home .s-5 .section-heading {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .page-home .s-5 .section-heading {
    margin-bottom: 15px;
  }
}
.page-home .s-5 .section-heading h2 {
  color: #fff;
}
@media (min-width: 992px) {
  .page-home .s-5 .review-slider {
    margin: 0 auto;
  }
}
.page-home .s-5 .review-slider .item {
  text-align: center;
  padding: 2rem;
}
@media (min-width: 992px) {
  .page-home .s-5 .review-slider .item {
    padding: 0rem 15rem;
  }
}
.page-home .s-5 .review-slider .item img {
  margin: 0 auto 3rem;
}
.page-home .s-5 .review-slider .item p,
.page-home .s-5 .review-slider .item h4 {
  color: #fff;
}
.page-home .s-5 .review-slider .item p {
  font-style: italic;
  font-size: 24px;
  margin-bottom: 30px;
}
.page-home .s-5 .review-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0px, -90%);
  font-size: 4rem;
  opacity: 0.5;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}
.page-home .s-5 .review-slider .prev--arrow.slick-arrow {
  left: 5%;
}
.page-home .s-5 .review-slider .next--arrow.slick-arrow {
  right: 5%;
}
.page-home .s-booking {
  display: flex;
  align-items: center;
  background: #e8ebd8;
}
.page-home .s-booking .section-heading {
  margin-bottom: 30px;
}
.page-home .s-booking .container {
  border-radius: 16px;
  overflow: hidden;
  /* Custom arrow */
}
@media (min-width: 992px) {
  .page-home .s-booking .container {
    background: #fff;
  }
}
@media (min-width: 992px) {
  .page-home .s-booking .container {
    border: 6px solid #fff;
  }
}
.page-home .s-booking .container .section-heading {
  text-align: left;
  width: 100%;
}
.page-home .s-booking .container .row {
  align-items: stretch;
}
@media (max-width: 992px) {
  .page-home .s-booking .container .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 992px) {
  .page-home .s-booking .container .col-form {
    padding: 0;
    margin-bottom: 30px;
  }
}
.page-home .s-booking .container .col-form .div-form {
  padding: 60px 30px;
}
@media (max-width: 992px) {
  .page-home .s-booking .container .col-form .div-form {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
  }
}
.page-home .s-booking .container .col-form .div-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-home .s-booking .container .col-form .div-form form .div-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 992px) {
  .page-home .s-booking .container .col-form .div-form form .div-row {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .page-home .s-booking .container .col-form .div-form form .div-row p {
    width: 33%;
  }
}
.page-home .s-booking .container .col-form .div-form form .div-row input,
.page-home .s-booking .container .col-form .div-form form .div-row select,
.page-home .s-booking .container .col-form .div-form form .div-row textarea {
  background: #fff;
  padding: 12px 18px;
  padding-right: 6px;
  border: 2px solid rgb(180.4863636364, 185.8636363636, 155.1363636364);
  border-radius: 8px;
  outline: none;
}
@media (min-width: 992px) {
  .page-home .s-booking .container .col-form .div-form form .div-row input,
  .page-home .s-booking .container .col-form .div-form form .div-row select,
  .page-home .s-booking .container .col-form .div-form form .div-row textarea {
    width: 100%;
  }
}
.page-home .s-booking .container .col-form .div-form form .div-row textarea {
  width: 100%;
  height: 180px;
}
.page-home .s-booking .container .col-form .div-form form .div-row select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: 2em !important; /* make the arrow bigger */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 992px) {
  .page-home .s-booking .container .col-form .div-form form .text-area p {
    width: 100%;
  }
}
.page-home .s-booking .container .col-form .div-form .btn {
  font-size: 22px;
  display: block;
  margin-top: 15px !important;
  padding-inline: 60px !important;
}
.page-home .s-booking .container .col-img {
  background: #f4f0e7;
  padding: 30px;
  border-radius: 16px;
}
@media (min-width: 992px) {
  .page-home .s-booking .container .col-img {
    padding: 40px;
    padding-top: 60px;
  }
}
.page-home .s-booking .container .col-img p {
  display: flex;
  margin-bottom: 20px;
}
.page-home .s-booking .container .col-img p i {
  margin-right: 20px;
  margin-top: 3px;
  width: 18px;
}
.page-home .s-booking .container .col-img p a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.page-home .s-booking .container .select-wrapper {
  position: relative;
  display: inline-block;
}
.page-home .s-booking .container .select-wrapper select {
  appearance: none; /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px; /* space for your custom arrow */
}
.page-home .s-booking .container .select-wrapper::after {
  content: "▼"; /* or use an SVG background */
  position: absolute;
  right: 10px; /* <-- move the arrow anywhere you want */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* click goes to the select */
}
.page-home .s-booking .container .btn {
  font-size: 24px;
  display: block;
  margin-top: 15px !important;
  padding-inline: 60px !important;
}
.page-home .s-map {
  padding: 0;
}
@media (max-width: 992px) {
  .page-home .s-map {
    height: 550px !important;
  }
}
.page-home .footer-cta {
  background-color: #fff;
}
.page-home footer {
  margin-top: -10px;
}/*# sourceMappingURL=site.css.map */