@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*==Font-setup==*/
*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
   font-family: 'SF Pro Display';
    font-size: 16px;
    color: #000;
    background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/
.scrolltotop {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #001A70;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  animation: lab_top_up 5s linear infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}


/*===this-is-code-start===*/
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobil-brand img {
  max-width: 135px;
} 

.header-area {
  padding: 14px 0;
  background: url('images/header-bg.png') no-repeat;
  background-position: center;
  background-size: cover;
}

.header-main {
  display: grid;
  grid-template-columns: 20% 65% auto;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 12px;
}

.logo-item img {
  max-width: 164px;
}

/*languge-css*/
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}

.lang-btn img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.overlay10 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup10 {
  background: #fff;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  overflow-y: auto;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.3s ease;
  height: 300px;
}

.overlay10.show .popup10 {
  transform: translateY(0);
  opacity: 1;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  background: #fff;
}

.popup-header h2 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
}

.close-btn10 {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
}

.section10 {
  padding: 15px;
}

.section10 h3 {
  font-size: 14px;
  margin: 10px 0 20px 0;
  color: #555;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 20px;
}

.lang-item:hover {
  background: #f0f0f0;
}

.lang-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.lang-item.selected {
  background: #F0F6FD;
  font-weight: bold;
  color: #006CE4;
}


/* language-pic */
.main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 32px;
  justify-content: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  position: relative;
  transition: 0.2s all ease;
  opacity: 0.6;
}

.main-nav .active-menu::after, .main-nav ul li a:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: #001A70;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  width: 28px;
  cursor: pointer;
  margin-left: auto;
}

.menu-btn span {
  height: 3px;
  background: #fff;
  /*! border-radius: 10px; */
  margin-top: 5px;
  display: block;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  max-width: 400px;
  width: 100%;
  left: -400px;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 10000;
  display: block;
}

.sidebar-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #000;
}

.close-btn {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn i {
  font-size: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu-wrap {
  padding: 25px 15px 0 15px;
}

.menu-wrap .menu-item a {
  font-weight: 500;
  font-size: 20px;
  display: block;
  color: #000;
  cursor: pointer;
  margin-bottom: 25px;
  transition: 0.2s all ease;
}

.menu-wrap .menu-item a:hover {
  color: #001A6F;
}

.menu-item .mobl-act,.menu-item a:hover {
  color: #001A70 !important;
}

.menu-item .mobl-act {
  font-weight: 700;
}


/*==hero-section==*/
 .hero-area {
  background: url('images/hero.png') no-repeat;
  background-position: top;
  background-size: cover;
  padding-bottom: 180px;
} 

.hero-main {
  padding-top: 75px;
}

.hero-area {
  position: relative;
}

.hero-main h3 {
  font-weight: 400;
  font-size: 38px;
  color: #fff;
}

.hero-main h4 {
   font-weight: 400;
   font-size: 24px;
   color: #fff;
   margin-top: 12px;
}

 .hero-contact-wrap {
  margin-top: 30px;
  border-radius: 15px;
  background: #000000;
  padding: 3px;
  position: relative;
  top: -75px;
  box-shadow: 0px 21px 10px -15px rgba(0,0,0,.2);    
} 

.hero-form {
  display: grid;
  grid-template-columns: auto 16%;
  border-radius: 15px;
  background: #FFF;
}

.hero-input-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
  column-gap: 40px;
  padding: 8px 20px;
}

.hero-input-item input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 0;
  font-size: 18px;
  color: #172432;
}

.hero-input-item2 input {
  font-weight: 400;
  font-size: 18px;
  color: #172432;
  background: url('images/arrow.png') no-repeat;
  background-position: 100% 50%;
  cursor: pointer;
}

.hero-input-item input::placeholder {
  font-weight: 400;
  font-size: 20px;
  color: #172432;
  opacity: 1;
}

.hero-input-submit {
  text-align: right;
}

.hero-input-submit button {
  font-weight: 400;
  font-size: 25px;
  color: #fff;
  background: #001A70;
  border-radius: 0 10px 10px 0;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  cursor: pointer;
  transition: 0.2s all ease;
   text-align: left;
  width: 100%;
  justify-content: center;
}

.hero-input-submit button i {
  font-size: 22px;
  margin-left: 10px;
}

.hero-input-submit button:hover {
  opacity: 0.9;
}

.hero-input-item {
  border-bottom: 1px solid #000000;
}

.hero-input-item h4 {
  font-weight: 400;
  font-size: 16px;
  color: #767E86;
  text-transform: uppercase;
}

/*dropdown-input*/
.dropdown-container {
  position: relative;
  outline: none;
}

.dropdown-toggle {
  cursor: pointer;
  user-select: none;
  padding: 8px 0;
  font-size: 20px;
}

.dropdown-toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 7px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url('images/arrow.png') no-repeat;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  display: none;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  /*! padding: 10px 15px 10px 15px; */
  box-shadow: 0px 2px 16px 0px #1a1a1a3d;
  width: 350px;
}

.dropdown-menu.show-down {
  top: 122%;
  bottom: auto;
}

.dropdown-menu.show-up {
  bottom: 110%;
  top: auto;
}

.dropdown-menu li {
  font-weight: 400;
  font-size: 20px;
  color: #172432;
  cursor: pointer;
  padding: 15px 20px;
}

.dropdown-menu li:hover {
  background: #F5F5F5;
}

/*===input-2nd===*/
  .dropdown2 {
    position: relative;
  }

  .dropdown-input2 {
    width: 100%;
  }

  .dropdown-menu2 {
    margin-top: 10px;
    border-top: none;
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 0;
    width: 360px;
    background: #fff;
    box-shadow: 0px 2px 16px 0px #1a1a1a3d;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none ;
    border-radius: 10px;
  }

  .dropdown-menu2 li {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dropdown-menu2 li:hover {
    background-color: #f5f5f5;
  }

  .location-icon2 svg  {
    width: 30px;
  }

  .location-text2 {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    gap: 3px;
  }

  .city-name2 {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
  }

  .country-name2 {
    font-size: 13px;
    color: #6b7280;
  }

  .dropdown2.active2 .dropdown-menu2 {
    display: block;
  }

  .dropdown2.drop-up2 .dropdown-menu2 {
    bottom: 100%;
    top: auto;
    margin-top: 0;
    margin-bottom: 6px;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #ddd;
    border-bottom: none;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
  }

/*time-picer-css*/
.time-picker1 {
  position: relative;
}

.time-input1 {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}

.picker-popup1 {
  position: absolute;
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}

.picker-row1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.picker-popup1 select {
  width: 48%;
  padding: 8px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.am-pm-toggle1 {
  text-align: center;
}

.am-pm-toggle1 button {
  padding: 6px 12px;
  margin: 0 5px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #e0e0e0;
}

.am-pm-toggle1 button:hover {
  background: #006CE4;
  color: #fff;
}

.am-pm-toggle1 button.active {
  background: #001A70;
  color: #fff;
}

.picker-actions1 {
  text-align: center;
  margin-top: 20px;
}

.picker-actions1 button {
  padding: 10px 14px;
  font-size: 14px;
  border: none;
  background: #001A70;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
}

/* destinations-section */
.destinations-area {
  background: #ffffff;
  padding: 40px 0 75px 0;
}

.destinations-title {
  display: grid;
  grid-template-columns: 70% auto;
  align-items: end;
}

.destinations-title h2 {
  font-weight: 400;
  font-size: 50px;
  color: #172432;
  position: relative;
}

.destinations-title h2::after{
  content: "";
  width: 43%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-top: 18px;
}

.destinations-title p {
  font-weight: 400;
  font-size: 24px;
  color: #767E86;
  margin-top: 28px;
}

.destinations-main {
  margin-top: 140px;
}

.carousel-1 .carousel-cell {
  width: 32%;
  margin-right: 20px;
}

.destination-img {
  position: relative;
}

.destination-img img {
  width: 100%;
  border-radius: 26px;
}

.flitky-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
}

.flitky-button button {
  background: #333;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.flitky-button button:hover {
  background: #001A70;
}

.custom-dots {
  display: none;
}

.destination-cnt {
  position: absolute;
  left: 24px;
  bottom: 42px;
}

.destination-cnt img {
  width: 24px;
  display: block;
  border-radius: 0;
}

.destination-cnt h4 {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

.destination-cnt p {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
}

/*partners-section*/
.partners-area {
  background: #ffffff;
  padding-bottom: 85px;
  padding-top: 85px;
}

.partners-title {
  display: grid;
  grid-template-columns: 30% auto;
  align-items: end;
}

.flitky-button2 {
  justify-content: initial;
}

.partners-title-cnt {
  text-align: right;
}

.partners-title-cnt h2 {
  font-weight: 400;
  font-size: 50px;
  color: #172432;
  position: relative;
}

.partners-title-cnt h2::after{
  content: "";
  width: 23%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-left: auto;
  margin-top: 18px;
}

.partners-title-cnt p {
  font-weight: 400;
  font-size: 24px;
  color: #767E86;
  margin-top: 28px;
}

.partners-main {
  margin-top: 90px;
}

.carousel-2 .carousel-cell {
  width: 31%;
  margin: 15px;
}

.partners-img {
  background: #E0E0E0;
  border-radius: 26px;
  padding: 40px 24px;
  height: 163px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-img2 {
  background: #001A70;
}

.partners-img img {
  max-width: 100%;
}

/*about-section*/
.about-area {
  background: #ffffff;
  padding-bottom: 100px;
  padding-top: 90px;
}

.about-title h2 {
  font-weight: 400;
  font-size: 50px;
  color: #172432;
  position: relative;
}

.about-title h2::after{
  content: "";
  width: 11%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-top: 18px;
}

.about-title p {
  font-weight: 400;
  font-size: 24px;
  color: #767E86;
  margin-top: 28px;
}

.about-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 32px;
  margin-top: 100px;
  align-items: center;
}

.about-left img {
  width: 100%;
}

.about-right h2 {
  font-weight: 400;
  font-size: 45px;
  color: #172432;
}

.about-right p {
  font-weight: 400;
  font-size: 20px;
  color: #172432;
  line-height: 40px;
  margin-top: 20px;
}

.about-right a {
  font-weight: 400;
  font-size: 24px;
  color: #001A70;
  margin-top: 24px;
  display: inline-block;
}

.about-right a img {
  margin-left: 20px;
  max-width: 27px;
}

.carousel-3 .carousel-cell {
  width: 23.4%;
  margin-right: 20px;
}

.destinations-title2 h2::after{
  content: "";
  width: 26%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-top: 18px;
}

.carousel-3 .destination-img img {
  width: 100%;
  border-radius: 26px;
}

.destinations-area2 {
  padding-top: 75px;
  padding-bottom: 50px;
}

.destinations-main2 {
  margin-top: 90px;
}

/* prices-section */
.prices-area {
  padding-bottom: 75px;
  background: #fff;
  padding-top: 100px;
}

.prices-main {
  display: grid;
  grid-template-columns: 21% auto;
  column-gap: 50px;
}

.carousel-4 .carousel-cell {
  width: 31.7%;
  margin-right: 20px;
}

.flitky-button4 {
  display: none;
}

.prices-img img {
  width: 100%;
  border-radius: 26px;
}

.prices-left h2 {
  font-weight: 400;
  font-size: 48px;
  color: #172432;
  position: relative;
}

.prices-left h2::after{
  content: "";
  width: 67%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-top: 18px;
}

.prices-left p {
  font-weight: 400;
  font-size: 18px;
  color: #767E86;
  margin-top: 28px;
}

.prices-left a {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  background: #001A70;
  border-radius: 12px;
  padding: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: 0.2s all ease;
}

.prices-left a:hover {
  opacity: 0.9;
}

.prices-btn {
  position: relative;
  margin-top: 50px;
  max-width: 160px;
}

.prices-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 43px;
  height: 43px;
  background: #172432;
  left: -17px;
  top: -12px;
  z-index: 1;
}

.prices-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 43px;
  height: 43px;
  background: #767E86;
  right: -13px;
  bottom: -13px;
  z-index: 1;
}

/*experience-section*/
.experiences-area {
  background: #fff;
  padding-bottom: 60px;
  padding-top: 40px;
}

.experiences-main {
  margin-top: 40px;
}

.carousel-5 .carousel-cell {
  width: 32%;
  margin-right: 20px;
}

.experience-cnt {
  border-radius: 12px;
  background: #F5F6F7;
  padding: 40px 25px 40px 25px;
}

.experience-cnt p {
  font-weight: 400;
  font-size: 18px;
  color: #767E86;
}

.experience-cnt img {
  max-width: 136px;
  margin-top: 20px;
}

.experience-cnt h3 {
  font-weight: 400;
  font-size: 24px;
  color: #767E86;
  margin-top: 10px;
}

.experience-cnt h4 {
  font-weight: 400;
  font-size: 18px;
  color: #767E86;
  margin-top: 5px;
}

.experiences-title h2 {
  font-weight: 400;
  font-size: 50px;
  color: #172432;
  position: relative;
}

.experiences-title h2::after{
  content: "";
  width: 11%;
  background: #001A70;
  height: 3px;
  display: block;
  margin-top: 18px;
}

.experiences-title p {
  font-weight: 400;
  font-size: 24px;
  color: #767E86;
  margin-top: 28px;
}

.flitky-button5 {
  margin-top: 45px;
}

/* footer-section */

.footer-area {
  background: #333;
  padding: 70px 0 50px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 27% 18% 18% 25% auto;
}

.footer-item h4 {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-item p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
   margin-top: 45px;
}

.footer-item p br {
  display: none;
}

.footer-item ul li a {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  transition: 0.2s all ease;
}

.footer-item ul li a:hover {
  color: red;
}

.footer-item4 ul {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

.footer-item4 ul li img {
  max-width: 32px;
}

.footer-item4 ul li img:hover {
  opacity: 0.9;
}

.mobil-show {
  display: none;
}

/*===contct-page===*/
.contact-area1 {
  padding: 80px 0;
}

.contact-main {
  max-width: 700px;
  margin: auto;
  border-radius: 25px;
  border: 1px solid  #E6EDED;
  background: #FFF;
  box-shadow: 0 7px 15px 0 rgba(25, 32, 32, 0.08);
  padding: 35px 28px;
}

.back-btn a {
  font-weight: 500;
  font-size: 20px;
  color: #044343;
}

.back-btn a img {
  max-width: 12px;
  margin-right: 8px;
}

.ride-main h3 {
  font-weight: 500;
  font-size: 30px;
  color: #192020;
  margin-top: 24px;
}

.ride-main h4 {
  font-weight: 600;
  font-size: 14px;
  color: #044343;
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-top: 10px;
}

.ride-main h4 span {
  width: 8px;
  height: 8px;
  background: #044343;
  display: inline-block;
  border-radius: 50%;
}

.ride-main p {
  font-weight: 400;
  letter-spacing: -0.42px;
  color: #192020;
  font-size: 20px;
  margin-top: 10px;
}

.date-item10 {
  margin-top: 28px;
  border-bottom: 1px solid #E6EDED;
  padding-bottom: 23px;
}

.date-item-wrap10 {
  display: grid;
  grid-template-columns: 7% auto;
  align-items: center;
}

.date-item-wrap10 input {
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #044343;
  width: 100%;
}

.date-item-wrap10 input::placeholder {
  font-weight: 600;
  font-size: 14px;
  color: #044343;
}

.date-item-wrap10 h5 {
  font-weight: 400;
  font-size: 14px;
  color: #BDC6C6;
}

.svg-poiner img {
  cursor: pointer;
}

.svg-date {
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.time-range-picker {
  user-select: none;
  position: relative;
  max-width: 300px;
}

.time-display {
  font-weight: 600;
  font-size: 14px;
  color: #044343;
  cursor: pointer;
  user-select: none;

}

.dropdown-panel {
  position: absolute;
  top: 29px;
  left: 15px;
  right: 15px;
  background: white;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 15px;
  display: none;
  z-index: 10;
}

.label {
  flex: 1;
  font-weight: 400;
  font-size: 14px;
  color: #044343;
  margin-bottom: 8px;
  color: #004c45;
}

.time-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.time-inputs select {
  flex: 1;
  padding: 6px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #004c45;
  color: #000;
  background: white;
  cursor: pointer;
}

/*===gest-item==*/
.guest-widget {
  position: relative;
  max-width: 215px;
  margin-top: 16px;
}

.guest-toggle {
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #044343;
  color: #044343;
  cursor: pointer;
  width: 100%;
  padding: 20px 14px;
  border-radius: 42px;
  text-align: center;
}

.guest-dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #044343;
  border-radius: 8px;
  padding: 15px;
  display: none;
  z-index: 100;
}

.guest-dropdown.top {
  bottom: 110%;
}

.guest-dropdown.bottom {
  top: 110%;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  justify-content: center;
}

.guest-controls button {
  width: 30px;
  height: 30px;
  background: #044343;
  color: white;
  font-size: 19px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.guest-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.details-main-wrap {
  margin-top: 40px;
}

.details-main-wrap h2 {
  font-weight: 600;
  font-size: 25px;
  color: #192020;
}

.details-item h3 {
  font-weight: 600;
  font-size: 20px;
  color: #192020;
}

.details-item input {
  width: 100%;
  outline: none;
  border: none;
  padding: 22px 10px 22px 57px;
  background: url('images/user.png') no-repeat;
  background-position: 3% 50%;
}

.details-item2 input {
   background: url('images/email.png') no-repeat;
    background-position: 3% 50%;
}

.details-item3 input {
   background: url('images/call.png') no-repeat;
    background-position: 3% 50%;
}

.details-item input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #BDC3C6;
}

.details-item {
  border-radius: 10px;
  border: 1px solid #BDC3C6;
  position: relative;
  margin-top: 34px;
}

.deta-input-title {
  font-weight: 500;
  font-size: 14px;
  color: #263238;
  position: absolute;
  left: 23px;
  top: -15px;
  background: #fff;
  padding: 6px;
}

.detalis-write {
  margin-top: 32px;
}

.detalis-write h4 {
  font-weight: 500;
  font-size: 25px;
  color: #192020;
}

.detalis-write textarea {
  font-size: 16px;
  color: #000000;
  outline: none;
  padding: 20px;
  opacity: 1;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #BDC3C6;
  margin-top: 16px;
}

.detalis-write textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
  opacity: 1;
}

.submit-contact button {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border-radius: 10px;
  border: 1.464px solid rgba(4, 67, 67, 0.06);
  background: #044343;
  padding: 15px 50px;
  margin-top: 40px;
  cursor: pointer;
}

.submit-contact button:hover {
  opacity: 0.9;
}

.submit-contact p {
  font-weight: 500;
  font-size: 20px;
  color: #596262;
  margin-top: 25px;
}

.price-input-box {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
  border-radius: 25px;
  background: #F6F6F6;
  padding: 30px 20px;
  box-shadow: 0 4px 13.6px 0 rgba(0, 0, 0, 0.21);
  margin-top: 50px;
  position: relative;
}

.price-input-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 80%;
  background: #001A70;
  left: 60%;
}

.price-box-innr1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-box-innr1 h4 {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  line-height: 25px;
}

.price-input-box ul li {
  font-weight: 400;
  font-size: 16px;
  color: #001A70;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 25px;
}

.price-input-box ul li:first-child {
  margin-top: 0;
}

.card-title {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  margin-top: 38px;
}

.card-left h4 {
  font-weight: 600;
  font-size: 20px;
  color: #4F5B76;
  margin-bottom: 10px;
}

.card-right ul {
  display: flex;
  align-items: center;
  column-gap: 4px;
  justify-content: flex-end;
}

.card-input input {
  width: 100%;
  outline: none;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  border: 2px solid #E0E0E0;
  padding: 18px 12px;
  margin-top: 12px;
  font-size: 16px;
  color: #000;
}

.card-input input::placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #A5ACB8;
}

.cvc-input-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
   column-gap: 10px;
   margin-top: 25px;
}

.cvc-input-wrap h6 {
  font-weight: 600;
  font-size: 20px;
  color: #4F5B76;
  margin-bottom: 10px;
}

.card-input h4 {
  font-weight: 600;
  font-size: 20px;
  color: #4F5B76;
}

.cvc-input-wrap input {
  width: 100%;
  outline: none;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  border: 2px solid #E0E0E0;
  padding: 16px 12px;
  margin-top: 12px;
  font-size: 16px;
  color: #000;
}

.cvc-input-wrap input::placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #A5ACB8;
}

.card-input2 {
  margin-top: 25px;
}

.pay-submit {
  max-width: 245px;
  margin: auto;
  margin-top: 20px;
}

.pay-submit1 button {
  font-weight: 600;
  font-size: 20px;
  color: #001A70;
  border: 1px solid #001A70;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  border-radius: 5px;
  padding: 15px 10px;
  width: 100%;
  cursor: pointer;
  background: none;
  transition: 0.3s all ease;
}

.pay-submit1 button:hover {
  background: #001A70;
  color: #fff;
}

.pay-submit2 button {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  border: 1px solid #001A70;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  border-radius: 5px;
  padding: 15px 10px;
  width: 100%;
  cursor: pointer;
  background: #001A70;
  margin-top: 20px;
}

.pay-submit2 button:hover {
  opacity: 0.9;
}

.flatpickr-calendar {
  box-shadow: 0px 2px 16px 0px #1a1a1a3d;
  border: none;
}

.flatpickr-days {
  font-weight: 400;
  color: #666;
}

.flatpickr-day:hover {
  background: #006CE4;
  color: #fff;
}

.flatpickr-day.today {
  font-weight: 700;
  border: none;
  /* color: #fff; */
  /* background: #006CE4; */
}

.flatpickr-day.today:hover {
  background: #006CE4;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #006CE4;
  color: #fff;
}

.made-main {
  text-align: center;
  /*! padding: 50px 0 70px 0; */
  padding-top: 80px;
}

.made-main p {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}

.made-main p a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  transition: 0.2s all ease;
}

.made-main p a:hover {
  color: red;
}


