*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  font-size: 16px;
  font-weight: normal;
  background: #fff;
  line-height: 26px;
  color: #000;
  font-family: Poppins;
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  outline: 0;
  background: #4b7a02;
}
body.overfloy-y-hidden, html.overfloy-y-hidden {
  overflow-y: hidden;
}

a[href] {
  text-decoration: none;
  transition: 0.2s ease;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
  transition: 0.5s ease;
}

.container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 45px;
  }
}
@media (max-width: 1230px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 675px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}

.container-fluid {
  padding: 0 25px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1, h2, h3, h4 {
  color: #000;
  font-weight: normal;
}
h1 em, h2 em, h3 em, h4 em {
  font-style: normal;
}

h1 {
  font-size: 62px;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 1300px) {
  h1 {
    font-size: 46px;
  }
}
@media (max-width: 1140px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: bold;
}

@media (max-width: 1300px) {
  h3 {
    font-size: 30px;
    line-height: 33px;
  }
}
@media (max-width: 1140px) {
  h3 {
    font-size: 26px;
    line-height: 29px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
    line-height: 26px;
  }
}

h4 {
  font-size: 28px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 22px;
  line-height: 26px;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

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

.text-img-center {
  text-align: -webkit-center;
}

.grid {
  display: grid;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.heading h3 {
  font-size: 50px;
  line-height: normal;
}
@media (max-width: 1300px) {
  .heading h3 {
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  .heading h3 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .heading h3 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: 24px;
  }
}
.heading h3 .span1, .heading h3 .span2 {
  font-size: 50px;
  line-height: 55px;
}
@media (max-width: 1300px) {
  .heading h3 .span1, .heading h3 .span2 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 1140px) {
  .heading h3 .span1, .heading h3 .span2 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .heading h3 .span1, .heading h3 .span2 {
    font-size: 30px;
    line-height: 34px;
  }
}
.heading.size48 h3 {
  font-size: 48px;
  line-height: 1;
}
.heading.size36 h3 {
  font-size: 36px;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading.size36 h3 {
    font-size: 24px;
    line-height: 26px;
  }
}

input, button, select {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  background: #000;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.4s ease;
}
.overlay.overlay_active {
  pointer-events: all;
  opacity: 0.8;
  transition: 0.5s ease;
}

.video_icon {
  width: 45px;
  height: 45px;
  border: 2px solid #7b7b7b;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .video_icon {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .video_icon {
    border-width: 1px;
  }
}
.video_icon:before {
  width: 50px;
  height: 50px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: rgba(0, 0, 0, 0.8196078431);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (max-width: 1024px) {
  .video_icon:before {
    width: 33px;
    height: 33px;
  }
}
.video_icon img {
  width: 10px;
  position: relative;
  margin-left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 6px;
}
.social-links a svg {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.social-links a svg path {
  fill: #fff;
  transition: 0.5s ease;
}

.model .close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 10px;
  padding: 0;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s ease;
  z-index: 999;
}

.ModelPop {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close svg {
  width: 26px;
  height: 26px;
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 188;
  background: #000;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video .close_model {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
}

.tab-nav ul {
  text-align: center;
}
.tab-nav ul li {
  display: inline-block;
  cursor: pointer;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transition: 0s ease;
}
.tab-nav-content .tabs .to-up {
  transition: 0s ease;
  transform: translateY(50px);
}
.tab-nav-content .tabs.active {
  transition: 0.5s ease;
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}
.tab-nav-content .tabs.active .to-up {
  transition: 0.5s ease;
  transform: translateY(0px);
}

.has_dropdown {
  position: relative;
}
.has_dropdown a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.has_dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 1;
  transition: 0.5s ease;
}
.has_dropdown:hover::before {
  right: 0;
  width: 100%;
}
.has_dropdown:hover .nav_dropdown {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  height: auto;
  transform: translateY(0px);
  user-select: auto;
  visibility: visible;
  overflow: hidden;
  opacity: 1;
  pointer-events: all;
  transition: 0.2s ease, height 0.6s ease;
}
.has_dropdown .nav_dropdown {
  background: #fff;
  border-radius: 3px;
  width: 150px;
  height: 0;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(5px) scale(0.99);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.1s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.has_dropdown .nav_dropdown ul li {
  display: block;
  margin-left: 0;
}
.has_dropdown .nav_dropdown ul li a {
  color: #000;
  display: block;
  padding: 6px 0 6px 20px;
}
.has_dropdown .nav_dropdown ul li a:hover {
  background: #fff;
  color: #fff;
}

.web_cta_btn a {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
  background: #4b7a02;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
@media (max-width: 520px) {
  .web_cta_btn a {
    font-size: 16px;
  }
}
.web_cta_btn a:hover {
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
}

.inner_cta_btn a {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 14px;
  transition: 0.3s ease;
}
.inner_cta_btn a:hover {
  background: transparent linear-gradient(180deg, #5CA55B 0%, #4b7a02 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  border-color: #4b7a02;
}

.section {
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
}

.bg-gray {
  background: #F3F5FF;
}

.bg-light {
  background: #FAF5EE;
}

.title h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
.title span {
  display: inline-block;
  color: #4b7a02;
  font-size: 20px;
}
.title p {
  display: flex;
  align-items: center;
  justify-content: left;
}
@media (max-width: 1024px) {
  .title p {
    justify-content: center;
  }
}
.title p span {
  display: block;
  height: 1px;
  width: 100px;
  background: #4b7a02;
  margin-left: 3px;
}
@media (max-width: 1024px) {
  .title p span {
    display: none;
  }
}

.service_cta a {
  display: inline-flex;
  align-items: center;
  color: #4b7a02;
}
.service_cta a:hover img {
  padding-left: 20px;
}
.service_cta a img {
  width: auto;
  padding-left: 10px;
  transition: 0.3s ease;
}

.border {
  border-top: 1px solid rgba(0, 0, 0, 0.0901960784);
  border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784);
  padding: 10px 0;
}

ul.style_first {
  padding-left: 15px;
}
@media (max-width: 675px) {
  ul.style_first {
    padding-left: 0px;
  }
}
ul.style_first li {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
}
ul.style_first li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: #4b7a02;
}

.fs-13 {
  font-size: 13px;
}

.m-30 {
  margin: 30px 0;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

ul.listing_style_one li {
  padding-left: 25px;
  position: relative;
  margin: 8px 0;
}
ul.listing_style_one li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: url(../../assets/images/icons/airplane.png);
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mt-7 {
  margin-top: 70px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.mt-9 {
  margin-top: 90px !important;
}

.mt-10 {
  margin-top: 100px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

.pt-3 {
  padding-top: 30px !important;
}

.pt-4 {
  padding-top: 40px !important;
}

.pt-5 {
  padding-top: 50px !important;
}

.pt-6 {
  padding-top: 60px !important;
}

.pt-7 {
  padding-top: 70px !important;
}

.pt-8 {
  padding-top: 80px !important;
}

.pt-9 {
  padding-top: 90px !important;
}

.pt-10 {
  padding-top: 100px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 10px !important;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.pb-3 {
  padding-bottom: 30px !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.pb-5 {
  padding-bottom: 50px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.pb-7 {
  padding-bottom: 70px !important;
}

.pb-8 {
  padding-bottom: 80px !important;
}

.pb-9 {
  padding-bottom: 90px !important;
}

.pb-10 {
  padding-bottom: 100px !important;
}

.get-quote {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 650px;
  width: 100%;
  background: #F2E9DD;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 20px;
  background: #fff;
}
@media (max-width: 520px) {
  .get-quote {
    max-width: 100%;
  }
}
.get-quote.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.get-quote .inner-wrap {
  position: relative;
  height: 100%;
}
.get-quote .inner-wrap .close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.get-quote .inner-wrap .close svg {
  width: 20px;
  height: 20px;
}
.get-quote .inner-wrap .model-body {
  padding: 20px 20px;
  height: 100%;
}
@media (max-width: 675px) {
  .get-quote .inner-wrap .model-body {
    padding: 10px;
  }
}
.get-quote .inner-wrap .model-body .quoteformsec .quick-flight {
  padding: 20px 5px;
  border-radius: 5px;
}
.get-quote .inner-wrap .model-body .quoteformsec .quick-flight h5 {
  color: #000;
  margin-top: 20px;
}
.get-quote .inner-wrap .model-body .quoteformsec > figure {
  margin-top: -15px;
}
.get-quote .inner-wrap .model-body .quoteformsec > figure img {
  width: 20%;
  margin: auto;
  transform: scale(1.1);
}
.get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta {
  background: #4b7a02;
  border-radius: 10px;
  padding: 0px 10px;
  width: 88%;
  margin: auto;
}
@media (max-width: 675px) {
  .get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta {
    width: 100%;
  }
}
.get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta:hover {
  background: #5CA55B;
}
.get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta a span {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 675px) {
  .get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta a span {
    font-size: 18px;
  }
}
.get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta a img {
  transform: scale(1.1);
}
@media (max-width: 675px) {
  .get-quote .inner-wrap .model-body .quoteformsec .menu-contact-cta a img {
    transform: scale(1);
    flex: 0 1 30%;
    max-width: 30%;
    width: 100%;
  }
}
.get-quote .inner-wrap .model-body .quoteformsec .web-content {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.get-quote .inner-wrap .model-body .quoteformsec .web-content form .form-group label, .get-quote .inner-wrap .model-body .quoteformsec .web-content .form .form-group label {
  font-size: 13px;
  text-align: left;
}
.get-quote .inner-wrap .model-body .quoteformsec .web-content form .form-group input[type=submit], .get-quote .inner-wrap .model-body .quoteformsec .web-content .form .form-group input[type=submit] {
  width: auto;
}
@media (max-width: 675px) {
  .get-quote .inner-wrap .model-body .quoteformsec .web-content form .form-group input[type=submit], .get-quote .inner-wrap .model-body .quoteformsec .web-content .form .form-group input[type=submit] {
    width: 100%;
  }
}

.web-content p {
  margin: 20px 0;
  color: #6E6E6E;
}
.web-content p.notes {
  padding: 30px;
  background: #F3F2FB;
}
.web-content h1, .web-content h2, .web-content h3, .web-content h4, .web-content h5, .web-content h6 {
  margin: 30px 0 15px;
  font-weight: bold;
}
.web-content h1:first-child, .web-content h2:first-child, .web-content h3:first-child, .web-content h4:first-child, .web-content h5:first-child, .web-content h6:first-child {
  margin-top: 0;
}
.web-content h4 {
  font-weight: 600;
}
.web-content .flex {
  align-items: center;
  justify-content: space-between;
}
.web-content .flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 767px) {
  .web-content .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .web-content .flex .col:last-child {
    margin-top: 30px;
  }
}
.web-content.list-style-arrow ul {
  margin: 30px 0;
}
.web-content.list-style-arrow ul li {
  position: relative;
  padding-left: 70px;
  margin: 25px 0;
  color: #6E6E6E;
}
.web-content.list-style-arrow ul li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 59px;
  height: 21px;
  background: url(../../assets/images/icons/green-air.png);
}
.web-content.list-style-arrow ul li p {
  color: #666666;
}
.web-content.list-style-arrow ul li p b {
  display: block;
  font-weight: 600;
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  color: #fff !important;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 6px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1803921569);
}
@media (max-width: 860px) {
  header {
    padding: 15px 0;
  }
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  background: #fff;
  transition: 0.5s ease;
  z-index: -1;
  height: 100%;
}
header .inner-wrap .container .flex {
  justify-content: space-between;
  align-items: center;
}
header .inner-wrap .container .flex .col {
  width: 100%;
}
header .inner-wrap .container .flex .col:first-child {
  flex: 0 1 13%;
  max-width: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) {
  header .inner-wrap .container .flex .col:first-child {
    flex: 0 1 25%;
    max-width: 25%;
  }
}
@media (max-width: 520px) {
  header .inner-wrap .container .flex .col:first-child {
    flex: 0 1 45%;
    max-width: 45%;
  }
}
header .inner-wrap .container .flex .col:first-child a {
  display: inline-block;
}
header .inner-wrap .container .flex .col:last-child {
  flex: 0 1 70%;
  max-width: 70%;
  margin: auto 0;
}
@media (max-width: 1140px) {
  header .inner-wrap .container .flex .col:last-child {
    flex: 0 1 70%;
    max-width: 70%;
  }
}
@media (max-width: 1024px) {
  header .inner-wrap .container .flex .col:last-child {
    flex: 0 1 75%;
    max-width: 75%;
  }
}
@media (max-width: 991px) {
  header .inner-wrap .container .flex .col:last-child {
    flex: 0 1 25%;
    max-width: 25%;
  }
}
header .inner-wrap .container .flex .col:last-child .nav {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 40px;
}
header .inner-wrap .container .flex .col:last-child .nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media (max-width: 991px) {
  header .inner-wrap .container .flex .col:last-child .nav ul {
    justify-content: end;
    display: none;
  }
}
@media (max-width: 1230px) {
  header .inner-wrap .container .flex .col:last-child .nav ul li:nth-child(9) {
    display: none;
  }
}
header .inner-wrap .container .flex .col:last-child .nav ul li.active a {
  color: #4b7a02;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu {
  position: relative;
  padding-right: 20px;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/icons/arrow-down.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu ul.dropdown {
  position: absolute;
  left: -20px;
  top: 100%;
  display: block;
  padding: 15px 0 10px 0;
  width: 255px;
  box-shadow: 0 30px 30px 0 rgba(29, 10, 81, 0.1);
  border-radius: 5px;
  text-align: left;
  background: #fff;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(30px);
  transition: 0.3s ease;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu ul.dropdown li {
  width: 100%;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu ul.dropdown li a {
  color: #000;
  padding: 4px 15px;
  display: inline-block;
  width: 100%;
  text-transform: none;
  margin: 4px 0;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu ul.dropdown li a:hover {
  color: #4b7a02;
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu:hover::before {
  filter: invert(1);
}
header .inner-wrap .container .flex .col:last-child .nav ul li.drop-menu:hover ul.dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0px);
}
header .inner-wrap .container .flex .col:last-child .nav ul li a {
  color: #000;
  font-weight: normal;
}
header .inner-wrap .container .flex .col:last-child .nav ul li a.header-call-cta {
  background: #4b7a02;
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: #fff;
}
header .inner-wrap .container .flex .col:last-child .nav ul li a.header-call-cta:hover {
  background: #000;
  color: #fff;
}
header .inner-wrap .container .flex .col:last-child .nav ul li a.header-call-cta:hover figure img {
  filter: invert(0);
}
header .inner-wrap .container .flex .col:last-child .nav ul li a.header-call-cta figcaption {
  margin-left: 10px;
}
header .inner-wrap .container .flex .col:last-child .nav ul li a.header-call-cta span {
  font-size: 11px;
  display: block;
  line-height: 16px;
}
header .inner-wrap .container .flex .col:last-child .nav ul li a:hover {
  color: #4b7a02;
}
header .inner-wrap .container .flex .col:last-child .nav ul li .ham-menu {
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  header .inner-wrap .container .flex .col:last-child .nav ul li .ham-menu {
    display: block;
  }
}
header .inner-wrap .container .flex .col:last-child .nav ul li .ham-menu img {
  filter: invert(0);
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 30px;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .ham-menu {
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .ham-menu {
    display: block;
  }
}
@media (max-width: 675px) {
  header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .menu-contact-cta {
    display: none;
  }
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .menu-contact-cta a {
  display: flex;
  align-items: center;
  justify-self: end;
  color: #4b7a02;
  position: relative;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .menu-contact-cta a img {
  position: relative;
  z-index: 9;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .menu-contact-cta a.video-play-button {
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 50%;
  padding-left: 8px;
}
@media (max-width: 1024px) {
  header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .inner-head-contact {
    display: none;
  }
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .inner-head-contact .header-call-cta {
  display: flex;
  align-items: center;
  color: #fff;
  background: #4b7a02;
  padding: 8px 10px;
  border-radius: 6px;
  border: 2px solid #4b7a02;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .inner-head-contact .header-call-cta figcaption {
  margin-left: 10px;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .inner-head-contact .header-call-cta span {
  font-size: 11px;
  display: block;
  line-height: 16px;
}
header .inner-wrap .container .flex .col:last-child .nav .head-contact-sec .inner-head-contact .header-call-cta:hover {
  background: transparent;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  max-width: 450px;
  width: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s ease;
  padding: 0px 30px 30px;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.mobile-menu::-webkit-scrollbar-track {
  box-shadow: none;
}
.mobile-menu::-webkit-scrollbar-thumb {
  outline: 0;
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
}
.mobile-menu.overfloy-y-hidden {
  overflow-y: hidden;
}
@media (max-width: 675px) {
  .mobile-menu {
    max-width: 100%;
    padding: 0px 30px 30px;
  }
}
.mobile-menu.open-ham {
  transform: translateX(0%);
}
.mobile-menu .site-logo {
  display: inline-block;
}
.mobile-menu .site-logo figure {
  padding: 15px;
}
@media (max-width: 675px) {
  .mobile-menu .site-logo figure {
    padding: 15px 0;
  }
}
.mobile-menu .site-logo figure img {
  margin: auto 0;
}
@media (max-width: 675px) {
  .mobile-menu .site-logo figure img {
    width: 200px;
  }
}
.mobile-menu ul.main-list {
  margin: 10px 0 30px;
}
.mobile-menu ul.main-list li {
  margin: 10px 0;
}
.mobile-menu ul.main-list li.drop-menu {
  position: relative;
}
.mobile-menu ul.main-list li.drop-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/images/icons/arrow-down.png);
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.mobile-menu ul.main-list li.drop-menu ul.dropdown {
  padding-left: 20px;
}
.mobile-menu ul.main-list li a {
  color: #000;
  transition: 0.2s ease;
  font-weight: 600;
}
.mobile-menu ul.main-list li a.Drop-menu-drop-cta {
  display: block;
}
.mobile-menu ul.main-list li a:hover {
  color: #4b7a02;
}
.mobile-menu ul.main-list li.active a {
  color: #4b7a02;
}
.mobile-menu .hamburger-icon {
  width: 100%;
  display: inline-block;
}
.mobile-menu .hamburger-icon .col {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}
.mobile-menu .hamburger-icon .col figure {
  flex: 0 1 10%;
  max-width: 10%;
  width: 100%;
  margin-top: 5px;
}
.mobile-menu .hamburger-icon .col figure img {
  width: 100%;
  filter: invert(1);
}
.mobile-menu .hamburger-icon .col .details {
  width: 100%;
}
.mobile-menu .hamburger-icon .col .details span {
  display: block;
  font-size: 14px;
  color: #000;
  transition: 0.2s ease;
}
.mobile-menu .hamburger-icon .col .details a {
  display: block;
  color: #000;
  transition: 0.2s ease;
  font-weight: 600;
}
.mobile-menu .hamburger-icon .col .details a:hover {
  color: #4b7a02;
}

.Hero_Banner {
  position: relative;
  /*height: 100vh;*/
  z-index: 9;
}
.Hero_Banner .Hero_inner_wrap {
  position: relative;
  height: 100%;
}
.Hero_Banner .Hero_inner_wrap figure {
  width: 100%;
  position: relative;
  height: 100%;
  margin: 0;
  line-height: 0;
}
.Hero_Banner .Hero_inner_wrap figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5215686275);
}
.Hero_Banner .Hero_inner_wrap figure img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .Hero_Banner .Hero_inner_wrap figure img {
    height: 80vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.Hero_Banner .Hero_inner_wrap figure .hero-content {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  max-width: 750px;
  width: 100%;
  text-align: center;
  line-height: normal;
}
@media (max-width: 675px) {
  .Hero_Banner .Hero_inner_wrap figure .hero-content {
    top: 70%;
    transform: translate(-50%, -70%);
    padding: 0 30px;
  }
}
@media (max-width: 675px) {
  .Hero_Banner .Hero_inner_wrap figure .hero-content {
    padding: 0 15px;
  }
}
.Hero_Banner .Hero_inner_wrap figure .hero-content h1 {
  color: #fff;
  font-weight: 600;
}
.Hero_Banner .Hero_inner_wrap figure .hero-content p {
  font-size: 22px;
  color: #fff;
  margin: 20px 0;
}
@media (max-width: 675px) {
  .Hero_Banner .Hero_inner_wrap figure .hero-content p {
    font-size: 16px;
  }
}

.leadform-grid {
  content: "";
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -85%);
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
#cabin{
    height: 48px;
}
@media (max-width: 991px) {
  .leadform-grid {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .leadform-grid {
    padding: 0 30px;
  }
}
@media (max-width: 675px) {
  .leadform-grid {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    padding: 0 15px;
    margin-top: 30px;
    padding-bottom: 40px;
  }
}
.leadform-grid .trip-selector {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 50px;
}
@media (max-width: 520px) {
  .leadform-grid .trip-selector {
    justify-content: center;
  }
}
.leadform-grid .trip-selector .form-check-inline {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 520px) {
  .leadform-grid .trip-selector .form-check-inline {
    color: #000;
    gap: 10px;
  }
}
.leadform-grid .trip-selector .form-check-inline input[type=radio] {
  border: brown;
  background-color: brown;
  width: 15px;
  height: 15px;
  accent-color: #4b7a02;
}
.leadform-grid .trip-selector .form-check-inline input[type=radio]:checked {
  background: red !important;
}
.leadform-grid .trip-selector .form-check-inline.active span::before {
  background: #4b7a02;
}
.leadform-grid .form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}
@media (max-width: 675px) {
  .leadform-grid .form {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.leadform-grid .form .form-group {
  position: relative;
}
.leadform-grid .form .form-group span {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.leadform-grid .form .form-group span.error {
  content: "";
  position: '';
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: red;
  padding-top: 75px;
  z-index: -1;
}
.leadform-grid .form .form-group input, .leadform-grid .form .form-group select{
    font-size: 18px;
    font-weight: 700;
}

.leadform-grid .form .form-group input, .leadform-grid .form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.3803921569);
  color: #fff;
}
.form .form-group input[type=checkbox] {
    width: 15px;
    height: 15px;
    accent-color: #4b7a02;
}
@media (max-width: 520px) {
  .leadform-grid .form .form-group input, .leadform-grid .form .form-group select {
    /*background: rgba(183, 212, 50, 0.5098039216);*/
    background: #7c7b7b82;
  }
}
.leadform-grid .form .form-group input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
}
.leadform-grid .form .form-group input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
}
.leadform-grid .form .form-group input::-ms-input-placeholder {
  color: #fff;
}
.leadform-grid .form .form-group input[type=submit] {
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  padding: 13px 80px;
}
.leadform-grid .form .form-group input[type=submit]:hover {
  background: #000;
}

@media (max-width: 1024px) {
  .Home_SecA {
    padding-bottom: 60px;
  }
}
.Home_SecA .container .flex {
  justify-content: space-between;
  align-items: center;
}
.Home_SecA .container .flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 860px) {
  .Home_SecA .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    text-align: center;
  }
  .Home_SecA .container .flex .col:last-child {
    margin-top: 30px;
    text-align: center;
  }
}
.Home_SecA .container .flex .col figure img {
  margin: auto;
}

.Home_SecB {
  background: #FAF5EE;
}
@media (max-width: 1024px) {
  .Home_SecB .container p {
    text-align: center;
  }
}
.Home_SecB .container .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .Home_SecB .container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .Home_SecB .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Home_SecB .container .grid .grid-box:hover figure img {
  transform: scale(1.1);
}
.Home_SecB .container .grid .grid-box figure img {
  width: auto;
  transition: 0.3s ease;
  margin: auto;
}
.Home_SecB .container .grid .grid-box figcaption {
  text-align: center;
}
.Home_SecB .container .grid .grid-box figcaption h6 {
  margin-bottom: 10px;
}
.Home_SecB .container .grid .grid-box figcaption p {
  font-size: 13px;
}

.Home_SecC .container .title span {
  display: inline-block;
  margin-bottom: 5px;
}
.Home_SecC .container .domestic-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .Home_SecC .container .domestic-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Home_SecC .container .domestic-grid .domestic-box {
  display: flex;
  align-content: center;
  justify-content: space-between;
  box-shadow: 0px 0px 27px #EBD1AD;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  gap: 40px;
}
@media (max-width: 675px) {
  .Home_SecC .container .domestic-grid .domestic-box {
    gap: 15px;
  }
}
.Home_SecC .container .domestic-grid .domestic-box:hover figure img {
  transform: scale(1.2);
}
.Home_SecC .container .domestic-grid .domestic-box figure {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 675px) {
  .Home_SecC .container .domestic-grid .domestic-box figure {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.Home_SecC .container .domestic-grid .domestic-box figure img {
  transition: 0.3s ease;
}
@media (max-width: 675px) {
  .Home_SecC .container .domestic-grid .domestic-box figure img {
    width: 100%;
  }
}
.Home_SecC .container .domestic-grid .domestic-box figcaption {
  flex: 1;
  margin: auto;
  padding-right: 30px;
}
@media (max-width: 675px) {
  .Home_SecC .container .domestic-grid .domestic-box figcaption {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner-wrap {
  align-items: center;
  justify-content: space-between;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner-wrap .col {
  width: 100%;
  flex: 0 1 48%;
  max-width: 48%;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner-wrap .col:last-child {
  text-align: right;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner-wrap .col h6 {
  font-size: 19px;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner-wrap .col span {
  display: block;
  font-size: 12px;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner_cta_btn a {
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.Home_SecC .container .domestic-grid .domestic-box figcaption .inner_cta_btn a i {
  transform: rotate(330deg);
  font-size: 16px;
  margin-left: 5px;
}

.Home_SecD .container .title {
  width: 900px;
  margin: auto;
}
@media (max-width: 991px) {
  .Home_SecD .container .title {
    width: 100%;
  }
}
.Home_SecD .container .discover-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .Home_SecD .container .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Home_SecD .container .discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
.Home_SecD .container .discover-grid .discover-box:hover a figure img {
  transform: scale(1.2);
}
.Home_SecD .container .discover-grid .discover-box a {
  color: #000;
}
.Home_SecD .container .discover-grid .discover-box a figure {
  overflow: hidden;
  border-radius: 150px;
}
.Home_SecD .container .discover-grid .discover-box a figure img {
  width: 100%;
  transition: 0.3s ease;
}
.Home_SecD .container .discover-grid .discover-box a figcaption {
  padding-top: 20px;
}
.Home_SecD .container .discover-grid .discover-box a figcaption h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.Home_SecE {
  position: relative;
  padding: 180px 0;
}
@media (max-width: 860px) {
  .Home_SecE {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .Home_SecE {
    padding: 40px 0;
  }
}
@media (max-width: 675px) {
  .Home_SecE {
    padding: 30px 0;
  }
}
.Home_SecE::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-45%, -50%);
  background: url(../../assets/images/resource/dis111.png);
  width: 396px;
  height: 522px;
}
@media (max-width: 860px) {
  .Home_SecE::after {
    background-size: 70% 70%;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media (max-width: 767px) {
  .Home_SecE::after {
    display: none;
    background-size: 60% 60%;
    background-position: right bottom;
  }
}
.Home_SecE::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background: #FAF5EE;
  height: 420px;
}
@media (max-width: 860px) {
  .Home_SecE::before {
    height: 270px;
  }
}
@media (max-width: 767px) {
  .Home_SecE::before {
    height: 100%;
  }
}
.Home_SecE .container {
  position: relative;
}
.Home_SecE .container .special-offer-flex {
  align-items: center;
  justify-content: space-between;
}
.Home_SecE .container .special-offer-flex .col {
  width: 100%;
}
.Home_SecE .container .special-offer-flex .col:first-child {
  flex: 0 1 35%;
  max-width: 35%;
}
@media (max-width: 767px) {
  .Home_SecE .container .special-offer-flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Home_SecE .container .special-offer-flex .col:last-child {
  flex: 0 1 35%;
  max-width: 35%;
}
@media (max-width: 767px) {
  .Home_SecE .container .special-offer-flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 40px;
  }
}
.Home_SecE .container .special-offer-flex .col h5 {
  font-size: 92px;
  font-weight: bold;
  line-height: 1.1;
}
@media (max-width: 860px) {
  .Home_SecE .container .special-offer-flex .col h5 {
    font-size: 70px;
  }
}
@media (max-width: 675px) {
  .Home_SecE .container .special-offer-flex .col h5 {
    font-size: 35px;
  }
}
.Home_SecE .container .special-offer-flex .col ul li {
  position: relative;
  padding-left: 40px;
  margin-top: 15px;
}
.Home_SecE .container .special-offer-flex .col ul li:first-child {
  margin-top: 0;
}
.Home_SecE .container .special-offer-flex .col ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 33px;
  background: url(../../assets/images/icons/Polygon.png);
}

.Home_SecF .container .ideal-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .Home_SecF .container .ideal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Home_SecF .container .ideal-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Home_SecF .container .ideal-grid .domestic-box {
  box-shadow: 0px 0px 27px #EBD1AD;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  gap: 10px;
}
.Home_SecF .container .ideal-grid .domestic-box:hover figure img {
  transform: scale(1.2);
}
.Home_SecF .container .ideal-grid .domestic-box figure {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.Home_SecF .container .ideal-grid .domestic-box figure img {
  transition: 0.3s ease;
  width: 100%;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption {
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .Home_SecF .container .ideal-grid .domestic-box figcaption {
    padding: 0;
  }
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner-wrap {
  align-items: center;
  justify-content: space-between;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner-wrap .col {
  width: 100%;
  flex: 0 1 48%;
  max-width: 48%;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner-wrap .col:last-child {
  text-align: right;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner-wrap .col h6 {
  font-size: 19px;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner-wrap .col span {
  display: block;
  font-size: 12px;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner_cta_btn a {
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.Home_SecF .container .ideal-grid .domestic-box figcaption .inner_cta_btn a i {
  transform: rotate(330deg);
  font-size: 16px;
  margin-left: 5px;
}

.Home_SecG .container .Testimonial .item .inner-wrapper {
  position: relative;
}
.Home_SecG .container .Testimonial .item .inner-wrapper::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 78px;
  height: 59px;
  background: url(../../assets/images/icons/testi-shape.png);
}
.Home_SecG .container .Testimonial .item .inner-wrapper figure img {
  width: auto;
  margin: auto;
}
.Home_SecG .container .Testimonial .item .inner-wrapper figcaption {
  text-align: center;
}
.Home_SecG .container .Testimonial .item .inner-wrapper figcaption h5 {
  margin-top: 15px;
}
.Home_SecG .container .Testimonial .item .inner-wrapper figcaption p {
  margin-top: 30px;
  font-size: 21px;
  line-height: 2;
  position: relative;
}

.Home_SecH .container .lets-flex {
  align-items: center;
  justify-content: space-between;
}
.Home_SecH .container .lets-flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 860px) {
  .Home_SecH .container .lets-flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .Home_SecH .container .lets-flex .col:last-child {
    margin-top: 30px;
  }
}
.Home_SecH .container .lets-flex .col h4 {
  line-height: 1.5;
}
.Home_SecH .container .lets-flex .col figure {
  margin-top: 30px;
}
.Home_SecH .container .lets-flex .col form, .Home_SecH .container .lets-flex .col .form {
  background: #FAF5EE;
  padding: 20px;
  border-radius: 20px;
}

footer {
  background: url(../../assets/images/resource/footer.png);
  position: relative;
  padding-top: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
footer .container .logo-div {
  text-align: center;
}
footer .container .logo-div a {
  display: inline-block;
}
footer .container .disclamar h6 {
  position: relative;
  color: #fff;
}
footer .container .disclamar h6::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2588235294);
}
@media (max-width: 767px) {
  footer .container .disclamar h6::before {
    width: 40%;
  }
}
@media (max-width: 675px) {
  footer .container .disclamar h6::before {
    width: 35%;
  }
}
footer .container .disclamar h6::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2588235294);
}
@media (max-width: 767px) {
  footer .container .disclamar h6::after {
    width: 40%;
  }
}
@media (max-width: 675px) {
  footer .container .disclamar h6::after {
    width: 35%;
  }
}
footer .container .disclamar p {
  font-size: 14px;
  color: #fff;
  padding: 15px 0 20px;
}
footer .container > .flex {
  padding: 50px 0 40px;
}
footer .container > .flex .box {
  width: 100%;
  flex: 0 1 25%;
  max-width: 25%;
}
@media (max-width: 1140px) {
  footer .container > .flex .box:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
  footer .container > .flex .box:last-child, footer .container > .flex .box:nth-child(2), footer .container > .flex .box:nth-child(3) {
    flex: 0 1 33%;
    max-width: 33%;
    margin-top: 50px;
    padding: 0 15px;
  }
}
@media (max-width: 675px) {
  footer .container > .flex .box:nth-child(2), footer .container > .flex .box:nth-child(3) {
    flex: 0 1 48%;
    max-width: 48%;
    width: 100%;
  }
  footer .container > .flex .box:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
footer .container > .flex .box:last-child, footer .container > .flex .box:nth-child(2), footer .container > .flex .box:nth-child(3) {
  padding-left: 70px;
}
@media (max-width: 1140px) {
  footer .container > .flex .box:last-child, footer .container > .flex .box:nth-child(2), footer .container > .flex .box:nth-child(3) {
    padding-left: 0;
  }
}
footer .container > .flex .box:last-child ul li a, footer .container > .flex .box:nth-child(2) ul li a, footer .container > .flex .box:nth-child(3) ul li a {
  font-size: 14px;
}
footer .container > .flex .box:last-child ul.contact-info li {
  margin: 10px 0;
}
footer .container > .flex .box:last-child ul.contact-info li .flex {
  align-items: top;
  gap: 10px;
}
footer .container > .flex .box:last-child ul.contact-info li .flex figure {
  flex: 0 1 10%;
  max-width: 10%;
  width: 100%;
}
footer .container > .flex .box:last-child ul.contact-info li .flex figure img {
  margin-top: 3px;
}
footer .container > .flex .box:last-child ul.contact-info li .flex figcaption {
  flex: 1;
}
footer .container > .flex .box:last-child ul.contact-info li .flex figcaption a {
  color: #fff;
}
footer .container > .flex .box:last-child ul.contact-info li .flex figcaption a:hover {
  color: #4b7a02;
}
footer .container > .flex .box:first-child ul {
  display: flex;
  gap: 15px;
  justify-content: left;
  margin-top: 40px;
}
footer .container > .flex .box:first-child ul li a {
  border: 1px solid white;
  border-radius: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
footer .container > .flex .box:first-child ul li a:hover {
  background: #4b7a02;
  border: 1px solid #4b7a02;
}
footer .container > .flex .box a {
  display: inline-block;
}
footer .container > .flex .box p {
  color: #fff;
}
footer .container > .flex .box h6 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
}
footer .container > .flex .box.ouick-links ul li {
  margin: 5px 0;
}
footer .container > .flex .box.ouick-links ul li:first-child {
  margin-top: 0;
}
footer .container > .flex .box.ouick-links ul li a {
  color: #fff;
  position: relative;
}
footer .container > .flex .box.ouick-links ul li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #4b7a02;
  opacity: 0;
  transition: 0.1s ease;
}
footer .container > .flex .box.ouick-links ul li a:hover {
  color: #4b7a02;
  font-weight: 400;
}
footer .container > .flex .box.ouick-links ul li a:hover::before {
  opacity: 1;
}
> footer .container > .flex .box.ouick-links:last-child > ul {
  margin-top: 20px;
}
> footer .container > .flex .box.ouick-links:last-child > ul li {
  margin: 10px 0;
}
> footer .container > .flex .box.ouick-links:last-child > ul li a {
  color: #fff;
}
> footer .container > .flex .box.ouick-links:last-child > ul li a:hover {
  color: #4b7a02;
}
> footer .container > .flex .box.ouick-links:last-child > ul li > .flex figure {
  margin-right: 8px;
}
footer .footer-strip {
  padding: 20px 25px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2588235294);
}
@media (max-width: 675px) {
  footer .footer-strip {
    padding: 20px 0 15px;
  }
}
footer .footer-strip .flex {
  justify-content: space-between;
}
@media (max-width: 860px) {
  footer .footer-strip .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-strip .flex p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
footer .footer-strip .flex .privacy-policy ul {
  display: flex;
  align-items: center;
}
@media (max-width: 675px) {
  footer .footer-strip .flex .privacy-policy ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-strip .flex .privacy-policy ul li {
  padding: 0 15px;
}
footer .footer-strip .flex .privacy-policy ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
footer .footer-strip .flex .privacy-policy ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}
footer .footer-strip .flex .privacy-policy ul li a:hover {
  color: #4b7a02;
}
footer .copyright {
  background: #131313;
  padding: 15px 15px;
  text-align: center;
}
footer .copyright p {
  color: #fff;
  font-size: 14px;
}
footer .copyright p a {
  color: #fff;
}

div#back-to-top {
  position: fixed;
  left: auto;
  right: -100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  z-index: 11;
  bottom: 20px;
  background: #4b7a02;
  padding: 10px;
  cursor: pointer;
  transition: 700ms ease;
}
div#back-to-top.show {
  right: 20px;
}
div#back-to-top svg {
  color: #fff;
  max-width: 15px;
}

.hamburger {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 400px;
  width: 100%;
  background: #4b7a02;
  z-index: 9;
  transform: translateX(100%);
  transition: 0.5s ease;
}
@media (max-width: 520px) {
  .hamburger {
    max-width: 100%;
  }
}
.hamburger.active {
  transform: translateX(0%);
}
.hamburger .inner-wrap {
  position: relative;
  height: 100%;
}
.hamburger .inner-wrap .model-body {
  padding: 50px;
  height: 100%;
}
@media (max-width: 675px) {
  .hamburger .inner-wrap .model-body {
    padding: 30px;
  }
}
.hamburger .inner-wrap .model-body > ul {
  margin-top: 50px;
  border-bottom: 1px solid #5CA55B;
  padding-bottom: 30px;
}
.hamburger .inner-wrap .model-body > ul li:not(:last-child) {
  margin-bottom: 10px;
}
.hamburger .inner-wrap .model-body > ul li a {
  color: #fff;
  font-weight: 400;
  position: relative;
}
.hamburger .inner-wrap .model-body > ul li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #5CA55B;
  opacity: 0;
  transition: 0.1s ease;
}
.hamburger .inner-wrap .model-body > ul li a:hover {
  color: #5CA55B;
  font-weight: 500;
  letter-spacing: 1px;
}
.hamburger .inner-wrap .model-body > ul li a:hover::before {
  opacity: 1;
}
.hamburger .inner-wrap .model-body .social-contact {
  padding-top: 30px;
}
.hamburger .inner-wrap .model-body .social-contact .inner-wrap a {
  display: flex;
  gap: 20px;
}
.hamburger .inner-wrap .model-body .social-contact .inner-wrap a:not(:last-child) {
  margin-bottom: 10px;
}
.hamburger .inner-wrap .model-body .social-contact .inner-wrap a svg {
  width: 20px;
  height: 20px;
}
.hamburger .inner-wrap .model-body .social-contact .inner-wrap a span {
  font-weight: 400;
  color: #fff;
  transition: 0.3s ease;
}
.hamburger .inner-wrap .model-body .social-contact .inner-wrap a:hover span {
  color: #5CA55B;
}
.hamburger .inner-wrap .model-body .social-contact ul.soci-handle {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}
.hamburger .inner-wrap .model-body .social-contact ul.soci-handle li a {
  border: 1px solid white;
  border-radius: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.hamburger .inner-wrap .model-body .social-contact ul.soci-handle li a:hover {
  background: #5CA55B;
  border: 1px solid #5CA55B;
}
.hamburger .inner-wrap .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hamburger .inner-wrap .shape img {
  width: 100%;
}

.Internal_Banner .inner-banner figure {
  width: 100%;
  position: relative;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner figure {
    height: 40vh;
  }
}
.Internal_Banner .inner-banner figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.6;
}
.Internal_Banner .inner-banner figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner figure img {
    height: 100%;
  }
}
.Internal_Banner .inner-banner figure figcaption {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  width: 100%;
}
.Internal_Banner .inner-banner figure figcaption h1 {
  color: #fff;
  font-weight: 600;
}
.Internal_Banner .inner-banner figure figcaption h4 {
  color: #fff;
  font-weight: 300;
}
.Internal_Banner .inner-banner figure figcaption ul {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.Internal_Banner .inner-banner figure figcaption ul li {
  color: #fff;
}
.Internal_Banner .inner-banner figure figcaption ul li a {
  color: #4b7a02;
}
@media (max-width: 520px) {
  .Internal_Banner .inner-banner figure figcaption ul li a {
    font-size: 12px;
    font-weight: 200;
  }
}

.Blog_SecA .container .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 20px;
}
@media (max-width: 767px) {
  .Blog_SecA .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Blog_SecA .container .grid .grid-box figure {
  overflow: hidden;
}
.Blog_SecA .container .grid .grid-box figure a {
  display: block;
}
.Blog_SecA .container .grid .grid-box figure a:hover img {
  transform: scale(1.1);
}
.Blog_SecA .container .grid .grid-box figure a img {
  width: 100%;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .Blog_SecA .container .grid .grid-box figcaption {
    text-align: center;
  }
}
.Blog_SecA .container .grid .grid-box figcaption a {
  display: block;
}
.Blog_SecA .container .grid .grid-box figcaption h6 {
  margin: 10px 0;
  color: #000;
}
.Blog_SecA .container .grid .grid-box figcaption h6:hover {
  color: #4b7a02;
}
@media (max-width: 767px) {
  .Blog_SecA .container .grid .grid-box figcaption .inner_cta_btn {
    margin-top: 20px;
  }
}
.Blog_SecA .container .grid .grid-box figcaption .inner_cta_btn a {
  display: inline-block;
  background: #fff;
  border: 1px solid #4b7a02;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.Blog_SecA .container .grid .grid-box figcaption .inner_cta_btn a:hover {
  color: #fff;
  background: #4b7a02;
}

.Blog-Details_SecA .container .flex {
  justify-content: space-between;
}
.Blog-Details_SecA .container .flex .col {
  width: 100%;
}
.Blog-Details_SecA .container .flex .col:first-child {
  flex: 0 1 70%;
  max-width: 70%;
}
@media (max-width: 991px) {
  .Blog-Details_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Blog-Details_SecA .container .flex .col:last-child {
  flex: 0 1 29%;
  max-width: 29%;
}
@media (max-width: 991px) {
  .Blog-Details_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap figure img {
  width: 100%;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap figure ul {
  display: flex;
  align-content: color;
  gap: 30px;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap figure ul li {
  color: #646464;
  font-size: 14px;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap figure ul li i {
  color: #646464;
  margin-right: 8px;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap .inner_content {
  margin-top: 30px;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap .inner_content h3 {
  font-weight: 600;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap .inner_content p {
  margin: 15px 0;
}
.Blog-Details_SecA .container .flex .col .inner_content_wrap .inner_content h4 {
  margin: 30px 0 10px;
  font-weight: 600;
}
.Blog-Details_SecA .container .flex .col .sidebar {
  background: #F3F5FF;
  padding: 20px 15px;
}
.Blog-Details_SecA .container .flex .col .sidebar h5 {
  font-size: 20px;
}
.Blog-Details_SecA .container .flex .col .sidebar ul {
  margin-top: 10px;
}
.Blog-Details_SecA .container .flex .col .sidebar ul li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
}
.Blog-Details_SecA .container .flex .col .sidebar ul li:not(:first-child) {
  border-top: 2px solid rgba(0, 0, 0, 0.1490196078);
}
.Blog-Details_SecA .container .flex .col .sidebar ul li figure {
  flex: 0 1 28%;
  max-width: 28%;
  width: 100%;
}
.Blog-Details_SecA .container .flex .col .sidebar ul li figcaption {
  flex: 1;
}
.Blog-Details_SecA .container .flex .col .follow-us {
  background: #F3F5FF;
  padding: 20px 15px;
  margin-top: 20px;
}
.Blog-Details_SecA .container .flex .col .follow-us .follow-usbtn {
  background: #4b7a02;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.Blog-Details_SecA .container .flex .col .follow-us ul {
  margin-top: 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
.Blog-Details_SecA .container .flex .col .follow-us ul li a {
  border: 1px solid #4b7a02;
  border-radius: 50px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.Blog-Details_SecA .container .flex .col .follow-us ul li a:hover {
  background: #4b7a02;
}
.Blog-Details_SecA .container .flex .col .follow-us ul li a:hover i {
  color: #fff;
}
.Blog-Details_SecA .container .flex .col .follow-us ul li a i {
  color: #4b7a02;
  font-size: 20px;
}

.Group_booking_SecA .container .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
@media (max-width: 860px) {
  .Group_booking_SecA .container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Group_booking_SecA .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Group_booking_SecA .container .grid .grid-box {
  text-align: center;
}
.Group_booking_SecA .container .grid .grid-box figure {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2196078431);
  border-radius: 14px;
  display: inline-block;
  overflow: hidden;
  padding: 5px;
}
.Group_booking_SecA .container .grid .grid-box figure img {
  margin: auto;
}
.Group_booking_SecA .container .grid .grid-box figcaption h6 {
  font-weight: 600;
  margin: 10px 0 5px;
}
.Group_booking_SecA .container .grid .grid-box figcaption p {
  color: #676767;
}
.Group_booking_SecA .container .grid .grid-box figcaption a.next-cta {
  display: inline-flex;
  background: #F2F2F2;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.Group_booking_SecA .container .grid .grid-box figcaption a.next-cta:hover i {
  color: #4b7a02;
}
.Group_booking_SecA .container .grid .grid-box figcaption a.next-cta i {
  color: #000;
  font-size: 20px;
}

.group_booking_details_SecA .container .flex {
  justify-content: space-between;
}
.group_booking_details_SecA .container .flex .col {
  width: 100%;
}
.group_booking_details_SecA .container .flex .col:first-child {
  flex: 0 1 70%;
  max-width: 70%;
}
@media (max-width: 991px) {
  .group_booking_details_SecA .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.group_booking_details_SecA .container .flex .col:last-child {
  flex: 0 1 29%;
  max-width: 29%;
}
@media (max-width: 991px) {
  .group_booking_details_SecA .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .group_booking_details_SecA .container .flex .col .inner_content_wrap figure {
    display: none;
  }
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap figure img {
  width: 100%;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content {
  margin-top: 30px;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content h3 {
  font-weight: 600;
  margin: 40px 0 0;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content p {
  margin: 15px 0;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content h4 {
  margin: 30px 0 10px;
  font-weight: 600;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content {
  border: 1px solid rgba(163, 163, 163, 0.7215686275);
  margin-bottom: 30px;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .heading {
  background: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .heading i {
  font-size: 25px;
  color: #676767;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .heading p {
  color: #676767;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .inner-content-wrap {
  padding: 20px 0;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .inner-content-wrap ol {
  padding: 0 50px;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content .table-content .inner-content-wrap ol li {
  color: #676767;
  margin: 10px 0;
  list-style-type: decimal;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content ul.listing_style_one li {
  padding-left: 35px;
  position: relative;
  margin: 8px 0;
}
.group_booking_details_SecA .container .flex .col .inner_content_wrap .inner_content ul.listing_style_one li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: url(../../assets/images/icons/airplane.png);
}
.group_booking_details_SecA .container .flex .col .sidebar {
  background: #F3F5FF;
  padding: 20px 15px;
  position: sticky;
  top: 100px;
}
.group_booking_details_SecA .container .flex .col .sidebar h5 {
  font-size: 20px;
}
.group_booking_details_SecA .container .flex .col .sidebar ul.group_booking_listing {
  margin-top: 10px;
}
.group_booking_details_SecA .container .flex .col .sidebar ul.group_booking_listing li {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
}
.group_booking_details_SecA .container .flex .col .sidebar ul.group_booking_listing li:not(:first-child) {
  margin-top: 8px;
}

.Business_booking_SecA .container .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) {
  .Business_booking_SecA .container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Business_booking_SecA .container .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Business_booking_SecA .container .grid .grid-box {
  text-align: center;
}
.Business_booking_SecA .container .grid .grid-box figure {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2196078431);
  border-radius: 14px;
  display: inline-block;
  overflow: hidden;
  padding: 5px;
  width: 100%;
}
.Business_booking_SecA .container .grid .grid-box figure img {
  width: 100%;
  margin: auto;
}
.Business_booking_SecA .container .grid .grid-box figcaption h6 {
  font-weight: 600;
  margin: 10px 0 5px;
}
.Business_booking_SecA .container .grid .grid-box figcaption p {
  color: #676767;
}
.Business_booking_SecA .container .grid .grid-box figcaption a.next-cta {
  display: inline-flex;
  background: #F2F2F2;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.Business_booking_SecA .container .grid .grid-box figcaption a.next-cta:hover i {
  color: #4b7a02;
}
.Business_booking_SecA .container .grid .grid-box figcaption a.next-cta i {
  color: #000;
  font-size: 20px;
}

.Term-condition_SecA .container .content p {
  margin: 20px 0;
}
.Term-condition_SecA .container .content h2, .Term-condition_SecA .container .content h3, .Term-condition_SecA .container .content h4, .Term-condition_SecA .container .content h5, .Term-condition_SecA .container .content h6 {
  margin: 20px 0 10px;
  font-weight: 600;
}
.Term-condition_SecA .container .content ul {
  margin: 25px 0;
}

.Contact-SecA {
  background: #fff;
}
.Contact-SecA .container .title {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .Contact-SecA .container .title {
    flex-wrap: wrap;
  }
}
.Contact-SecA .container .title h3 {
  flex: 0 1 25%;
  max-width: 25%;
  font-size: 52px;
}
@media (max-width: 1024px) {
  .Contact-SecA .container .title h3 {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .Contact-SecA .container .title h3 {
    font-size: 32px;
  }
}
.Contact-SecA .container .title p {
  display: block;
  flex: 0 1 55%;
  max-width: 55%;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #242424;
}
@media (max-width: 1024px) {
  .Contact-SecA .container .title p {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Contact-SecA .container > .flex {
  justify-content: space-between;
  margin-top: 40px;
}
.Contact-SecA .container > .flex .col {
  width: 100%;
}
.Contact-SecA .container > .flex .col:first-child {
  flex: 0 1 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  order: 2;
}
@media (max-width: 860px) {
  .Contact-SecA .container > .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .Contact-SecA .container > .flex .col:first-child {
    padding: 0 20px;
  }
}
.Contact-SecA .container > .flex .col:last-child {
  flex: 0 1 50%;
  max-width: 50%;
  order: 1;
}
@media (max-width: 860px) {
  .Contact-SecA .container > .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.Contact-SecA .container > .flex .col ul li {
  margin: 40px 0;
}
.Contact-SecA .container > .flex .col ul li .flex {
  justify-content: space-between;
  align-items: center;
}
.Contact-SecA .container > .flex .col ul li .flex figure {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
}
.Contact-SecA .container > .flex .col ul li .flex figure img {
  width: 100%;
}
.Contact-SecA .container > .flex .col ul li .flex figcaption {
  flex: 0 1 80%;
  max-width: 80%;
  width: 100%;
}
.Contact-SecA .container > .flex .col ul li .flex figcaption a {
  color: #000;
  display: block;
  font-weight: 600;
}
.Contact-SecA .container > .flex .col ul li .flex figcaption a:hover {
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, #4b7a02, #5CA55B);
  background-image: linear-gradient(to right, #4b7a02, #5CA55B);
  color: rgba(0, 0, 0, 0);
}
.Contact-SecA .container > .flex .col .inner-div {
  background: #FAF5EE;
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  padding: 30px 30px 50px;
  margin: auto;
}
@media (max-width: 767px) {
  .Contact-SecA .container > .flex .col .inner-div {
    max-width: 100%;
    padding: 15px 15px 30px;
  }
}
.Contact-SecA .container > .flex .col .inner-div form .form-group {
  width: 100%;
  margin: 15px 0;
}
.Contact-SecA .container > .flex .col .inner-div form .form-group .form-control, .Contact-SecA .container > .flex .col .inner-div form .form-group textarea {
  width: 100%;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  padding: 10px 15px;
  color: #000;
}
.Contact-SecA .container > .flex .col .inner-div form .form-group textarea {
  font-size: 16px;
  font-family: Poppins;
  color: #000;
}
.Contact-SecA .container > .flex .col .inner-div form .form-group input[type=submit] {
  background: #1B1C19;
  padding: 10px 40px;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
.Contact-SecA .container .map-wrap {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
  line-height: 0;
  padding: 5px;
}

.form-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px;
}
.form-box h5 {
  font-weight: 600;
  margin-bottom: 30px;
}

.form .flex {
  justify-content: space-between;
}
.form .flex .half {
  flex: 0 1 49%;
  max-width: 49%;
  width: 100%;
}
.form .flex .triple {
    flex: 0 1 32%;
    max-width: 32%;
    width: 100%;
}
.form .flex .forth {
    flex: 0 1 24%;
    max-width: 24%;
    width: 100%;
}
@media (max-width: 767px) {
  .form .flex .half {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.form .form-group {
  margin-top: 15px;
  width: 100%;
}
.form .form-group label {
  color: #707070;
  padding-left: 15px;
}
.form .form-group .form-control, .form .form-group textarea {
  width: 100%;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  background: #fff;
  color: #1A1818;
  font-size: 16px;
  border: 2px solid #4b7a02;
}
.form .form-group .form-control:focus-visible, .form .form-group textarea:focus-visible {
  outline: none;
}
.form .form-group textarea {
  font-size: 16px;
  font-family: Poppins;
  color: #1A1818;
  height: 120px;
  resize: vertical;
}
.form .form-group input[type=submit] {
  background: transparent linear-gradient(258deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  display: inline-block;
  padding: 10px 80px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form .form-group input[type=submit]:hover {
  background: transparent linear-gradient(258deg, #5CA55B 0%, #4b7a02 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.form .form-group a {
  color: #4b7a02;
  font-weight: 600;
}
.form .flex {
  justify-content: space-between;
}
.form .flex .w-50 {
  flex: 0 1 49%;
  max-width: 49%;
  width: 100%;
}
@media (max-width: 767px) {
  .form .flex .w-50 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.Customer_Detalis .container .inner-div {
  max-width: 900px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  padding: 25px;
}
@media (max-width: 520px) {
  .Customer_Detalis .container .inner-div {
    padding: 10px 15px;
  }
}
.Customer_Detalis .container .inner-div .form p {
  font-weight: bold;
  margin-top: 15px;
}
.Customer_Detalis .container .inner-div .form .flex {
  justify-content: space-between;
}
.Customer_Detalis .container .inner-div .form .flex .half {
  flex: 0 1 49%;
  max-width: 49%;
  width: 100%;
}
@media (max-width: 520px) {
  .Customer_Detalis .container .inner-div .form .flex .half {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Customer_Detalis .container .inner-div .form span.declaration {
  display: block;
  margin: 20px 0;
}

.Internal_Banner.h-6 {
  height: 60vh;
  overflow: hidden;
}

.Internal_Banner.hh-6 {
  overflow: hidden;
}

.Internal_Banner.h-6 .inner-banner figure figcaption, .Internal_Banner.hh-6 .inner-banner figure figcaption{
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.Internal_Banner .inner-banner figure {
  width: 100%;
  position: relative;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner figure {
    height: 50vh;
  }
}
.Internal_Banner .inner-banner figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.6;
}
.Internal_Banner .inner-banner figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner figure img {
    height: 100%;
  }
}
.Internal_Banner .inner-banner figure figcaption {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  width: 100%;
}
@media (max-width: 860px) {
  .Internal_Banner .inner-banner figure figcaption {
    top: 70%;
    transform: translate(-50%, -70%);
  }
}
.Internal_Banner .inner-banner figure figcaption h2 {
  color: #fff;
  font-weight: 600;
}
.Internal_Banner .inner-banner figure figcaption h4 {
  color: #fff;
  font-weight: 300;
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner figure figcaption ul.breadcrumb {
    flex-wrap: wrap;
  }
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb li {
  color: #fff;
  position: relative;
  padding: 0 15px 0px 10px;
  font-size: 16px;
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb li::before {
  content: ">";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  color: #fff;
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb li:last-child::before {
  display: none;
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb li a {
  color: #fff;
  font-size: 16px;
}
.Internal_Banner .inner-banner figure figcaption ul.breadcrumb li a:hover {
  color: #4b7a02;
}
.Internal_Banner .inner-banner .leadform-grid {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -65%);
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .Internal_Banner .inner-banner .leadform-grid {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .Internal_Banner .inner-banner .leadform-grid {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    padding: 0 15px;
    margin-top: 30px;
    padding-bottom: 40px;
  }
}
.Internal_Banner .inner-banner .leadform-grid .trip-selector {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 50px;
}
@media (max-width: 860px) {
  .Internal_Banner .inner-banner .leadform-grid .trip-selector {
    justify-content: center;
  }
}
.Internal_Banner .inner-banner .leadform-grid .trip-selector .form-check-inline {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 860px) {
  .Internal_Banner .inner-banner .leadform-grid .trip-selector .form-check-inline {
    color: #000;
    gap: 10px;
  }
}
.Internal_Banner .inner-banner .leadform-grid .trip-selector .form-check-inline input[type=radio] {
  border: brown;
  background-color: brown;
  width: 15px;
  height: 15px;
  accent-color: #4b7a02;
}
.Internal_Banner .inner-banner .leadform-grid .trip-selector .form-check-inline input[type=radio]:checked {
  background: red !important;
}
.Internal_Banner .inner-banner .leadform-grid .trip-selector .form-check-inline.active span::before {
  background: #4b7a02;
}
.Internal_Banner .inner-banner .leadform-grid .form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}
@media (max-width: 675px) {
  .Internal_Banner .inner-banner .leadform-grid .form {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group {
  position: relative;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group span {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input, .Internal_Banner .inner-banner .leadform-grid .form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.3803921569);
  color: #fff;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group select option{
    color: #000;
}
.Hero_Banner .Hero_inner_wrap .leadform-grid .form .form-group select option{
    color: #000;
}
@media (max-width: 860px) {
  .Internal_Banner .inner-banner .leadform-grid .form .form-group input, .Internal_Banner .inner-banner .leadform-grid .form .form-group select {
    /*background: rgba(183, 212, 50, 0.5098039216);*/
    background: #7c7b7b82;
  }
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input::-ms-input-placeholder {
  color: #fff;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input[type=submit] {
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
}
.Internal_Banner .inner-banner .leadform-grid .form .form-group input[type=submit]:hover {
  background: #000;
}

.Airline_SecA .container .airline-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .Airline_SecA .container .airline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .Airline_SecA .container .airline-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.Airline_SecA .container .airline-grid .airline-box {
  background: #fff;
  box-shadow: 0px 0px 27px #EBD1AD;
  padding: 10px;
}
.Airline_SecA .container .airline-grid .airline-box:hover a {
  color: #4b7a02;
}
.Airline_SecA .container .airline-grid .airline-box:hover figure img {
  transform: scale(1.1);
}
.Airline_SecA .container .airline-grid .airline-box a {
  color: #000;
}
.Airline_SecA .container .airline-grid .airline-box figure {
  overflow: hidden;
}
.Airline_SecA .container .airline-grid .airline-box figure img {
  width: 100%;
  transition: 0.3s ease;
}
.Airline_SecA .container .airline-grid .airline-box figcaption {
  padding: 10px 10px;
}
.Airline_SecA .container .airline-grid .airline-box figcaption p {
  margin: 5px 0 10px;
  color: #000;
}

.Airline_Detail_SecA .container .flex {
  align-items: center;
  justify-content: space-between;
}
.Airline_Detail_SecA .container .flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 767px) {
  .Airline_Detail_SecA .container .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .Airline_Detail_SecA .container .flex .col:last-child {
    margin-top: 30px;
  }
}
.Airline_Detail_SecA .container .flex .col figure img {
  margin: auto;
}

.About_SecB {
  position: relative;
}
.About_SecB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #FAF5EE;
  height: 63%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .About_SecB::before {
    height: 35%;
  }
}
.About_SecB .container {
  position: relative;
}
.About_SecB .mission-flex {
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  overflow: hidden;
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.About_SecB .mission-flex .col {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  .About_SecB .mission-flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.About_SecB .mission-flex .col:first-child .web-content {
  padding: 30px;
}
.About_SecB .mission-flex .col:first-child .web-content p {
  color: #000;
}
.About_SecB .mission-flex .col:last-child figure img {
  width: 100%;
  height: 100%;
}

.About_SecD .container ul.product-service {
  width: 850px;
  margin: auto;
}
@media (max-width: 860px) {
  .About_SecD .container ul.product-service {
    width: 100%;
  }
}
.About_SecD .container ul.product-service li {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  margin: 15px 0;
}
.About_SecD .container ul.product-service li:first-child {
  margin-top: 0;
}
.About_SecD .container ul.product-service li a {
  color: #000;
  font-weight: bold;
  font-size: 20px;
}
.About_SecD .container ul.product-service li a:hover {
  color: #4b7a02;
}

.Error_SecA .container .error-flex {
  align-items: center;
  justify-content: space-between;
}
.Error_SecA .container .error-flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
}
@media (max-width: 767px) {
  .Error_SecA .container .error-flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .Error_SecA .container .error-flex .col:last-child {
    margin-top: 30px;
  }
}
.Error_SecA .container .error-flex .col h3 {
  margin: 10px 0;
  font-weight: 600;
}
.Error_SecA .container .error-flex .col .pro-cta-btn {
  margin-top: 30px;
}
.Error_SecA .container .error-flex .col .pro-cta-btn a {
  display: inline-block;
  color: #fff;
  position: relative;
  padding-left: 30px;
  border-radius: 10px;
  padding: 10px 30px 10px 55px;
  background: transparent linear-gradient(180deg, #4b7a02 0%, #5CA55B 100%) 0% 0% no-repeat padding-box;
  font-size: 14px;
}
.Error_SecA .container .error-flex .col .pro-cta-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background: url(../../assets/images/icons/backtohome.png);
  width: 26px;
  height: 15px;
  transition: 0.3s ease;
}
.Error_SecA .container .error-flex .col .pro-cta-btn a:hover::before {
  left: 10px;
}

.form p
 {
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
    font-size: 14px;
}
.dropdown-content {
    position: absolute;
    background-color: #f1f1f1;
    min-width: 250px;
    z-index: 99;
    max-height: 185px;
    overflow-y: auto;
}
.dropdown-content div {
    padding: 10px;
    cursor: pointer;
    background-color: white;
    border-bottom: 1px solid #bdbbbb;
    font-size: 14px;
}
.booking-list-area.booking-list-item_styling_two {
  margin: 25px 0;
}
.booking-list-area .booking-list-item-inner {
  background: #fff;
  padding: 30px 30px 15px;
  border-radius: 5px;
  box-shadow: 0px 1px 20.58px 0.42px rgba(141, 138, 138, 0.14);
  margin-top: 30px;
}
.booking-list-area .booking-list-item-inner:first-child {
  margin-top: 0;
}
.booking-list-area .booking-list-item-inner .booking-list-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.booking-list-area .booking-list-item-inner .booking-list-top:first-child {
  margin-top: 0;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-airway {
  margin-right: 10px;
  min-width: 20%;
  margin-bottom: 10px;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-airway .flight-logo {
  display: flex;
  align-items: center;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-airway .flight-logo img {
  margin-right: 20px;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-airway .flight-logo .title {
  color: #4b7a02;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-info li {
  color: #000;
  font-weight: 500;
  margin-right: 55px;
  margin-bottom: 10px;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-info li span {
  display: inline;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-info li span.stop-time {
  border-bottom: 1px dotted;
  padding: 6px;
  font-size: 14px;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-info li i {
  color: #4b7a02;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-price {
  margin-left: auto;
  border-left: 1px dashed #d2d2d2;
  padding-left: 27px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .booking-list-area .booking-list-item-inner .booking-list-top .flight-price {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
  }
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-price .title {
  font-size: 24px;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 600;
}
.booking-list-area .booking-list-item-inner .booking-list-top .flight-price .flight-btn {
  padding: 11px 50px;
  border-radius: 3px;
  overflow: hidden;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom {
  border-top: 1px dashed #d2d2d2;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc {
  border-radius: 16px;
  margin: 15px 0;
  overflow: hidden;
  background: #fff;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-head {
  background: #fff;
  padding: 1px 20px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 675px) {
  .booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-head {
    padding: 1px 50px 1px 15px;
  }
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-head::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/icons/arrow-down.png);
  width: 12px;
  height: 6px;
  left: 0;
  top: 10px;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-head p {
  color: #000;
  position: relative;
  font-size: 16px;
  display: inline-block;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content {
  padding: 15px 0px;
  display: none;
  background: #fff;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap {
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right {
  flex-grow: 1;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right .flight-detail-info {
  display: flex;
  align-items: center;
  background: #ebebee;
  padding: 15px 30px;
  position: relative;
  border-radius: 20px;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right .flight-detail-info .left {
  width: 55%;
  float: right;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right .flight-detail-info .right {
  width: 100%;
  text-align: right;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right table.flight-depar {
  width: 100%;
  padding: 20px;
}
.booking-list-area .booking-list-item-inner .booking-list-bottom .acc .acc-content .flight-detail-wrap .flight-detail-right table.flight-depar tr td {
  padding: 2px 4px 25px 25px;
}

.flight-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #4b7a02 none repeat scroll 0 0;
  border: medium none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}
.flight-btn::after {
  background-color: rgba(255, 255, 255, 0.76);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -35px;
  transform: rotate(35deg);
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
}
.flight-btn:hover::after {
  left: 120%;
  transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.25;
}

.Booking_payment_form .container .flex {
  align-items: flex-start;
  justify-content: space-between;
}
.Booking_payment_form .container .flex .col {
  width: 100%;
}
.Booking_payment_form .container .flex .col:first-child {
  flex: 0 1 70%;
  max-width: 70%;
}
@media (max-width: 860px) {
  .Booking_payment_form .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex {
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1803921569);
  padding: 15px 20px;
  border-radius: 10px;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .flight-name-flex {
    padding: 15px 15px;
  }
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .icons {
  flex: 0 1 10%;
  max-width: 10%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 212, 50, 0.3294117647);
  padding: 15px;
  border-radius: 8px;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .flight-name-flex .icons {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .icons i {
  font-size: 50px;
  color: #4b7a02;
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc {
  flex: 1;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc span {
  display: inline-block;
  background: #5CA55B;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc h4 {
  font-weight: 600;
  margin: 6px 0;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc h4 {
    font-size: 16px;
    margin: 15px 0;
  }
}
.Booking_payment_form .container .flex .col:first-child .flight-name-flex .flight-desc h4 i {
  margin: 0 20px;
}
.Booking_payment_form .container .flex .col:first-child .department-return {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1803921569);
  padding: 15px 20px;
  border-radius: 10px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .box-bind {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
  padding: 15px 0;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .department-return .box-bind {
    margin-top: 30px;
  }
}
.Booking_payment_form .container .flex .col:first-child .department-return .dep-date {
  gap: 20px;
  align-items: center;
  justify-content: left;
  font-size: 12px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .dep-date span.primary {
  display: inline-block;
  background: #cfe1f8;
  color: #106bda;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;

}
.Booking_payment_form .container .flex .col:first-child .department-return .dep-date span.success {
  display: inline-block;
  background: #d4eee3;
  color:#29aa75;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;

}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top:first-child {
  margin-top: 0;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-airway {
  margin-right: 10px;
  min-width: 20%;
  margin-bottom: 10px;
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-airway {
    max-width: 100%;
    width: 100%;
  }
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-airway .flight-logo {
  display: flex;
  align-items: center;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-airway .flight-logo img {
  margin-right: 20px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-airway .flight-logo .title {
  color: #4b7a02;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  gap: 30px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li {
  color: #000;
  font-weight: 500;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li span {
  display: inline;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li span.stop-time {
  border-bottom: 1px dotted;
  padding: 6px;
  font-size: 14px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li i {
  color: #4b7a02;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li.one-flight-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  position: relative;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li.one-flight-left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 1px;
  width: 80%;
  background: rgba(0, 0, 0, 0.1803921569);
  margin: auto;
}
.Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li:last-child {
  flex: 0 1 15%;
  max-width: 15%;
  width: 100%;
}
@media (max-width: 767px) {
  .Booking_payment_form .container .flex .col:first-child .department-return .booking-list-top .flight-info li:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap h6 {
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
  padding-bottom: 8px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap h6.no-border {
  border-bottom: none;
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap form p, .Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap .form p {
  margin: 40px 0 0px;
  color: #5d6f7d;
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap form .title, .Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap .form .title {
  width: 100%;
  margin: 30px 0 10px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap form .form-group label, .Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap .form .form-group label {
  font-size: 12px;
}
.Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap form .form-group input, .Booking_payment_form .container .flex .col:first-child .department-return .inner-wrap .form .form-group input {
  padding: 8px 15px;
}
.Booking_payment_form .container .flex .col:last-child {
  flex: 0 1 28%;
  max-width: 28%;
}
@media (max-width: 860px) {
  .Booking_payment_form .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 675px) {
  .Booking_payment_form .container .flex .col:last-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Booking_payment_form .container .flex .col:last-child .department-return {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1803921569);
  padding: 15px 20px;
  border-radius: 10px;
}
.Booking_payment_form .container .flex .col:last-child .department-return h6 {
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
  padding-bottom: 8px;
}
.Booking_payment_form .container .flex .col:last-child .department-return h6.no-border {
  border-bottom: none;
}
.Booking_payment_form .container .flex .col:last-child .department-return .flight-logo {
  display: flex;
  align-items: center;
  padding: 15px 0 0;
}
.Booking_payment_form .container .flex .col:last-child .department-return .flight-logo img {
  margin-right: 20px;
}
.Booking_payment_form .container .flex .col:last-child .department-return .flight-logo .title {
  color: #5d6f7d;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
}
.Booking_payment_form .container .flex .col:last-child .department-return ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 10px;
}
.Booking_payment_form .container .flex .col:last-child .department-return ul:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2509803922);
  padding-bottom: 0;
}
.Booking_confirm_SecA .container .booking-list-item-inner {
  background: #fff;
  padding: 30px 30px 15px;
  border-radius: 5px;
  box-shadow: 0px 1px 20.58px 0.42px rgba(141, 138, 138, 0.14);
}
.Booking_confirm_SecA .container .booking-list-item-inner .title h3, .Booking_confirm_SecA .container .booking-list-item-inner .title h4 {
  font-weight: 600;
}
.Booking_confirm_SecA .container .booking-list-item-inner .web-content .note-red {
  border-top: 1px solid rgba(0, 0, 0, 0.0901960784);
}
.Booking_confirm_SecA .container .booking-list-item-inner .web-content .note-red p {
  color: red;
}
.Booking_confirm_SecA .container .booking-list-item-inner table {
  width: 100%;
  border-collapse: collapse;
}
.Booking_confirm_SecA .container .booking-list-item-inner table tr, .Booking_confirm_SecA .container .booking-list-item-inner table th, .Booking_confirm_SecA .container .booking-list-item-inner table td {
  text-align: left;
}
.Booking_confirm_SecA .container .booking-list-item-inner table tr {
  border-top: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2117647059);
}
.Booking_confirm_SecA .container .booking-list-item-inner table tr th {
  font-weight: 600;
}
.Booking_confirm_SecA .container .booking-list-item-inner table tr th, .Booking_confirm_SecA .container .booking-list-item-inner table tr td {
  padding: 10px 0;
}
.Booking_confirm_SecA .container .booking-list-item-inner .box-bind {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
  padding: 15px 0;
}
@media (max-width: 675px) {
  .Booking_confirm_SecA .container .booking-list-item-inner .box-bind {
    margin-top: 30px;
  }
}
.Booking_confirm_SecA .container .booking-list-item-inner .box-bind .dep-date {
  gap: 20px;
  align-items: center;
  justify-content: left;
  font-size: 12px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .box-bind .dep-date span {
  display: inline-block;
  background: #cfe1f8;
  color: #106bda;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top:first-child {
  margin-top: 0;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-airway {
  margin-right: 10px;
  min-width: 15%;
  margin-bottom: 10px;
}
@media (max-width: 675px) {
  .Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-airway {
    max-width: 100%;
    width: 100%;
  }
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-airway .flight-logo {
  display: flex;
  align-items: center;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-airway .flight-logo img {
  margin-right: 20px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-airway .flight-logo .title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  gap: 30px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li {
  color: #000;
  font-weight: 500;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li span {
  display: inline;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li span.stop-time {
  border-bottom: 1px dotted;
  padding: 6px;
  font-size: 14px;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li i {
  color: #4b7a02;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li.one-flight-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  position: relative;
}
.Booking_confirm_SecA .container .booking-list-item-inner .booking-list-top .flight-info li.one-flight-left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 1px;
  width: 85%;
  background: rgba(0, 0, 0, 0.1803921569);
  margin: auto;
}
.Booking_confirm_SecA .container .title-flex {
  align-items: center;
  justify-content: space-between;
}
.Booking_confirm_SecA .container .title-flex h6 {
  font-weight: 600;
}
.Booking_confirm_SecA .container .title-flex h6 span {
  color: green;
}
.Booking_confirm_SecA .container .booking-list-item-inner .box-bind .dep-date span.success{
  background: #d4eee3;
  color:#29aa75;
}
.call_us {
    font-size: 32px;
    font-weight: 600;
    color: #5fa75b;
    background: #5fa75b5c;
    padding: 7px;
    border-radius: 10px;
}

#overlay-payment {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
}

#text-payment {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div::after {
  content: "";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
  box-sizing: border-box;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1)::after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2)::after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3)::after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4)::after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5)::after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6)::after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7)::after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8)::after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.coupon-flex{
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: space-between;
    gap: 10px
}
.coupon-flex >input{
    flex: 0 1 70%;
    max-width: 70%;
    width: 100%;
    padding: 6px 15px !important;
    border-radius: 10px !important;
}
.coupon-flex >button{
    flex: 1;
}
.coupon-code-btn{
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4b7a02;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px !important;
    border-radius: 10px;
}
.coupon-code-btn:hover {
    background: transparent linear-gradient(258deg, #5CA55B 0%, #4b7a02 100%) 0% 0% no-repeat padding-box;
    color: #fff;
}
 .coupon {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: stretch;
  position: relative;
  text-transform: uppercase;
}
.coupon::before,
.coupon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.coupon::before {
  left: 0;
  background-image: radial-gradient(
    circle at 0 50%,
    transparent 25px,
    #6cad08 26px
  );
}

.coupon::after {
  right: 0;
  background-image: radial-gradient(
    circle at 100% 50%,
    transparent 25px,
    #6cad08 26px
  );
}

.coupon > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon .left {
  width: 20%;
  border-right: 2px dashed rgba(0, 0, 0, 0.13);
}
.coupon .left div {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-weight: bold;
  padding-top: 20px;
}

.center {
  flex-grow: 1;
  text-align: center;
}

.coupon .right {
  width: 60px;
  background-image: radial-gradient(
    circle at 100% 50%,
    transparent 25px,
    #fff 26px
  );
}
.coupon .right div {
  font-family: "Libre Barcode 128 Text", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  transform: rotate(-90deg);
}

.center h2 {
  background: #000;
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  white-space: nowrap;
}

.center h5 {
  font-size: 26px;
  margin-top: 5px;
}
.center small {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 2px;
}

@media screen and (max-width:500px){
  .coupon {
    display:grid;
    grid-template-columns: 1fr;
  }
  .left div {
    transform: rotate(0deg);
  }
  .right div {
    transform: rotate(0deg);
    
  }
}
.contact_fb{
    margin-left:10px;
}
.contact_insta{
    margin-left:30px;
}
.contact_fb_img, .contact_insta_img{
    height: 45px;
}
.booking_det_bl{
    font-size: 14px;
    font-weight: 600;
}
.couponClick{
    text-align: right;
    font-size: 14px;
    cursor: pointer;
    margin: 5px;
    color: #106bda;
}
.h60{
    font-size: 60px !important;
}
.video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    top: 0;
    left: 0;
}
.error_pop{
    color: #cb1c1c;
}
.header_call{
  margin-left: -15px;
  font-size: 20px;
}
.trav_engine {
    position: relative;
}
.txt_Traveler {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    outline: none;
    border-radius: 5px;
    margin-top: 0px;
    float: left;
    background: #ffffff8c;
    border: none;
    color: white;
    font-size: 14px;
}
.trav_toggle.open {
    background: url(https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/down4-512.png) no-repeat;
    background-size: 20px;
    z-index: 1;
    position: absolute;
    left: 88%;
    width: 20px;
    top: 15px;
    filter: invert(1);
}
.trav_toggle.close {
    background: url(https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/up4-512.png) no-repeat;
    background-size: 20px;
    z-index: 1;
    position: absolute;
    left: 88%;
    width: 20px;
}
.trav_form {
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    float: left;
    position: absolute;
    background-color: #fff;
    z-index: 9999 !important;
    top: 40px;
}
.trav_item {
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    float: left;
}
.trav_inner1 {
    width: 40%;
    float: left;
    font-size: 15px;
    line-height: 17px;
    color: #333333;
    box-sizing: border-box;
}
.trav_inner2 {
    width: 60%;
    float: left;
    font-size: 13px;
    line-height: 30px;
    color: #666;
    box-sizing: border-box;
    display: flex;
}
.trav_done {
    padding: 6px;
    display: block;
    border-radius: 2px;
    background: #f2f2f2;
    font-size: 14px;
    border: 1px solid #ddd;
    color: #444;
    width: 70px;
    margin: 0 auto;
    text-align: center;
    cursor: default;
    transition: .3s linear;
}
.minus, .plus {
    border: 1px solid #ddd;
    width: 36px;
    text-decoration: none;
    font-size: 18px;
    height: 34px;
    text-align: center;
    box-sizing: border-box;
    float: left;
    background: #ddd;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 48%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 48%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 48%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0);
}
.txt_trav {
    height: 34px;
    float: left;
    text-align: center;
    line-height: 34px;
    box-sizing: border-box;
    border-left: 0;
    border-right: 0;
    font-size: 16px;
    color: #000 !important;
}
.trav_inner1 span {
    font-size: 11px;
    display: block;
    color: #888888;
    position: static !important;
    transform: translateY(0%) !important;
}
/*# sourceMappingURL=style.css.map */