/* Fonts */
:root {
  --default-font: "Inter", sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter", sans-serif;
	--accent-font: "Libre Baskerville", serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #111111;
  --accent-color: #62826B;
  --accent-light: #FDD9C9;
  --surface-color: #000000;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #000000;
  --nav-hover-color: #62826B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #47b2e4;
}

/* Color Presets */

.light-background {
  --background-color: #111111;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #111111;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

/* Custom scroll */
::-webkit-scrollbar {
	width: 8px;
	background: var(--surface-color);
}
::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 50px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	position: relative;
  color: var(--default-color);
  background-color: var(--background-color);
	/* background: var(--background-color) url(../img/background.svg); */
  font-family: var(--heading-font);
	top: 0px!important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 20px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	}

	.navmenu ul {
    margin: 0;
    display: flex;
    list-style: none;
		gap: 20px;
    align-items: center;
	}

  .navmenu li {
    position: relative;
    transition: 0.3s ease;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--contrast-color);
    padding: 12px;
    font-size: 16px;
    font-family: var(--heading-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    transition: 0.3s ease;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--contrast-color);
    background: #ffffff31;
    border: 2px solid #ffffff14;
    backdrop-filter: blur(50px);
    font-size: 20px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    right: 15px;
	}

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 26px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Large Menu
--------------------------------------------------------------*/

#menu-head {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.full-menu {
  position: fixed;
  top:0;
	width: 100%;
	overflow: clip;
  height:0;
	z-index: 100000;
  display: flex;
	justify-content: center;
	align-items: center;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) ;
}
.full-menu .container {
	z-index: 10;
}

.full-menu:before, .full-menu:after{
  content: '';
  height: 0;
  position: fixed;
  top:0;
	width: 100%;
	height: 0;
}
.full-menu:before{
  z-index: -2;
  background-color:#3b3b3b;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
} 
.full-menu:after{
  z-index: -1;
  background-color:#121212;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) ;
}

.menu--open:before, .menu--open:after{
  height: 100%;
}

.menu--open:before{
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1);
} 
.menu--open:after{
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.menu--open{
  height:100%;
  transition: height 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.nav__list {
	list-style: none;
  padding: 0;
  transition: all 0.4s;
}

.nav__link {
	text-decoration: none;
	color: #a8a8a8;
	font-size: 48px;
	font-weight: 200;
	letter-spacing: 1px;
}
.nav__list li:hover .nav__link{
  font-weight:600;
}
.nav__list li:hover .nav__link {
	color: var(--contrast-color);
}

@media screen and (max-width:767px){
  .nav__list {
    flex-direction:column;
    text-align:center;
  }
  .nav__list li {
    padding:8px 0;
  }
}

@media screen and (max-width:480px){
  .nav__link {
    font-size:26px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #000000;
  color: var(--default-color);
  background-color: var(--background-color);
	background: linear-gradient(#0000005c, transparent);
  padding: 24px 0;
  transition: all 0.5s;
  z-index: 997;
}
/* #header {
	position: sticky;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
} */
.hidden-head {
  transform: translateY(-100%);
}

.header .logo {
	display: flex;
	align-items: center;
}

.header .logo img {
	max-height: 54px;
	width: 100%;
	margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .social-icons {
	color: var(--contrast-color);
	background: #ffffff31;
	border: 2px solid #ffffff14;
	backdrop-filter: blur(50px);
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 16px;
	height: 48px;
	margin: 0 8px 0 0;
	border-radius: 50px;
	transition: 0.3s;
}
.header .social-icons a {
	padding: 8px;
}
.header .social-icons a i {
	font-size: 16px;
}
.header .social-icons a:hover i {
	color: #ff0000;
}

.btn-menu,
.btn-menu:focus {
	color: var(--contrast-color);
	background: #ffffff31;
	border: 2px solid #ffffff14;
	backdrop-filter: blur(50px);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 48px;
	border-radius: 50px;
	z-index: 1001;
	transition: 0.3s;
	cursor: pointer;
}

.btn-menu:hover,
.btn-menu:focus:hover {
	color: var(--contrast-color);
	background: #ffffff8a;;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media screen and (max-width:767px) {
	.header {
		padding: 14px 0;
	}
	.header .logo img {
    max-height: 40px;
	}
	.header .social-icons {
		display: none;
	}
	.btn-menu {
		display: none!important;
	}
}

/* Page Header
------------------------------*/
.index-page .header,
.inner-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #000000;
  --nav-color: #000000;
}


/* Page Header on Scroll
------------------------------*/
.index-page.scrolled .header,
.inner-page.scrolled .header {
	background: #0000004a;
	backdrop-filter: blur(24px);
  padding: 16px 0;
}
.index-page.scrolled .header .logo img,
.index-page.scrolled .header .logo img {
	max-height: 46px;
	width: 100%;
	margin-right: 8px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer .blob {
	width: 500px;
	height: 500px;
	background: white;
	border-radius: 50%;
	position: absolute;
	right: -20%;
	top: -50%;
	filter: blur(100px);
}

.footer {
	padding-top: 150px;
	padding-bottom: 50px;
	position: relative;
	overflow: hidden;
	background: var(--accent-color);
}
.footer h2 {
	font-size: 34px;
	line-height: 50px;
	text-wrap: pretty;
	margin-bottom: 24px;
	font-family: var(--accent-font);
	color: var(--contrast-color);
}
.footer .social-links {
  display: flex;
  align-items: center;
	gap: 10px;
	margin-bottom: 34px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	font-size: 16px;
	color: var(--contrast-color);
	background: #ffffff17;
	border: 1px solid #cacaca;
  transition: 0.3s;
}

.footer .social-links a:hover {
	background: #ffffff71;
}
.footer .logo {
	display: flex;
	width: 100%;
	max-width: 230px;
}

.footer .footer-links h4 {
	color: #89A190;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
}
.footer .footer-links p {
	color: var(--contrast-color);
	font-weight: 300;
}
.footer .footer-links p a {
	color: var(--contrast-color);
}
.footer .footer-links p a:hover {
	color: var(--accent-light);
}
.footer .footer-links iframe {
	width: 100%;
	max-width: 280px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 2px solid var(--contrast-color);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--contrast-color);
  line-height: 1;
	text-transform: uppercase;
}

.footer .footer-links ul a:hover {
  color: var(--accent-light);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright ,
.footer .credits {
	color: var(--contrast-color);
  font-size: 13px;
}
.footer .credits ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
}
.footer .credits ul a {
  color: var(--contrast-color);
}

.footer .credits ul a:hover {
  color: var(--accent-light);
}
.footer-text p {
	text-align: center;
	color: var(--contrast-color);
	font-size: 9.5vw;
	opacity: .1;
	font-weight: 700;
	overflow: hidden;
	margin-bottom: -90px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-light);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
	color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--default-color);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 100px 0;
  scroll-margin-top: 88px;
	position: relative;
  overflow-x: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 768px) {
	section,
	.section {
		padding: 40px 0;
	}
}
.thank-you h1 {
	font-size: 64px;
	font-family: var(--heading-font);
	font-style: italic;
}
.error h1 {
	font-size: 100px;
	font-family: var(--heading-font);
	font-style: italic;
}
.thank-you h4,
.error h4 {
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
	margin-bottom: 30px;
}

.section-title h2 {
	font-size: 38px;
	font-family: var(--accent-font);
	font-weight: 400;
	margin-bottom: 20px;
	font-style: italic;
}

.section-title h2.bor-bottom::after {
	content: "";
	display: block;
	height: 3px;
	background: var(--accent-color);
	margin: 40px 0;
	width: 140px;
}

.section-title h3 {
  font-size: 26px;
	font-family: var(--heading-font);
	font-style: italic;
  font-weight: 500;
	margin-bottom: 20px;
}

.section-title p {
	color: var(--default-color);
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	margin-bottom: 20px;
}

.section-title.dark h2,
.section-title.dark h3,
.section-title.dark p {
	color: var(--default-color)!important;
}

@media (max-width: 768px) {
	.section-title {
    padding-bottom: 10px;
	}
	.section-title h3 {
    font-size: 16px;
    margin-bottom: 14px;
	}
	.section-title h2 {
    font-size: 28px;
		line-height: 40px;
    margin-bottom: 16px;
	}
	.section-title h2.bor-bottom::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--accent-color);
    margin: 20px 0;
    width: 100px;
	}
	.section-title p {
    color: var(--default-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper.service-swipe,
.swiper.blogs-swipe,
.swiper.testi-swipe {
	width: 100vw;
}

@media (max-width: 640px) {
	.swiper.service-swipe,
	.swiper.blogs-swipe,
	.swiper.testi-swipe {
		width: 100%;
	}
}

.swiper-button-prev2,
.swiper-button-next2,
.swiper-button-prev3,
.swiper-button-next3 {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 2px solid #fff;
	color: var(--default-color);
	border-radius: 50px;
	display: grid;
	place-content: center;
	font-size: 24px;
}

.swiper-button-prev2:hover,
.swiper-button-next2:hover,
.swiper-button-prev3:hover,
.swiper-button-next3:hover {
	background: #ffffff31;
	border: 2px solid #ffffff14;
}

@media (max-width: 768px) {
	.swiper-button-prev2, 
	.swiper-button-next2, 
	.swiper-button-prev3, 
	.swiper-button-next3 {
    width: 34px;
    height: 34px;
    font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-default {
	padding: 14px 28px;
	border: 1px solid var(--accent-light);
	color: var(--surface-color);
	background: var(--accent-light);
	backdrop-filter: blur(24px);
	border-radius: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 150px;
	gap: 16px;
}
.btn-default i {
	display: grid;
	place-content: center;
}
.btn-default:hover {
	border: 1px solid var(--accent-color);
	color: var(--contrast-color);
	background: var(--accent-color);
}
.btn-default:hover i {
	color: var(--contrast-color);
}

.btn-find {
	padding: 12px 30px 12px 12px;
	border: 1px solid var(--accent-color);
	color: var(--contrast-color);
	background: var(--accent-color);
	backdrop-filter: blur(24px);
	font-size: 20px;
	border-radius: 50px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 24px;
}
.btn-find i {
	display: grid;
	place-content: center;
	color: var(--default-color);
	background: var(--contrast-color);
	padding: 12px;
	font-size: 20px;
	height: 42px;
	width: 42px;
	border-radius: 50px;
	transition: 0.3s;
}
.btn-find:hover {
	border: 1px solid var(--contrast-color);
	color: var(--default-color);
	background: var(--contrast-color);
}
.btn-find:hover i {
	color: var(--contrast-color);
	background: var(--default-color);
}

.btn-white {
	padding: 14px 28px;
	border: 1px solid var(--surface-color);
	color: var(--surface-color);
	background: transparent;
	backdrop-filter: blur(24px);
	border-radius: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 150px;
	gap: 16px;
}
.btn-white:hover {
	border: 1px solid var(--accent-color);
	color: var(--contrast-color);
	background: var(--accent-color);
}

.btn-black {
	padding: 18px 28px;
	border: 1px solid var(--default-color);
	color: var(--contrast-color);
	background: var(--default-color);
	backdrop-filter: blur(24px);
	font-weight: 300;
	border-radius: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 150px;
	gap: 16px;
}
.btn-black i {
	display: grid;
	place-content: center;
}
.btn-black:hover {
	border: 1px solid var(--accent-light);
	color: var(--surface-color);
	background: var(--accent-light);
}
.btn-black:hover i {
	color: var(--surface-color);
}
.btn-back {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	margin: 0;
	margin-bottom: 14px;
	border-radius: 6px;
	font-size: 12px;
	width: fit-content;
	color: #fff;
	background: #ffffff36;
	backdrop-filter: blur(10px);
}
.btn-back:hover, .btn-back:focus:hover {
	color: #fff;
	background: color-mix(in srgb, var(--accent-color), transparent 45%);
}

.btn-show {
	padding: 4px 6px;
	margin: 0;
	margin-bottom: 14px;
	border-radius: 4px;
	font-size: 12px;
	width: fit-content;
	color: var(--default-color);
	border: none;
	background: #fdd9c9;
	backdrop-filter: blur(10px);
}
.btn-show:hover, .btn-back:show:hover {
	color: var(--contrast-color);
	background: var(--accent-color);
}

@media (max-width: 640px) {
	.btn-find {
    padding: 8px 24px 8px 8px;
    font-size: 18px;
    gap: 14px;
	}
	.btn-find i {
    padding: 10px;
    font-size: 18px;
    height: 38px;
    width: 38px;
	}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 134px 0 50px;
	display: grid;
	align-content: flex-end;
}
.hero::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#00000009 -30%, #000000c2);
}

.hero .content-wrapper {
	position: relative;
	z-index: 3;
}

.hero h1 {
	margin: 0 0 26px 0;
	color: #fff;
	font-family: var(--default-font);
	font-size: 68px;
	font-weight: 600;
	line-height: 70px;
}

.hero h1 span {
  font-family: var(--heading-font);
	font-style: italic;
}

.hero h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 400;
	color: var(--contrast-color);
	width: 20vw;
}
.hero h2 img.star {
	width: 38px;
}

.hero p {
	position: relative;
	margin: 5px 0 30px 0;
	color: #dcdcdc;
	font-size: 20px;
	line-height: 34px;
	max-width: 40vw;
}
.hero img.arrow {
	position: absolute;
	bottom: 12px;
	left: 238px;
}

.hero .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/* border: 1px solid #0000003f; */
	background: #00000017;
	font-size: 16px;
	color: var(--contrast-color);
	margin-right: 10px;
	transition: 0.3s ease;
}

.hero .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .book-box {
	display: grid;
	justify-items: center;
	gap: 16px;
	padding: 30px;
	margin: 0;
	border-radius: 16px;
	transition: 0.3s ease;
	background: #0000004a;
	backdrop-filter: blur(20px);
}

.hero .book-box img.icon {
	width: 60px;
}
.hero .book-box p {
	position: relative;
	margin: 0;
	color: var(--contrast-color);
	text-align: center;
	font-size: 16px;
	line-height: 20px;
}
.hero .book-box .btn-phone {
	color: var(--surface-color);
	background: var(--contrast-color);
	backdrop-filter: blur(50px);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 48px;
	border-radius: 50px;
	z-index: 1001;
	transition: 0.3s;
}
.hero .book-box .btn-phone i {
	display: grid;
	place-content: center;
}
.hero .book-box .btn-phone:hover {
	background: var(--accent-color);
	color: #000;
}
.hero .book-box .btn-phone:hover i {
	color: #000;
}

.hero .button-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.hero .book-box .btn-phone {
	color: var(--surface-color);
	background: var(--contrast-color);
	backdrop-filter: blur(50px);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	min-width: 48px;
	border-radius: 50px;
	z-index: 1001;
	transition: 0.3s ease;
}
.hero .book-box .btn-phone:hover {
	color: var(--surface-color);
	background: var(--contrast-color);
}
.hero .book-box .btn-phone:hover i {
	color: var(--surface-color);
}
.hero .book-box .btn-book {
	color: var(--surface-color);
	background: var(--contrast-color);
	backdrop-filter: blur(50px);
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 10px 18px;
	width: 100%;
	border-radius: 50px;
	z-index: 1001;
	transition: 0.3s;
}
.hero .book-box .btn-book:hover {
	color: var(--surface-color);
	background: var(--contrast-color);
}

.hero .swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	margin-bottom: unset;
}
.hero .swiper-container + .swiper-container {
  margin-top: 30px;
}

.hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .swiper-pagination {
	position: relative;
	z-index: 2;
	margin: 0;
	text-align: left;
}

.hero .swiper-pagination-bullet {
  width: 160px;
  height: 5px;
  border-radius: 50px;
	opacity: 1;
  position: relative;
  overflow: hidden;
}
.hero .swiper-pagination-bullet::before {
  content: "";
  display: block;
  background-color: #313131;
	opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero .swiper-pagination-bullet-active {
  background-color: #313131;
}
.hero .swiper-pagination-bullet-active::before {
  background-color: white;
  border-radius: 50px;
  -webkit-animation: slide-progress 3s cubic-bezier(0.3, 0, 0.3, 1) forwards;
          animation: slide-progress 3s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}
.hero .swiper-paused .swiper-pagination-bullet-active::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/* border: 1px solid #ffffff3f; */
	background: #ffffff17;
	font-size: 16px;
	color: #fff;
	margin-right: 10px;
	transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 640px) {
	.hero {
    min-height: 100svh;
    padding: 70px 0 16px;
	}
	.hero h2 {
    width: 100%;
	}
	.hero h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
	}
	.hero h1 img {
    height: 34px;
	}
	.hero img.arrow {
    display: none;
	}
	.hero p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    max-width: 100%;
	}
	.hero .certified {
    width: 84px;
    padding: 20px 14px;
    background: #00000014;
    backdrop-filter: blur(20px);
    border-radius: 8px;
	}
	.hero .book-box {
    padding: 20px;
    margin-top: 20px;
		display: none;
	}
}

/*--------------------------------------------------------------
# Inner Hero
--------------------------------------------------------------*/

.inner-page .hero {
	position: relative;
	min-height: 100%;
	padding: 120px 0 30px;
	overflow: clip;
}
.inner-page .hero::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#00000000, #000000d6);
}
.inner-page .hero .inner-banner {
	position: absolute;
	height: 100%;
	width: 100%;
	min-height: 400px;
	filter: blur(40px);
	z-index: -1;
}
.inner-page .hero .inner-banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.inner-page .hero h1 {
	margin: 0;
	font-size: 36px;
	font-weight: 500;
	line-height: 42px;
	margin-bottom: 10px;
	position: relative;
	z-index: 2;
}
.inner-page .hero h1 span{
	font-weight: 600;
}
.inner-page .hero h2 {
	margin: 0;
	color: #a4a4a4;
	font-size: 28px;
	font-weight: 400;
}
.inner-page .hero h1 span {
	font-family: var(--heading-font);
}
.inner-page .hero .image {
	height: 200px;
	overflow: clip;
	display: flex;
	align-items: center;
}
.inner-page .hero p {
	margin: 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	max-width: fit-content;
}
@media (max-width: 768px) {
	.inner-page .hero {
    min-height: 72px;
    max-height: 40vh;
    padding: 100px 0 30px;
	}
	.inner-page .hero p {
    font-size: 14px;
    line-height: 20px;
	}
	.inner-page .hero h1 {
    font-size: 26px;
    line-height: 34px;
	}
	.inner-page .hero h2 {
    font-size: 18px;
	}
}

/*--------------------------------------------------------------
# 404, thank-you
--------------------------------------------------------------*/

.hero.viewport {
	height: 100vh;
	align-content: center;
}

.hero.viewport h1 {
	font-size: 64px;
	font-family: var(--accent-font);
	font-weight: 400;
	margin-bottom: 20px;
	font-style: italic;
}

.hero.viewport h4 {
	font-size: 32px;
	color: var(--contrast-color);
}

.hero.viewport p {
	font-size: 18px;
	color: var(--contrast-color);
	text-align: center;
	margin: 16px auto;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
	display: flex;
	gap: 5px;
	margin-bottom: 16px;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 4px 10px;
	margin: 0;
	margin-bottom: 14px;
	font-size: 12px;
	width: fit-content;
	color: #fff;
	background: #ee00000f;
	backdrop-filter: blur(10px);
	border-radius: 4px;
}

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

.breadcrumbs ol li+li::before {
  content: "•";
  display: inline-block;
  padding-right: 10px;
  color: var(--accent-color);
}
@media (max-width: 768px) {
	.breadcrumbs {
		display: none;
	}
}

/*--------------------------------------------------------------
# Marquee Section
--------------------------------------------------------------*/

.marquee {
  padding: 24px 0;
}
.marquee-slider .box {
	padding: 14px 28px;
	border: 1px solid var(--accent-light);
	color: var(--surface-color);
	background: var(--accent-light);
	backdrop-filter: blur(24px);
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.marquee-slider .box .star {
	width: 20px;
	filter: brightness(0);
}
.marquee-slider > .swiper-wrapper{
  transition-timing-function : linear;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 0;
}

.about .fluid-box {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: space-between;
	gap: 120px;
	padding: 60px 0;
	border-radius: 20px;
	height: 600px;
	max-height: 650px;
	overflow: clip;
}

.about .fluid-box::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #00000045;
}

.about .fluid-box img.icon {
	width: 100px;
}

.about .fluid-box h2 {
	font-size: 40px;
	font-weight: 500;
	font-family: var(--accent-font);
	font-style: italic;
	margin-bottom: 24px;
	color: var(--contrast-color);
}

.about .fluid-box p {
	font-size: 20px;
	margin: 0;
	color: #e4e4e4;
}

.about .fluid-box .btn-default {
	float: right;
}

@media (max-width: 768px) {
	.about .fluid-box {
    padding: 20px;
    height: 100%;
    max-height: 100%;
	}
	.about .fluid-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
	}
	.about .fluid-box p {
    font-size: 16px;
	}
	.about .fluid-box .btn-default {
    float: none;
    margin-top: 20px;
	}
	.about .fluid-box img.icon {
    width: 80px;
    margin-top: 16px;
	}
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .swiper-button-prev2,
.services .swiper-button-next2 {
	width: 40px;
	height: 40px;
	display: grid;
	place-content: center;
	font-size: 24px;
	background: #fff;
	border: 2px solid var(--contrast-color);
	color: var(--default-color);
	border-radius: 50px;
}

.services .swiper-button-prev2:hover,
.services .swiper-button-next2:hover {
	background: #00000031;
	border: 2px solid #00000014;
}

.services .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}

.services .box .image {
	position: relative;
	display: flex;
	align-items: center;
	max-height: 420px;
	border-radius: 20px;
	overflow: clip;
}

.services .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease;
}
.services .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}

.services .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px;
	margin: 20px;
	width: calc(100% - 40px);
	border-radius: 12px;
	background: #ffffff47;
	backdrop-filter: blur(16px);
}

.services .box .content img {
	height: 30px;
	object-fit: contain;
	width: auto;
}

.services .box .content h2 {
	color: var(--contrast-color);
	font-size: 22px;
	margin: 0;
}

/*--------------------------------------------------------------
# Destination Section
--------------------------------------------------------------*/
.destination .swiper-button-prev2,
.destination .swiper-button-next2 {
	width: 40px;
	height: 40px;
	display: grid;
	place-content: center;
	font-size: 24px;
	background: #fff;
	border: 2px solid var(--contrast-color);
	color: var(--default-color);
	border-radius: 50px;
}

.destination .swiper-button-prev2:hover,
.destination .swiper-button-next2:hover {
	background: #00000031;
	border: 2px solid #00000014;
}

.destination .box.first {
	display: grid;
	align-content: space-between;
	padding: 20px;
	height: 100%;
	border-radius: 20px;
	background: var(--accent-color);
}

.destination .box.first h2 {
	color: var(--contrast-color);
	font-size: 38px;
	line-height: 40px;
	font-weight: 600;
}

.destination .box.first p {
	color: var(--contrast-color);
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin: 0;
}

.destination .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}

.destination .box .image {
	position: relative;
	display: flex;
	align-items: center;
	max-height: 380px;
	border-radius: 20px;
	overflow: clip;
}

.destination .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease;
}

.destination .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}

.destination .box .content {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px;
	margin: 20px;
	width: calc(100% - 40px);
	border-radius: 12px;
	background: var(--contrast-color);
}

.destination .box .content img {
	height: 30px;
	object-fit: contain;
	width: auto;
}

.destination .box .content h2 {
	color: var(--surface-color);
	font-size: 22px;
	margin: 0;
}

@media (max-width: 768px) {
	.destination .box.first h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 14px;
    font-weight: 600;
	}
	.destination .box.first p {
    font-size: 16px;
    line-height: 24px;
	}
	.destination .box .image {
    max-height: 200px;
	}
	.destination .box .content {
    gap: 14px;
    padding: 12px;
		margin: 14px;
	}
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 14px 0;
}

.cta .fluid-box {
	position: relative;
	padding: 80px 0;
	border-radius: 20px;
	overflow: clip;
}

.cta .fluid-box::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#00000000 40%, #000000);
	backdrop-filter: blur(20px);
}

.cta .fluid-box img.icon {
	width: 100px;
}

.cta .fluid-box h2 {
	font-size: 40px;
	font-weight: 500;
	font-family: var(--accent-font);
	font-style: italic;
	margin-bottom: 24px;
	color: var(--contrast-color);
	z-index: 4;
	position: relative;
}

.cta .fluid-box p {
	font-size: 20px;
	margin: 0;
	color: #e4e4e4;
	z-index: 4;
	position: relative;
}

.cta .fluid-box .btn-default {
	float: right;
}

@media (max-width: 768px) {
	.cta .fluid-box {
    padding: 40px 0;
	}
	.cta .fluid-box h2 {
		font-size: 32px;
	}
	.cta .fluid-box p {
    font-size: 18px;
    margin-bottom: 24px;
	}
}

/*--------------------------------------------------------------
# Experts Section
--------------------------------------------------------------*/

.experts {
	padding: 0;
}
.experts .image {
	width: calc(50vw - 30px);
	height: calc(100vh - 160px);
	min-height: 600px;
}
.experts .image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}
@media (max-width: 768px) {
	.experts .image {
    width: 100%;
    height: 200px;
    min-height: 400px;
	}
}

/*--------------------------------------------------------------
# why Section
--------------------------------------------------------------*/

.why {
  padding: 14px 0;
}
.why .fluid-box {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: space-between;
	gap: 120px;
	padding: 60px 0;
	border-radius: 20px;
	min-height: 600px;
	overflow: clip;
}
.why .fluid-box::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #00000045;
}
.why .fluid-box h2 {
	font-size: 40px;
	font-weight: 500;
	font-family: var(--accent-font);
	font-style: italic;
	margin-bottom: 24px;
	color: var(--contrast-color);
}
.why .fluid-box p {
	font-size: 20px;
	margin: 0;
	color: #e4e4e4;
}
.why .box {
	padding: 24px;
	border-radius: 20px;
	background: #0000005e;
	backdrop-filter: blur(20px);
}
.why .box img.icon {
	width: 64px;
	margin-bottom: 24px;
}
.why .box h2 {
	font-size: 24px;
	margin-bottom: 14px;
}
.why .box p {
	font-size: 16px;
}

@media (max-width: 768px) {
	.why .fluid-box {
    gap: 80px;
    padding: 20px 10px;
    min-height: auto;
	}
	.why .box img.icon {
    width: 48px;
	}
	.why .fluid-box h2 {
    font-size: 32px;
	}
	.why .fluid-box p {
    font-size: 16px;
	}
	.why .fluid-box .box h2 {
    font-size: 26px;
	}
}

/*--------------------------------------------------------------
# Blogs Section
--------------------------------------------------------------*/

.blogs .box {
	position: relative;
	display: grid;
	align-content: flex-end;
}

.blogs .box .image {
	position: relative;
	display: flex;
	align-items: center;
	max-height: 420px;
	margin-bottom: 20px;
	border-radius: 16px;
	overflow: clip;
}

.blogs .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease;
}
.blogs .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}

.blogs .box .content img {
	height: 30px;
	object-fit: contain;
	width: auto;
}

.blogs .box .content h2 {
	font-size: 22px;
	margin-bottom: 20px;
}

.blogs .popular-box {
	background: var(--accent-light);
	padding: 20px;
	border-radius: 20px;
}
.blogs .popular-box li {
	display: flex;
	gap: 10px;
	padding: 0;
	background: transparent;
}
.blogs .popular-box ul {
	border-radius: 0;
	gap: 14px;
}
.blogs .popular-box ul li:hover {
	background: var(--accent-color);
}
.blogs .popular-box ul li:hover a{
	color: var(--contrast-color);
}
.blogs .popular-box ul li img {
	width: 90px;
	height: 100%;
	object-fit: cover;
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/

.search .filter-form {
	padding: 8px;
	margin: 0;
	border-radius: 50px;
	transition: 0.3s ease;
	background: #0000004a;
	backdrop-filter: blur(20px);
}

.search .form-control,
.search .form-select {
	padding: 10px 24px;
	border-radius: 50px;
}

.search .btn-search {
	padding: 10px 24px;
	border: 1px solid var(--accent-light);
	color: var(--surface-color);
	background: var(--accent-light);
	backdrop-filter: blur(24px);
	border-radius: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.search .btn-search i {
	display: grid;
	place-content: center;
}
.search .btn-search:hover {
	border: 1px solid var(--accent-color);
	color: var(--contrast-color);
	background: var(--accent-color);
}
.search .btn-search:hover i {
	color: var(--contrast-color);
}


.results .option {
	min-height: 120px;
	transition: 0.3s ease;
	padding: 0 15px;
}
.results .list {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dedede;
}
.results .list h3 {
	font-size: 18px;
	margin-bottom: 12px;
}
.results .list ul {
	list-style: none;
	padding: 0;
}
.results .list ul li {

}
.results .list ul li .form-check-input {
	border-color: var(--accent-color);
}
.results .list ul li .form-check-input:checked {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}
.results .list ul li label {
	width: 100%;
	font-size: 14px;
}
.results .list ul li label span {
	float: right;
	color: #c7c7c7;
}
.results .slider-label {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.results .slider-label span {
	font-size: 14px;
}
.noUi-horizontal {
	height: 6px;
}
.noUi-connect {
	background: var(--accent-color);
}
.noUi-horizontal .noUi-handle {
	width: 16px;
	height: 16px;
	right: -8px;
	top: -6px;
}
.noUi-handle {
	border: 1px solid var(--accent-color);
	border-radius: 50px;
	background: var(--accent-color);
	cursor: default;
	box-shadow: none;
}
.noUi-handle:after, .noUi-handle:before {
	display: none;
}

.results .filter-prev h3 {
	font-size: 16px;
}
.results .filter-badge {
	display: inline-flex;
	gap: 8px;
}
.results .filter-badge .badge {
	font-size: 12px;
	padding: 4px 10px;
	font-weight: 500;
	background: var(--contrast-color);
	border: 1px solid #b7b7b7;
	border-radius: 100px;
	color: #b7b7b7;
	display: flex;
	align-items: center;
	gap: 4px;
}
.results .filter-badge .badge i {
	font-size: 18px;
}
.results .filter-badge .badge:hover {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
}

.results .box {
	background: var(--contrast-color);
	border-radius: 14px;
	padding: 15px;
	min-height: 120px;
	transition: 0.3s ease;
	box-shadow: 0 3px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)!important;
}
.results .box:hover {
	box-shadow:  0 3px 25px -5px rgba(0,0,0,.2),0 10px 10px -5px rgba(0,0,0,.06)!important;
}
.results .box h2.title {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 0;
}
.results .box .image {
	position: relative;
	border-radius: 6px;
	overflow: clip;
	height: 100%;
}
.results .box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease;
}
.results .box:hover .image img {
	transform: scale(1.05) rotate(-2deg);
}
.results .box .badge {
	position: absolute;
	left: 5px;
	top: 5px;
	background: #fff;
	color: var(--surface-color);
	z-index: 2;
}
.results .box p {
	font-size: 14px;
	color: #656565;
}
.results .box p.price {
	color: var(--surface-color)
}
.search .btn-detail,
.search .btn-book {
	padding: 8px 14px;
	backdrop-filter: blur(24px);
	border-radius: 50px;
	font-size: 16px;
	height: 40px;
	line-height: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.search .btn-detail {
	border: 1px solid var(--accent-color);
	color: var(--surface-color);
	background: var(--contrast-color);
}
.search .btn-book {
	border: 1px solid var(--accent-color);
	color: var(--contrast-color);
	background: var(--accent-color);
}
.search .btn-detail:hover,
.search .btn-book:hover {
	border: 1px solid var(--accent-light);
	color: var(--surface-color);
	background: var(--accent-light);
}

@media (max-width: 768px) {
	.filter-form {
    display: none;
	}
	.results .option {
    display: none;
	}
}

/*--------------------------------------------------------------
# Detail Page
--------------------------------------------------------------*/

.detail-page .swiper {
	width: 100%;
	height: 100%;
}
.detail-page .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
}
.detail-page .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.detail-page .swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.detail-page .swiper-view {
	height: 460px;
	width: 100%;
	border-radius: 16px;
}
.detail-page .swiper-thumb {
	height: 100px;
	box-sizing: border-box;
	padding: 10px 0;
}
.detail-page .swiper-thumb .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
}
.detail-page .swiper-thumb .swiper-slide-thumb-active {
	opacity: 1;
}
.detail-page .accordion-button {
	font-size: 20px;
	background: var(--accent-color);
	color: var(--contrast-color);
}
.detail-page .accordion-button::after {
	filter: brightness(0) invert(1);
}


/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

.form .content h1 {
	font-family: var(--accent-font);
	font-style: italic;
	font-size: 48px;
	margin: 34px 0px 20px 0;
}
.form .content p {
	font-size: 20px;
	font-weight: 400;
	position: relative;
}
.form-control, .form-select {
	color: #000;
	border-radius: 0px;
	border-bottom: 1px solid var(--default-color);
}
.form-floating>label {
	color: rgba(var(--bs-body-color-rgb),.65);
}

@media (max-width: 768px) {
	.form .content h1 {
    font-size: 28px;
    margin: 20px 0;
	}
	.form .content p {
    font-size: 14px;
	}
	.form-box {
    padding: 16px;
	}
}

.form .contact-details {
	background: #FEF2F2;
	padding: 20px;
}
.form .contact-details h4 {
	color: #b8b8b8;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 8px;
}
.form .contact-details p {
	color: var(--surface-color);
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
}
.form .contact-details .social-links {
  display: flex;
  align-items: center;
	gap: 10px;
}
.form .contact-details .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--contrast-color);
	font-size: 18px;
	color: var(--accent-color);
	transition: 0.3s;
}
.form .contact-details .social-links a:hover {
	color: var(--contrast-color);
	background: var(--default-color);
}
@media (max-width: 768px) {
	.form .contact-details {
    margin-bottom: 28px;
	}
}