@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #e5a13e;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #303030;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: none;
}

a,
a:hover {
  text-decoration: none;
}

a,
span {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: #f5f5f5;
  border-radius: 1.5rem;
  border: 0;
  border-bottom: 4px solid #0055cf !important;
  color: #0055cf;
  min-height: 60px;
}

::-webkit-input-placeholder {
  color: #e5a13e !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #e5a13e;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #e5a13e;
  border-color: transparent;
  opacity: 0.5;
}

.dropdown-toggle:hover, .dropdown-toggle:first-child:active {
  background-color: #0055cf;
}
.dropdown-toggle.show {
  background-color: #0055cf;
}

.dropdown-menu {
  padding: 0;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #e5a13e;
}

.nav-link:focus-visible,
.nav-link:focus {
  box-shadow: none;
  outline: none;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Montserrat", sans-serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.theme-bg-primary {
  background-color: #e5a13e;
}

.theme-bg-secondary {
  background-color: #0055cf;
}

.theme-bg-accent-one {
  background-color: #303030;
}

.theme-bg-accent-two {
  background-color: #969696;
}

.theme-bg-accent-three {
  background-color: #f5f5f5;
}

.yellow-color {
  color: #e8b723;
}

.theme-bg-gradient {
  background: linear-gradient(-180deg, #fff8ee 0%, #c9dfff 100%);
}

.theme-bg-new {
  background: #00b2d2;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #e5a13e;
}

.theme-text-secondary {
  color: #0055cf;
}

.theme-text-accent-one {
  color: #303030;
}

.theme-text-accent-two {
  color: #969696;
}

.theme-text-accent-three {
  color: #f5f5f5;
}

.body-text-dark {
  color: #000000;
}

.body-bg {
  background-color: #000000;
}

.gray-dark {
  color: #575757;
}

.theme-box-shadow {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 85, 207, 0.1);
}

.custom-btn-primary {
  background-color: #e5a13e;
  color: #ffffff;
  width: 140px;
  min-height: 44px;
  border: 0;
  border-radius: 1.5rem;
}
.custom-btn-primary:hover {
  background-color: #0055cf;
}

.custom-btn-secondary {
  background-color: #0055cf;
  color: #ffffff;
  width: 140px;
  min-height: 44px;
  border: 0;
  border-radius: 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.custom-btn-secondary:hover {
  background-color: #e5a13e;
}

.custom-link {
  background-color: #969696;
  color: #e5a13e;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #0055cf;
  border: 2px solid #e5a13e;
}

.theme-border-radius {
  border-radius: 1.5rem;
}

.theme-border {
  border: 1px solid #e5a13e;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-effect {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
  display: flex;
  justify-content: center !important;
  align-items: center;
  padding: 12px 15px !important;
  transition: all 0.2s ease;
  color: #ffffff !important;
}
.button-effect .eft-cir {
  width: 16px;
  height: 34px;
  position: absolute;
  z-index: 0;
  transition: all 0.2s;
  background-color: #303030;
}
.button-effect .one {
  left: 0px;
  top: 8px;
  border-bottom-left-radius: 90px;
  border-top-left-radius: 90px;
}
.button-effect .two {
  right: 0px;
  top: 8px;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
}
.button-effect:hover .one {
  left: 90%;
}
.button-effect:hover .two {
  right: 90%;
}

.grow-box {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  width: 100%;
}
.grow-box:hover {
  transform: scale(1.1);
}

.max {
  max-width: 650px;
  margin: auto;
}

.lh-2 {
  line-height: 2;
}

.padd-5 {
  padding: 5rem 0 5rem 0;
}

.text-justify {
  text-align: justify;
}

.letter-space {
  letter-spacing: 5px;
}

.start-free-btn {
  border-radius: 1.5rem;
  background-color: #000000;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  padding: 12px 15px;
}
.start-free-btn:hover {
  background-color: #0055cf;
}

.start-free-btn2 {
  border-radius: 100px;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  padding: 12px 15px;
  min-width: 290px;
}
.start-free-btn2:hover {
  color: #0055cf;
}

.set-bg {
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center;
}

.accordion-item {
  border: 0px;
  background: transparent;
  margin-bottom: 1rem;
}
.accordion-item .accordion-button {
  border: 2px solid #f5f5f5;
  border-radius: 1.5rem;
  padding: 1.5rem;
  font-weight: bold;
}
.accordion-item .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
}
.accordion-item .accordion-button:focus {
  border-color: #0055cf;
  box-shadow: none;
}
.accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 1.5rem;
}

.accordion-body {
  background-color: #000000;
  border-radius: 1.5rem;
  font-weight: bold;
  padding: 2.5rem 1.5rem;
}

.arrow-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-circle::after {
  content: "\f4e2";
  font-family: "bootstrap-icons";
  color: #ffffff;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.divider {
  display: inline-block;
  width: 40px;
  height: 4px;
  border-radius: 1.5rem;
  background-color: #e5a13e;
  margin-top: 1rem;
}

blockquote {
  padding-left: 80px;
  position: relative;
  margin: 5rem 0;
  color: #000000;
  font-size: 2rem;
  line-height: 3rem;
  font-style: italic;
  font-weight: 600;
}
blockquote::before {
  content: "\f6b0";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "bootstrap-icons";
  color: #e5a13e;
  font-size: 4rem;
  line-height: 1;
  font-style: normal;
}

@media (min-width: 992px) {
  .menunav {
    padding: 0;
  }
  .menunav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: end;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .menunav ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .menunav ul li {
    position: relative;
  }
  .menunav ul li:last-child a {
    color: #ffffff;
    background: #0055cf;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
  }
  .menunav ul li:last-child a:hover {
    background-color: #000000;
  }
  .menunav ul li:hover {
    color: #ffffff;
  }
  .menunav ul li:hover a, .menunav ul li:hover:active, .menunav ul li:hover:focus {
    color: #ffffff;
  }
  .menunav a, .menunav:focus {
    color: #ffffff;
    padding: 18px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .menunav .active {
    color: #e5a13e;
  }
  .menunav .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 1.5rem;
    z-index: 99;
  }
  .menunav .dropdown ul li {
    min-width: 200px;
  }
  .menunav .dropdown ul li a {
    padding: 10px 20px;
    font-size: 0.875rem;
    text-transform: none;
    color: #000000;
  }
  .menunav .dropdown ul li a:hover {
    color: #e5a13e;
  }
  .menunav .dropdown ul li a i {
    font-size: 0.75rem;
  }
  .menunav .dropdown ul li:hover > a {
    color: #e5a13e;
  }
  .menunav .dropdown ul.active:hover {
    color: #e5a13e;
  }
  .menunav .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .menunav .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .menunav .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    color: #ffffff;
    font-size: 3rem;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .menunav {
    padding: 0;
    z-index: 9997;
  }
  .menunav ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  }
  .menunav a, .menunav:focus {
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a:hover, .menunav a.active, .menunav:focus:hover, .menunav:focus.active {
    color: #e5a13e;
  }
  .menunav a:hover:focus, .menunav a.active:focus, .menunav:focus:hover:focus, .menunav:focus.active:focus {
    color: #e5a13e;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(229, 161, 62, 0.5);
  }
  .menunav a i:hover, .menunav:focus i:hover {
    background-color: #e5a13e;
    color: #000000;
  }
  .menunav .active i {
    background-color: #e5a13e;
    color: #000000;
  }
  .menunav .active i:focus i {
    background-color: #e5a13e;
    color: #000000;
    transform: rotate(180deg);
  }
  .menunav .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #303030;
    transition: all 0.5s ease-in-out;
  }
  .menunav .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .menunav .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(0, 0, 0, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .smooth {
    height: 100%;
  }
  .mobile-nav-active .mobile-menu-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 2rem;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .menunav {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .menunav > ul {
    display: block;
  }
}
/*-- Search engine css*/
.flight-search {
  position: relative;
  z-index: 0;
  background: rgba(255, 255, 255, 0);
  padding: 1.5rem;
  border-radius: 1.5rem;
}
.flight-search .icon-20 {
  width: 20px;
  height: 20px;
}
.flight-search .search-pan {
  background: #ffffff;
  padding: 0.8rem;
  min-height: auto;
  border-radius: 50rem;
}
@media screen and (max-width: 1200px) {
  .flight-search .search-pan {
    border-radius: 1.5rem;
  }
}
.flight-search .search-pan .dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 50%;
}
.flight-search .search-pan .dropdown .dropdown-menu {
  width: 100%;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  /*-- Droup down Traveller --*/
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li {
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  padding: 5px 0 5px 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li span {
  font-size: 14px;
  font-weight: 500;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .br {
  display: block;
  padding-top: 0px;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn {
  background-color: #0055cf;
  color: #ffffff;
  border: 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn:hover {
  background-color: red;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
  align-items: center;
  width: 45%;
}
@media screen and (max-width: 992px) {
  .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 30%;
  }
}
@media screen and (max-width: 575px) {
  .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 50%;
  }
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button {
  background-color: #0055cf;
  border: none;
  color: #ffffff;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button:hover {
  background-color: red;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field {
  text-align: center;
  width: 50%;
  background: #f5f5f5;
  border: 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-inner-spin-button, .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.flight-search .search-pan .form-group {
  position: relative;
}
.flight-search .search-pan .icon-pos {
  top: 0.6rem;
  left: 0.5rem;
  color: #969696;
}
@media screen and (max-width: 992px) {
  .flight-search .search-pan .icon-pos {
    top: 1rem;
  }
}
.flight-search .search-pan .input-group {
  color: inherit;
}
.flight-search .search-pan .form-control {
  font-size: 14px;
  background-color: #f5f5f5;
  min-height: 56px;
  border: 0px;
  text-decoration: none;
  border-radius: 0rem;
  text-align: left;
}
.flight-search .search-pan {
  /*Date calender*/
}
.flight-search .search-pan .cal-input {
  background: none;
  border: 0px;
  width: 6rem;
  padding: 0.4rem 0 0 0.5rem;
}
.flight-search .search-pan .dep-date-input {
  position: relative;
  width: auto;
  height: 2rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background: #ffffff;
  border-style: none;
  padding: 0 0;
  margin: 0.3rem 0 0 2rem;
}
.flight-search .search-pan .dep-date-input:after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 0.8rem solid #ffffff;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.flight-search .search-pan .arv-date-input {
  position: relative;
  width: 45%;
  height: 2rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: #ffffff;
  border-style: none;
  padding: 0 0;
  margin: 0.3rem 0 0 2rem;
}
.flight-search .search-pan .arv-date-input:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 0.5rem solid #f5f5f5;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.flight-search .search-pan .dropdown-toggle {
  padding: 0 1rem 0 3rem;
}
.flight-search .search-pan .dropdown-toggle::before {
  color: #969696;
  right: 0.8rem;
}
.flight-search .nav-tabs .nav-item .nav-link {
  font-weight: 700;
  color: #0055cf;
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem 1.5rem 0rem;
}
.flight-search .nav-tabs .nav-item .nav-link:hover {
  border-color: transparent;
  color: #e5a13e;
}
.flight-search .nav-tabs .nav-item .active span {
  background: #ffffff !important;
  border: 1px solid #e5a13e;
  position: relative;
}
.flight-search .nav-tabs .nav-item .active span:after {
  content: "";
  display: block;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #e5a13e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
}
.flight-search .btn-search {
  background-color: #0055cf;
  min-height: 56px;
  color: #ffffff;
  min-width: 75px;
  width: 100%;
  border-radius: 50rem;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.flight-search .btn-search:before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: -100%;
  background: #e5a13e;
  transition: all 0.2s;
  z-index: -1;
}
.flight-search .btn-search:hover {
  color: #303030;
}
.flight-search .btn-search:hover:before {
  top: 0;
  left: 0;
}
.flight-search .pos-swap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0055cf;
  position: absolute;
  top: 0.9rem;
  right: -1.2rem;
  z-index: 1;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
}
.flight-search .pos-swap:hover {
  background-color: #e5a13e;
  color: #303030;
}
@media screen and (max-width: 992px) {
  .flight-search .pos-swap {
    right: 0;
    top: 2.5rem;
  }
}
.flight-search {
  /*checkbox css*/
}
.flight-search .check-wrap {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #303030;
}
.flight-search .check-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.flight-search .check-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
  border-radius: 0.2rem;
  border: 1px solid #303030;
}
.flight-search .check-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.flight-search .check-wrap .checkmark:after {
  left: 0.2rem;
  top: 0rem;
  width: 0.5rem;
  height: 0.8rem;
  border: solid #303030;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.flight-search .check-wrap:hover input ~ .checkmark {
  background-color: #f5f5f5;
  background: #e5a13e;
}
.flight-search .check-wrap input:checked ~ .checkmark {
  border: 1px solid #303030;
}
.flight-search .check-wrap input:checked ~ .checkmark:after {
  display: block;
}

/*-- Search engine css*/
.flight-search {
  position: relative;
  z-index: 0;
  background: rgba(255, 255, 255, 0);
  padding: 1.5rem;
  border-radius: 1.5rem;
}
.flight-search .icon-20 {
  width: 20px;
  height: 20px;
}
.flight-search .search-pan {
  background: #ffffff;
  padding: 0.8rem;
  min-height: auto;
  border-radius: 50rem;
}
@media screen and (max-width: 1200px) {
  .flight-search .search-pan {
    border-radius: 1.5rem;
  }
}
.flight-search .search-pan .dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 50%;
}
.flight-search .search-pan .dropdown .dropdown-menu {
  width: 100%;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  /*-- Droup down Traveller --*/
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li {
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  padding: 5px 0 5px 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li span {
  font-size: 14px;
  font-weight: 500;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .br {
  display: block;
  padding-top: 0px;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn {
  background-color: #0055cf;
  color: #ffffff;
  border: 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn:hover {
  background-color: red;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
  align-items: center;
  width: 45%;
}
@media screen and (max-width: 992px) {
  .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 30%;
  }
}
@media screen and (max-width: 575px) {
  .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 50%;
  }
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button {
  background-color: #0055cf;
  border: none;
  color: #ffffff;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button:hover {
  background-color: red;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field {
  text-align: center;
  width: 50%;
  background: #f5f5f5;
  border: 0;
}
.flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-inner-spin-button, .flight-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.flight-search .search-pan .form-group {
  position: relative;
}
.flight-search .search-pan .icon-pos {
  top: 0.6rem;
  left: 0.5rem;
  color: #969696;
}
@media screen and (max-width: 992px) {
  .flight-search .search-pan .icon-pos {
    top: 1rem;
  }
}
.flight-search .search-pan .input-group {
  color: inherit;
}
.flight-search .search-pan .form-control {
  font-size: 14px;
  background-color: #f5f5f5;
  min-height: 56px;
  border: 0px;
  text-decoration: none;
  border-radius: 0rem;
  text-align: left;
}
.flight-search .search-pan {
  /*Date calender*/
}
.flight-search .search-pan .cal-input {
  background: none;
  border: 0px;
  width: 6rem;
  padding: 0.4rem 0 0 0.5rem;
}
.flight-search .search-pan .dep-date-input {
  position: relative;
  width: auto;
  height: 2rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background: #ffffff;
  border-style: none;
  padding: 0 0;
  margin: 0.3rem 0 0 2rem;
}
.flight-search .search-pan .dep-date-input:after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-left: 0.8rem solid #ffffff;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.flight-search .search-pan .arv-date-input {
  position: relative;
  width: 45%;
  height: 2rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: #ffffff;
  border-style: none;
  padding: 0 0;
  margin: 0.3rem 0 0 2rem;
}
.flight-search .search-pan .arv-date-input:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 0.5rem solid #f5f5f5;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
.flight-search .search-pan .dropdown-toggle {
  padding: 0 1rem 0 3rem;
}
.flight-search .search-pan .dropdown-toggle::before {
  color: #969696;
  right: 0.8rem;
}
.flight-search .nav-tabs .nav-item .nav-link {
  font-weight: 700;
  color: #0055cf;
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem 1.5rem 0rem;
}
.flight-search .nav-tabs .nav-item .nav-link:hover {
  border-color: transparent;
  color: #e5a13e;
}
.flight-search .nav-tabs .nav-item .active span {
  background: #ffffff !important;
  border: 1px solid #e5a13e;
  position: relative;
}
.flight-search .nav-tabs .nav-item .active span:after {
  content: "";
  display: block;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #e5a13e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
}
.flight-search .btn-search {
  background-color: #0055cf;
  min-height: 56px;
  color: #ffffff;
  min-width: 75px;
  width: 100%;
  border-radius: 50rem;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.flight-search .btn-search:before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: -100%;
  background: #e5a13e;
  transition: all 0.2s;
  z-index: -1;
}
.flight-search .btn-search:hover {
  color: #303030;
}
.flight-search .btn-search:hover:before {
  top: 0;
  left: 0;
}
.flight-search .pos-swap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0055cf;
  position: absolute;
  top: 0.9rem;
  right: -1.2rem;
  z-index: 1;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
}
.flight-search .pos-swap:hover {
  background-color: #e5a13e;
  color: #303030;
}
@media screen and (max-width: 992px) {
  .flight-search .pos-swap {
    right: 0;
    top: 2.5rem;
  }
}
.flight-search {
  /*checkbox css*/
}
.flight-search .check-wrap {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #303030;
}
.flight-search .check-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.flight-search .check-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
  border-radius: 0.2rem;
  border: 1px solid #303030;
}
.flight-search .check-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.flight-search .check-wrap .checkmark:after {
  left: 0.2rem;
  top: 0rem;
  width: 0.5rem;
  height: 0.8rem;
  border: solid #303030;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.flight-search .check-wrap:hover input ~ .checkmark {
  background-color: #f5f5f5;
  background: #e5a13e;
}
.flight-search .check-wrap input:checked ~ .checkmark {
  border: 1px solid #303030;
}
.flight-search .check-wrap input:checked ~ .checkmark:after {
  display: block;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000;
  z-index: 9999;
  overflow: visible;
  justify-content: center;
  align-items: center;
  display: flex;
}
.page-loader .loader {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 35rem;
  height: 30rem;
  margin: 0 auto;
}
.page-loader .plane {
  position: absolute;
  margin: 0 auto;
  width: 100%;
}
.page-loader .plane-img {
  animation: spin 2.5s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.info-top.alert-sec {
  background: linear-gradient(90deg, #ff6a00 0%, #b91c1c 100%);
  color: white;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.info-top .btn-close {
  top: unset;
}

.header-type2 {
  background-color: #ffffff;
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 16px 20px;
  border-bottom: 1px solid #969696;
}
.header-type2 .menunav a.active {
  color: #ffffff;
}
@media (max-width: 992px) {
  .header-type2 .menunav a.active {
    color: #e5a13e;
  }
}
.header-type2 .menunav a,
.header-type2 .menunav:focus {
  color: #0055cf;
}
@media (max-width: 992px) {
  .header-type2 .menunav a,
  .header-type2 .menunav:focus {
    color: #000000;
  }
}
@media (max-width: 992px) {
  .header-type2 .mobile-menu-toggle {
    color: #ffffff;
  }
}

.hero {
  position: relative;
  background-color: #f5f5f5;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 10rem 0 3rem 0;
  text-align: center;
  background: linear-gradient(60deg, rgb(255, 244, 227) 0%, rgb(255, 244, 239) 50%, rgb(255, 246, 232) 100%);
}
.hero .sub-heading {
  font-size: 16px;
  color: black;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.hero .strip-bottom {
  background-color: #0055cf;
  position: relative;
  height: auto;
  line-height: 3rem;
  z-index: 50;
  padding: 0px;
  margin: auto;
  padding: 0rem;
  width: 80%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .hero .strip-bottom {
    width: 100%;
  }
}
.hero .strip-bottom .call-pic {
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero2 {
  position: relative;
  background-color: #f5f5f5;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 6rem 0 2rem 0;
  text-align: center;
}

.airline-pill {
  display: flex;
  justify-content: center;
  align-items: center;
}
.airline-pill .nav-item {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.airline-pill .nav-item:first-child {
  padding-left: 0;
}
.airline-pill .nav-item .nav-link {
  background-color: #f5f5f5;
  color: #0055cf;
  border-radius: 1.5rem;
  padding: 0.5rem 2rem;
  text-align: center;
  border: 1px solid #969696;
}
.airline-pill .nav-item .nav-link {
  color: #303030;
}
.airline-pill .nav-item .nav-link:hover {
  background-color: #e5a13e;
}

.process-card {
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 1.5rem;
  padding: 1rem;
}
@media (max-width: 992px) {
  .process-card {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .process-card .circle {
    margin-right: 1rem;
  }
}

.left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.bg-icon {
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}

.client-con {
  text-align: justify;
  background-color: #ffffff;
  border-radius: 0.8rem;
  position: relative;
}
.client-con .circle {
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  padding: 0.5rem;
  top: 20px;
  left: 10px;
  position: absolute;
}
.client-con .qotes-img {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.footer {
  background: #e5a13e;
  background: linear-gradient(3deg, rgba(255, 221, 191, 0.4934348739) 0%, rgba(255, 255, 255, 0.4990371148) 100%);
}
.footer p {
  color: #303030;
  line-height: 1.5;
}
.footer .footer-link li {
  line-height: 2.5rem;
  padding: 0 1rem;
}
.footer .footer-link li a {
  color: #303030;
  padding: 0 0 0.5rem 0;
  font-size: 0.875rem;
}
.footer .footer-link li a:hover {
  color: #e5a13e;
}
.footer .fot-action {
  cursor: pointer;
}
.footer .fot-action .circle {
  background-color: rgba(229, 161, 62, 0.04);
  width: 5rem;
  height: 5rem;
  text-align: center;
  line-height: 5rem;
  border-radius: 50%;
}
.footer .fot-action .circle i {
  color: #e5a13e;
}
.footer .fot-action:hover .circle {
  background-color: #e5a13e;
}
.footer .fot-action:hover .circle i {
  color: #ffffff;
}

.offCanvas-box {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 430px;
  transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: #303030;
  z-index: 1020;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .offCanvas-box {
    width: 320px;
  }
}
.offCanvas-box::-webkit-scrollbar {
  width: 0px;
}
.offCanvas-box .box-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offCanvas-box .box-body .top {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e5a13e;
}
.offCanvas-box .box-body .top .offCanvas-close {
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  border-radius: 0%;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.offCanvas-box .box-body .top .offCanvas-close:hover {
  background: #e5a13e;
  color: #303030;
}
.offCanvas-box .box-body .content {
  padding: 4rem 2rem 4rem 2rem;
}
.offCanvas-box .box-body .content .contact-box .list li {
  color: #f5f5f5;
  position: relative;
  margin: 0 0 1rem;
}
.offCanvas-box .box-body .content .contact-box .list li:hover:before {
  background: #e5a13e;
}
.offCanvas-box .box-body .content .contact-box .list li:last-child {
  margin: 0 0;
}
.offCanvas-box .box-body .content .contact-box .list li a {
  color: #f5f5f5;
  font-weight: 600;
}
.offCanvas-box .box-body .content .contact-box .list li a:hover {
  color: #e5a13e;
}

.offCanvas-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(48, 48, 48, 0.75);
  transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  cursor: none;
}

.offCanvas-open .offCanvas-overlay {
  opacity: 0.8;
  visibility: visible;
}
.offCanvas-open .offCanvas-box {
  transform: translateX(0);
}

.content {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
.content li {
  font-size: 0.875rem;
  line-height: 2rem;
  padding-left: 2rem;
  position: relative;
}
.content li::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #e5a13e;
  border-radius: 50%;
  position: absolute;
  left: 1rem;
  top: 10px;
}

.about-design-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
.about-design-two img:first-child {
  border-radius: 200px 200px 30px 30px;
  margin-top: 80px;
  max-width: 130%;
  border: 2px solid #ffffff;
}
.about-design-two img:nth-child(2) {
  border-radius: 30px 30px 200px 200px;
  margin-left: -5%;
  max-width: 105%;
}
.about-design-two .shape img:first-child {
  border-radius: 0;
  position: absolute;
  left: 0;
  top: -80px;
  z-index: -1;
  opacity: 0.3;
  border: none;
}

.about {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.about .thumb-group {
  max-width: 625px;
  padding-top: 94%;
  margin-inline-start: -45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about .thumb-group {
    max-width: 600px;
    padding-top: 0%;
  }
}
@media screen and (max-width: 767px) {
  .about .thumb-group {
    margin-inline-start: 0;
  }
}
@media screen and (max-width: 575px) {
  .about .thumb-group {
    margin-inline-start: 0;
    width: 100%;
    padding-top: 0;
  }
}
.about .thumb-group .group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: inherit;
}
.about .thumb-group .group:hover {
  transform: scale(1.05);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .about .thumb-group .thumb1 {
    width: 60%;
    position: relative;
  }
}
.about .thumb-group .thumb3 {
  left: 82.4%;
  right: 82.4%;
  top: 13.4%;
  width: 26.8%;
  z-index: 1;
  background-color: #0055cf;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .about .thumb-group .thumb3 {
    left: 0;
    right: unset;
    top: -120px;
    width: 100%;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  .about .thumb-group .thumb3 {
    width: 60%;
  }
}

.card-exce {
  display: inline-flex;
  background: #ffffff;
  padding: 1rem;
  border: 1px solid #f5f5f5;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
}
.card-exce .icon img {
  margin-right: 15px;
  width: 100px;
}
.card-exce .txt {
  margin-bottom: 0px;
}

ul.about-list-two li {
  position: relative;
  z-index: 1;
  padding-left: 25px;
  padding-bottom: 1rem;
  font-weight: 500;
  margin-top: 8px;
  color: #303030;
}
ul.about-list-two li:first-child {
  margin-top: 0;
}
ul.about-list-two li::after {
  position: absolute;
  left: 0;
  top: -4px;
  content: "\f4b5";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  color: #e5a13e;
  line-height: 2rem;
}

.foot-icon-wrap .footer-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  background-color: #0055cf;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: all 0.3s;
}
.foot-icon-wrap .footer-icon i {
  font-size: 2rem;
  color: #ffffff;
}
.foot-icon-wrap:hover .footer-icon {
  background-color: #f5f5f5;
}
.foot-icon-wrap:hover .footer-icon i {
  color: #000000;
  transform: rotate3d(2, 1, 2, 360deg);
  transition-duration: 0.3s;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 100;
}
@media (min-width: 640px) {
  .sticky-cta {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px;
    bottom: 20px;
  }
}
.sticky-cta .sticky-info {
  font-size: 13px;
}
.sticky-cta .sticky-info .status {
  color: green;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sticky-cta .sticky-info .status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: green;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.sticky-cta .sticky-info .wait {
  color: var(--text-light);
  font-size: 12px;
}
.sticky-cta .sticky-btn {
  background: linear-gradient(90deg, #ff6a00 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.sticky-cta .sticky-btn:hover {
  background: #0055cf;
  color: #ffffff;
}

.box-circle {
  width: 80px;
  height: 80px;
  border-radius: 50rem;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact a {
  color: #000000;
}
.contact a:hover h2,
.contact a:hover span {
  color: #e5a13e;
}

.gallery-sec {
  padding: 6rem 0;
}
.gallery-sec .gallery-card {
  position: relative;
  width: 100%;
}
.gallery-sec .gallery-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 1.5rem;
}
.gallery-sec .gallery-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
  width: -webkit-fill-available;
}
.gallery-sec .gallery-card figure .gallery-text {
  transition: transform 0.5s, opacity 0.3s;
  position: absolute;
  z-index: 99;
  bottom: 37px;
  opacity: 0;
  transform: translateX(0);
  max-width: 100%;
}
.gallery-sec .gallery-card figure .gallery-text .heading {
  color: #ffffff;
  font-size: 1.5rem;
}
.gallery-sec .gallery-card figure .gallery-text .title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
}
.gallery-sec .gallery-card figure:hover .gallery-text {
  opacity: 1;
  transform: translateX(39px);
}
.gallery-sec .gallery-card figure .bg-overlay {
  transition: transform 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  transform: translatey(100%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.5%, rgba(0, 0, 0, 0.4) 82.25%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-sec .gallery-card figure .bg-overlay i {
  color: #000000;
  font-size: 2.5rem;
}
.gallery-sec .gallery-card figure:hover .bg-overlay {
  transform: translatey(0);
}
.gallery-sec .colum5 .gallery-card figure {
  max-height: 250px;
}
.gallery-sec .colum5 .gallery-card figure .gallery-text .heading,
.gallery-sec .colum5 .gallery-card figure .gallery-text .title {
  display: none;
}

.filter-controls {
  margin: 30px auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.filter-controls li {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 1.5rem;
  transition: 0.3s all;
}
.filter-controls li:hover {
  background: #e5a13e;
  color: #ffffff;
}
.filter-controls li.active {
  color: #0055cf;
  background: #e5a13e;
}
.filter-controls li:last-child {
  margin-right: 0;
}

.carouselGallerySlider .slick-slide {
  margin-left: 1rem;
  margin-right: 1rem;
}

.carouselGallerySliderFluid .slick-slide {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}/*# sourceMappingURL=main.css.map */