
/*--------------------------------------------------------------
# Font & Color Variables

--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009961; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #009961; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009961; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color:#fff;
  font-family: "Poppins", sans-serif; font-size:14px;
}

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: "Poppins", sans-serif;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;

  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* 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: 24px;
  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);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 76px;
 
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
 
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }
  .navmenu li a.none{ font-weight:600;}
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color:#3A4B54;
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: #3A4B54;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#3A4B54;
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-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);
    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: 32px;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color:#3A4B54;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;padding-bottom: 15px !important;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
 
  padding: 0; color:#D6D6D6;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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-color);
  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: color-mix(in srgb, var(--accent-color), transparent 20%);
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.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 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 57px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;

  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}



.hero .container {
  position: relative;
 
}

.hero h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700; color:#3A4B54
}

.hero p {
  color: #3A4B54;
  margin: 10px 0 20px 0;
  font-size: 20px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }
}



 .search-wrapper {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      padding: 20px;
    }

    .input-box {
     border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 10px 8px;
    display: flex
;
    align-items: center;
    /* gap: 10px; */
    height: 64px;
    background: #fff;
    color: #344054;
    font-weight: 500;
    }

    .input-box input {
      border: none;
      outline: none;
      width: 100%;
      font-weight: 500;
    }

    .input-box input::placeholder {
      color: #6c757d;
    }

    .swap-icon {
      font-size: 1.2rem;
      margin: 0 5px;
      color: #6c757d;
    }

    .search-button {
     background-color: #f5c518;
    color: #1c1c1c;
    font-weight: 600;
    border-radius: 4px;
    padding: 19px 45px;
    border: none;
    }

    .via-title {
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 1rem; color:#000000; font-size:16px; font-weight:400;
    }

    .via-input {
      padding: 10px 12px;
      border-radius:4px;
      border: 1px solid #dcdcdc;
    }

    .via-input:focus {
      outline: none;
      border-color: #004aad;
      box-shadow: 0 0 0 0.15rem rgba(0, 74, 173, 0.25);
    }

    .icon-box {
        font-size: 1.1rem;
    color: #3A4B54;
    }

    .btn:focus, input:focus {
      box-shadow: none;
    }
	
	
	.swap-icon{    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    position: absolute;
    z-index: 999;
    /* left: 0px; */
    top: 32px;
    border-radius: 40px;
    /* padding: 11px; */
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;}
	
	
	.order1{
    border-radius: 0px 4px 4px 0px;padding-left: 18px;}
	
		.order2{
    border-radius: 4px 0px 0px 4px;}
	
	.input-box input {
    border: none;
    outline: none;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    color: #3A4B54;
}





.input-box-new{border: 1px solid #dcdcdc;
    border-radius: 4px; height:64px;}


.input-box-new1{ border-right:1px solid #dcdcdc; border-radius: 4px 0px 0px 4px;}

.input-box-new2{ border-left:0px; border-radius: 0px 4px 4px 0px;}


  input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    filter: invert(0.5);
  }

  input[type="datetime-local"] {
    background-color: transparent;
    outline: none;
  }

  input[type="datetime-local"]:focus {
    box-shadow: none;
  }
  
  
  .form-control1 .form-control{ font-size: 13px;
    color: #3A4B54;
    width: 56%;}
   .form-control1 {
    margin-left: -3px;
}


.position-absolute{ background:#fff; line-height:20px; font-size:14px;}



.hero .container{ padding-right:0px;}	
.icon-box img{ width:auto; position:static;}	
.icon-box::before{ display:none}


.text-secondary img{ width:auto; position:static;}	
.text-secondary::before{ display:none}







  .review-summary {
      text-align: center;
      padding: 30px 20px;padding-top: 0px;
    }

    .review-summary h2 {
      font-size: 24px;
      font-weight: bold;
    }

    .review-summary p {
      font-size: 18px; padding:0px!important;
      margin: 0;
    }

    .review-card {
      background: white;
      border: none;
      padding: 15px;
    }

    .review-name {
    font-weight: bold;
    color: #000;
    float: left;
    margin-right: 8px;
    }

    .star-rating {
      color: #000;
      font-size: 14px;color:#000;
    }

    .review-text {
      margin-top: 10px;
      font-size: 15px; color:#000;
    }

    .review-source {
      font-size: 13px;
      color: gray;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: black;
      border-radius: 50%;
      padding: 10px;
    }
	
	
	.ouberbo{position: absolute;
    z-index: 1;
    background: #fff;
    border-radius: 20px 20px 0px 0px;
    padding: 23px 0px 0px 0px;
    max-width: 1162px;
    margin: 0 auto;
    bottom: -110px;}
	
	
	.inettopbox{position: relative;
    z-index: 2;
   }
	#hero h2{margin-top: 100px; text-align:left}
	
	#hero .ouberbo  h2{margin-top: 0px; text-align:center}
	
	
	.wal2-confirm{ background:#f5c518!important;color:#3A4B54!important;}
	
	
	
	 .feature-icon {
      font-size: 1.2rem;
      margin-right: 10px;
      color: #007bff;
    }
    .icon-margin-right img {
      margin-left: -3px;
      margin-right: 3px;
    }
    .icon-margin-right {
     margin-right: 2px;
    }

    .left-box {
     border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    background: #FDFEF6;
    width: 80%;
    margin: 0 auto;
    }

    .left-box li {
      list-style: none;
      padding: 8px 0;
      display: flex;
      align-items: center;
      font-size: 16px;
    }

    .transfer-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .right-feature {
      text-align: center;
      padding: 10px;
    }

    .section-title {
      font-weight: bold;
      margin-bottom: 20px;
    }
	
	
	.ouberbo img{width: auto !important;
    height: auto !important;
    position: static;
    display: inline;}
	
	.review-summary{}
	
	
	
	
	
	
	.middle-box h4{ font-size:33px; color:#000000; font-weight:500; text-align:center; margin-bottom:20px;}
	
	.boder-new{border: 1px solid #3A4B54; border-radius: 6px;}
	.boder-new-right{border-right: 1px solid #3A4B54; }
	
	.middle-box h6{ font-size:23px; color:#000000; margin-top:20px;}
	.middle-box p{ font-size:16px; color:#000000; padding-bottom:6px;}
	
	
	 .car-box {
    text-align: left;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
   
  }
  .car-box img {
    max-width: 100%;
    height: auto;
  }
  .car-box h5 {
     margin-top: 15px;
    font-weight: 600;
    font-size: 26px;
  }
  .car-info {
    font-size: 15px;
    margin-top: 8px;
  }
  .car-info i {
    margin-right: 6px;
  }
  
  
  .owl-item{ box-shadow:0px 0px 0px!important}
  
.owl-prev {
background: url(../img/arrow-left.png) left top no-repeat !important;
    width: 92px;
    height: 50px;
    position: absolute;
    left: -50px;
    display: block !important;
    opacity: 1 !important;
    z-index: 1000;
    top: 54%;
    transform: translateY(-50%);
    background-color: transparent;
    text-indent: -999999px;
}



.owl-next {
background: url(../img/arrow-right.png) left top no-repeat !important;
    width: 92px;
    height: 50px;
    position: absolute;
    right: -50px;
    display: block !important;
    opacity: 1 !important;
    z-index: 1000;
    top: 54%;
    transform: translateY(-50%);
    background-color: transparent;
    text-indent: -999999px;
}






.owl-nav{ display:block!important}



.how-it-works {
  background-size: cover;
  background-position: center;
  color: white;
}

.how-it-works .icon-box {
  width: 80px;
  height: 80px;
  background: #37474F;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.icon-box.success {
  background: #4CAF50;
}

.step-text {
  font-weight:600;
  font-size: 15px;
}

.step-line::before {
 content: '';
    position: absolute;
    top: 35px;
    left: 17%;
    right: 10%;
    height: 2px;
    background: #ffffff5e;
    z-index: 0;
    width: 69%;
}

.step-item {
  position: relative;
  z-index: 1;
}


.how-it-works h2{ font-size:50px; color:#fff; text-align:center}




.how-it-works{ padding:70px 0px 100px 0px}


.why-it-book { text-align:center}

.why-it-book h2{ color:#000000;}

.why-it-book p{ color:#666666; font-size:14px;}


h2{ font-size:50px; color:#fff; text-align:center; font-weight:700;}






.popular-it-airports h2{ color:#000000;}





.why-it-book  .feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .feature-box {
      text-align: center;
      padding: 20px;
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .feature-text {
      color: #444;
      font-size: 15px;
    }
	
	
	 .airport-img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
    }

    .airport-caption {
     text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
    }

    .airport-card {
      margin-bottom: 40px;
    }

  
  .popular-it-airports{ padding-top:0px;}
  
  .airport-btn{text-align: center;
    background: #F1C40F;
    color: #3A4B54;
    display: inline-block;
    margin: 0 auto;
    padding: 15px 100px;
    border-radius: 6px;
    text-align: center;}
	
	.airport-btn a{ color: #3A4B54;}
	
	.faq h2{ color:#000000; text-align:left}
	.accordion-button{ background:#3A4B54}
	
	

header{    background: none !important;
    position: absolute;
    width: 100%;}
	
	
	
	
	
	
footer {
  background-color: #3A4B54!important;
  color: #ffffff;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-link:hover {
  text-decoration: underline;
  color: #fff;
}

.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background-color: #455A64;
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icon:hover {
  background-color: #607D8B;
}

footer .col-md-2, .col-md-4{ text-align:left}
footer h6{ color:#fff}


.text-center-footer{ color:#D6D6D6; font-size:12px; text-align:left}

.accordion-button::after{ font-family: 'bootstrap-icons';
    content: "\f4fe";
    color: #555 !important;
    border: 1px solid #3D4F59;
    width: 26px;
    height: 26px;
    line-height: 27px !important;
    text-align: center;
    color: #000;
    line-height: 0px;
    border-radius: 50%;
    background: #fff;}












/* .progress-steps{ padding-top:120px;} */

 .progress-steps .stepper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 30px auto;
      
      position: relative;
    }

   .progress-steps .step {
      text-align: center;
      flex: 1;
      position: relative;
    }

   .progress-steps .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 19px;
      left: 50%;
      width: 100%;
      height: 2px;
      background-color: #dee2e6;
      z-index: 0;
    }

    .progress-steps .step .circle {
     width: 40px;
    height: 40px;
    line-height: 39px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #dee2e6;
      margin: 0 auto;
      z-index: 1;
      position: relative;
      font-weight: none;
      color: #CFD6DC;
    }

    .progress-steps .step.active .circle {
      border-color: #CFD6DC;
    color: #CFD6DC;
    }

    .progress-steps .step.completed .circle {
      background: #fff;
      color: #3A4B54;
      border-color: #3A4B54;
    }

    .progress-steps .step.completed::after {
      background-color: #3A4B54;
    }

    .progress-steps .label {
      margin-top:16px;
      font-size: 14px;
      color: #CFD6DC;
    }

    .progress-steps .step.completed .label {
      color: #2E2F68;
    }

    .progress-steps .step.active .label {
      font-weight: 400;
      color: #CFD6DC;
    }
	
	
	
	
	 /* Responsive Improvements */
    @media (max-width: 576px) {
      .stepper {
        gap: 8px;
      }

      .step .circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
        line-height: 28px;
      }

      .label {
        font-size: 12px!important;
      }

      .step:not(:last-child)::after {
        top: 14px;
      }
    }
	
	
	
	
	
	
	
	
	
	
	
	button{ color: #3A4B54!important;}
	 .card {
      border: none;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .edit-btn {
      background-color: #ffc107;
      color: #3A4B54;
      border: none;
      padding: 4px 12px;
      border-radius: 5px;
      font-weight: 500;
    }
    .section-title {
      font-size: 20px;
      font-weight: 600;
    }
    .label {
      font-weight: 500;
      color: #333;
    }
    .value {
      color: #444;
    }
    .icon {
      color: #007bff;
      margin-right: 6px;
    }
    .btn-yellow {
      background-color: #ffc107;
      border: none;
      border-radius: 5px;
      color: #000;
      padding: 6px 14px;
    }
    .review-stars {
      color: #f0ad4e;
    }
    .review-box {
      font-size: 14px;
    }
    .features-list li::before {
      
    }
	
	ul.list-unstyled li{ font-size:15px; color:#000000; margin-bottom:10px;}
	
	.innerbox{ background:#EDF1F4}
	
	.bi-car-front{    position: absolute;
    top: 51px;}
	 .custom-divider {
    height: 1px;
    background: linear-gradient(to right, #ccc, #eee, #ccc);
    width: 100%;
  }
  .custom-divider{ position:relative; margin-bottom:30px!important;}
  .custom-divider img{position: absolute;
    left: 0px;
    top: -13px;
    background: #fff;}
	
	.form-select-sm {
    border: 1px solid #D9D9D9;
    padding: 13px 50px 13px 20px;
    border-radius: 4px;}
	.round-quote{   color: #2980B9 !important; background: #fff;
    border: 1px solid #D9D9D9;
    padding: 13px 50px;
    border-radius: 4px;}
	
	
	
	
	
	
	
	
	 .card-custom {
      border-radius: 12px;
      border: 1px solid #e1e1e1;
      overflow: hidden;
      background: #fff;
    }
    .car-img {
      
    }
	
	.card-custom .gap-4 {
    gap: 9.5rem
/* 82px */
145px
 !important;
}
    .info-text {
     font-size: 0.9rem;
    text-align: right; font-size:14px;
    }
    .rating {
      color: black;
    }
    .price-box {
      background-color: #f9f9f9;
      border-left: 1px solid #eee;
      padding-top: 10px;
    }
    .book-btn {
      background-color: #f4c002;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    margin-bottom: 19px;
    }
    .service-header {
      border-bottom: 1px solid #eee;
    }
    .small-muted {
      font-size: 0.8rem;
      color: #666;
    }
	
.card-custom strong{    margin-right: 19px;
    border-right: 1px solid #eee;
    padding-right: 20px;}
.card-custom .small{border-bottom: 1px solid #eee;}

.bottom-box .info-text{ float:left; font-size:16px;}

.bottom-box a{ float:right}

.card-custom a{ color:#2980B9!important}



.card-custom{ margin-bottom:20px;}
.innerheader{background: #fff !important;}




 .form-label {
      font-weight: 500;
    }
    .flag-select {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 0.375rem 0.75rem;
      background-color: #f9f9f9;
    }
    .flag-img {
      width: 24px;
      height: 16px;
      margin-right: 8px;
    }
    .form-box {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.03);
    }


.form-box{ margin-bottom:20px;}
.form-box .form-control{ padding: 15px 10px 15px 10px;font-size:14px;border-radius: 4px;border: 1px solid #CCCCCC;}
.form-box .col-form-label{ font-size:14px; font-weight:600; text-align:right}
.form-box h5{ font-size:24px;}






  .count-box input[type="number"] {
      width: 60px;
      text-align: center;
    }



.item-row {
      margin-bottom: 1.5rem;
    }
    .count-box {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .count-box input {
      width: 40px;
      text-align: center;
    }
    .tooltip-icon {
      font-size: 0.9rem;
      cursor: pointer;
      color: #0d6efd;
      margin-left: 0.25rem;
    }
    .label-title {
      font-weight: 500;
    }
    .sub-text {
      font-size: 0.85rem;
      color: #0d6efd;
    }
	
	
	.form-box .item-row .form-control{ padding: 0px;font-size:14px;border-radius: 4px;}
	.form-box .item-row .label-title {
    font-weight: 500; color:#000; font-size:17px;
}

/* .form-box button{border: 2px solid #CCCCCC;
    padding: 18px 10px;
    font-size: 42px;
    line-height: 0px; color:#2980B9!important} */
	.form-box button:hover{ background:#ffc107; color:#fff!important; border:2px solid #ffc107}
	.form-box .item-row input[type="number"]{border: 2px solid #CCCCCC;
    padding: 4px 4px;
    font-size: 19px;color:#2980B9!important;
    line-height: 0px;
    text-align: center;}
	
	.sub-text{ color:#2980B9}
	
	.form-box textarea{ padding: 15px 10px 15px 10px;font-size:14px;border-radius: 4px;border: 1px solid #CCCCCC; width:100%; height:120px;}
	
	
	
	
	
	
	
	
	
	
	
	
	 .form-label {
      font-weight: 500;
    }
    .info-icon {
      font-size: 0.9rem;
      color: #0d6efd;
      margin-left: 5px;
      cursor: pointer;
    }
    .form-section {
     
    }
    .form-control, .form-select {
      font-size: 0.9rem;
    }
    hr {
      margin: 1.5rem 0;
    }
	
	
	.form-box select{padding: 15px 10px 15px 10px;font-size:14px;border-radius: 4px;border: 1px solid #CCCCCC;}
	
	
	
	
	
	
	
	
	
	
	
	 .summary-box {
     background-color: #e6f2ff;
    border-radius: 10px;
    padding: 1.5rem;
    /* max-width: 400px; */
    margin-left: 170px;
    margin-right: 140px;
    font-size: 18px;
    }
    .summary-title {
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
    .summary-row:last-child {
      font-weight: 600;
      margin-top: 1rem;
    }
	
	
	
	.btn-yellow {
      background-color: #f4c20d;
      color: #333;
      font-weight: 500;
      border: none;
      
      padding: 0.75rem;
      font-size: 1rem;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
    .btn-yellow:hover {
      background-color: #e0b90c;
    }
    .terms-text {
      font-size: 0.9rem;
    }
    .terms-text a {
      color: blue;
      text-decoration: none;
    }
    .terms-text a:hover {
      text-decoration: underline;
    }
	
	
	
	
	.container-inner{ max-width:1180px; margin:0  auto}
	
	
	
	
	
	
	
	
	
	
	
	  .box {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
     .box .highlight-box {
      background-color: #e6f2ff;
      padding: 10px 15px;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .box .btn-yellow {
      background-color: #f4c20d;
      color: #333;
      font-weight: 500;
      border: none;
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
      border-radius: 6px;
    }
    .btn-yellow:hover {
      background-color: #e0b90c;
    }
     .box .label {
      font-weight: 500;
    }
     .box .text-muted-small {
      font-size: 0.875rem;
      color: #666;
    }
	
	.information h6{ font-size: 23px;
    margin-bottom: 30px !important;}
	.information{ font-size:16px; color:#000000}
	.tessee{ font-size:24px; margin-top:30px;}
	.information .mb-2 {
    margin-bottom: 1rem !important;
}
.information{ padding:30px 20px!important;}

.innerbg img{ height:auto!important}


.innerbg{min-height:46vh;}

.discover{ background:url(../img/bg.jpg) left  top repeat-x;}


.discover h4{ font-size:60px; color:#3A4B54; text-align:center; font-weight:700; margin-top:90px}



 .search-box {
      border: 1px solid #dce0e5;
      border-radius: 8px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      background-color: #fff; margin-bottom:60px;
    }

    .search-box input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 1rem;
      color: #333;
      background: transparent;
    }

    .search-box input::placeholder {
      color: #adb5bd;
    }

    .search-box i {
      color: #6c757d;
      font-size: 1.2rem;
    }
	
	
	
	  .accordion-button {
      background-color: #fff;
      border: 1px solid #ddd !important;
      border-radius: 8px !important;
      font-weight: 500;
      color: #333;
      box-shadow: none;
      margin-bottom: 10px;
    }

    .accordion-button:not(.collapsed) {
      background-color: #f4c430;
      color: #000;
    }

    .accordion-item {
      border: none;
    }

    .accordion-button::after {
      font-family: 'bootstrap-icons';
      content: "\f4fe"; /* plus icon */
      color: #555;
    }

    .accordion-button:not(.collapsed)::after {
      content: "\f2ea"; /* dash icon */
      color: #000;background: #fff;
    }

    .accordion-body {
      background-color: #f9f9f9;
      border-radius: 0 0 8px 8px;
    }

	
	

    .country-box.selected {
      background-color: #f4c430; /* Highlight color (like yellow) */
      color: #000;
    }

    .country-icon {
      font-size: 18px;
      color: #555;
    }

    .country-box.selected .country-icon {
      color: #000;
    }





.inner-headre{ position:static}



.fawarea{ background:#EAF7FC; padding:20px 0px 20px 0px; text-align:center; margin-top:-1px;}
.fawarea ul{ margin:0px; padding:0px;}
.fawarea ul li{ display:inline-block; text-align:center;}
.fawarea ul li a{ color:#000000; padding:20px 20px 20px 20px}
.fawarea ul li a:hover{ background:#F1C40F}




.reliable{ text-align:center; font-size:19px; color:#8E8E8E}


.boxforminner{ background:#fff; border-radius:12px; padding:20px;}


.outer-inner h3{ font-size:23px; font-weight:700px; margin-bottom:10px; margin-top:20px;}

.outer-inner p{ font-size:18px;
    line-height: 29.6px;}


.miman{ min-height:337px;}

.boxforminner h6{ font-size:20px;}
.outer-inner{ background:#EDF1F4}

img{ max-width:100%; height:auto}





.scroll-box {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar Styling */
.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #ffc107; /* Bootstrap warning/yellow */
  border-radius: 10px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #3A4B54;
  border-radius: 10px;
}


.pulare{ padding-top:50px; margin-bottom:60px;}

.my-book{ background:#EDF1F4}

.boder-new{ width:100%}


.mybook h2{ font-size:44px; color:#3A4B54; text-align:left; font-weight:400!important;}


.mybook label{ font-size: 1.25rem; color:#3A4B54}


.form-control{padding: 15px 10px 15px 10px;font-size:14px;border-radius: 4px;border: 1px solid #CCCCCC;}


.mybook .btn-warning{color: #3A4B54 !important;
    padding: 11px 110px !important;
    width: auto !important;
    font-size: 20px;}



.mybook .bi-car-front{ position:static}

.mybook .bi-check2-circle::before{ color:#2980B9}


.mybook .form-select{padding: 15px 10px 15px 10px;font-size:14px;border-radius: 4px;border: 1px solid #CCCCCC;}


.fw-semibold {
    font-weight: 600 !important; color:#3A4B54
}




.box-main{ background:#D9ECFF; padding:10px;}
.box-mainnew{ padding:10px;}
.card-new{min-height: 200px;}
.boxs h2{ color:#fff}






















  .nav-tab {
      background-color: #f1c40f;
      border-radius: 6px;
      padding: 8px 25px;
      border: none;
      font-weight: 500;
    }

    .side-box {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: 100%;
    }

    .side-box .active-link {
      color: #f1c40f;
      font-weight: 600;
    }

    .booking-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .booking-card img {
      max-width: 100%;
      height: auto;
    }

    .btn-yellow {
      background-color: #f1c40f;
      color: #000;
      border: none;
    }

    .btn-yellow:hover {
      background-color: #e1b90f;
    }

    .btn-outline-blue {
         border: 1px solid #2980B9;
    color: #007bff;
    font-size: 16px;
    color: #2980B9 !important;
    padding: 12px 50px;
    }

    .btn-outline-blue:hover {
      background-color: #2980B9;
      color: #fff!important;
    }

    .rating {
      color: black;
    }
	
	.bookpagea .btn-yellow{ margin-bottom:20px;}
	
	.passengers{ font-size:14px; color:#000000}
	.rige{ font-size:16px; border-bottom:1px solid #D9D9D9; padding-bottom:10px;}
	
	.rating-radting{    display: flex
;
    gap: 11px;
    margin-bottom: 11px; color:#000000; font-size:12px;}
	
	.boxs h2{margin-top: 70px!important;
     text-align: center!important;}
	 
	 
	 
	 
	 
	 
	 
	 
	 
	 .nanda{line-height: 60px;
    position: relative;
    top: 4px;
    font-size: 18px;}
	 
	  .info-card {
  border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    background-color: #fff;
    position: relative;
    top: -150px;
    z-index: 999;
    }
	 .info-card h5{ color:#3A4B54; font-size:40px;}
	.info-card p.mb-1{ font-size:32px; color:#3A4B54;}
	.info-card .btn-sm{background: #2980B9;
    color: #fff !important;
    padding: 11px 90px; font-size:20px;
    margin: 0 auto;border:1px solid #2980B9;
    margin-top: 11px;}
	
	.info-card .btn-sm.none{ background:none; color:#2980B9!important; border:1px solid #2980B9}
	.info-card .btnnonbe
    .icon-box {
      font-size: 28px;
      margin-bottom: 10px;
      color: #0d6efd;
    }
    .step-box {
   
    border: 1px solid #dee2e6;
    border-radius: 12px;
    position: relative;
    left: -150px;
    background: #fff;
    padding: 30px 30px;
    top: 90px;
    }
	 .step-box h6{ font-size:20px;}
	 .step-box p{ font-size:18px;}
    .rounded-img {
      border-radius: 12px;
    }
	
	
	.booking{ font-size: 24px;
    color: #3A4B54;
    position: relative;
    top: -59px;}
	
	.pwew{ position:relative}
	.box-text-maona{ margin-top:-110px;}
	.box-text-maona h5{ font-size:36px;}
	.boxcir{ margin-top:20px;}
	.boxcir h6{ font-size:24px; text-align:center; margin-top:20px; color:#000000}
	.boxcir p{ font-size:24px; color:#000000; line-height:29px; font-weight:normal;}
	
	.how-to-worl{ position:absolute; left:0px; top:140px; text-align:center; color:#fff; font-size:30px; text-align:center; width:100%}
	
	
	
	
	
	
	 .form-section {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .form-label.required::after {
      content: " *";
      color: red;
    }
    .form-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .form-subtitle {
      font-size: 1.5rem;
      font-weight: 600;
      margin-top: 30px;
      margin-bottom: 20px;
    }
	
	
	
	.centerbox{ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0px 30px;
    margin-top: -90px;
    z-index: 999999; padding-bottom:30px;
    position: relative;border-radius: 20px;
}


	.centerbox h2, h4{font-size: 34px;
    text-align: center;
    color: #3A4B54; border-radius: 10px;
    /* margin-top: 80px; */
    padding-top: 50px;
    margin-bottom: 22px;}
	
	
	.centerbox .form-control {
    padding: 15px 10px 15px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
}


.centerbox select {
    padding: 15px 10px 15px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
}


.form-check-inline-new{display: flex; margin-left:0px!important; gap:5px; padding-left:0px;

}

.centerbox h3{font-size: 34px;
    text-align: center;
    color: #3A4B54; border-radius: 10px;
    
    padding-top: 50px;
    margin-bottom: 22px;}
	
	
.form-check-inline-new input[type=radio]{margin-left:8px;}

.outerbox{ border:1px solid #CCCCCC; padding:20px; margin-bottom:20px;}

.centerbox label{ width:30%; float:left}
.centerbox input[type="text"]{ width:70%; float:left}
.centerbox input[type="email"]{ width:70%; float:left}
.centerbox input[type="password"]{ width:70%; float:left}
.centerbox select{ width:70%; float:left}
.outerbox{ overflow:hidden;}
.mbilebox-new{ display:none}
.btn-yellow-new{ width:100%; margin-bottom:120px;}

.flor-leftbox{text-align: left !important;
    margin-top: 0px !important;
    padding-top: 0px;}
.parsant-widt{ width:100%}	
.bg-success{padding: 11px 30px;}
@media only screen and (max-width: 767px) {

    header {
        background: #fff !important;
        position: static;
    }

.hero .container{ padding-right:20px;}	

.header .logo img {
    max-height: 44px;
}

#hero h2 {
    margin-top: 0px;
    text-align: left;
}
.owl-nav{ display:none!important}
.mobile-nav-toggle{color:#3A4B54;}
.car-info {
    font-size: 12px;
    margin-top: 8px;
}
.car-box{ background:none}
.mbile-area{ background:#FDFEF6}

.car-box h5 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 17px;
}
.boder-new{ background:#EDF1F4}
.mbile-area{ margin-bottom:0px!important; padding-bottom:0px; padding:20px 0px 20px 0px}
.boder-new-right{ border:0px;      }
.middle-box h6{font-size: 16px;}
.middle-box p{ color:#3A4B54; font-size:10px;}
.boder-new {
    width: auto!important;
}
.why-it-book {
    text-align: center;
    margin-top: 0px;
    padding-top: 20px;
}
.boder-new{ border:0px;}
.left-box{ border:0px; background:none; width:100%!important}
.left-box li{width: 49%;
        float: left;
        font-size: 12px;}
.middle-box h4{ font-size:20px; color:#3A4B54}		

.how-it-works h2{ font-size:20px; color:#fff}		
.why-it-book h2{ font-size:20px; color:#3A4B54}		

.feature-title{    font-size: 13px;}


.popular-it-airports h2 { font-size:20px; color:#3A4B54}		

.faq h2{font-size:20px; color:#3A4B54}

.airport-card img{width: 23%;
    float: left;border-radius: 12px;}
	
.airport-caption{ font-size:14px;}

.airport-btn{ display:none}

.popular-it-airports{ padding-bottom:0px;}

.faq{ padding-top:0px!important; margin-top:0px!important}

.step-line::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 15%;
    right: 10%;
    height: 2px;
    background: #ffffff5e;
    z-index: 0;
    width: 71%;
}

    #hero h2 {
        margin-top: 0px;
        text-align: left;
        font-size: 17px;
        text-align: center;
        line-height: 20px;
    }

.search-button{width: 100%;}
.form-control1 {
           margin-left: 0px;
        margin-right: 0px;
}
.search-wrapper .icon-box img {
    position: static;
    width: 100%;
}
.ouberbo{    padding-top: 50px !important;
    bottom: -60px;}
.mobilebtn{ width:100%!important}
.owl-dots{ display: block!important}
.hero p{ font-size:13px; text-align:center}
.input-box-new{ width:50%}
.user-area {
 margin-left: 0px;
        width: 100% !important;
}
.swap-icon{right: -1px;top: 70px;}
.middle-box{ margin-bottom:0px!important;margin-top:0px!important; padding:0px!important}
.how-it-works {
    padding: 40px 0px 0px 0px;
}
.owl-dot.active span{ background:#feed00!important}
.hero{background: #fff !important;}
.boder-new{border-radius:0px}
.review-text{font-size: 9px;}
.review-source{font-size: 9px;}
.ouberbo{padding: 23px 20px 0px 20px;border-radius: 0px;}
.mbilebox{ display:none}
.mbilebox-new{ display:block!important;}
.accordion-button{font-size: 10px;}
.hero{padding: 0px !important;
        padding-top: 40px !important;}

.how-it-works .icon-box{width: 40px;
    height: 40px;}
	
	.step-line::before{content: '';
        position: absolute;
        top: 21px;
        left: 16%;
        right: 10%;
        height: 2px;
        background: #ffffff5e;
        z-index: 0;
        width: 68%;
}
.step-text {
    font-weight: 500;
    font-size: 12px;
}

	.step-line::after{        content: '';
        position: absolute;
        top: 144px;
        left: 34%;
        right: 10%;
        height: 2px;
        background: #ffffff5e;
        z-index: 0;
        width: 38%;
}

	.icon-box img{position: static;
    width: 61%;}
	
body, html {
  overflow-x: hidden;
}


body {
  overflow-y: hidden; 
}
.progress-steps {
    padding-top: 0px;
}
.info-text{ text-align:left}
.card-custom .gap-4 {
    gap: 0px!important;
}
.innerbg {
    min-height: 12vh;
}
.accordion-button::after{ font-size:21px!important;}
.nonebile-res{ padding-top:0px!important}
.search-box{margin-bottom: 0px!important;}
.discover h4{margin-top: 0px;}
.discover h4{font-size: 20px;}
.offset-1{ margin:0px;}
.mobircuston{ display:block!important}
.bile-none{ display:none}
.fawarea ul li a {
    color: #000000;
    padding: 20px 20px 20px 20px;
    display: block;
}
.fawarea{padding: 0px 0px 0px 0px;}
.fawarea ul li{display: block;}
.centerbox label{ display:block; width:100%}
.centerbox input[type="text"]{ display:block; width:100%}
.centerbox select{ display:block; width:100%}
.centerbox input[type="email"]{ display:block; width:100%}
.info-card{ margin-top:0px;}
.info-card h5{ font-size:21px;}
.info-card p.mb-1 {
    font-size: 22px;
    color: #3A4B54;
}
.boxcir h6{font-size:20px;}
.boxcir p{font-size: 16px;}
.box-text-maona h5 {
    font-size: 19px;
   
}
.step-box p {
    font-size: 18px;
    margin-bottom: 50px;
}
.step-box h6 {
    font-size: 20px;
    margin-top: 11px;
}
.how-to-worl{top: 60px;}
.step-box{    left: 0px;
    background: #fff;
    padding: 30px 30px;
    top: 0px;}
	   .bookpagea .icon-box img {
        position: static;
        width: 20%;
    }
	.info-card .btn-sm{padding: 11px 79px;}
	.box-text-maona{ margin-top:0px!important;}
	.imagesboxs{ display:block!important}
	.info-card{top: 0px;}
	.booking{font-size: 17px;top:0px;}
	.paddingnone{ padding-top:0px!important}
	.summary-box {
    background-color: #e6f2ff;
    border-radius: 10px;
    padding: 1.5rem;
    /* max-width: 400px; */
    margin-left: 0px;
    margin-right: 0px;
    font-size: 12px;
}
.form-box .ms-5 {
    margin-left: 0px!important;
}
.form-box .col-form-label {
    font-size: 14px;
    font-weight: 600;padding-left: 0px;
    text-align: left;
}
.mb-sm-0{ padding-left:0px;}
.form-box .mb-2 {
    margin-bottom: 0px!important;
}
.nonepading{padding-left:0px}
.onebox{ margin-bottom:10px;}
.form-box .item-row .label-title{font-size: 10px;}
.count-box input[type="number"]{width: 31px;}
.form-box button{padding: 13px 7px;
    font-size: 19px;}
	.form-box .item-row input[type="number"]{font-size: 12px;}
	.form-box h5 {
    font-size: 18px;
}
.order1{
   padding-left:10px;}
.bovilebox{margin-bottom: 30px;
        width: 100%;}

}
.nonelee{ padding-left:11px;}
.bi-calendar3::before{color: #3A4B54;}
#arrivalDisplay{font-size:12px; color:#3A4B54}
.colo-trexr{ font-size:14px; color:#3A4B54}

.boxslidermaon{    border-radius:4px;}
.boxslidermaon .align-items-center{position: relative;
    width: 50%;
    padding: 12px 10px !important;}
.boxslidermaon input[type="datetime-local"]{
    background: transparent;
    width: 10px;
    left: 8px;
    position: absolute;
    width: 21px;
    border: 0px;opacity: 0;
    text-indent: -99999px;}
    /* .imagebox img {
      width: 357px;
      height: 175px;
    } */
     .imagebox img {
      width: 230px;
      height: 140px;
    }
    .searchResults{
    border: 1px solid #dcdcdc;
    width: 100%;
    position: absolute;
    top: 63px;
    border-top: 0;
    right: 0;
    background: #fff;
    margin: 0;
}
.search-wrapper .input-box {
    position: relative;
}

.mt-new-6 {margin-top: 90px;}

.icon-color {
    color: #3ec759;
}