<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Dienstag";
  font-weight: 300;
  src: url("./../fonts//Dienstag/Dienstag-Light.ttf");
}
@font-face {
  font-family: "Dienstag";
  font-weight: normal;
  src: url("./../fonts/Dienstag/Dienstag-Regular.ttf");
}
@font-face {
  font-family: "Dienstag";
  font-weight: 500;
  src: url("./../fonts/Dienstag/Dienstag-Medium.ttf");
}
@font-face {
  font-family: "Dienstag";
  font-weight: bold;
  src: url("./../fonts/Dienstag/Dienstag-Bold.ttf");
}
@font-face {
  font-family: "Dienstag";
  font-weight: 900;
  src: url("./../fonts/Dienstag/Dienstag-Black.ttf");
}
/* Roboto */
@font-face {
  font-family: "Roboto";
  font-weight: normal;
  src: url("./../fonts/Roboto/Roboto-Regular.ttf");
}
/* Inter */
@font-face {
  font-family: "inter";
  font-weight: normal;
  src: url("./../fonts/Inter/Inter-Regular.ttf");
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  position: relative;
}

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

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

img {
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.main {
  margin-top: 120px;
  z-index: 3;
  position: relative;
}

.btn-primary {
  background: #f46523;
  padding: 1rem 3rem;
  border-radius: 50px;
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.btn-primary:hover {
  color: #fff;
  background: #dc5b20;
}

/* Image container */
.img-container {
  overflow: hidden;
  cursor: pointer;
}
.img-container img {
  transition: all ease-in-out 0.5s;

  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-container:hover img {
  transform: scale(1.2);
}

/* fonts */
.font-dienstag {
  font-family: "Dienstag";
}
.font-inter {
  font-family: "inter";
}
.font-bolder {
  font-weight: bolder;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: normal;
}
.font-lighter {
  font-weight: lighter;
}

/* colors */
.color-midnight-sapphire {
  color: #001145;
}
.color-slate-gray {
  color: #888888;
}

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

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

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

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 120px;
  z-index: 997;
  transition: all 0.5s ease-in-out;
  background: #fff;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #000000;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover &gt; a {
  color: #f46523;
}
.navbar .btn-gt {
  background: #f46523;
  padding: 0px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  display: flex;
  border: 0;
  transition: all ease-in-out 0.3s;
}
.navbar .btn-gt a {
  color: #fff;
  padding-right: 10px;
  border-right: 1px solid #fff;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #f46523;
  padding: 10px 20px;
  margin-left: 0px;
  border-radius: 0px 50px 50px 0px;
  color: #fff;
  display: flex;
  border: 0;
  transition: all ease-in-out 0.3s;
}
.navbar .getstarted img {
  width: 30px;
  height: 30px;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background-color: #f46523;
}
.navbar .getstarted div {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.navbar .getstarted span {
  white-space: nowrap;
}

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

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

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

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover &gt; a {
  color: #94c045;
}

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

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

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

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

  .navbar .dropdown .dropdown:hover &gt; ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #3c4133;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
/**
* Mobile 
*/
.mobile {
  padding: 0px;
  text-align: center;
  position: fixed;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0px;
}

/* Define keyframes for appear and disappear animation */
@keyframes appearDisappear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mobile a {
  color: #fff;
}
.mobile a i {
  color: #fff;
  animation: appearDisappear 2s infinite;
  font-size: 24px;
}
.mobile .reserve-btn {
  background-color: #f46523;
  padding: 6px 12px;
}
.mobile .search-btn-m {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .reserve-btn a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.search,
.search:focus {
  background: transparent;
  border: 0;
  transition: all ease-in-out 0.3s;
}
.search img {
  padding: 3px;
}

.search div {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.search span {
  white-space: nowrap;
}
@media (min-width: 990px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 990px) {
  .desktop {
    display: none;
  }
  #header {
    padding-top: 40px;
    height: 120px;
  }
}
/**
* Mobile Navigation 
*/

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 36, 29, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.navbar-mobile ul li:last-child {
  border-bottom: 0;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover &gt; a {
  color: #94c045;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 1rem auto 0 auto;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover &gt; a {
  color: #94c045;
}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 60px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
}

.breadcrumbs .breadcrumb-hero {
  text-align: center;
  background: #94c045;
  padding: 20px 0;
  color: #fff;
}

.breadcrumbs .breadcrumb-hero h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-hero p {
  font-size: 14px;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 2rem;
}
.hero h1 {
  font-family: "Dienstag";
  color: #0f172a;
  font-size: 4.5rem;
  text-align: center;
  font-weight: bolder;
}
.hero p {
  font-family: "Roboto";
  text-align: center;
  font-size: 1.125rem;
  padding: 0 5rem;
  margin-top: 3rem;
  color: #0f172a;
  line-height: 160%;
}
.hero img {
  border-radius: 14px;
}

.hero .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

@media (max-width: 1300px) {
  .hero h1 {
    font-size: 4rem;
  }
  .hero {
    padding-top: 8rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 525px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    padding: 0 3.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero p {
    padding: 0 1rem;
  }
  .hero .hero-img {
    margin-top: 5rem;
  }
}
@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}
@media (min-width: 1300px) {
  .hero {
    margin-top: 8rem;
  }
}
/*--------------------------------------------------------------
# Search Panel
--------------------------------------------------------------*/

.search-panel {
  background-color: rgba(0, 0, 0, 0.9);
  height: 80vh;
  visibility: hidden;
  padding: 0 1rem;
  position: fixed;
  top: -80vh;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  transition: all ease-in-out 0.5s;
}
.search-panel.visible {
  visibility: visible;
  top: 0;
}

.search-panel h2 {
  font-size: 4rem;
  margin-top: 10rem;
  margin-bottom: 2rem;
}
.search-panel .btn-close {
  height: 2rem;
  width: 2rem;
  background-color: transparent;
  box-shadow: none;
}

.search-panel .search-input {
  display: flex;
  justify-content: stretch;
  column-gap: 1rem;
  border: 1px solid #ffffff;
  padding: 0.5rem;
  border-radius: 3.125rem;
}
.search-panel .search-input input[type="text"] {
  border: 0;
  outline: 0;
  width: 100%;
  background-color: transparent;
  color: #fff;
  margin-left: 1rem;
}
.search-panel .search-input button {
  width: 10rem;
  border: 0;
  outline: 0;
  background-color: #f46523;
  padding: 0.8rem;
  border-radius: 2rem;
  transition: all ease-in-out 0.3s;
}
.search-panel .search-input button:hover {
  background-color: #dc5b20;
}
.search-panel .search-input button img {
  width: 1.5rem;
}

@media (max-width: 768px) {
  .search-panel h2 {
    font-size: 3rem;
  }
  .search-panel {
    height: 100vh;
  }
}
@media (max-width: 426px) {
  .search-panel h2 {
    font-size: 2rem;
  }
  .search-panel .search-input button {
    width: 8rem;
  }
}

@media (max-width: 375px) {
  .search-panel h2 {
    font-size: 1.7rem;
  }
  .search-panel .search-input button {
    width: 3rem;
  }
}

#search-results {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#search-results a h3 {
  font-size: 18px;
  font-weight: 900;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#search-results p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}
/*--------------------------------------------------------------
# Help and Guide Secton
--------------------------------------------------------------*/
.help-guide {
  background-color: #f3f3f3;
  margin-top: 7rem;
  padding: 0 1rem;
}

.help-guide h2 {
  font-size: 2.25rem;
  font-family: "Dienstag";
}

.help-guide .image-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}

.help-guide .image-grid-container .img-container {
  border-radius: 1.625rem;
}

.help-guide .image-grid-container .hg-img-wrapper:nth-child(1) {
  margin-top: 4rem !important;
}
.help-guide .image-grid-container .hg-img-wrapper:nth-child(3) {
  margin-top: 7rem !important;
}

.help-guide .content {
  margin-top: 5rem;
}

.help-guide .content h2 {
  font-family: "Dienstag";
  color: #000000;
}
.help-guide .content p {
  color: #2c2c2c;
}

@media (max-width: 1400px) {
  .help-guide .content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 1200px) {
  .help-guide .content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .help-guide {
    margin-top: 5rem;
  }
  .help-guide .content h2 {
    font-size: 2rem;
  }
  .help-guide .image-grid-container {
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .help-guide .content {
    padding-bottom: 2rem;
  }
}

@media (max-width: 565px) {
  .help-guide .content h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 525px) {
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(1) {
    margin-top: 3rem !important;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(3) {
    margin-top: 6rem !important;
  }
}
@media (max-width: 488px) {
  .help-guide .content h2 {
    font-size: 1.5rem;
  }
  .help-guide .image-grid-container {
    grid-gap: 7px;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(1) {
    margin-top: 2.5rem !important;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(3) {
    margin-top: 5rem !important;
  }
}
@media (max-width: 437px) {
  .help-guide .content h2 {
    font-size: 1.2rem;
  }
  .help-guide h2 {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  .help-guide h2 {
    font-size: 1.7rem;
  }
  .help-guide .content h2 {
    font-size: 1rem;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(1) {
    margin-top: 2rem !important;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(3) {
    margin-top: 4rem !important;
  }
  .help-guide .image-grid-container {
    margin-top: 2rem;
  }
  .help-guide .content {
    margin-top: 3rem;
  }
}

@media (max-width: 320px) {
  .help-guide .image-grid-container {
    grid-gap: 4px;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(1) {
    margin-top: 1.5rem !important;
  }
  .help-guide .image-grid-container .hg-img-wrapper:nth-child(3) {
    margin-top: 3.5rem !important;
  }
}
/*--------------------------------------------------------------
# Top Desination
--------------------------------------------------------------*/
.top-destinations {
  padding: 8rem 1rem;
}
.top-destinations h2 {
  font-family: "Dienstag";
  font-weight: bold;
  color: #000;
  font-size: 2.25rem;
}
.top-destination .card {
  border: none;
  position: relative;
  overflow: hidden;
  height: 250px;
  width: 100%; /* Add a width to the card */
  border-radius: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-destination .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.top-destination .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
  z-index: 0;
}

.top-destination .card:hover::before {
  transform: scale(1.3); /* Zoom effect on hover */
}

.top-destination .card a {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Dienstag";
  font-size: 2.25rem;
  z-index: 1;
}
.top-destination .card a {
  color: #fff;
  text-align: center;
  font-family: "Dienstag";
  color: #fff;
  z-index: 11;
  font-size: 2.25rem;
}
@media (max-width: 565px) {
  .top-destination .img-container label {
    font-size: 1.5rem;
  }
  .top-destination h2 {
    font-size: 2rem;
  }
  .top-destination .img-container {
    border-radius: 1.6rem;
  }
}

@media (max-width: 375px) {
  .top-destination .img-container label {
    font-size: 1.2rem;
  }
  .top-destination {
    padding: 5rem 1rem;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  background-color: #f3f3f3;
  margin-top: 5rem;
  padding: 0 1rem;
}
.blog .container {
  padding-top: 4rem;
}
.blog h2 {
  font-family: "Dienstag";
  font-size: 2.25rem;
}
.blog header {
  display: flex;
  justify-content: space-between;
}
.blog .explore-more {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.blog .explore-more span {
  font-size: 1.125rem;
}
.blog .explore-more:hover {
  gap: 1.2rem;
}

.blog .explore-more span {
  color: #f46523;
  font-family: "Dienstag";
  font-weight: normal;
  white-space: nowrap;
}
.blog .blog-slider {
  margin-top: 2rem;
}

.blog .blog-slider .card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s;
}
.home .blog-slider .card:hover {
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.08);
}
.blog .blog-slider .card .img-container {
  border-radius: 1rem 1rem 0rem 0rem;
}

.blog .blog-slider .card .card-body {
  padding: 1.2rem;
}
.blog .blog-slider .card .meta {
  margin-bottom: 1rem;
}
.blog .blog-slider .card .meta p {
  font-size: 12px;
  margin: 0px;
}
.blog .blog-slider .card .meta .date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog .blog-slider .card .card-body .card-title {
  font-family: "Dienstag";
  font-size: 1.375rem;
  opacity: 0.7;
  transition: 0.4s all;
}
.blog .blog-slider .card .card-body .card-title:hover {
  color: #000;
  opacity: 1;
}

.blog .blog-slider .card .card-body .card-text {
  font-family: "inter";
  color: #2c2c2c;
}
.blog .blog-slider .card:hover {
  background-color: rgba(0, 0, 0, 0.034);
}
.home .blog-slider .card:hover {
  background-color: #ffff;
}
.bg-white {
  background-color: #fff !important;
}
.bg-white form input {
  width: 100%;
  border: 1px solid #f46523;
  padding: 1rem;
  border-radius: 1000px 0px 0px 1000px;
  outline: none;
}
.bg-white form button {
  background-color: #f46523;
  padding: 0rem 2rem;
  border-radius: 0px 1000px 1000px 0px;
  border: none;
  color: #fff;
}
@media (max-width: 768px) {
  .blog {
    margin-top: 1rem;
  }
}
@media (max-width: 565px) {
  .blog {
    margin-top: 0rem;
  }

  .blog .explore-more {
    gap: 0.6rem;
  }
  .blog .explore-more:hover {
    gap: 0.8em;
  }
  .blog h2 {
    font-size: 1.8rem;
  }
  .blog .explore-more span {
    font-size: 0.9rem;
  }
}

@media (max-width: 376px) {
  .blog h2 {
    font-size: 1.3rem;
  }
  .blog .explore-more span {
    font-size: 0.7rem;
  }
  .blog .blog-slider .card .card-body .card-title {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Subscribe
--------------------------------------------------------------*/
.subscribe {
  margin-top: 7rem;
  padding: 0 1rem;
}

.subscribe-card {
  margin: 0 auto;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgb(0, 17, 69, 0.15);
}
.subscribe-card .content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-card .title {
  margin-bottom: 1rem;
}
.subscribe-card .text {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.subscribe-card .subscribe-input {
  display: grid;
  grid-template-columns: 1fr 8rem;
  column-gap: 0.5rem;
  border: 1px solid rgba(0, 17, 69, 0.25);
  padding: 0.8rem 1rem;
  border-radius: 1.875rem;
}

.subscribe-card .subscribe-input input[type="text"],
.subscribe-card .subscribe-input input[type="text"]:hover,
.subscribe-card .subscribe-input input[type="text"]:focus {
  border: 0;
  outline: 0;
}
.subscribe-card .subscribe-input button {
  border: 0;
  background-color: #f46523;
  color: #fff;
  border-radius: 1.875rem;
  font-size: 1rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  transition: all ease-in-out 0.3s;
}
.subscribe-card .subscribe-input button:hover {
  background-color: #dc5b20;
}

.subscribe-card .img-container img {
  height: 100%;
}
@media (max-width: 565px) {
  .subscribe-card .subscribe-input {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 0.8rem;
    padding: 1.2rem;
  }
}
@media (max-width: 376px) {
  .subscribe-card .subscribe-input {
    padding: 1.2rem 0.8rem;

    border-radius: 1.5rem;
  }
}
.subscribe-card .btn {
  display: flex;
  justify-content: center;
}
.subscribe-card .btn a {
  padding: 1rem 3rem;
  color: #fff;
  background-color: #f46523;
  border-radius: 100px;
  transition: 0.3s;
}

.subscribe-card .btn a:hover {
  background-color: #f35107;
}
/*--------------------------------------------------------------
# Innerhero
--------------------------------------------------------------*/

.inner-hero {
  background-color: #0aa9cd;
  padding-top: 250px;
  padding-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.inner-hero h2 {
  font-size: 72px;
  font-family: "Dienstag";
  font-weight: 700;
}
.bg {
  background-color: #f3f3f3 !important;
}

.blog-hero {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 250px;
  padding-bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.blog-hero &gt; * {
  position: relative;
  z-index: 2;
}

.blog-hero h2 {
  font-size: 72px;
  font-family: "Dienstag";
  font-weight: 700;
  color: #fff;
}
/*--------------------------------------------------------------
# Innerhero
--------------------------------------------------------------*/
.planning .card {
  border: none;
  box-shadow: 2px 2px 16px 2px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: all 0.3s;
}
.planning a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0rem;
}

.planning img {
  width: 150px;
}
.planning a h4 {
  color: #000;
}

.planning .card:hover {
  box-shadow: 4px 4px 16px 2px rgba(0, 0, 0, 0.09);
}

/*--------------------------------------------------------------
# Membership section
--------------------------------------------------------------*/
.membership {
  text-align: center;
}
.membership .card {
  border: #0ba9ce 1px solid;
  border-radius: 44px;
  padding: 4rem 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.membership .best {
  padding: 5rem 0rem;
}
.membership .card h4 {
  color: #fff;
  padding: 0.5rem 1.5rem;
  background-color: #0ba9ce;
}
.membership .card h3 {
  font-weight: 700;
}
.membership .card ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
  margin-bottom: 2rem;
}
.membership .card ul li {
  font-family: "inter";
}
.membership .card span {
  text-decoration: line-through;
}
.membership .card .btn a {
  color: #0ba9ce;
  border: 1px solid #0ba9ce;
  padding: 0.5rem 3rem;
  border-radius: 100px;
  transition: all 0.3s;
}
.membership .card .btn a:hover {
  background-color: #0ba9ce;
  color: #fff;
}
/*--------------------------------------------------------------
# Product Slider
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-prev i,
.swiper-button-next i {
  color: #fff;
  background-color: #f46523;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 150px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.producs .card {
  border: none;
  background-color: rgba(244, 101, 35, 0.05);
}
.producs .card .label {
  position: relative;
  top: 10px;
}
.producs .card .label span {
  position: absolute;
  top: 5px;
  left: 15px;
  background-color: #ffd600;
  z-index: 99;
  font-size: 16px;
  padding: 0px 18px;
  border-radius: 100px;
}

.producs .card h2 {
  font-size: 32px;
  font-family: "Dienstag";
  font-weight: 900;
  padding: 2rem;
}
.producs .card .content {
  display: flex;
  gap: 8px;
  align-items: center;
}
.producs .card .content .img {
  background-color: #ffddcc;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 150px;
}

.producs .card .content .img img {
  width: 25px;
  height: 25px;
}

.producs .card .content .text {
  text-align: left;
}
.producs .card .content .text h4 {
  font-family: "Dienstag";
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
}
.producs .card .content .text p {
  font-size: 16px;
  margin: 0px;
}

.producs .card .btn {
  padding: 1rem;
  border-radius: 0px;
  width: 100%;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.producs .card .black {
  background-color: #000;
}
.producs .card .orange {
  background-color: #f46523;
}
.producs .card .padding-1 {
  padding-right: 0px;
}
.producs .card .padding-2 {
  padding-left: 0px;
}
@media (max-width: 768px) {
  .producs .card .padding-1,
  .producs .card .padding-2 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.side-bar .card {
  border: 1px solid rgba(0, 17, 69, 0.05);
  background-color: #fcfcfc;
}
.side-bar form {
  border: none;
  border-radius: 150px;
}
.side-bar form input,
.side-bar form input:focus {
  padding: 0px;
  margin: 0px;
  border: none;
  border: 1px solid rgba(0, 17, 69, 0.05);
  border-radius: 150px;
  width: 100%;
  padding: 0.5rem;
  outline: none;
}
.side-bar form input::placeholder {
  color: #dddddd;
  text-align: center;
}
.side-bar form button {
  margin-top: 1rem;
  width: 100%;
  padding: 6px 8px;
  border-radius: 150px;
  color: #fff;
  border: none;
  background-color: #f46523;
}
.side-bar .search-box h3 {
  font-size: 18px;
  font-family: "Dienstag";
  font-weight: 900;
}
/*--------------------------------------------------------------
# Single Page
--------------------------------------------------------------*/
.single-page {
  font-family: "Dienstag";
}
.single-page article p {
  line-height: 160%;
  padding-bottom: 1rem;
}
.single-page article h1,
.single-page article h2,
.single-page article h3,
.single-page article h4,
.single-page article h5 {
  font-weight: 900;
  line-height: 190%;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0aa9cd;
}
.single-page article h1 {
  font-size: 36px;
}

.single-page article h2 {
  font-size: 32px;
}

.single-page article h3 {
  font-size: 30px;
}

.single-page article h4 {
  font-size: 28px;
}

.single-page article h5 {
  font-size: 22px;
}

.single-page article h6 {
  font-size: 18px;
}
.single-page article ol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single-page article img {
  max-width: 100%;
  padding: 1rem 0rem;
}

.single-page article ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single-page .btn {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin-top: 3rem;
}

.single-page .btn a {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #f46523;
  color: #fff;
}

.single-page .social ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.single-page .social ul img {
  width: 20px;
  opacity: 0.6;
}
.single-page .social ul li:last-child img {
  width: 50px;
}
.single-page .social ul img:hover {
  opacity: 1;
}
.reservation {
  margin-top: 3rem;
}
.reservation .card {
  padding: 1rem;
  transition: all 0.5s;
}
.reservation .card:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.reservation .card h2 {
  font-size: 20px;
  margin-top: 1rem;
  text-align: center;
}
.reservation .card h2 a {
  color: #000;

  font-weight: bold;
}
/*--------------------------------------------------------------
# List Page
--------------------------------------------------------------*/
.list-page .card {
  border: none;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1rem;
}
.list-page .card::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  transition: all 0.5s;
  border-radius: 1rem;
}
.list-page .card:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.list-page .card .content {
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.list-page .card .content h2 {
  font-size: 18px;
  font-weight: 900;
  font-family: "Dienstag";
  color: #fff;
}

.list-page .card .content p {
  font-size: 16px;
  font-family: "Dienstag";
  color: #ffff;
}

.btns {
  margin-top: 2rem;
}
.btn .bt {
  display: flex;
  align-items: stretch;
}
.btns .bt button {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
  height: 100%;
  border: none;
  color: #fff;
  transition: all 0.5s;
}
.btns .bt .ppl {
  background-color: rgba(244, 101, 35, 0.9);
}

.btns .bt .blk {
  background-color: rgba(0, 0, 0, 0.9);
}

.btns .bt .ppl:hover {
  background-color: rgba(244, 101, 35);
}

.btns .bt .blk:hover {
  background-color: rgba(0, 0, 0);
}

.ad {
  margin: 1rem;
  padding: 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  position: relative;
}
.op-btn {
  background-color: #f46523;
  color: #fff;
  padding: 1rem 6rem;
}
.ad::after {
  content: "";
  position: absolute;
  border-radius: 0px 0.5rem 0px 0px;
  top: 0px;
  right: 0px;
  background-color: #d4d4d4;
  color: rgba(0, 0, 0, 0.7);
  width: 25px;
  font-size: 14px;
  padding: 0px 5px;
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.aside-title,
.category-title {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.5);
}

/* custom tab nav on sidebar */
.aside-block {
  margin-bottom: 30px;
}
.aside-tags li {
  display: inline-block;
}

.aside-tags li a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  padding: 7px 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 3px;
  transition: 0.3s all ease;
}

.aside-tags li a:hover,
.aside-tags li a:focus {
  color: rgba(243, 82, 7, 0.8);
  border: 1px solid rgba(243, 82, 7, 0.8);
}

.aside-category li {
  display: inline-block;
}

.aside-category li a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  padding: 7px 10px;
  border: none;
  margin-bottom: 3px;
  transition: 0.3s all ease;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 100px;
}

.aside-category li a:hover,
.aside-category li a:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
.meta p {
  margin: 0px;
  color: rgba(0, 0, 0, 0.5);
}
.meta i {
  color: rgba(0, 0, 0, 0.5);
}
.meta .date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#results {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 1.5rem;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.plan-2 .plan-card {
  border: rgba(0, 0, 0, 0.08) 1px solid;
  border-radius: 12px;
  padding: 2rem 0.5rem;
  margin: 0.2rem;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background-color: #212121;
  padding: 6.25rem;
  margin-top: 7.7rem;
}

footer .logo {
  width: 12rem;
  object-fit: cover;
}
footer .info {
  font-size: 1rem;
  margin-top: 1rem;
}

footer .links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .links li {
  margin-left: 0;

  font-size: 0.9rem;
}
footer .links li a {
  color: #fff;
  transition: all 0.3s;
}
footer .links li a:hover {
  text-decoration: underline;
}

footer .header {
  color: #f46523;
  font-size: 1rem;
  cursor: pointer;
}
@media (max-width: 425px) {
  footer {
    padding: 2rem;
  }
}

.slider-dots {
  display: none !important;
}
</pre></body></html>