/* ==========================================================================
   01. Fonts & Reset
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Basic reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em,
font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup,
tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* Box sizing */
* {
  box-sizing: border-box;
}

/* Lists */
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Simple clearfix utility */
.clearfix::after,
.grid::after {
  content: '';
  display: block;
  clear: both;
}

/* Layout containers */
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
  max-width: 1200px !important;
}

/* Masonry/grid helpers */
.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

/* Base typography & body */
html,
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #f2f6fb;;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

p {
  font-size: 15px;
  color: #2a2a2a;
}

img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* Text selection */
::selection,
::-moz-selection {
  background: #03a4ed;
  color: #fff;
}

/* ==========================================================================
   02. Global Layout & Buttons
   ========================================================================== */

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
  margin-bottom: -5px;
}

.section-heading h2 em {
  font-style: normal;
  color: #ECB43D;
}

.section-heading h2 span {
  color: #007cc2;
  font-weight: 700;
  text-transform: capitalize;
}

.section-heading span {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: #007cc2;
  opacity: 0.35;
}

/* Button patterns */
.main-blue-button a,
.main-blue-button-hover a,
.main-red-button a,
.main-red-button-hover a,
.main-white-button a,
.subscribe .inner-content form button,
form#contact button {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* Primary buttons */
.main-blue-button a {
  background-color: #03a4ed;
  color: #fff;
}

.main-blue-button-hover a {
  background-color: #007cc2;
  color: #fff;
  transition: all .3s;
}

.main-blue-button-hover a:hover {
  background-color: #ff695f;
  color: #fff;
}

/* Red buttons */
.main-red-button a {
  background-color: #ff695f;
  color: #fff;
}

.main-red-button-hover a {
  background-color: #007cc2;
  color: #fff;
  transition: all .3s;
}

/* White buttons */
.main-white-button a {
  background-color: #fff;
  color: #ff695f;
}

/* ==========================================================================
   03. Header & Navigation
   ========================================================================== */

/* Offset content by header height */
body {
  padding-top: 80px;
}

/* Fixed background header variant */
.background-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.15) !important;
  z-index: 9999;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e;
}

.background-header .main-nav .nav li:hover a,
.background-header .nav li a.active {
  color: #ff685f !important;
}

/* Main header container */
.header-area {
  background-color: #ffffff;
  opacity: 0.99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 80px;
  transition: all .5s ease;
}

.header-area.header-sticky {
  min-height: 80px;
  box-shadow: 0 0 16px -4px gray;
}

/* Nav base */
.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

/* Logo */
.header-area .main-nav .logo,
.background-header .main-nav .logo {
  line-height: 80px;
  width: 15%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  transition: all 0.3s ease;
}

/* Desktop nav list */
.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
}

/* Mobile menu panel (positioning; responsive behaviour in mobile.css) */
.header-area .main-nav .nav {
  position: relative;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

/* Nav items */
.header-area .main-nav .nav li {
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0;
}

.header-area .main-nav .nav li:last-child a,
.background-header .main-nav .nav li:last-child a {
  color: #fff;
  padding: 0 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff;
}

/* Links */
.header-area .main-nav .nav li a {
  display: block;
  font-size: 14px;
  color: #2a2a2a;
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
  border: transparent;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #007cc2;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #ECB43D !important;
}

/* Submenu */
.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu::after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.header-area .main-nav .nav li.submenu ul li a {
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #ff685f !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}

/* Hamburger / menu trigger */
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  right: 40px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  display: none; /* shown in mobile.css */
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span::before,
.header-area .main-nav .menu-trigger span::after {
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span::before,
.header-area .main-nav .menu-trigger span::after {
  content: "";
  width: 75%;
}

.header-area .main-nav .menu-trigger span::before {
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span::after {
  transform-origin: 33% 0;
  top: 10px;
}

/* Active (X) state */
.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span::before,
.header-area .main-nav .menu-trigger.active span::after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span::before {
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span::after {
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

/* Mobile booking button */
.Header_mbButton {
  background-color: hsl(226, 60%, 35%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  display: flex;
  height: 40px;
  padding: 10px 14px;
  border-radius: 10px;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s ease;
}

/* ==========================================================================
   04. Preloader
   ========================================================================== */

.js-preloader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #ff695f;
  border-radius: 50%;
  transform: translateX(0);
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #ff695f;
  border-radius: 50%;
}

@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

/* ==========================================================================
   05. Hero / Banner
   ========================================================================== */

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 175px 0 240px;
  position: relative;
  background-color: #243e90;
}

.main-banner .hero-banner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.main-banner .item {
  margin-right: 45px;
}

.main-banner .item h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: #007cc2;
  margin-bottom: 15px;
}

.main-banner .item h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 48px;
}

.main-banner .item h2 em {
  color: #ffffff;
  font-style: normal;
}

.main-banner .item h2 span {
  color: #ECB43D;
}

.main-banner .item p {
  margin: 20px 0 !important;
}

.main-banner .item .down-buttons {
  display: inline-flex;
}

.main-banner .item .down-buttons .call-button i {
  margin-right: 5px;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  color: #fff;
  font-size: 20px;
}

.main-banner .item .down-buttons .call-button a {
  color: #ff695f;
  font-size: 15px;
  font-weight: 500;
  margin-left: 30px;
}

/* ==========================================================================
   06. Services
   ========================================================================== */

.our-services {
  position: relative;
  margin-top: 0;
  padding-top: 60px;
}

.our-services .container {
  position: relative;
}

.our-services .services-left-dec img {
  width: 387px;
  height: 638px;
  left: -80px;
  top: -140px;
  position: absolute;
  z-index: 1;
}

.our-services .services-right-dec img {
  width: 305px;
  height: 305px;
  right: 25px;
  bottom: -120px;
  position: absolute;
  z-index: 1;
}

.our-services .section-heading {
  text-align: left;
}

.our-services .item {
  text-align: center;
  margin: 15px;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 10px 31px -3px rgba(7, 152, 225, 0.09);
  transition: 0.5s;
  position: relative;
  z-index: 9;
}

.our-services .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 40px 0 rgb(14 17 51 / 10%);
}

.our-services .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 30px;
  line-height: 30px;
}

.our-services .item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #007cc2;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #007cc2;
  position: relative;
  z-index: 9;
}

.our-services .item .icon:hover {
  background-color: #007cc2;
  color: #fff;
}

.our-services .item p {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.icon i {
  font-size: 28px;
}

/* ==========================================================================
   07. About
   ========================================================================== */

.about-us {
  margin-top: 0;
  padding-top: 120px;
}

.about-us .left-image {
  margin-right: 30px;
}

.about-us .section-heading h2 {
  margin-right: 60px;
}

.about-us .section-heading p {
  margin-top: 25px;
}

.count-box {
  width: 33% !important;
}

.about-us .fact-item {
  margin-top: 45px;
}

.about-us .fact-item .icon {
  width: 45px;
  height: 45px;
}

.about-us .fact-item .count-digit {
  font-size: 48px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 5px;
}

.about-us .fact-item .count-title {
  font-size: 15px;
  color: #ECB43D;
}

.about-us .fact-item p {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* ==========================================================================
   08. Portfolio
   ========================================================================== */

.our-portfolio {
  padding-top: 120px;
  margin: 0 15px;
  position: relative;
}

.our-portfolio .portfolio-left-dec img {
  width: 342px;
  height: 311px;
  left: 45px;
  top: 120px;
  position: absolute;
  z-index: 1;
}

.hotel-bigimg {
  border-radius: 23px;
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.hotel-smallimg {
  border-radius: 23px;
}

.our-portfolio .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.our-portfolio .section-heading h2 {
  margin: 0 60px -5px;
  position: relative;
  z-index: 1;
}

.our-portfolio .item .thumb {
  position: relative;
  transition: 0.7s;
}

.our-portfolio .item .thumb img {
  transition: all .3s;
}

.our-portfolio .item .thumb:hover img {
  opacity: 0.7;
  transform: translateY(10px);
}

.our-portfolio .item .hover-effect {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .5s;
  bottom: -240px;
  right: 120px;
  width: 200px;
  height: 150px;
  background-color: #03a4ed;
  border-radius: 20px;
}

.our-portfolio .item .thumb:hover .hover-effect {
  bottom: 30px;
}

.our-portfolio .item .hover-effect .inner-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: right;
}

.our-portfolio .item .hover-effect .inner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.our-portfolio .item .hover-effect .inner-content span {
  font-size: 15px;
  color: #fff;
}

/* Owl navigation for portfolio */
.owl-portfolio .owl-nav {
  position: absolute;
  top: 42%;
  width: 100%;
}

.owl-portfolio .owl-nav .owl-prev {
  position: absolute;
  left: 25px;
}

.owl-portfolio .owl-nav .owl-next {
  position: absolute;
  right: 30px;
}

.owl-portfolio .owl-nav .owl-prev span,
.owl-portfolio .owl-nav .owl-next span {
  color: transparent;
}

.owl-portfolio .owl-nav .owl-prev span::after,
.owl-portfolio .owl-nav .owl-next span::after {
  width: 46px;
  height: 46px;
  background-color: #ff695f;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-family: 'FontAwesome';
  transition: all .5s;
  opacity: 0.5;
}

.owl-portfolio .owl-nav .owl-prev span::after {
  content: '\f104';
}

.owl-portfolio .owl-nav .owl-next span::after {
  content: '\f105';
}

.owl-portfolio .owl-nav .owl-prev span:hover::after,
.owl-portfolio .owl-nav .owl-next span:hover::after {
  opacity: 1;
}

.owl-portfolio .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-portfolio .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ff695f;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0 5px;
}

.owl-portfolio .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   09. Subscribe
   ========================================================================== */

.subscribe {
  margin-top: 120px;
}

.subscribe .inner-content {
  background-image: url(../images/subscribe-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 60px 0;
  width: 100%;
  position: relative;
}

.subscribe .inner-content::after {
  content: '';
  background-image: url(../images/subscribe-dec.png);
  position: absolute;
  width: 195px;
  height: 138px;
  background-repeat: no-repeat;
  background-position: center center;
  right: -20px;
  top: -20px;
}

.subscribe .inner-content h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.subscribe .inner-content form {
  width: 100%;
  height: 80px;
  border-radius: 40px;
  background-color: #fff;
}

.subscribe .inner-content form input {
  width: 38.5%;
  margin-top: 20px;
  line-height: 40px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.subscribe .inner-content form input#website {
  border-right: 1px solid #eee;
}

.subscribe .inner-content form input::placeholder {
  color: #afafaf;
}

.subscribe .inner-content form button {
  background-color: #03a4ed;
  color: #fff;
  width: 20%;
  margin-right: 10px;
  border: none;
  text-align: center;
}

.subscribe .inner-content form button:hover {
  background-color: #ff695f;
}

/* ==========================================================================
   10. Contact
   ========================================================================== */

.contact-dec img {
  position: absolute;
  z-index: 1;
  width: 459px;
  height: 702px;
  right: 0;
  bottom: -400px;
}

.contact-left-dec img {
  position: absolute;
  z-index: 1;
  width: 174px;
  height: 319px;
  left: 0;
  top: 120px;
}

.contact-us {
  z-index: 2;
  position: relative;
  padding-top: 120px;
  margin-top: 0;
}

.contact-us .section-heading h2 {
  margin-right: 100px;
  margin-bottom: 40px;
}

.contact-us #map iframe {
  border-radius: 23px;
  position: relative;
  z-index: 2;
}

.contact-us .info {
  margin-top: 30px;
  position: relative;
  z-index: 5;
  display: inline-flex;
}

.contact-us .info span {
  display: inline-flex;
  margin-right: 30px;
}

.contact-us .info span i {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
}

.contact-us .info span a {
  color: #ff685f;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

/* Contact form card */
form#contact {
  margin-left: -100px;
  position: relative;
  z-index: 2;
  background-image: url(../images/contact-form-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 60px 120px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #9bdbf8;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  margin-bottom: 35px;
}

form#contact input::placeholder {
  color: #afafaf;
}

form#contact button {
  background-color: #ff695f;
  color: #fff;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: #03a4ed;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.footer-dec {
  width: 100%;
  margin-top: 70px;
}

footer {
  margin-top: 0;
  z-index: 2;
  position: relative;
}

footer .footer-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

footer .about .logo img {
  width: 55%;
  margin-bottom: 30px;
}

footer .about a {
  color: #fff;
  font-weight: 300;
}

footer .about ul {
  margin-top: 30px !important;
}

footer .about ul li {
  display: inline-block !important;
  margin-right: 5px;
}

footer .about ul li a {
  width: 32px;
  height: 32px;
  background-color: #007cc2;
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  font-size: 15px;
}

footer .about ul li a:hover {
  background-color: #ECB43D;
}

.contact-icon {
  font-size: 20px;
  margin-right: 10px;
}

footer .footer-item ul li {
  display: block;
}

footer .footer-item ul li:last-child {
  margin-bottom: 0;
}

footer .footer-item ul li a {
  font-size: 15px;
  color: #fff;
  transition: all .3s;
}

footer .footer-item ul li a:hover {
  color: #ffffff;
}

footer .footer-item p {
  font-size: 14px;
  color: #fff;
  margin-top: -5px;
  margin-bottom: 10px !important;
}

footer .footer-item p a {
  color: #fff;
}

footer .footer-item form {
  background-color: #03a4ed;
  height: 46px;
  border-radius: 23px;
  position: relative;
  margin-top: 15px;
}

footer .footer-item form input {
  line-height: 46px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0 20px;
  outline: none;
}

footer .footer-item form input::placeholder {
  color: #fff;
}

footer .footer-item form button {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
}

footer .copyright p {
  text-align: left;
  color: #fff;
  padding: 20px 0;
  font-weight: 300;
}

footer .copyright p a {
  color: #ff695f;
}

.sitemap-link {
  padding: 20px 0;
  text-align: right;
}

.sitemap-link a {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.footer-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 0;
  float: left;
  width: 100%;
}

.footer-divider {
  border-top: 1px solid #eee;
}

/* Footer payment / partner logos */
.mc-ft__others {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.mc-ft__payment {
  width: 278px;
}

.mc-ft__payment-title,
.mc-ft__partner-title {
  color: #fafafa;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 20px;
}

.mc-ft__payment-body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 12px 16px;
}

.mc-ft__payment-icon {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 28px;
  width: 40px;
}

.mc-ft__partner-body {
  display: flex;
  flex-wrap: wrap;
}

.mc-ft__partner-item {
  margin-right: 26px;
}

.mc-ft__partner-item img {
  height: 36px;
  width: 100%;
  border-radius: 2px;
}

/* ==========================================================================
   12. Mobile App Section
   ========================================================================== */

.social-links a i {
  font-size: 35px;
  margin-right: 15px;
}

.mobile_app_section {
  padding-top: 100px;
  padding-bottom: 50px;
  margin-bottom: 0;
  width: 100%;
  float: left;
  background: #fff;
}

.mobile_app_sectiocontainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile_app_section_one {
  position: relative;
  z-index: 1;
}

.mobile_app_sectiorow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mobile_img {
  width: 50%;
  flex: 0 0 auto;
  max-width: 100%;
  margin: -60px 0;
  padding-right: 64px;
}

.mobile_img img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.app_details {
  width: 50%;
  flex: 0 0 auto;
  max-width: 100%;
  margin-bottom: 78px;
}

.mobile_app_section .section-info h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
}

.mobile_app_section .section-info h3 {
  line-height: 1.6;
  margin: 0 0 35px;
  word-wrap: break-word;
  color: #9e9e9e;
  font-size: 14px;
}

.mobile_app_section .social-links {
  display: flex;
}

.mobile_app_section .social-links a {
  background: #fff;
  color: #0e1133;
  border-color: #fff;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 24px;
  line-height: 40px;
  border-radius: 6px;
  border: 2px solid #0e1133;
  margin-right: 10px;
}

.mobile_app_section .social-links a .fa {
  font-size: 30px;
  padding-right: 6px;
}

.mobile_app_section .social-links a span {
  line-height: 20px;
  text-align: left;
}

.mobile_app_section .social-links a span span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 20px;
}

/* ==========================================================================
   13. Account, FAQ & Help Pages
   ========================================================================== */

/* Account wrapper */
.fc-account-wrapper {
  padding-bottom: 60px;
}

/* Account dropdown */
.adhCustomerLoginBox:hover .name_div_dropdown {
  display: inline-block;
}

.adhCustomerLoginBox .name_div_dropdown {
  top: 36px;
  left: 0;
  z-index: 9;
  box-shadow: 0 6px 6px #00000021;
  border-radius: 6px;
}

.name_div_dropdown {
  background-color: #fff;
  max-width: 200px;
  width: 200px;
  right: 0;
  top: 65px;
  position: absolute;
  display: none;
}

.adhCustomerLoginBox .name_div_dropdown a {
  padding: 12px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ddd;
  color: #000 !important;
  text-align: left;
  background-color: transparent;
}

.adhCustomerLoginBox .name_div_dropdown a:hover {
  color: #000 !important;
}

/* FAQ / accordion */
.faq.section {
  padding: 30px 0;
  background: #fff;
}

.faq h2 {
  font-size: 26px;
  font-weight: 700;
}

.faq p {
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 40px;
}

.faq .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: #111;
  --bs-accordion-icon-color: #111;
  --bs-accordion-icon-active-color: #111;
}

.faq .accordion-item {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq .accordion-button {
  font-weight: 600;
}

.faq .accordion-item .accordion-button {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #e6e6e6 !important;
}

.faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: #111;
  box-shadow: none;
}

.faq .accordion-body {
  padding: 0 0 24px;
  font-size: 16px;
  color: #444;
}

/* Help hero / contact section */
.help-hero {
  margin-top: 80px;
  margin-bottom: 120px;
}

.help-qr-wrapper {
  text-align: center;
}

.help-qr-image {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.help-kicker {
  font-size: 18px;
  font-weight: 500;
  color: #243E90;
  margin-bottom: 8px;
}

.help-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0f172a;
}

.help-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #1f2933;
}

.help-phone {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 4px;
  color: #0f172a;
}

.help-email a {
  font-size: 18px;
  color: #243E90;
  text-decoration: none;
}

.help-email a:hover {
  text-decoration: underline;
}

/* WhatsApp CTA */
.fc-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  margin-top: 20px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  background: #243E90;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fc-whatsapp-btn:hover,
.fc-whatsapp-btn:focus {
  background: #1b2f73;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.35);
}

/* Help link underline + color */
.helplink {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.helplink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 1px;
  background-color: #243E90;
  transition: width 0.2s ease;
}

.helplink:hover::after,
.helplink:focus::after {
  width: 100%;
}

/* Force helplink color in header nav */
.background-header .main-nav .nav li a.helplink,
.header-area .main-nav .nav li a.helplink {
  color: #243E90 !important;
}

.background-header .main-nav .nav li a.helplink:hover,
.header-area .main-nav .nav li a.helplink:hover,
.background-header .main-nav .nav li a.helplink:focus,
.header-area .main-nav .nav li a.helplink:focus {
  color: #243E90 !important;
}

/* ==========================================================================
   14. Adivaha / Plugin Overrides
   ========================================================================== */

/* Searchbox wrapper */
.searchbox {
  position: absolute;
  width: 100%;
  min-height: 420px;
  margin: 0 auto;
  z-index: 99;
  left: 0;
  right: 0;
}

/* Adivaha search tabs & trip buttons */
#AD186900_1 .tab-block .tab-mnu {
  justify-content: left !important;
}

#AD186900_1 .tab-mnu li {
  box-shadow: 0 3px 10px 0 rgba(17, 38, 117, .3);
}

/* Hide Adivaha tab menu on load */
.tab-mnu.adi-full {
  display: none !important;
}

/* Align tripbutton to the left */
.tripbutton {
  text-align: left !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  padding-left: 5px;
}

/* Trip type buttons */
#AD186900_1 .onewayu,
#AD186900_1 .round_tripu {
  border-radius: 8px !important;
  background-color: transparent !important;
  color: #f7f7f7 !important;
  box-shadow: inset 0 0 0 1px #ffffff80 !important;
  padding: 0 17px !important;
  height: 40px !important;
  line-height: 40px !important;
}

#AD186900_1 .onewayu_selected {
  background-color: #ffffff !important;
  color: #000 !important;
}

/* Panel background */
#AD186900_1 .tabpaneback {
  box-shadow: none !important;
}

/* Account module – hide unwanted elements */
#ADHCUSTOMERMANAGEMENT_WRAPPER .adivaha_heading,
#ADHCUSTOMERMANAGEMENT_WRAPPER .tab-mnu,
#ADHCUSTOMERMANAGEMENT_WRAPPER .adi_breadcrumb,
.tab-mnu.adi-full {
  display: none !important;
}

/* Adivaha price & labels */
#AD186900_1 .refundcsstext {
  color: #18a558 !important;
}

#AD186900_1 .copied_textc,
#AD186900_1 .loadmorecss {
  background-color: #243E90 !important;
}

#AD186900_1 .tabsCircle {
  display: none !important;
}

#AD186900_1 .rightsidepricecsss {
  font-weight: 600 !important;
}

#AD186900_1 .pricegroupcss2 {
  font-size: 10px !important;
}
