@import url("https://fonts.googleapis.com/css2?family=Jost:wght@500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("glightbox.min.css");
/*-- color style --*/
/*-- font style --*/
/*-- theme style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}

a {
  color: #008CFF;
}

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

.dropdown-item.active,
.dropdown-item:active {
  background: #000000;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

html {
  font-size: 1rem;
}

body {
  font-family: "Poppins", sans-serif !important;
  background-color: #ffffff;
}

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

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

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

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

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

.theme-bg-white {
  background-color: #ffffff;
}

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

.theme-text-primary {
  color: #068FFF;
}

.theme-text-secondary {
  color: #000000;
}

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

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

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

.theme-text-accent-four {
  color: #EFFAFF;
}

.text-green {
  color: #00A45D;
}

.theme-box-shadow {
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.theme-border-radius {
  border-radius: 50px;
}

.min-w-150 {
  min-width: 150px;
}

.btn-shop {
  background-color: #ffffff;
  color: #068FFF;
  border-radius: 50px;
  min-width: 150px;
}
.btn-shop:hover {
  background-color: #068FFF;
  color: #ffffff;
}

.link-btn {
  background-color: #EFFAFF;
  color: #068FFF;
  border-radius: 50px;
  min-width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-btn:hover {
  background-color: #068FFF;
  color: #ffffff;
}

/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.recomended-btn {
  background-color: #EFFAFF;
  color: #5D5D5D;
  border-radius: 50px;
  border: none;
}
.recomended-btn:hover {
  background-color: #068FFF;
}

.theme-btn-outline {
  background-color: #ffffff;
  color: #068FFF;
  border-radius: 50px;
  border: 1px solid #068FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  font-size: 0.8rem;
}
.theme-btn-outline:hover {
  background-color: #068FFF;
  color: #ffffff;
}

.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #000000;
  border-radius: 5px;
  color: #ffffff;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer;
  transition: all 1s;
  transform: translateY(100%);
}
.scrollToTop.active {
  bottom: 30px;
  transform: translateY(0%);
}

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

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000000;
}

.loading {
  position: absolute;
  width: 600px;
  height: 36px;
  left: 50%;
  top: 40%;
  margin-left: -300px;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
  z-index: 99;
}
.loading div {
  position: absolute;
  width: 20px;
  height: 36px;
  opacity: 0;
  font-family: Helvetica, Arial, sans-serif;
  animation: move 2s linear infinite;
  -o-animation: move 2s linear infinite;
  -moz-animation: move 2s linear infinite;
  -webkit-animation: move 2s linear infinite;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  color: #35C4F0;
}
.loading div:nth-child(2) {
  animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.loading div:nth-child(3) {
  animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.loading div:nth-child(4) {
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.loading div:nth-child(5) {
  animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.loading div:nth-child(6) {
  animation-delay: 1s;
  -o-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.loading div:nth-child(7) {
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }
  35% {
    left: 41%;
    transform: rotate(0deg);
    opacity: 1;
  }
  65% {
    left: 59%;
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: rotate(-180deg);
    opacity: 0;
  }
}
.breadcrumb-link {
  padding-top: 35px;
}
.breadcrumb-link .links a {
  font-size: 0.8rem;
  color: #ffffff;
  margin-right: 18px;
  display: inline-block;
  position: relative;
}
.breadcrumb-link .links a:hover {
  color: #068FFF;
}
.breadcrumb-link .links a:after {
  position: absolute;
  right: -14px;
  top: 0;
  content: "\f285";
  font-family: "bootstrap-icons";
}
.breadcrumb-link .links a i {
  margin-right: 5px;
  color: #068FFF;
}
.breadcrumb-link .links span {
  font-size: 0.8rem;
  color: #9F9F9F;
  display: inline-block;
}

.breadcrumb {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}
.breadcrumb:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(93, 93, 93, 0.5);
  z-index: -1;
}
.breadcrumb .head {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.breadcrumb .para {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0;
}

.news-card .date-tags {
  bottom: 20px;
  left: -10px;
  z-index: 1;
  display: block;
  background: #00A45D;
  cursor: pointer;
  border-radius: 50px;
  overflow: hidden;
}
.news-card .date-tags a {
  color: #ffffff;
  padding: 0.25rem 1rem;
  display: inline-block;
}

.pagination li a.page-link {
  border: 0px solid #DDDDDD;
  border-radius: 50px;
  color: #068FFF;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  margin-right: 10px;
}
.pagination li a.page-link:hover {
  color: #ffffff;
  background: #068FFF;
  border-color: #9F9F9F;
}
.pagination li a.page-link:first-child {
  border-radius: 0;
  border-radius: 50px;
}
.pagination li a.page-link:last-child {
  border-radius: 0;
  border-radius: 50px;
}

.login-app {
  list-style: none;
  display: flex;
  justify-content: center;
}
.login-app li {
  padding: 1rem 0.5rem;
}
.login-app li a {
  display: inline-block;
  background: url(../images/icons/app-icon.png) no-repeat;
  width: 60px;
  height: 60px;
}
.login-app li .fb {
  background-position: 0 0;
}
.login-app li .go {
  background-position: 0 -72px;
}
.login-app li .in {
  background-position: 0 -148px;
}

.head-wrapper {
  display: block;
  min-height: auto;
  position: relative;
  z-index: 2;
}
.head-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  background: #5D5D5D;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  display: none;
}

.header {
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}
.header .page-menu li.active a {
  color: #068FFF;
}
.header .page-menu li a {
  color: #5D5D5D;
}
.header .page-menu li a.mein-link {
  padding: 1.5rem 1rem !important;
}
@media screen and (max-width: 992px) {
  .header .page-menu li a.mein-link {
    padding: 1rem 2rem !important;
  }
}
.header .page-menu li a:hover {
  color: #068FFF;
}
.header .page-menu li a.active {
  color: #068FFF;
}
@media screen and (max-width: 992px) {
  .header .page-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.header .page-menu .user i {
  color: #ffffff;
}
.header .page-menu .user::after {
  content: "";
  display: none;
}
.header .page-menu .sub-menu {
  text-align: center;
}
.header .page-menu .sub-menu li {
  display: inline-block;
}
.header .page-menu .sub-menu li a {
  padding: 0px 0.5rem;
}
.header .menu-droup .navbar-nav .dropdown-menu {
  position: absolute;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 992px) {
  .header .menu-droup {
    flex-direction: row;
    justify-content: space-between;
  }
}
.header .notification-drop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .notification-drop .item {
  padding: 20px;
  position: relative;
}
.header .notification-drop .item:hover {
  cursor: pointer;
}
.header .notification-drop .item i {
  font-size: 1.25rem;
}
.header .notification-drop .item .badge {
  background: #ff0000;
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0px;
  padding: 5px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .notification-drop .item ul {
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  position: absolute;
  top: 100%;
  background: #ffffff;
  left: -200px;
  right: 0;
  z-index: 1;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.header .notification-drop .item ul li {
  font-size: 0.8rem;
  padding: 10px;
  border-bottom: 1px dashed #DDDDDD;
}
.header .notification-drop .item ul li:last-child {
  border-bottom: none;
}
.header .notification-drop .item ul li:hover {
  background: #068FFF;
  color: #000000;
}
.header .notification-drop .item .active {
  transform: translateY(0px);
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.search-engine {
  padding: 5rem 0 5rem 0;
  background-image: url(../images/section/banner-image.webp);
  background-size: cover;
  min-height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  min-height: 450px;
}
.search-engine.hotels {
  background-image: url(../images/section/banner-image02.png);
}
.search-engine.holidays {
  background-image: url(../images/section/banner-image03.png);
}

.search-engine:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: rgb(3, 146, 209);
  background: linear-gradient(180deg, rgba(3, 146, 209, 0.3281687675) 0%, rgba(0, 0, 0, 0.762342437) 100%);
}
@media screen and (max-width: 992px) {
  .search-engine {
    padding: 1rem 0;
    background-attachment: fixed;
    background-color: #068fff;
    background-image: none;
  }
  .search-engine:before {
  background: none;
}
}
.cust-tab li .nav-link,
.cust-tab li .nav-link.active {
  background-color: transparent;
  border: 0px solid transparent;
  color: #ffffff;
  position: relative;
}
.cust-tab li .nav-link:hover,
.cust-tab li .nav-link.active:hover {
  color: #068FFF;
}
.cust-tab li .nav-link.active:after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  background-color: #ffffff;
  margin: 0 auto;
  position: absolute;
  bottom: 0px;
}

.cust-pills .nav-item .nav-link {
  color: #ffffff;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 992px) {
  .cust-pills .nav-item .nav-link {
    font-size: 18px;
  }
  .theme-border-radius {
    border-radius: 20px;
}
}

.cust-pills .nav-item span {
  border: 1px solid #068FFF;
}
.cust-pills .nav-item .active span {
  background: #068FFF !important;
  border: 1px solid #068FFF;
  position: relative;
}

.search-pan {
  background: #ffffff;
  padding: 0.8rem;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-pan .dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 50%;
}
.search-pan .dropdown .dropdown-menu {
  width: 100%;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  /*-- Droup down Traveller --*/
}
.search-pan .dropdown .dropdown-menu .drop-rest li {
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  padding: 1rem 0 1rem 0;
  font-size: 14px;
}
.search-pan .dropdown .dropdown-menu .drop-rest li span {
  font-size: 14px;
  font-weight: 500;
}
.search-pan .dropdown .dropdown-menu .drop-rest li .br {
  display: block;
  padding-top: 0px;
}
.search-pan .dropdown .dropdown-menu .drop-rest li .btn {
  background-color: #000000;
  color: #ffffff;
}
.search-pan .dropdown .dropdown-menu .drop-rest li .btn:hover {
  background-color: #000000;
}
.search-pan .dropdown .dropdown-menu .plus-minus-input {
  align-items: center;
  width: 40%;
}
@media screen and (max-width: 992px) {
  .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 30%;
  }
}
@media screen and (max-width: 575px) {
  .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 50%;
  }
}
.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button {
  background-color: #ffffff;
  border: 1px solid #068FFF;
  color: #068FFF;
  border-radius: 0.2rem;
}
.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button:hover {
  background-color: #068FFF;
  color: #ffffff;
}
.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field {
  text-align: center;
  width: 40%;
  background: transparent;
  border: 0;
  margin-left: 0px !important;
}
.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-inner-spin-button, .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.search-pan .form-group {
  position: relative;
  border-right: 1px solid #DDDDDD;
  padding-left: 1rem;
}
@media screen and (max-width: 992px) {
  .search-pan .form-group {
    border-right: 0px solid #DDDDDD;
    border-bottom: 1px solid #dddddd;
    padding-top: 8px;
    padding-bottom: 8px;
  }
.mjmjmj{
    font-size: 10px;
}
}
.search-pan .input-group {
  color: inherit;
}
.search-pan .form-label {
  display: block;
  text-align: left;
  font-size: 12px;
  color: #5D5D5D;
  margin: 0;
}
.search-pan .form-control {
  font-size: 17px;
  color: #6e777f;
  padding: 0;
  border: 0px;
  text-decoration: none;
  text-align: left;
  font-weight: 500;
  text-overflow: ellipsis;
}
.search-pan .dropdown-toggle::before {
  color: #9F9F9F;
  right: 0.8rem;
}

.btn-search {
  background-color: #068FFF;
  min-height: 48px;
  color: #ffffff;
  max-width: 175px;
  width: 100%;
  border-radius: 50px;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 22px;
  font-weight: 300;
}
.btn-search:before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: -100%;
  background: #000000;
  transition: all 0.2s;
  z-index: -1;
}
.btn-search:hover {
  color: #ffffff;
}
.btn-search:hover:before {
  top: 0;
  left: 0;
}

.sector-add {
  font-size: 0.625rem;
  background-color: #EFFAFF;
  border-radius: 50px;
  color: #5D5D5D;
  padding: 0 10px;
}

.mode-switch {
  position: relative;
  font-size: 0.8rem;
}
.mode-switch input[type=checkbox] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}
.mode-switch input[type=checkbox]:checked + label.mode-switch-inner:after {
  content: attr(data-on);
  left: 80px;
  background: #068FFF;
}
.mode-switch input[type=checkbox]:checked + label.mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}
.mode-switch > label.mode-switch-inner {
  margin: 0px;
  width: 160px;
  height: 30px;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: block;
}
.mode-switch > label.mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  top: 7px;
  right: 20px;
}
.mode-switch > label.mode-switch-inner:after {
  content: attr(data-off);
  width: 80px;
  height: 30px;
  line-height: 30px;
  background: #068FFF;
  border-radius: 50px;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  transition: all 0.3s ease;
}

.subs-form {
  position: relative;
  min-height: 60px;
  border-radius: 50px;
  background-color: #ffffff;
  padding: 0.5rem;
}
.subs-form input {
  border-radius: 50px;
  font-size: 0.875rem;
}
.subs-form button {
  border-radius: 50px !important;
  min-width: 150px;
  font-size: 0.875rem;
}

/*************/
  .psingbtn {
  background-color: #ffffff;
  color: #068FFF;
  border-radius: 50px;
  border: 1px solid #068FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 5px 0;
}

  .psingbtn:hover {background: #068FFF; color: #fff;}
  li.nav-item {
    padding: 0 10px;
}
/************/

.testimonials {
  position: relative;
  background-color: rgba(6, 143, 255, 0.05);
}
.testimonials .client-con {
  text-align: justify;
  background-color: #ffffff;
  border-radius: 50px;
}

.footer {
  padding-top: 3rem;
  background-color: #ffffff;
}
.footer .fl-menu {
  padding-left: 0;
}
.footer .fl-menu li {
  list-style: none;
  line-height: 24px;
}

.footer .fl-menu li a {
  color: #3f3f3f;
  position: relative;
  font-size: 0.875rem;
}
.footer .fl-menu li a:hover {
  color: #068FFF;
}
.footer .footer-link li {
  line-height: 2.5rem;
  padding: 0 1rem;
  list-style: none;
}
.footer .footer-link li a {
  color: #3f3f3f;
  padding: 0 0 0.5rem 0;
  font-size: 0.8rem;
}
.footer .footer-link li a:hover {
  color: #068FFF;
}
.footer .social a,
.footer .social .botom-link {
  color: #5D5D5D;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #068FFF;
}

.recommended {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.recommended .card-wrap {
  background-color: #ffffff;
}
.recommended .card-wrap .con-img-wrap {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
.recommended .card-wrap .con-img-wrap img {
  transition: all 0.2s ease;
}
.recommended .card-wrap .con-img-wrap img:hover {
  transform: scale(1.1);
}
.recommended .card-wrap .con-img-wrap .offer-tag {
  background-color: #068FFF;
  border-radius: 0 0 50% 50%;
  width: 50px;
  height: 45px;
  display: block;
  position: absolute;
  left: 50px;
  top: 0px;
  text-align: center;
  line-height: normal;
  color: #000000;
  font-size: 0.8rem;
}
.recommended .card-wrap .con-img-wrap .wishlist-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  display: flex;
  width: 30px;
  height: 30px;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  line-height: normal;
  border-radius: 100%;
  color: #000000;
  cursor: pointer;
}
.recommended .card-wrap .con-img-wrap .wishlist-tag:hover {
  background: #068FFF;
  color: #ffffff;
}
.recommended .card-wrap .con-wrap .rating-cover {
  color: #9F9F9F;
}
.recommended .card-wrap .con-wrap .rating-cover i {
  color: #ffc107;
}
.recommended .card-wrap .con-wrap .timing {
  color: #9F9F9F;
}
.recommended .card-wrap .con-wrap .timing i {
  color: #068FFF;
}

.special-offers {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.special-offers .box {
  position: relative;
  max-height: 450px;
  height: 450px;
  background-color: #5D5D5D;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 50px;
  padding-left: 3rem;
}
.special-offers .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(3, 146, 209);
  background: linear-gradient(180deg, rgba(3, 146, 209, 0.3281687675) 0%, rgba(0, 0, 0, 0.762342437) 100%);
  z-index: 0;
}
.special-offers .box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  z-index: 1;
}
.special-offers .product01 {
  background-image: url(../images/section/product-banner01.png);
}
.special-offers .product02 {
  background-image: url(../images/section/product-banner02.png);
}

.destinations {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.destinations .destination-pill .nav-item .nav-link.active {
  background-color: #EFFAFF;
  color: #000000;
  border-radius: 50px;
}
.destinations .destination-pill .nav-item .nav-link {
  color: #000000;
}

/*-- flight experience css --*/
.experience {
  align-items: center;
  justify-content: center;
  display: flex;
  padding-bottom: 3rem;
}
.experience .wrap {
  position: relative;
  background-color: rgba(6, 143, 255, 0.1);
  background-image: url(../images/section/bg-picture.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 6rem;
  background-position: center center;
  background-attachment: fixed;
  border-radius: 50px;
  overflow: hidden;
}
.experience .wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.experience .group {
  display: flex;
  min-height: 120px;
  border-radius: 50px;
  justify-content: center;
  background-position: center center;
}
.experience .video-icon {
  border-radius: 50%;
  background-color: #068FFF;
  color: #ffffff;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
}
.experience .video-icon:hover {
  background-color: #000000;
}
.experience .video-icon:hover i {
  color: #068FFF;
}
.experience .video-icon i {
  color: #ffffff;
  font-size: 2rem;
}

.action {
  width: 3.75rem;
  height: 3.75rem;
  padding: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  animation: pulseBig infinite 4s linear;
}
.action:hover {
  background-color: #000000;
}

.popular-routes {
  padding-top: 5rem;
  padding-bottom: 8rem;
}
.popular-routes .flightLine {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
}
.popular-routes .flightLine > * {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border: 1px solid #DDDDDD;
  border-radius: 100%;
}
.popular-routes .flightLine > :first-child {
  left: 0;
  background-color: #DDDDDD;
}
.popular-routes .flightLine > :nth-child(2) {
  right: 0;
  background-color: #DDDDDD;
}
/*# sourceMappingURL=main.css.map */

.decorat h1{ background: #068fff; font-size: 25px; padding: 5px; color: #fff;}
.decorat h2 { background: #068fff; font-size: 22px; padding: 5px; color: #fff;}
.decorat h3 { background: #068fff; font-size: 20px; padding: 5px; color: #fff;}
.decorat h4 { background: #068fff; font-size: 18px; padding: 5px; color: #fff;}

.decorat ul {margin-bottom: 20px;}
.decorat ul li {font-size: 14px; list-style-type: disc;}
.decorat p {font-size: 14px;}


  .nthth {
        display: none;
    }
@media screen and (max-width:768px) {
.vrgrgr{
  margin-bottom: 90px;
}
    .nthth {
        display: block;
        .likujh {
    padding: 10px;
    background: #068FFF;
    left: 0;
    color: #fff;
    position: fixed;
    font-size: 15px;
    text-align: center;
    border-top: 2px solid #ffffff;
    width: 100%;
    z-index: 9;
}
.call-text{
  color: #fff; 
  font-weight: 600; 
  font-size: 15px;
}
.likujh a {
    color: #242323;
    text-decoration: none;
    display: block;
}
.likujh .tfffbn {
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 700;
     color: #ffffff;
     text-shadow: 1px 2px 2px black;
     display: flex;
    align-items: center;
    justify-content: center;
}
.rimnggg {
    border: solid 2px #ffffff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: url(/resources/images/phone-cal.png) center center no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-size: auto;
    text-align: center;
    display: inline-block;
    background-size: 33px;
    padding: 24px;
    background-color: #068FFF;
}
.rimnggg  {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
    }
}