@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("gallery.css");
/*-- color style --*/
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

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

ul {
  list-style-type: none;
}

html {
  font-size: 1rem;
}

a {
  color: #F2B705;
}

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

a {
  text-decoration: none;
}
a:hover {
  color: #034C8C;
  text-decoration: none;
}

.custum-input {
  background-color: #ffffff;
  border-radius: 0.625rem;
  border: 0;
  border-bottom: 1px solid #ffffff !important;
  padding-left: 1rem;
  min-height: 40px;
}
.custum-input:focus {
  background-color: #e5e4e6;
}

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

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

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

img,
span {
  transition: all 0.5s ease-out 0s;
}

.cus-input {
  border: 2px solid #034C8C;
}

ol {
  counter-reset: item;
}
ol li {
  display: block;
}
ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #034C8C;
  font-size: 1.5rem;
  font-weight: bold;
}

ul li::marker {
  color: #034C8C;
}

.dropdown-container {
  position: relative;
  min-width: auto;
}
.dropdown-container .dropdown-toggle::after {
  opacity: 0;
}
.dropdown-container .dropdown-toggle {
  cursor: pointer;
  position: relative;
  color: #363636;
  transition: all ease-in-out 0.3s;
  font-weight: bold;
}
.dropdown-container .dropdown-toggle label {
  cursor: pointer;
  width: 100%;
}
.dropdown-container .dropdown-toggle:hover, .dropdown-container .dropdown-toggle:active, .dropdown-container .dropdown-toggle:focus {
  color: #034C8C;
}
.dropdown-container .dropdown-menu {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  margin-top: 17px;
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  background-color: #ffffff;
  z-index: 10;
}
.dropdown-container .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .dropdown-container .dropdown-menu ul {
    border-radius: 0rem;
  }
}
.dropdown-container .dropdown-menu a {
  text-decoration: none;
  display: block;
  padding: 5px 20px;
  font-weight: 600;
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  transition: all ease-in-out 0.3s;
}
.dropdown-container .dropdown-menu a:hover, .dropdown-container .dropdown-menu a:active, .dropdown-container .dropdown-menu a:focus {
  color: inherit;
}
.dropdown-container .dropdown-menu .dropdown-item {
  color: #000000;
}
.dropdown-container .dropdown-menu .nav-item {
  padding: 0;
}

.dropdown-menu,
.dropdown-toggle {
  position: relative;
}
.dropdown-menu::before,
.dropdown-toggle::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: 5px solid;
  border-top-color: rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  margin-top: -2.5px;
  background-color: rgba(0, 0, 0, 0);
  transition: all ease-in-out 0.3s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .dropdown-menu::before,
  .dropdown-toggle::before {
    right: 10px;
  }
}

.dropdown-menu {
  z-index: 10;
  position: relative;
}
.dropdown-menu::before {
  z-index: -1;
  transform: rotate(-135deg);
  top: -4px;
  border-color: #ffffff;
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  display: none;
}

.dropdown-open .dropdown-menu.dropdown-active {
  display: block;
}

.dropdown-container.dropdown-open .dropdown-toggle {
  color: #363636;
}
.dropdown-container.dropdown-open .dropdown-toggle:before {
  transform: rotate(-135deg);
}

@media screen and (max-width: 992px) {
  #navbarSupportedContent {
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 4rem;
    min-width: 100%;
    z-index: 99;
  }
}
@media screen and (max-width: 992px) {
  #navbarSupportedContent .nav-item {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 992px) {
  #navbarSupportedContent .dropdown-active {
    position: relative;
    border-radius: 0;
    border: 0;
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 992px) {
  #navbarSupportedContent .dropdown-active .nav-item {
    padding: 0rem 0rem;
  }
}
@media screen and (max-width: 992px) {
  #navbarSupportedContent .dropdown-toggle {
    padding: 0.5rem 1rem;
  }
}

.dropdown-open .dropdown-menu {
  min-width: 10rem;
  padding: 0 0;
}
.dropdown-open .dropdown-menu a {
  padding: 0.5rem 0.5rem;
}
.dropdown-open .dropdown-menu a:active, .dropdown-open .dropdown-menu a:hover {
  color: #034C8C;
  background-color: transparent;
}

.type2 .nav-item .nav-link-parent {
  color: #034C8C;
}
.type2 .nav-item .nav-link-parent:hover {
  color: #034C8C;
}

.menu-main li {
  padding-left: 1rem;
}
.menu-main li a {
  cursor: pointer;
  position: relative;
  color: #363636;
  transition: all ease-in-out 0.3s;
  min-width: 120px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: capitalize;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
}
.menu-main li a:hover {
  color: #034C8C;
}
.menu-main li a.active {
  color: #034C8C;
}

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

h1 {
  text-align: center;
}

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

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

.theme-bg-light {
  background-color: #919191;
}

.theme-bg-gradient {
  background: linear-gradient(13deg, #f2b705 0%, #034c8c 100%);
}

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

.theme-text-primary {
  color: #034C8C;
}

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

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

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

.theme-box-shadow {
  box-shadow: 0 0rem 0.8rem rgba(54, 54, 54, 0.15);
}

.theme-text-shadow {
  text-shadow: 0 0rem 0.8rem rgba(54, 54, 54, 0.15);
}

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

.theme-border-radius-top {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.theme-border-radius-bottom {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.font-small {
  font-size: 0.8rem !important;
}

.max-1 {
  max-width: 50rem;
  margin: auto;
}

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

.min-h58 {
  min-height: 58px;
}

.z-2 {
  z-index: 2;
}

video {
  filter: none !important;
}

.man-margin {
  margin-left: 1rem;
}
@media screen and (max-width: 378px) {
  .man-margin {
    margin-left: 0rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 378px) and (max-width: 394px) {
  .man-margin {
    margin-left: 0rem;
    margin-top: 0rem;
  }
}

.txt-eft1 {
  text-shadow: 1px 4px #F2B705;
}

.txt-eft2 {
  text-shadow: 1px 4px #034C8C;
}

.txt-eft3 {
  text-shadow: 1px 4px #363636;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.2);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.text-link-effect {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.text-link-effect:before, .text-link-effect:after {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
  right: 0;
  bottom: 0;
  background: #034C8C;
}
.text-link-effect:before {
  width: 100%;
  height: 2px;
  transform: translateX(-100%);
}
.text-link-effect:after {
  width: 2px;
  height: 100%;
  transform: translateY(100%);
}
.text-link-effect > span {
  display: block;
  color: #F2B705;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
}
.text-link-effect > span:before, .text-link-effect > span:after {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
  left: 0;
  top: 0;
  background: #034C8C;
}
.text-link-effect > span:before {
  width: 100%;
  height: 2px;
  transform: translateX(100%);
}
.text-link-effect > span:after {
  width: 2px;
  height: 100%;
  transform: translateY(-100%);
}
.text-link-effect:hover:before, .text-link-effect:hover:after, .text-link-effect:hover > span:before, .text-link-effect:hover > span:after {
  transform: translate(0, 0);
}

.link-btn {
  background-color: #e5e4e6;
  color: #034C8C;
  border-radius: 0.625rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-btn:hover {
  background-color: #034C8C;
  color: #ffffff;
}

.button-effect {
  background-color: #F2B705;
  color: #000000;
  min-width: 75px;
  border-radius: 50%;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button-effect::before, .button-effect::after {
  background: #034C8C;
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.button-effect::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
}
.button-effect:before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: -100%;
  background: #034C8C;
  transition: all 0.2s;
}
.button-effect:hover {
  background: #F2B705;
}
.button-effect:hover:after {
  width: 100%;
}
.button-effect:hover:before {
  top: 0;
  left: 0;
}

.owl-carousel .owl-nav {
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  color: #363636;
  font-size: 3rem;
  position: absolute;
  top: 40%;
  background: #ffffff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  line-height: 3rem;
  position: absolute;
  top: -10px;
  left: 8px;
  color: #F2B705;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #034C8C;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -5%;
}
@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
}
.owl-carousel .owl-nav button.owl-next {
  right: -5%;
}
@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-dots {
  display: none;
}
.owl-carousel .owl-nav {
  margin: 0;
}

.highlight {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #F2B705;
}
.highlight::after, .highlight::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  position: absolute;
  background: #919191;
}
.highlight:after {
  top: 12px;
  right: 30px;
}
.highlight:before {
  top: 12px;
  left: 30px;
}

.btn-primary {
  min-height: 50px;
  max-width: 175px;
  width: 100%;
  border-radius: 0.625rem;
}

.btn-secondary {
  min-height: auto;
  max-width: 100px;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #ffffff;
  border: 1px solid #363636;
  color: #000000;
}

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

.video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-button a {
  display: block;
  position: relative;
  cursor: pointer;
}
.video-button a:after {
  background-color: #ffffff;
  position: absolute;
  display: block;
  content: "";
  height: 70px;
  width: 70px;
  border-radius: 100%;
  z-index: -1;
  top: 16px;
  left: 16px;
  animation: videoPulse 1.6s ease-out infinite;
  opacity: 0;
}
.video-button a i {
  background-color: #ffffff;
  border-radius: 100%;
  color: #034C8C;
  display: block;
  font-size: 2rem;
  line-height: 104px;
  width: 104px;
  height: 104px;
  text-align: center;
}
@keyframes videoPulse {
  0%, 35% {
    transform: scale(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transform: scale(2);
  }
}

.process-card {
  cursor: pointer;
  background: #e5e4e6;
  border-radius: 0.625rem;
  padding: 2rem 1rem;
}
.process-card .circle {
  transition: 0.5s ease-in-out;
}
.process-card:hover .circle {
  transform: translateY(-20px);
}

.about {
  padding-top: 10rem;
  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: 80%;
  }
}
@media screen and (max-width: 767px) {
  .about .thumb-group {
    margin-inline-start: 0;
  }
}
.about .thumb-group .group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: inherit;
  border-radius: 0.625rem;
}
.about .thumb-group .group:hover {
  transform: scale(1.05);
  opacity: 1;
}
.about .thumb-group .thumb1 {
  width: 38%;
  top: 7.5%;
  opacity: 0.5;
}
.about .thumb-group .thumb2 {
  left: 44.8%;
  right: 44.8%;
  top: 0;
  width: 24%;
}
.about .thumb-group .thumb3 {
  left: 82.4%;
  right: 82.4%;
  top: 13.4%;
  width: 26.8%;
  z-index: 1;
  background-color: #034C8C;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .about .thumb-group .thumb3 {
    left: 0;
    right: unset;
    top: -120px;
    width: 100%;
    padding: 0.5rem;
  }
}
.about .thumb-group .thumb4 {
  top: 23.5%;
  left: 16.8%;
  right: 16.8%;
  width: 68.8%;
}
.about .thumb-group .thumb5 {
  left: 8%;
  right: 8%;
  top: auto;
  width: 22.4%;
  bottom: 0.84%;
}
@media screen and (max-width: 767px) {
  .about .thumb-group .thumb5 {
    left: 0;
    right: 0;
  }
}
.about .thumb-group .thumb6 {
  top: auto;
  right: 0;
  left: auto;
  width: 24%;
  bottom: 0;
}
.about .thumb-group .thumb7 {
  top: 8.4%;
  left: 95.2%;
  right: 95.2%;
  width: 3.2%;
}

.features {
  position: relative;
  min-height: 460px;
  background-image: url(../images/section/features-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.features .feature-icon {
  border-radius: 0.625rem;
  width: 7rem;
  height: 7rem;
  background-color: #F2B705;
  padding: 1rem;
  display: inline-flex;
  margin-bottom: 1rem;
  line-height: 1rem;
  justify-content: center;
  align-items: center;
}

.whyus-section {
  position: relative;
  margin-bottom: 120px;
  background: #F2B705;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .whyus-section {
    margin-bottom: 80px;
  }
}
.whyus-section:before {
  background-color: #034C8C;
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .whyus-section:before {
    width: 100%;
  }
}
.whyus-section .bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 540px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .whyus-section .bg-img {
    min-height: 300px;
    background-position: top center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.whyus-section .whyus-inner {
  padding: 100px 0px 0px 65px;
}
@media screen and (max-width: 992px) {
  .whyus-section .whyus-inner {
    padding: 80px 0px 0 0px;
  }
}
@media screen and (max-width: 575px) {
  .whyus-section .whyus-inner {
    padding: 30px 0px 0 0px;
  }
}
.whyus-section .whyus-inner .whyus-point-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem;
  width: 50%;
  border-right: 4px solid #034C8C;
  border-bottom: 4px solid #034C8C;
  background: #F2B705;
  border-radius: 0.625rem;
}
@media screen and (max-width: 575px) {
  .whyus-section .whyus-inner .whyus-point-wrap .list-points {
    width: 100%;
    background: transparent;
    padding: 0;
  }
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points:nth-child(2n+2) {
  border-right: none;
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points:last-child, .whyus-section .whyus-inner .whyus-point-wrap .list-points:nth-last-child(2) {
  border-bottom: none;
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points .icon {
  width: 52px;
  color: #ffffff;
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points .content {
  width: calc(100% - 52px);
}
.whyus-section .whyus-inner .whyus-point-wrap .list-points .content .counter-no {
  color: #ffffff;
  display: block;
  line-height: 1.1;
  font-weight: 900;
}
.whyus-section .support-area {
  background-color: #ffffff;
  box-shadow: 0 0rem 0.8rem rgba(54, 54, 54, 0.15);
  border-radius: 0.625rem;
  display: inline-flex;
  margin-bottom: -50px;
  align-items: center;
  padding: 1.75rem;
}
@media screen and (max-width: 992px) {
  .whyus-section .support-area {
    display: flex;
  }
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
  background-image: url(../images/breadcrumb/breadcrumb-image.webp);
  background-position: right bottom;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.breadcrumb-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.58);
  left: 0;
  top: 0;
  z-index: -1;
}
.breadcrumb-area .breadcrumb-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 575px) {
  .breadcrumb-area .breadcrumb-content h2 {
    font-size: 3rem;
  }
}
.breadcrumb-area .breadcrumb-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb-content ul li {
  color: #F2B705;
  display: inline-block;
  position: relative;
  margin-left: 0px;
  margin-right: 30px;
}
.breadcrumb-area .breadcrumb-content ul li::before {
  content: "\f138";
  font-family: "bootstrap-icons";
  position: absolute;
  right: -25px;
  top: 2px;
}
.breadcrumb-area .breadcrumb-content ul li:last-child::before {
  display: none;
}
.breadcrumb-area .breadcrumb-content ul li a {
  display: inline-block;
  color: #ffffff;
  transition: 0.4s;
  font-weight: 700;
}
.breadcrumb-area .breadcrumb-content ul li a:hover {
  color: #034C8C;
}

.img-contact {
  background-image: url(../images/breadcrumb/breadcrumb-image-contact.webp);
}

.img-review {
  background-image: url(../images/breadcrumb/breadcrumb-image-review.webp);
}

.content-section {
  padding: 6rem 0 4rem 0;
}

.privacy .privacy-list {
  margin-left: 3rem;
}
.privacy .privacy-list li {
  line-height: 3;
  list-style: disc;
  font-size: 1.25rem;
}
.privacy .privacy-list .content-sublist li {
  list-style: circle;
}
.privacy .terms-list li {
  line-height: 3;
  list-style: decimal;
  font-size: 1.25rem;
}
.privacy .terms-list li strong {
  padding-left: 1.125rem;
}
.privacy .terms-list li a {
  color: #034C8C;
}

.vision-sec {
  position: relative;
  padding: 5rem 0;
  background-image: url(../images/section/review-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.vision-sec::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(229, 228, 230, 0.95);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.flight-destination {
  position: relative;
  z-index: 0;
}
.flight-destination img {
  width: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
}
.flight-destination .pack-tag {
  font-weight: bold;
  font-size: 0.75rem;
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 20px;
  background: red;
  display: inline-block;
  z-index: 1;
  letter-spacing: 1px;
  width: 100px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 0.625rem;
}

.our-services .left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 0.625rem;
  text-align: center;
}
.our-services .left-icon:hover .icon {
  transform: translateY(5px);
  transition-duration: 0.3s;
  background: #F2B705;
}
.our-services .left-icon .icon {
  background: #e5e4e6;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  transition-duration: 0.3s;
}
.our-services .left-icon .icon img {
  width: 50px;
  height: 50px;
}
.our-services .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.our-services .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper > a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 0.625rem;
}
.grid-wrapper > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loader .loader {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}
.page-loader #loader:before,
.page-loader #loader:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #034C8C;
}
.page-loader #loader:before {
  z-index: 100;
  animation: spin 1s infinite;
}
.page-loader #loader:after {
  border: 10px solid #e5e4e6;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.info-top {
  background-color: #034C8C;
}
.info-top .btn {
  color: #919191;
  text-decoration: none;
}
.info-top .btn i {
  color: #ffffff;
}
.info-top a {
  color: #ffffff;
}
.info-top a:hover {
  color: #F2B705;
}
.info-top .social a {
  color: #ffffff;
  font-size: 1.25rem;
  padding: 0 0.5rem;
}
.info-top .social a:last-child {
  padding-right: 0;
}
.info-top .social a:hover {
  color: #F2B705;
}

.head-wrapper {
  background: #919191;
  display: block;
  min-height: 60vh;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .head-wrapper {
    min-height: 55vh;
  }
}
.head-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.header {
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .header .menu-main li a {
    padding: 0.25rem;
  }
}

.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  box-shadow: 0 0rem 0.8rem rgba(54, 54, 54, 0.15);
  position: fixed;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-single {
  position: relative;
}
.hero-single #hero-single-slider .hero-single-items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  min-height: 75vh;
  overflow: hidden;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .hero-single #hero-single-slider .hero-single-items {
    min-height: 70vh;
  }
}
.hero-single #hero-single-slider .hero-single-items:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.36);
  left: 0;
  top: 0;
}
.hero-single #hero-single-slider .hero-single-items .hero-con {
  position: relative;
  z-index: 9;
  max-width: 800px;
  margin: 0 auto;
}
.hero-single #hero-single-slider .hero-single-items .hero-con .heading {
  position: relative;
  color: #363636;
}
.hero-single #hero-single-slider .hero-single-items .hero-con p {
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: bold;
  position: relative;
}
.hero-single #hero-single-slider .owl-nav {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 0;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}
.hero-single #hero-single-slider .owl-nav .owl-prev {
  left: 1%;
}
.hero-single #hero-single-slider .owl-nav .owl-next {
  right: 1%;
}
.hero-single #hero-single-slider .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 1%;
}
.hero-single #hero-single-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.promo-ban {
  position: relative;
}
.promo-ban .promo {
  min-height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
}
.promo-ban .promo:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  position: absolute;
}
.promo-ban .promo img {
  height: auto;
}
.promo-ban .promo .promo-hover {
  height: auto;
  color: #ffffff;
  padding: 0px 0px;
  margin: 0 0;
  width: 100%;
  position: absolute;
  bottom: -60px;
  left: 0;
  transition: all 0.3s ease 0s;
  min-height: 100px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.promo-ban .promo:hover .promo-hover {
  bottom: 0px;
}
.promo-ban .promo a {
  color: #000000;
  background: #F2B705;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.8rem;
}
.promo-ban .promo a:hover {
  color: #ffffff;
  background: #034C8C;
}

.travel-deal {
  position: relative;
}
.travel-deal .pack {
  height: 200px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.travel-deal .pack:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  position: absolute;
}
.travel-deal .pack img {
  height: auto;
}
.travel-deal .pack .promo-hover {
  height: auto;
  color: #ffffff;
  padding: 10px 15px;
  margin: 0 0;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.3s ease 0s;
  min-height: auto;
  font-weight: 600;
}

.testimonials {
  position: relative;
  padding: 5rem 0;
  background-image: url(../images/section/review-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(3, 76, 140, 0.65);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.testimonials #carouselReview {
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 0.625rem;
  padding: 2rem;
}
.testimonials .client-con {
  text-align: justify;
}
.testimonials .client-con img {
  width: auto;
  height: 500px;
  margin: auto;
}
.testimonials .client-con .text-box {
  overflow-y: auto !important;
  font-size: 1.25rem;
}
.testimonials .avatar {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #034C8C;
  justify-content: center;
  align-items: center;
}
.testimonials .avatar span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-sec {
  background-color: #e5e4e6;
  background-image: url(../images/section/consult-bg.jpg);
  padding: 6rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: auto;
  background-position: center center;
  position: relative;
}
.contact-sec::before {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contact-sec .contact-form {
  position: relative;
  z-index: 2;
}
.contact-sec .support-list {
  counter-reset: section;
}
.contact-sec .support-list li {
  padding: 0 0 1rem 0;
  display: flex;
  color: #363636;
  margin-bottom: 2rem;
}
.contact-sec .support-list li:before {
  counter-increment: section;
  content: counters(section, ".") " ";
  padding: 10px;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 2rem;
  line-height: 0.5rem;
  border: 2px solid #000000;
  border-radius: 50%;
  color: #000000;
  display: inline-block;
}

.partner {
  position: relative;
  padding: 3rem 0;
}
.partner .owl-carousel .owl-item img {
  margin: auto;
  width: auto;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.cta {
  position: relative;
  min-height: 220px;
  background-image: url(../images/section/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer {
  background-color: #000000;
  padding: 3rem 0px 1rem 0;
}
.footer h1,
.footer h2,
.footer h3,
.footer p {
  color: #ffffff;
}
.footer .fl-menu li {
  list-style: none;
  line-height: 34px;
}
.footer .fl-menu li a {
  color: #919191;
  position: relative;
}
.footer .fl-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(0, 1);
}
.footer .fl-menu li a:hover {
  color: #F2B705;
}
.footer .fl-menu li a:hover:after {
  opacity: 1;
  transform: scale(1);
}
.footer .social a,
.footer .social .botom-link {
  color: #ffffff;
  font-size: 1.25rem;
  padding: 0 0.5rem;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #F2B705;
}

.back-to-top {
  position: fixed;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  z-index: 50;
  border-radius: 50%;
  right: 5%;
  bottom: 2rem;
  text-align: center;
  padding: 0px;
  margin: 0px;
  background-color: #F2B705;
  transition: all 0.3s ease-in-out;
}
.back-to-top:hover {
  background-color: #034C8C;
}
.back-to-top .back-to-top a {
  text-decoration: none;
}
.back-to-top i {
  color: #000000;
  font-size: 1.8rem;
}

.whatsapp {
  background: green;
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 55;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  box-shadow: 2px 8px 15px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  text-decoration: none;
}
.whatsapp:hover {
  background: #000000;
  color: green;
}
.whatsapp i {
  font-size: 36px;
  line-height: 62px;
}/*# sourceMappingURL=main.css.map */