:root{
  --theme-color: #ff8d00;
  --second-color: #005397;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Google Sans", sans-serif;
   --white-color: #ffffff;
}
body {
  font-family: var(--body-font);
  color: #555;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

.bg_light_primary{
  background-color: #ffa70012;
}
a {
  color: var(--theme-color);
  transition: all 400ms ease;
}
img{
  max-width: 100%;
  height: auto;
}
a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: #222;
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}
p{
  font-weight: 500;
  line-height: 1.7;
  color: #575757;
  margin-bottom: 12px;
}
.section_header{
  margin-bottom: 35px;
}
.section_header .sub-title{
  color: var(--theme-color);
  font-size: 19px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  font-family: var(--body-font);
}
.section_header .sub-title:after{
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme-color);
  content: '';
  right: -27px;
}
.section_header .section-title{
  font-size: 38px;
  line-height: 1;
  color: #000;
  font-weight: 600;
  font-family: var(--body-font);
}
.section_header p{
  margin-top: 10px;
  color: #222;
}

.btn-theme{
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: var(--theme-color);
  border: 000;
  transition: 0.5s;
  font-size: 15px;
  padding: 11px 32px;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;

}
.btn-theme:hover{
  background-color: var(--second-color);
  color: #fff;
}
.btn-theme.style-2{
  background-color: var(--second-color);
}
.btn-theme.style-2:hover{
  background-color: var(--theme-color);
}
.btn-theme.rounded{
  border-radius: 40px;
}
.btn-theme.outline{
  background-color: transparent;
  border: 1px solid var(--theme-color);
}
::placeholder {
  color: inherit;
  opacity: 1;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: #fff;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: #222;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--theme-color);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--theme-color);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--theme-color);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: #000;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--theme-color);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  word-break: break-word;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--theme-color);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}
.header_top{
  line-height: 1;
  padding: 3px 0;
  position: relative;
  background-color: var(--second-color);
}
.header_top_grid{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_top_grid .left_side{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header_top_grid .left_side a{
  background-color: var(--theme-color);
  color: #fff;
  padding: 7px 20px;
  display: block;
  border-radius: 40px;
  position: relative;
  font-size: 15px;
  border: 1px dashed #ffffffa6;
}

.header_top_grid .right_side .header_socio{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_top_grid .right_side{
  padding-right: 60px;
}
.header_top_grid .right_side .header_socio a{
  background-color: var(--theme-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  border: 1px solid #ffffffa6;
}
.header_top_grid .right_side .header_socio a:hover{
  background-color: #Fff;
  color: var(--theme-color);
}
/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input {
  width: 100%;
  background-color: #fff;
  font-size: 15px;
  color: #555;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form button{
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  transition: all 500ms ease;
  font-size: 18px;
  color: #fff;
  background-color: var(--theme-color);
  border: none;
  outline: none;
}
.search-popup__form button:hover{
  color: #fff;
  background-color: #000;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}


/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  background-color: #000;
  position: relative;
  @media (max-width: 991px) {
    display: none;
  }
}
.topbar-one__inner {
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: relative;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
  padding: 0;
  width: 100%;
  gap: 30px;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  color: #CCD7D7;
  line-height: 1.2em;
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item a:hover {
  color: var(--theme-color);
}
.topbar-one__info__icon {
  font-size: 18px;
  color: #fff;
  position: relative;
  top: 2px;
  margin-right: 12px;
}
.topbar-one__info__item--last{
  margin-left: auto;
}

.topbar-two {
  position: relative;
  background-color: #021713;
}
@media (max-width: 1080px) {
  .topbar-two {
    display: none;
  }
}
@media (min-width: 1380px) {
  .topbar-two .container-fluid {
    max-width: 1350px;
  }
}
.topbar-two__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-two__info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.topbar-two__info__item span,
.topbar-two__info__item a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #CCD7D7;
  transition: all 0.4s ease-in-out;
}
.topbar-two__info__item span {
  text-transform: capitalize;
}
.topbar-two__info__item i {
  margin-right: 10px;
  color: #fff;
  transition: all 500ms ease;
}
.topbar-two__info__item a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__info__item a:hover {
  background-size: 100% 1px;
  color: var(--theme-color);
}
.topbar-two__info__item:hover i {
  color: var(--theme-color);
}
.topbar-two__info__item + .topbar-two__info__item {
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.topbar-two__info__item + .topbar-two__info__item::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.21);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.topbar-two__social {
  display: flex;
  align-items: center;
  padding: 20px 56px;
  position: relative;
  z-index: 1;
}
.topbar-two__social a {
  font-size: 16px;
  color: #fff;
}
.topbar-two__social a:hover {
  color: #222;
}
.topbar-two__social a + a {
  margin-left: 28px;
}
.topbar-two__social::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme-color);
  z-index: -1;
  -webkit-clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  width: 100%;
  z-index: 49;
  background: #fff;
  box-shadow: 0px 0px 8px #000;
}
.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 24px;
}
.main-header__logo {
  display: flex;
  height: 100%;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 5px;
  width: auto;
  margin-top: -37px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  border-radius: 0 0 10px 10px;
  width: auto;
}
.main-header__logo img{
  height: 95px;
}
.main-header__btn {
  position: relative;

  @media (max-width: 767px) {
    display: none;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  margin-left: 60px;
}
.main-header__cart, .main-header__search {
  font-size: 20px;
  color: #000;
  transition: all 500ms ease;
  margin: 0 30px;
  line-height: 1em;

  @media (max-width: 767px) {
    margin-right: 0;
    margin-left: 0;
  }
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--theme-color);
}
.main-header__cart__number, .main-header__search__number {
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #000;
}
.main-header__cart {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header__nav {
  margin-left: auto;
}

.sticky-header--cloned {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #fff;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(0,0,0, 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: 20px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 37px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 25px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px !important;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--theme-color);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(255,255,255, 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  max-height: 430px;
  overflow: auto;
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 14px;
  line-height: 18px;
  color: #555;
  font-weight: 500;
  display: flex;
  text-transform: uppercase;
  padding: 12px 20px 12px 12px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  content: "\f111";
  color: var(--theme-color);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0) translateY(-50%);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: #f9f9f9;
  color: #000;
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(-50%);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}


.main-header--two {
  background-color: #fff;
}

@media (min-width: 1380px) {
  .main-header--two .container-fluid {
    max-width: 1350px;
  }
}

.main-header--two .main-header__logo {
  background-color: transparent;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 0px 0px;
  }
}

.main-header--two .main-header__logo,
.main-header--two .main-header__btn {
  padding: 0;
  margin-right: 0;
}

.main-header--two .main-header__inner,
.main-header--two .main-header__btn {
  background-color: transparent;
  border-radius: 0;
}

.main-header--two .main-menu .main-menu__list>li>a {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: #000;
  text-shadow: 0 0 0.1px currentColor;
}

.main-header--two .main-menu .main-menu__list>li.current>a,
.main-header--two .main-menu .main-menu__list>li:hover>a {
  color: var(--theme-color);
}

.main-header--two .main-header__info a {
  background: none;
}

.main-header--two .main-menu .main-menu__list>li+li {
  margin-left: 35px;
}

@media (max-width: 1240px) {
  .main-header--two .main-menu .main-menu__list>li+li {
    margin-left: 20px;
  }
}

.main-header--two .main-header__nav {
  margin-left: auto;
  margin-right: 28px;
}

.main-header--two .main-header__right {
  margin-left: 0;
}

.main-header--two .main-header__info {
  border-color: transparent;
}

.main-header--two .main-header__info a {
  font-size: 22px;
  color: #000;
}

@media (max-width: 767px) {
  .main-header--two .main-header__info {
    display: block;
    padding-right: 0;
  }
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 15px;
  padding-bottom: 15px;
}

.main-header--two .main-header__info+.main-header__btn {
  margin-left: 70px;
}

@media (max-width: 1300px) {
  .main-header--two .main-header__info+.main-header__btn {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__info+.main-header__btn {
    margin-left: 30px;
  }
}

@media (max-width: 575px) {
  .main-header--two .main-header__info+.main-header__btn {
    display: none;
  }
}

.main-header--two .travhub-btn {
  border-radius: 8px;
  padding: 10.5px 22.5px;
}

@media (max-width: 1599px) {
  .main-header--two .main-header__btn {
    display: block;
  }
}

.main-header--three {
  position: relative;
  background-color: #fff;
}

.main-header--three.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
  position: fixed;
  background-color: #fff;
}
/* 09 Hero Css */
.hero-side {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 130px;
  background: radial-gradient(circle, rgba(255, 165, 0, 1) 0%, rgba(0, 82, 148, 1) 100%);
}
.hero-side .background_image{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute; 
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(19% 0, 100% 0%, 100% 100%, 13% 100%, 0 31%);
}
.hero-side .group-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-side .group-shape-1 img {
  width: 100%;
  height: 100%;
}

.hero-side .s-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-side .s-shape-1 {
    height: 20px;
  }
}

.hero-side .s-shape-1 img {
  width: 100%;
}

.hero-content-1 .subtitle {
  padding: 1px 15px;
  gap: 10px;
  background: var(--theme-color);
  backdrop-filter: blur(2px);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  line-height: 1;
}

.hero-content-1 .subtitle img {
  width: 25px;
}

.slider_btns{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: start;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle {
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .subtitle {
    margin-bottom: 10px;
  }
}

.hero-content-1 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle span {
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .subtitle span {
    line-height: 20px;
  }
}

.hero-content-1 .title {
  max-width: 774px;
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .title {
    max-width: 674px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .title {
    max-width: 474px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .title {
    max-width: 324px;
  }
}

.hero-content-1 .title h1,
.hero-content-1 .title .h1 {
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  max-width: 600px;
}

.hero-content-1 .title span {
  color: #fff;
}

.hero-content-1 .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 32px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text {
    max-width: 520px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text {
    max-width: 420px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.hero-content-1 .text p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text p {
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.hero-content-1 .join-us {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .join-us {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}

.hero-content-1 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: #fff;
}

.hero-content-1 .join-us .e-primary-btn:before {
  background: #fff;
}

.hero-content-1 .join-us .e-primary-btn .icon-wrap {
  background: #fff;
  color: var(--second-color);
}

.hero-content-1 .join-us .e-primary-btn:hover {
  border: 1.5px solid #fff;
  color: var(--second-color);
}

.hero-content-1 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--second-color);
  color: #fff;
}

.hero-content-1 .join-us .author-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}

.hero-content-1 .join-us .author-wrap img {
  max-width: 118px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}

.hero-content-1 .join-us .author-wrap .author-info h5 {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}

.hero-content-1 .join-us .author-wrap .author-info p {
  line-height: 22px;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1;
  }
}

.hero-slider-active-1 {
  position: relative;
  z-index: 1;
}

.hero-slider-active-1 .hero-slider-pagination-1 {
  position: absolute;
  left: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--second-color);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}

@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    bottom: 60px;
  }
}

.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
}

.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color);
  border: 1px solid #F8F7F0;
  backdrop-filter: blur(4.75px);
}


.hero-slider-active-1 .hero-slider-social {
  position: absolute;
  right: 90px;
  bottom: 50%;
  z-index: 99;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}

@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-social {
    display: none;
  }
}

.hero-slider-active-1 .hero-slider-social .text {
  transform: rotate(-180deg);
  width: auto;
  font-size: 18px;
  line-height: 167%;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-slider-active-1 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.hero-slider-active-1 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--second-color);
  background: rgba(255, 255, 255, 0.33);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.5px);
}

.hero-slider-active-1 .hero-slider-social .social-links a:hover {
  background: #fff;
  color: var(--second-color);
}
.about_us{
  position: relative;
  z-index: 1;
}
.about_image_part{
  position: relative;
  z-index: 1;
  margin-right: 40px;
}
.about_image_part .main_image{
  display: block;
  width: 100%;
  border-radius: 25px;
  -webkit-mask-image: url(../images/about/about_svg.png);
  mask-image: url(../images/about/about_svg.png);
  mask-repeat: no-repeat;
  mask-size: cover;
  height: 500px;
  width: 500px;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    margin-inline: auto;
}
.about_image_part .main_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_image_part .small_img{
  position: absolute;
  top: 0;
  width: 180px;
  height: 200px;
  border-radius: 25px;
  overflow: hidden;
  border: 8px solid #fff;
}
.about_image_part .small_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_image_part .small_img-2{
  position: absolute;
  bottom: 0;
  width: 320px;
  height: 180px;
  border-radius: 25px;
  overflow: hidden;
  border: 8px solid #fff;
  right: -32px;
}
.about_image_part .small_img-2 img{
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.about_content_part{
  padding: 25px;
  background: #ffa70012;
  border: 2px solid var(--theme-color);
  border-radius: 20px;
}
.about_content_part .grid_points{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin-block: 18px 20px;
  gap: 10px 0;
}
.about_content_part .grid_points li{
  width: 50%;
  position: relative;
  padding-left: 30px;
  display: block;
  color: var(--second-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}
.about_content_part .grid_points li:before{
  position: absolute;
  left: 0;
  top: 2px;
  content: '\f859';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
}


.taxi-item{
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #bdbdbd;
}

.taxi-img{
    margin-bottom: 10px;
    padding: 10px;
    background: radial-gradient(circle, rgb(0 141 255 / 37%) 0%, rgb(255 117 0 / 71%) 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
}
.taxi-img img{
    height: 220px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.2);
}
.taxi-head {
  text-align: center;
}

.taxi-head h4{
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.taxi-head span{
  font-weight: 500;
  color: var(--theme-color);
    font-weight: 600;
}

.taxi-feature{
    padding-top: 12px;
    margin: 8px 0 15px 0;
    border-top: 1px solid #ddd;
    position: relative;
    padding-inline: 15px;
}

.taxi-feature::before{
  content: "";
  position: absolute;
  width: 50px;
  height: 6px;
  background: var(--theme-color);
  border-radius: 50px;
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
}

.taxi-feature ul li{
  padding: 4px 0;
}

.taxi-feature ul li span{
  float: right;
}

.taxi-feature ul li i{
  width: 30px;
  height: 30px;
  line-height: 28px;
  color: #000;
  border-radius: 50px;
  margin-right: 10px;
  text-align: center;
  background: var(--theme-color);
}

.taxi-content .theme-btn{
    width: calc(100% - 20px);
    display: block;
    margin-inline: auto;
    padding: 10px;
}

/* taxi filter */
.filter-btns{
  text-align: center;
  margin-bottom: 40px;
}

.filter-btns li{
  display: inline-block;
  background: #555;
  color: #fff;
  border-radius: 50px;
  margin: 0 5px 8px 0;
  padding: 8px 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.filter-btns li.active{
  background: var(--theme-color);
}
.taxi_btn_grid{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-block: 15px 5px;
    padding-block: 15px;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #d6860d0f;
}
.taxi_btn_grid .btn-theme{
    padding: 5px 13px;
    font-size: 14px;
    font-weight: 500;
}
.taxi_btn_grid .btn-theme:nth-child(2){
  background: var(--second-color);
}
.taxi_btn_grid .btn-theme:nth-child(3){
  background: #28a745;
}

.route_section{
  position: relative;
}
.rout_box{
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  padding: 15px;
  background: #fff;
  box-shadow: 2px 1px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 18px;
}
.rout_box .image{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #dcdcdc;
}
.rout_box .image img{
  height: 280px;
  object-fit: cover;
  width: 100%;
  transition: 0.8s;
}
.rout_box .image .title{
  background: #fff;
  position: absolute;
  left: 0;
  padding: 6px 13px;
  bottom: 0;
  border: 2px solid var(--theme-color);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 15px 0 0;
    color: #000;
    font-weight: 600;
    font-size: 17px;
    transition: 0.8s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rout_box .image .title:hover{
  color: var(--theme-color);
}
.rout_box .content{
  background: #fff;
  padding: 12px;
  border-radius: 15px;
  margin-top: 12px;
  border: 1px solid #dcdcdc;
}
.rout_box .content p{
  color: #222;
  line-height: 1.3;
  font-size: 15px;
  letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rout_box .content ul{
    background: #d66b0d0f;
    border: 2px solid var(--second-color);
    border-radius: 10px;
    padding: 10px 12px;
}
.rout_box .content ul li{
    color: #000;
    display: block;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rout_box .content ul li i{

    min-width: 19px;
    color: var(--second-color);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: center;
}
.btn_grid{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rout_box .btn_grid a{
    padding: 5px 0px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}
.rout_box .btn_grid a.query{
  background: var(--second-color);
}
.rout_box .btn_grid a.query:hover{
  background: var(--theme-color);
}
.rout_box .btn_grid a.whatsapp{
  background: #28a745;
}
.rout_box:hover .image img{
  transform: scale(1.2);
}


.cabs_box{
    background: #00529424;
    border-radius: 15px;
    border: 1px solid var(--second-color);
    padding: 8px;
    box-shadow: 2px 1px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 18px;
}
.cabs_box .image{
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
}
.cabs_box .image img{
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.cabs_box .image .cat{
  background: #fff;
  position: absolute;
  left: 0;
  padding: 5px 28px;
  bottom: 0;
  border: 2px solid var(--theme-color);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 15px 0 0;
  font-weight: 600;
  color: #222;
}
.cabs_box .image .seatings{
  position: absolute;
  top: 6px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 40px;
  left: 6px;
  line-height: 1;
  padding: 5px 12px;
}
.cabs_box .content{
  background: #fff;
  margin-top: 12px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
}
.cabs_box .content .title{
    font-weight: 600;
    color: #222;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.03em;
    /* text-transform: uppercase; */
    margin-bottom: 11px;
    font-family: var(--heading-font);
}
.cabs_box .content .title span.ppk{
  font-size: 15px;
  margin-left: 10px;
  font-weight: 500;
}
.cabs_box .content p{

    color: #444;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cabs_box .note_grid{
  display: flex;
  margin-block: 3px 13px;
  border-bottom: 1px dashed #ddd;
  justify-content: space-between;
  padding-bottom: 5px;
}
.cabs_box .note_grid .perday{
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cabs_box .note_grid .open_note{
  font-weight: 500;
  font-size: 13px;
  color: #1b4eff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cabs_box .btn_grid a{
  line-height: 1;
  width: 100%;
  font-size: 14px;
  padding: 14px 0;
  border-radius: 8px;
  overflow: hidden;
}
.cabs_box .btn_grid a.whatsapp{
  background: #128c7e;
}

.why_boxes{
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  text-align: center;
}
.why_boxes .why_icon{
  position: relative;
    text-align: center;
    font-size: 35px;
    color: var(--theme-color);
    margin-bottom: 10px;
    line-height: 1;
}
.why_boxes .title{
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}
.why_boxes p{
    color: #444;
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 0;
  }
  .why_middle_img{
    position: relative;
  }
  .why_middle_img img{
    border-radius: 8px;
    margin-right: 8px;
    box-shadow: 8px 8px 0 #d60d457a;
  }


.testimonial-area {
  background: url(../images/testi-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 50px 0;
  border-radius: 20px;
  padding: 120px 0 120px;
}

.testi-single-box {
  background: #171a2b;
  border-radius: 20px;
  padding: 39px 27px 32px;
  text-align: center;
  margin-bottom: 0px;
}

p.testi-text {
  color: #fff;
  opacity: 0.702;
  padding: 20px 0 20px;
  margin: 0;
  position: relative;
  z-index: 1;
}

p.testi-text::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  border: 1px solid #292c3b;
  bottom: 0;
}

h3.testi-title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

h3.testi-title span {
  display: inline-block;
  font-size: 15px;
  line-height: 28px;
  color: #ff3c00;
  font-weight: 400;
  margin-left: 14px;
}

ul.testi-rating {
  padding: 15px 0 0px;
}

ul.testi-rating li i {
  display: inline-block;
  color: #ffc600;
  font-size: 15px;
  margin: 0 4px 0;
}

ul.testi-rating li {
  list-style: none;
  display: inline-block;
}

.testi-author {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -25px;
}
.testi-author img{
    max-width: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}
.testi-author::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/shapes/testi7.png);
  background-repeat: no-repeat;
  background-position: center;

  filter: hue-rotate(-22deg);
  right: -31%;
}

.testi-author::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/shapes/testi8.png);
  background-repeat: no-repeat;
  background-position: center; 
   filter: hue-rotate(-22deg);
  left: -31%;
}
.testi-icon img{
  max-width: 48px;
  margin-inline: auto;
  filter: hue-rotate(-22deg);
}


/* Normal desktop :1300px. */
@media (min-width: 1300px) and (max-width: 1399px) {

.testi-author::before {
    left: -47%;
    width: 30%;
}
.testi-author::after {
    left: -8%;
    width: 50%;
}
}

@media (min-width: 1200px) and (max-width: 1299px) {
.testi-author::before {
    left: -47%;
    width: 30%;
}
.testi-author::after {
    left: -9%;
    width: 50%;
}
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1199px) {
.testi-single-box {
    padding: 39px 10px 32px;
}

.testi-author::before {
    width: 30%;
    right: 0%;
}

.testi-author::after {
    width: 30%;
    left: 6px;
}
}



/*accordion*/

h3.faq-title {
  font-size: 28px;
  line-height: 56px;
  color: #050a1e;
  font-weight: 600;
  font-family: "Poppins";
  margin: 0;
}

h3.faq-title span {
  display: inline-block;
  color: #ff3c00;
}

p.faq-description {
  padding: 10px 0 29px;
}

.tab_container {
  position: relative;
}

ul.accordion {
  padding: 0;
  margin: 0;
}

.accordion li {
  list-style: none;
  padding: 0 0 15px;
  position: relative;
  z-index: 1;
}

.accordion li a {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  color: #fff !important;
  z-index: 1;
}

.accordion li p {
  display: none;
  font-size: 16px;
  color: #b1b2b4;
  padding: 25px 0 10px 30px;
  margin: 0;
}

.accordion a:before {
  width: 3px;
  height: 16px;
  background: #ff3d00;
  position: absolute;
  right: 32px;
  content: " ";
  top: 22px;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
}

.accordion a:after {
  width: 16px;
  height: 3px;
  background: #ff3d00;
  position: absolute;
  right: 26px;
  content: " ";
  top: 29px;
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
}

.accordion a.active:after {
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #ff3d00;
  z-index: -1;
}

.accordion a.active:before {
  display: none;
}

a.active {
  background: #fff !important;
}

.accordion li a span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #050a1e;
  font-weight: 500;
  font-family: "Poppins";
}

/*accordion start*/

.faq-sectiions .dreamit-icon-list ul li i {
  width: inherit;
  height: inherit;
  line-height: inherit;
  border-radius: 0;
  background-color: inherit;
  display: inline-block;
  color: #d0a37c;
  font-size: 22px;
  margin-right: 8px;
  position: relative;
  top: 4px;
}

.study-button a i {
  transition: 0.5s;
}

.study-button a:hover i {
  color: #d0a37c;
}

/* Faq New Style */

.faq-area .accordion li a {
  padding: 16px 20px 16px 30px;
  text-decoration: none;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.30196078431372547);
  border: 2px solid #ffffff;
}

.faq-area .accordion li a.active {
  border-radius: 15px 15px 0px 0px;
}

.faq-area .accordion li a span:after {
  display: none;
}

.faq-area .accordion li p {
  padding: 44px 20px 31px 25px;
  color: #646464;
  background: #fff;
  border-radius: 0 0 15px 15px;
  line-height: 28px;
  position: relative;
  z-index: 1;
}

.faq-area .accordion li p::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 92%;
  background: #ebebeb;
  left: 32px;
  top: 21px;
}
  .mobile-nav__wrapper.expanded .mobile-nav__content .logo-box img{
    background: #ffffff;
    width: 100px;
    padding: 3px;
  }

@media(max-width: 768px){
  .email_cont{
    display: none;
  }
  .header_top_grid .right_side{
    display: none;
  }
  .main-header__logo img{
    height: 80px;
  }
  .hero-side .background_image{
    width: 100%;
    clip-path: none;
    filter: brightness(0.7);
  }
  .hero-side{
    padding-top: 70px;
  }
  .hero-content-1 .title h1, .hero-content-1 .title .h1{
    font-size: 25px;
  }
  .about_image_part{
    margin: 0;
  }
  .about_image_part .small_img-2{
    position: static;
    width: 100%;
    border: 0;
    margin-block: 10px;
  }
  .about_image_part .main_image{
    height: 284px;
    width: 284px;
  }
  .about_image_part .small_img{
    width: 108px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid #fff;
  }
  .about_content_part{
    padding: 15px;
  }
  .about_content_part .grid_points li{
    width: 100%;
  }
  .section_header .sub-title{
    font-size: 16px;
  }
  .section_header .section-title{
    font-size: 27px;
    line-height: 1.3;
  }
  .testimonial-area{
    margin-inline: 10px;
  }
}

.ul-footer {
  position: relative;
  border-top: 2px solid var(--theme-color);
  margin-top: 15px;
  z-index: 1;
  background-color: var(--second-color);
}
.ul-footer-top {
  padding: 30px 0;
  position: relative;
}
.ul-footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 1199px) {
  .ul-footer-top-wrapper {
    flex-wrap: wrap;
}
}
.ul-footer-about {
  max-width: clamp(267px, 14.19vw, 270px);
}
.ul-footer-about > * {
  margin-bottom: clamp(15px, 1.58vw, 30px);
}
.ul-footer-about > *:last-child {
  margin-bottom: 0;
}
.ul-footer-about-txt {
  font-size: 15px;
  color: #fff;
}
.ul-footer-about img{
  width: 100px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 5px;
}
.ul-footer-socials {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.47vw, 9px);
  font-size: clamp(15px, 0.95vw, 18px);
}
.ul-footer-socials a {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  width: clamp(33px, 1.89vw, 36px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.79vw, 15px);
}
.ul-footer-socials a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.ul-footer-widget {
  min-width: clamp(110px, 10.51vw, 200px);
}
@media screen and (max-width: 1199px) {
  .ul-footer-widget {
    max-width: 290px;
    flex-grow: 1;
}
}
.ul-footer-widget-title {
  font-weight: 700;
  font-size: 23px;
  color: #fff;
  margin-bottom: clamp(13px, 1.37vw, 26px);
  padding-bottom: clamp(8px, 0.68vw, 13px);
  position: relative;
}
.ul-footer-widget-title::before, .ul-footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 18px;
  background-color: var(--theme-color);
}
.ul-footer-widget-title::after {
  left: 24px;
  width: 63px;
  background-color: var(--theme-color);
}
.ul-footer-widget-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(15px, 0.95vw, 18px);
}
.ul-footer-widget-links > * {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.ul-footer-widget-links > *::before {
  content: "\f101";
  font-family: 'Font Awesome 5 Pro' !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(9px, 0.63vw, 12px);
  padding-right: 10px;
}
.ul-footer-widget-links a{
  color: inherit;
}
.contact_widget .ul-footer-widget-links > *::before{
    display: none;
}
.ul-footer-widget-links > *:hover {
  color: var(--theme-color);
}
.ul-footer .ul-nwsltr-form {
  margin-top: clamp(15px, 1.58vw, 30px);
}
.ul-footer .ul-nwsltr-form .top {
  background-color: #fff;
  padding: clamp(2px, 0.26vw, 5px);
  border-radius: 8px;
  height: clamp(45px, 2.94vw, 56px);
  display: flex;
}
.ul-footer .ul-nwsltr-form .top input {
  border: none;
  padding: 0 clamp(7px, 0.53vw, 10px);
  font-size: clamp(13px, 0.84vw, 16px);
  width: 100%;
}
.ul-footer .ul-nwsltr-form .top button {
  background-color: var(--theme-color);
  color: #fff;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ul-footer .ul-nwsltr-form .top button:hover {
  background-color: var(--theme-color);
}
.ul-footer .ul-nwsltr-form .agreement {
  font-size: clamp(13px, 0.84vw, 16px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: clamp(12px, 1.26vw, 24px);
}
.ul-footer .ul-nwsltr-form .agreement a {
  color: #fff;
  text-decoration: underline;
}
.ul-footer .ul-nwsltr-form .agreement a:hover {
  color: var(--theme-color);
}
.ul-footer-bottom {
    padding: 8px 0;
    background-color: var(--theme-color);
    border-top: 1px solid #fff;
}
.ul-footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.ul-footer-bottom .copyright-txt {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.ul-footer-bottom .copyright-txt a {
  color: #fff;
}
.ul-footer-bottom .copyright-txt a:hover {
  color: var(--second-color);
}
.ul-footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}
.ul-footer-bottom a:hover {
  color: var(--second-color);
}
.ul-footer-bottom-nav {
  display: flex;
  gap: clamp(15px, 1.58vw, 30px);
}
footer a:hover{
    color: var(--theme-color);
}
.ul-footer-vectors > * {
  position: absolute;
  z-index: -1;
}
.ul-footer-vector-1 {
  bottom: clamp(54px, 8.09vw, 154px);
  left: 0;
}
@media screen and (max-width: 1199px) {
  .ul-footer-vector-1 {
    display: none;
}
}
.ul-footer-vector-2 {
  top: -10px;
  right: clamp(17px, 1.94vw, 37px);
  max-width: clamp(58px, 5.15vw, 98px);
}
@media screen and (max-width: 767px) {
  .ul-footer-vector-2 {
    display: none;
}
}
.ul-footer-vector-3 {
  bottom: clamp(25px, 2.42vw, 46px);
  right: clamp(134px, 12.3vw, 234px);
}



/*float buttons*/

.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:15px;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
  line-height: 60px;
  z-index: 100000;
}

.float-call{
  background-color:var(--second-color);
  left: 15px;
  font-size: 22px;
  border: 2px solid #fff;
}
.float-call:hover i{
    color: var(--theme-color);
}

.my-float{
  margin-top:5px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
}

.phone_res-float-btn {
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0 !important;
  z-index: 111;
  background-color: var(--theme-color);
}
.phone_res-float-btn a{
  width: 50% !important;
  border-radius: 0;
  padding: 10px 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #bababa;
  font-size: 17px;
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  color: #000;
  i{
    font-size: 25px;
    color: var(--theme-color);
    line-height: 25px;
}
}

.phone_res-float-btn .button__1{
  position: relative;
  left: 0 !important;
  border-top-left-radius: 20px;
}
.phone_res-float-btn .button__2{
  position: relative;
  border-top-right-radius: 20px;
  right: 0 !important;
}
.phone_res-float-btn img{
  width: 25px;
  height: 25px;
}

.breadcrumb-option{
    background-image: url(../images/bg/bg-what-we-offer-min.webp) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 15, 28, 0.7);
    z-index: -1;
    pointer-events: none;
}
.breadcrumb-option h2 {
    font-weight: 900;
    font-size: clamp(26px, 3.36vw, 64px);
    color: var(--white-color);
    line-height: 1.3;
    margin-bottom: clamp(10px, 0.95vw, 18px);
    margin-bottom: clamp(1px, 0.21vw, 4px);
    text-transform: uppercase;
}
.breadcrumb__links {
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    font-size: clamp(13px, 0.84vw, 16px);
    font-weight: 500;
    gap: 3px;
    color: var(--white-color);
}
.breadcrumb__links a {
    color: var(--white-color);
}
.breadcrumb__links span {
    color: var(--theme-color);
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
}
.breadcrumb__links span:before{
    position: absolute;
    content: '/';
    color: #fff;
    left: 0;
    font-size: inherit;
}
.single-section.small-section{
  padding-block: 30px;
}
.single-service-details{
    padding: 10px 15px;
    border-radius: 15px;
    background-color:  #f4f4f4;
    img{
        width: 100%;
        max-height: 450px;
        object-fit: cover;
        margin-bottom: 12px;
        border-radius: 15px;
    }
    ul{
        padding-left: 20px;
        margin-bottom: 1rem;
    }
}

.sidebar-item {
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item>h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    color: #000;
    border-bottom: 2px solid var(--theme-color);
}
/*.sidebar-item h3:before{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  content: "";
  background-color: var(--theme-color);
}*/

.sidebar-category {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-category li {
    list-style: none;
    margin-bottom: 1px;
    width: 100%;
}

.sidebar-category li .active {
    background: var(--theme-color);
    color: #FFF;
}

.sidebar-category li a {
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 6px;
    margin-bottom: 12px;
}
.sidebar-category li a:hover {
    background: var(--theme-color);
    color: #fff;
}
.sidebar-category li a:after{
    content: "\f061";
    font-family: 'Font Awesome 5 Pro';
    float: right;
}

.form-title {
    padding: 0px 12px 10px;
    position: relative;
    left: 0px;
    border-radius: 5px 5px 0 0;
    font-size: 28px;
    font-weight: 600;
    color: #000;
}
.common-booking-form .form_section .form-title {
    text-align: center;
    margin-top: 10px;
}
.form-control{
    padding: 9px;
    height: 50px;
    border-color: #aeaeae;
}
.form-control:focus{
    box-shadow: none;
    border-color: var(--theme-color);
}
.common-booking-form .form-group{
    margin-bottom: 15px;
}
@media(max-width:768px){
    .single-section .row{
        flex-direction: column-reverse;
    }
    .common-booking-form .form_section .row{
        flex-direction: column;
    }
    .common-booking-form .form_section .form-title{
        margin: 0;
        padding: 0;
    }
}

/***contact*/
.ul-contact-info {
    border: 1px solid #ddd;
    padding: clamp(15px, 1.58vw, 30px);
    border-radius: 16px;
    text-align: center;
    height: 100%;
    word-wrap: break-word;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ul-contact-info .icon {
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    width: clamp(55px, 3.68vw, 70px);
    aspect-ratio: 1 / 1;
    margin: auto;
    padding: 5px;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(25px, 1.84vw, 35px);
    margin-bottom: clamp(10px, 0.84vw, 16px);
    background-color: rgba(235, 0, 41, 0.05);
}
.ul-contact-info .title {
  font-weight: 700;
  font-size: clamp(18px, 1.26vw, 24px);
  margin-bottom: clamp(7px, 0.53vw, 10px);
}
.ul-contact-info .title a {
  color: #000;
}
.ul-contact-info .title a:hover {
  color: var(--ttRed);
}
.ul-contact-info .descr {
  margin-bottom: 0;
  color: #3e3e3e;
  font-size: clamp(13px, 0.84vw, 16px);
}

.ul-inner-contact-form-section {
  background-color: rgba(255, 0, 0, 0.05);
  padding-top: clamp(50px, 5.25vw, 100px);
}
.ul-inner-contact-from-left-title {
  font-weight: 700;
  font-size: clamp(25px, 2.1vw, 40px);
  margin-bottom: clamp(33px, 3.05vw, 58px);
}
.ul-inner-contact-img {
  display: flex;
  justify-content: flex-end;
  margin-right: clamp(0px, 1.84vw, 35px);
  position: relative;
  z-index: 1;
}
.ul-inner-contact-img:before{
    position: absolute;
    width: 400px;
    height: 400px;
    content: '';
    background: #ffd2df;
    z-index: -1;
    border-radius: 50%;
    left: 61px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid var(--second-color);
    opacity: 0.1;
}
.ul-inner-contact-img img {
  object-fit: cover;
  border-radius: 10px;
  max-height: 500px;
  box-shadow: 8px 8px 0 var(--theme-color);
  margin-right: 8px;
}
@media screen and (max-width: 991px) {
  .ul-inner-contact-img img {
    border-radius: 999px 999px 0 0;
    max-width: 100%;
  }
}
.ul-inner-contact-form-title {
  font-weight: 700;
  font-size: clamp(24px, 1.58vw, 30px);
  margin-bottom: clamp(17px, 1.68vw, 32px);
}
.ul-inner-contact-form input,
.ul-inner-contact-form textarea,
.ul-inner-contact-form .ss-main {
  height: clamp(45px, 3.15vw, 60px);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  padding: 0 clamp(15px, 1.05vw, 20px);
  font-size: clamp(13px, 0.84vw, 16px);
}
.ul-inner-contact-form input:focus, .ul-inner-contact-form input:focus-visible, .ul-inner-contact-form input:focus-within,
.ul-inner-contact-form textarea:focus,
.ul-inner-contact-form textarea:focus-visible,
.ul-inner-contact-form textarea:focus-within,
.ul-inner-contact-form .ss-main:focus,
.ul-inner-contact-form .ss-main:focus-visible,
.ul-inner-contact-form .ss-main:focus-within {
  outline: none;
  box-shadow: none;
}
.ul-inner-contact-form textarea {
  padding: clamp(15px, 1.05vw, 20px);
  height: 150px;
  vertical-align: top;
  margin-bottom: clamp(15px, 1.58vw, 30px);
}
.ul-inner-contact-form .submit-btn {
  height: clamp(45px, 3.15vw, 60px);
  background-color: var(--theme-color);
  border-radius: 8px;
  width: 100%;
  color: var(--white-color);
  font-weight: 600;
  display: flex;
  outline: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.ul-inner-contact-form .submit-btn:hover {
  background-color: #000;
  color: var(--white-color);
}
.ul-inner-contact-form .submit-btn i {
  font-size: 12px;
  padding-top: 3px;
}
.ul-inner-contact-form .ss-list .ss-option {
  font-size: clamp(13px, 0.84vw, 16px);
  padding: clamp(5px, 0.42vw, 8px) clamp(15px, 0.95vw, 18px);
}
.ul-inner-contact-form .ss-list .ss-option:hover, .ul-inner-contact-form .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: var(--theme-color);
}
.ul-footer-about a.logo {
    display: flex;
    align-items: center;
    justify-content: start;
}
.site_name {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    max-width: 163px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
/*************Form Section*************/
.form_section {
    background-color: #fff;
    border: 3px solid var(--theme-color);
    border-radius: 10px;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.form_section .form-title {
    color: #222;
    font-weight: 600;
    font-family: 'Poppins';
}
.form_section .ul-section-title {
  color: #000;
  margin-bottom: 16px;
}
.ul-booking-form .row {
  --bs-gutter-x: clamp(8px, 0.79vw, 15px);
  --bs-gutter-y: clamp(8px, 0.79vw, 15px);
}
.ul-booking-form label {
  color: var(--white-color);
  font-size: clamp(13px, 0.84vw, 16px);
  display: block;
  margin-bottom: clamp(7px, 0.53vw, 10px);
}
.ul-booking-form input,
.ul-booking-form .ss-main,
.ul-booking-form textarea {
  background-color: #fff;
  border: none;
  height: clamp(45px, 2.94vw, 56px);
  border-radius: 10px;
  font-size: clamp(11px, 0.74vw, 14px);
  width: 100%;
  padding: 0 clamp(12px, 1.05vw, 20px);
}
.ul-booking-form textarea {
  padding-top: clamp(12px, 1.05vw, 20px);
  height: 147px;
  vertical-align: top;
}
.ul-booking-form textarea:focus, .ul-booking-form textarea:focus-visible, .ul-booking-form textarea:focus-within {
  outline: none;
}
.ul-booking-form .ul-btn {
  margin-top: clamp(10px, 0.79vw, 15px);
}

.ul-booking-2 {
  background: url(../img/booking-2-bg.jpg) no-repeat center top/cover;
}
.ul-booking-2-wrapper {
  background-color: var(--ul-black);
  border-radius: 20px;
  overflow: hidden;
}
.ul-booking-2-form-wrapper {
  background: var(--white-color) url(../img/booking-2-form-bg.svg) no-repeat center center/contain;
  height: 100%;
  padding: clamp(25px, 3.15vw, 60px);
}
.ul-booking-2-form-heading {
  text-align: center;
}
.ul-booking-2-form input,
.ul-booking-2-form textarea,
.ul-booking-2-form select,
.ul-booking-2-form .ss-main {
  background-color: transparent !important;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(92, 101, 116, 0.25);
  padding: clamp(10px, 0.68vw, 13px) clamp(12px, 1.05vw, 20px);
  font-size: clamp(13px, 0.84vw, 16px);
  border-radius: 0;
  vertical-align: top;
}
.ul-booking-2-form input:focus, .ul-booking-2-form input:focus-visible, .ul-booking-2-form input:focus-within,
.ul-booking-2-form textarea:focus,
.ul-booking-2-form textarea:focus-visible,
.ul-booking-2-form textarea:focus-within,
.ul-booking-2-form select:focus,
.ul-booking-2-form select:focus-visible,
.ul-booking-2-form select:focus-within,
.ul-booking-2-form .ss-main:focus,
.ul-booking-2-form .ss-main:focus-visible,
.ul-booking-2-form .ss-main:focus-within {
  outline: none;
  border-color: var(--theme-color);
}
.ul-booking-2-form .ul-btn {
  width: 100%;
  margin-top: clamp(10px, 0.79vw, 15px);
}
.ul-booking-2-opening-time {
  text-align: center;
}
.ul-booking-2-opening-time .heading {
  padding: clamp(30px, 3.15vw, 60px) clamp(12px, 1.05vw, 20px);
}
.ul-booking-2-opening-time .ul-section-title {
  color: var(--white-color);
}
.ul-booking-2-opening-time-table {
  color: var(--white-color);
  border: 1px solid rgba(237, 237, 237, 0.5);
  border-width: 1px 0;
  width: 100%;
}
.ul-booking-2-opening-time-table td,
.ul-booking-2-opening-time-table th {
  border: 1px solid rgba(237, 237, 237, 0.5);
  border-left: 0;
}
.ul-booking-2-opening-time-table td:last-child,
.ul-booking-2-opening-time-table th:last-child {
  border-right: 0px;
}
.ul-booking-2-opening-time-table th {
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 700;
  padding: clamp(8px, 0.79vw, 15px) 10px;
}
.ul-booking-2-opening-time-table td {
  font-size: clamp(20px, 1.26vw, 24px);
  font-weight: 700;
  padding: clamp(5px, 0.53vw, 10px);
}
.ul-booking-2-opening-time-call {
  color: var(--white-color);
  margin: clamp(15px, 1.58vw, 30px) 0;
}
.ul-booking-2-opening-time-call:hover {
  color: var(--theme-color);
}
.ul-booking-2-vector {
  max-width: clamp(73px, 4.36vw, 83px);
}
.form-group i {
    position: absolute;
    z-index: 2;
    right: clamp(12px, 1.05vw, 20px);
    left: clamp(12px, 1.05vw, 20px);
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex
    ;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.form-group {
    position: relative;
    z-index: 1;
}
.form-group{
    margin-bottom: 8px;
    position: relative;
}

  .home_form{
    margin-top: -25px;
  }

@media(max-width: 768px){
  .form_section .form-title{
    font-size: 25px;
  }
  .ul-footer-bottom .copyright-txt{
    text-align: center;
  }
}
  .common-booking-form{
    margin-bottom: 20px;
  }

  /* Modern Popup Form CSS */
.main-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-sizing: border-box;
}

.main-popup.active {
    opacity: 1;
    visibility: visible;
}

.main-popup.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(254, 90, 14, 0.1) 0%, rgba(17, 17, 17, 0.3) 70%);
    z-index: -1;
}

.main-popup .outer-popup {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 
        0 25px 50px -12px rgba(17, 17, 17, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    transform: translateY(50px) scale(0.9) rotateX(5deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.main-popup.active .outer-popup {
    transform: translateY(0) scale(1) rotateX(0);
    opacity: 1;
}

.main-popup .outer-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color) 0%, #ff8c42 50%, var(--theme-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.main-popup .close-popup-span {
    position: absolute;
    top: 10px;
    right: 6px;
    width: 35px;
    height: 35px;
    background: rgba(254, 90, 14, 0.1);
    border: 2px solid rgba(254, 90, 14, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.main-popup .close-popup-span:hover {
    background: var(--theme-color);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--theme-color);
    box-shadow: 0 8px 20px rgba(254, 90, 14, 0.3);
}

.main-popup .close-popup-span svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.main-popup .close-popup-span:hover svg path {
    fill: white;
}

.main-popup .pop_form_section {
    padding: 20px;
}

.main-popup .pop_form_section h4 {
    color: var(--second-color);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--second-color) 0%, var(--theme-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 16px;
}

.main-popup .pop_form_section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color) 0%, #ff8c42 100%);
    border-radius: 2px;
}

.main-popup .pop_form_section h4 span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 12px;
    color: #666;
    background: none;
    -webkit-text-fill-color: #666;
    line-height: 1.4;
}

.main-popup .trip-form form {
    margin-top: 20px;
}

.main-popup .row.gx-3 {
    margin-left: -12px;
    margin-right: -12px;
}

.main-popup .row.gx-3 > .col-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.main-popup .form-group {
    margin-bottom: 8px;
    position: relative;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-popup .form-group:nth-child(1) { animation-delay: 0.1s; }
.main-popup .form-group:nth-child(2) { animation-delay: 0.2s; }
.main-popup .form-group:nth-child(3) { animation-delay: 0.3s; }

.main-popup .form-group label {
    display: flex;
    align-items: center;
    color: var(--second-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0px;
    transition: color 0.3s ease;
    padding-left: 4px;
}

.main-popup .form-group label i {
    color: var(--theme-color);
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    top: 50px;
    right: 0px;
}

.main-popup .form-group:hover label i {
    transform: scale(1.1);
}

.main-popup .form-control {
    width: 100%;
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 16px;
    color: var(--second-color);
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(17, 17, 17, 0.05);
}
.main-popup textarea.form-control {
    height: 80px;
}

.main-popup .form-control:hover {
    border-color: #d1d5db;
    background: white;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.08);
}

.main-popup .form-control:focus {
    outline: none;
    border-color: var(--theme-color);
    background: white;
    box-shadow: 
        0 4px 16px rgba(254, 90, 14, 0.15),
        0 0 0 4px rgba(254, 90, 14, 0.1);
    transform: translateY(-2px);
}

.main-popup .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.main-popup .form-control:focus::placeholder {
    opacity: 0.5;
}

.main-popup .site-button {
    width: 100%;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--theme-color) 0%, #ff7c39 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    box-shadow: 
        0 8px 24px rgba(254, 90, 14, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.main-popup .site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.main-popup .site-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 32px rgba(254, 90, 14, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #ff7c39 0%, var(--theme-color) 100%);
}

.main-popup .site-button:hover::before {
    left: 100%;
}

.main-popup .site-button:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease;
}

.main-popup .site-button i {
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.main-popup .site-button:hover i {
    transform: translateX(8px) scale(1.1);
}

.main-popup .site-button.loading {
    pointer-events: none;
    opacity: 0.9;
}

.main-popup .site-button.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating label animation */
.main-popup .form-group.floating {
    position: relative;
}

.main-popup .form-group.floating label {
    position: absolute;
    top: 18px;
    left: 20px;
    margin-bottom: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 8px;
    border-radius: 6px;
    z-index: 2;
}

.main-popup .form-group.floating .form-control:focus + label,
.main-popup .form-group.floating .form-control:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 13px;
    color: var(--theme-color);
    background: white;
    padding: 2px 10px;
    border: 2px solid var(--theme-color);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(254, 90, 14, 0.1);
}

/* Success/Error messages */
.main-popup .form-message {
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    animation: slideInUp 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.main-popup .form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #065f46;
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.main-popup .form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #991b1b;
    border-color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15);
}

/* Input focus animation */
.main-popup .form-group {
    position: relative;
}

.main-popup .form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-color), #ff8c42);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-popup .form-group:focus-within::after {
    width: calc(100% - 24px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-popup .outer-popup {
        max-width: 90%;
    }
    
    .main-popup .pop_form_section h4 {
        font-size: 28px;
    }
    
    .main-popup .pop_form_section h4 span {
        font-size: 16px;
    }
    
    .main-popup .site-button {
        padding: 18px 28px;
        font-size: 16px;
    }
    
    .main-popup .form-control {
        padding: 16px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-popup .outer-popup {
        max-width: 95%;
        border-radius: 20px;
    }
    
    .main-popup .pop_form_section h4 {
        font-size: 24px;
    }
    
    .main-popup .pop_form_section h4 span {
        font-size: 15px;
    }
    
    
    .main-popup .site-button {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .main-popup .form-control {
        padding: 14px 16px;
    }
    
    .main-popup .form-group label {
        font-size: 13px;
    }
    
    .main-popup .form-group label i {
        font-size: 16px;
        margin-right: 10px;
    }
}

/* Enhanced focus states for accessibility */
.main-popup .form-control:focus-visible {
    outline: 3px solid rgba(254, 90, 14, 0.5);
    outline-offset: 2px;
}

.main-popup .site-button:focus-visible {
    outline: 3px solid rgba(254, 90, 14, 0.5);
    outline-offset: 3px;
}

/* Loading animation for submit */
.main-popup .submit-loader {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

.main-popup .site-button.loading .submit-loader {
    display: block;
}

.main-popup .site-button.loading span {
    opacity: 0.8;
}

/* Subtle background pattern */
.main-popup .outer-popup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(254, 90, 14, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 90, 14, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    border-radius: 24px;
}
.col-12{
    width: 100%;
}
@media(max-width: 768px){
    .main-popup .pop_form_section h4{
        text-align: left;
    }
    .main-popup .pop_form_section h4::after{
        left: 0;
        transform: none;
    }
}