@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,500;0,600;0,700;1,500&family=Open+Sans&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  /*font-family: "Open Sans", sans-serif;*/
  /*font-family: "Roboto", sans-serif;*/
   font-family: "Noto Sans", sans-serif !important;
  color: #464646;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 1.7;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow-x: hidden;
}

body.page-trns-active {
  position: relative;
}

body.page-trns-active::after {
  position: absolute;
  content: "\f110";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  font-size: 4.5rem;
  z-index: 999;
  animation: spinRoll 1s infinite linear;
}

body.page-trns-active::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14233c;
  z-index: 99;
  opacity: 0.65;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
  border-radius: 20px;
  border: 2px solid #f2f2f2;
}

@-webkit-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinRoll {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

section {
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

select {
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
}

button:focus {
  outline: none;
}

span {
  display: inline-block;
}

a:hover {
  color: #f77c5a;
}

.text--primary {
  color: #7367f0 !important;
}

.text--secondary {
  color: #868e96 !important;
}

.text--success {
  color: #28c76f !important;
}

.text--danger {
  color: #ea5455 !important;
}

.text--warning {
  color: #ff9f43 !important;
}

.text--info {
  color: #1e9ff2 !important;
}

.text--dark {
  color: #10163a !important;
}

.text--muted {
  color: #ccc !important;
}

.text--base {
  color: #f77c5a !important;
}

.text--dark {
  color: #182c61 !important;
}

.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background-color: #868e96 !important;
}

.bg--success {
  background-color: #28c76f !important;
}

.bg--danger {
  background-color: #ea5455 !important;
}

.bg--warning {
  background-color: #ff9f43 !important;
}

.bg--info {
  background-color: #1e9ff2 !important;
}

.bg--dark {
  background-color: #10163a !important;
}

.bg--light {
  background-color: #bcc7da !important;
}

.bg--base {
  background-color: #f77c5a !important;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.bg_img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section--bg {
  background-color: #f5f7fa;
}

.section--bg2 {
  background-color: #14233c;
}

.section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.white--overlay {
  position: relative;
  z-index: 1;
}

.white--overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  z-index: -1;
}

.dark--overlay {
  position: relative;
  z-index: 1;
}

.dark--overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14233c;
  opacity: 0.4;
  z-index: -1;
}

.dark--overlay-two {
  position: relative;
  z-index: 1;
}

.dark--overlay-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14233c;
  opacity: 0.8;
  z-index: -1;
}

.bg--one {
  background-color: #071e3e;
}

.slick-arrow {
  cursor: pointer;
}

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

.main-wrapper {
  position: relative;
}

.section-header {
  margin-bottom: 2.8125rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
}

.subscribe-wrapper .section-title {
  font-size: 2.25rem;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .subscribe-wrapper .section-title {
    font-size: 1.85rem;
  }
}

.section-subtitle {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.section-subtitle.border-left {
  padding-left: 2.1875rem;
  position: relative;
  z-index: 1;
}

.section-subtitle.border-left::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #f77c5a;
  margin-top: -1px;
}

a.text-white:hover {
  color: #f77c5a !important;
}

.text--link {
  text-decoration: underline;
}

.text--link:hover {
  text-decoration: underline;
}

.has--link {
  position: relative;
}

.has--link .item--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom--dropdown .dropdown-toggle.no-arrow::after {
  display: none;
}

.custom--dropdown .dropdown-toggle::after {
  content: "\f107";
  border: none;
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.custom--dropdown .dropdown-menu {
  border-color: #e5e5e5;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.custom--dropdown .dropdown-menu li {
  border-bottom: 1px dashed #e5e5e5;
}

.custom--dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

.custom--dropdown .dropdown-menu li .dropdown-item {
  color: #464646;
  font-size: 0.875rem;
}

.custom--dropdown .dropdown-menu li .dropdown-item:hover {
  color: #f77c5a;
  background-color: rgba(247, 124, 90, 0.05);
}

.custom--nav-tabs {
  border-bottom: none;
}

.custom--nav-tabs .nav-item .nav-link {
  background-color: #fff;
  border: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 0.75rem 1.5625rem;
}

.custom--nav-tabs .nav-item .nav-link.active {
  background-color: #f77c5a;
  color: #fff;
}

.custom--accordion .accordion-item + .accordion-item {
  margin-top: 1.25rem;
}

.custom--accordion .accordion-item {
  border: 1px solid rgba(247, 124, 90, 0.5);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.custom--accordion .accordion-item:first-child .accordion-button {
  border-top: none;
}

.custom--accordion .accordion-item:last-child .accordion-button {
  border-bottom: none;
}

.custom--accordion .accordion-button {
  padding: 1.25rem 1.5625rem;
  background-color: rgba(247, 124, 90, 0.05);
  font-size: 1.125rem;
  position: relative;
  text-align: left;
}

.custom--accordion .accordion-button::after {
  position: absolute;
  top: 1.25rem;
  right: 0.8125rem;
  font-size: 1.0625rem;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  background-image: none;
  color: #000;
}

.custom--accordion .accordion-button:not(.collapsed) {
  background-color: #f77c5a;
  color: #fff;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  color: #fff;
}

.custom--accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border-color: transparent;
}

.custom--accordion .accordion-body {
  padding: 1.25rem 1.5625rem;
}

.custom--accordion-two .accordion-button {
  background-color: #f3f6f9;
}

.custom--accordion-two .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.custom--accordion-two .accordion-button:not(.collapsed) {
  background-color: #f3f6f9;
}

.page-breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.9375rem;
}

.page-breadcrumb li {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.page-breadcrumb li::after {
  content: "-";
  color: #ffffff;
  margin: 0 0.3125rem;
}

.page-breadcrumb li:first-child::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f77c5a;
  margin-right: 0.375rem;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li a {
  color: #ffffff;
  text-transform: capitalize;
}

.page-breadcrumb li a:hover {
  color: #f77c5a;
}

.cmn-list li + li {
  margin-top: 0.9375rem;
}

.cmn-list li {
  position: relative;
  padding-left: 2.1875rem;
}

/* .cmn-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f058";
  font-size: 1.75rem;
  color: #f77c5a;
  margin-right: 0.5rem;
  line-height: 1;
} */

.number-list {
  list-style: decimal;
  padding-left: 1.125rem;
}

.number-list li + li {
  margin-top: 0.625rem;
}

.disc-list li + li {
  margin-top: 0.625rem;
}

.disc-list li {
  position: relative;
  padding-left: 0.9375rem;
}

.disc-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: -0.1875rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #bdbdbd;
}

.square-list li + li {
  margin-top: 10px;
}

.square-list li {
  padding-left: 25px;
  position: relative;
}

.square-list li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #e6e6e6;
}

.square-list li::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 4px;
  width: 14px;
  height: 14px;
  background-color: rgba(247, 124, 90, 0.45);
}

.caption-list li {
  display: flex;
  flex-wrap: wrap;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px dashed #c0cad5;
}

.caption-list li:first-child {
  padding-top: 0;
}

.caption-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.caption-list li .caption {
  width: 30%;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
}

@media (max-width: 480px) {
  .caption-list li .caption {
    width: 35%;
  }
}

.caption-list li .caption::after {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}

.caption-list li .value {
  width: 70%;
  padding-left: 0.9375rem;
}

@media (max-width: 480px) {
  .caption-list li .value {
    width: 65%;
  }
}

.caption-list-two {
  padding: 0.625rem 0.9375rem;
  background-color: rgba(247, 124, 90, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.caption-list-two li {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  color: #182c61;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px dashed #a1b0c1;
}

.caption-list-two li:first-child {
  padding-top: 0;
}

.caption-list-two li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.caption-list-two li .caption {
  width: 20%;
  position: relative;
  font-weight: 700;
  padding-right: 10px;
}

.caption-list-two li .caption::after {
  position: absolute;
  content: ":";
  top: 0;
  right: 0;
}

.caption-list-two li .value {
  width: 80%;
  padding-left: 20px;
}

body,
.btn--base.btn--custom,
.custom--checkbox label::before,
.header .main-menu li.menu_has_children > a::before,
.header .main-menu li .sub-menu,
.header .main-menu li .sub-menu li a,
.location-slider .location-card,
.location-slider .slick-arrow,
.trip-card,
.trip-slider .slick-dots li button,
.step-card__content,
.post-card,
.post-card__thumb img,
.sidebar .tags a,
.action-sidebar,
.gallery-card::before {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body::-webkit-scrollbar-thumb,
.preloader .rounded-circle::after,
.find-tabs .nav-item .nav-link.active,
.location-slider .slick-arrow:hover,
.trip-card__price,
.trip-slider .slick-dots li.slick-active button,
.subscribe-form button,
.tour-plan-block .title span,
.package-sidebar-widget .thumb .price,
.single-review .progress .progress-bar {
  background-color: #f77c5a;
}

.hero::before {
  background-color: #14233c;
}

.custom--accordion-two .accordion-button:not(.collapsed),
.preloader .icon,
.about-item__icon i,
.overview-item__number,
.inlne-menu li a:hover,
.package-sidebar-list li i,
.contact-item i,
.contact-item p a:hover {
  color: #f77c5a;
}

.trip-card__thumb img,
.post-card__thumb img,
.comments-list .single-comment .thumb img,
.gallery-card img,
.single-rating__thumb img,
.contact-thumb img {
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.table-tour-single,
.find-form,
.find-form__destination,
.find-form__duration,
.about-item,
.trip-card__meta li,
.trip-slider .slick-dots,
.subscribe-form,
.d-widget__icon,
.single-package-header,
.package-tab-content .cmn-list,
.package-sidebar-list,
.single-rating {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.location-slider .slick-arrow,
.about-thumb img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.table-tour-single .thumb,
.table-tour-single .thumb img,
.find-tabs .nav-item .nav-link,
.find-form,
.location-card,
.about-thumb,
.trip-card,
.step-card__content,
.testimonial-card,
.subscribe-form,
.subscribe-form button,
.d-widget,
.sidebar .widget,
.action-sidebar,
.gallery-card,
.tour-map-wrapper,
.tour-plan-block .title span,
.course-details-review,
.single-rating__thumb {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.object-fit--cover {
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.pagination {
  margin: -0.3125rem -0.4375rem;
  flex-wrap: wrap;
}

.pagination .page-item {
  margin: 0.3125rem 0.4375rem;
}

.pagination .page-item.active .page-link {
  background-color: #f77c5a;
  color: #fff;
}

.pagination .page-item .page-link {
  width: 2.8125rem;
  height: 2.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(247, 124, 90, 0.25);
  color: #464646;
}

.pagination .page-item .page-link:hover {
  background-color: #f77c5a;
  border-color: #f77c5a;
  color: #fff;
}

.pagination-md .page-item .page-link {
  width: 2.5rem;
  height: 2.5rem;
}

.pagination-sm .page-item .page-link {
  width: 2.1875rem;
  height: 2.1875rem;
  font-size: 0.875rem;
}

.shake {
  animation: shake 0.5s 1 linear;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-moz-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@-ms-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-ms-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  height: 100vh;
  overscroll-behavior: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-delay: 0.7s;
}

.preloader::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #071e3e;
  z-index: -1;
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.preloader::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #071e3e;
  z-index: -1;
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.preloader.active {
  visibility: hidden;
  opacity: 0;
}

.preloader.active::before,
.preloader.active::after {
  width: 0;
}

.preloader.active .preloader__inner {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.preloader__inner {
  transition: all 0.5s;
}

.preloader .rounded-circle {
  width: 100px;
  height: 100px;
  position: relative;
  animation: rounded 5s infinite linear;
}

.preloader .rounded-circle::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.preloader .rounded-circle::after {
  position: absolute;
  content: "";
  top: -7px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.preloader .icon {
  line-height: 1;
  font-size: 3.875rem;
  margin-top: -5rem;
  text-shadow: 0 0 10px rgba(247, 124, 90, 0.9);
}

@-webkit-keyframes rounded {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rounded {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes rounded {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

h1 {
  font-size: 3.875rem;
}

h2 {
  font-size: 2rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 1.85rem;
  }
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.375rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  h4 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Josefin Sans", sans-serif;*/
   /*font-family: "Noto Sans", sans-serif;*/
   font-family: "Roboto", sans-serif;
  color: #182c61;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-family: "Josefin Sans", sans-serif;
  color: #182c61;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.4;
  word-break: break-word;
}

p,
li,
span {
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
}

.fs--18px {
  font-size: 1.125rem !important;
}

.fs--16px {
  font-size: 1rem !important;
}

.fs--14px {
  font-size: 0.875rem !important;
}

.fs--12px {
  font-size: 0.75rem !important;
}

.h--font {
  font-family: "Josefin Sans", sans-serif !important;
}

.p--font {
  font-family: "Open Sans", sans-serif !important;
}

.fw-medium {
  font-weight: 500 !important;
}

button:focus {
  outline: none;
}

[class*="btn--"]:not(.btn--link):not(.btn--light) {
  color: #fff;
}

.btn {
  padding: 0.75rem 1.875rem;
}

.btn--primary {
  background-color: #7367f0;
}

.btn--primary:hover {
  background-color: #5e50ee;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--secondary:hover {
  background-color: #78818a;
}

.btn--success {
  background-color: #28c76f;
}

.btn--success:hover {
  background-color: #24b263;
}

.btn--danger {
  background-color: #ea5455;
}

.btn--danger:hover {
  background-color: #e73d3e;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--warning:hover {
  background-color: #ff922a;
}

.btn--info {
  background-color: #1e9ff2;
}

.btn--info:hover {
  background-color: #0d93e9;
}

.btn--light {
  background-color: #bcc7da;
}

.btn--light:hover {
  background-color: #acb9d1;
}

.btn--dark {
  background-color: #10163a;
  color: #fff;
}

.btn--dark:hover {
  background-color: #0a0e26;
  color: #fff;
}

.btn--link {
  color: #7367f0;
}

.btn--base {
  background-color: #f77c5a;
  color: #fff;
}

.btn--base:hover,
.btn--base:active {
  background-color: #d08d7a;
  color: #fff !important;
}

.btn--base.btn--custom {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -6px;
}

.btn--base.btn--custom:hover {
  outline-offset: 0;
  outline: 2px solid rgba(255, 255, 255, 0);
}

.text--btn {
  color: #f77c5a;
}

.btn-outline--primary {
  color: #7367f0;
  border-color: #7367f0;
}

.btn-outline--primary:hover {
  background-color: #7367f0;
  color: #ffffff;
}

.btn-outline--secondary {
  color: #868e96;
  border-color: #868e96;
}

.btn-outline--secondary:hover {
  background-color: #868e96;
  color: #ffffff;
}

.btn-outline--success {
  color: #28c76f;
  border-color: #28c76f;
}

.btn-outline--success:hover {
  background-color: #28c76f;
  color: #ffffff;
}

.btn-outline--danger {
  color: #ea5455;
  border-color: #ea5455;
}

.btn-outline--danger:hover {
  background-color: #ea5455;
  color: #ffffff;
}

.btn-outline--warning {
  color: #ff9f43;
  border-color: #ff9f43;
}

.btn-outline--warning:hover {
  background-color: #ff9f43;
  color: #ffffff;
}

.btn-outline--info {
  color: #1e9ff2;
  border-color: #1e9ff2;
}

.btn-outline--info:hover {
  background-color: #1e9ff2;
  color: #ffffff;
}

.btn-outline--light {
  color: #bcc7da;
  border-color: #bcc7da;
}

.btn-outline--light:hover {
  background-color: #bcc7da;
  color: #ffffff;
}

.btn-outline--dark {
  color: #10163a;
  border-color: #10163a;
}

.btn-outline--dark:hover {
  background-color: #10163a;
  color: #ffffff;
}

.btn-outline--base {
  color: #f77c5a;
  border: 1px solid #f77c5a;
}

.btn-outline--base:hover {
  background-color: #f77c5a;
  color: #fff;
}

.btn-shadow--primary {
  box-shadow: 0 0 6px 1px rgba(115, 103, 240, 0.35);
}

.btn-shadow--secondary {
  box-shadow: 0 0 6px 1px rgba(134, 142, 150, 0.35);
}

.btn-shadow--success {
  box-shadow: 0 0 6px 1px rgba(40, 199, 111, 0.35);
}

.btn-shadow--danger {
  box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.35);
}

.btn-shadow--warning {
  box-shadow: 0 0 6px 1px rgba(255, 159, 67, 0.35);
}

.btn-shadow--info {
  box-shadow: 0 0 6px 1px rgba(30, 159, 242, 0.35);
}

.btn-shadow--light {
  box-shadow: 0 0 6px 1px rgba(188, 199, 218, 0.35);
}

.btn-shadow--dark {
  box-shadow: 0 0 6px 1px rgba(16, 22, 58, 0.35);
}

.btn-shadow--base {
  box-shadow: 0 0 6px 1px rgba(247, 124, 90, 0.35);
}

.btn--capsule {
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.icon-btn {
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: #f77c5a;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon-btn:hover {
  color: #fff;
}

.btn--group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.btn--group *[class*="btn"] {
  margin: 0.3125rem 0.625rem;
  align-items: center;
}

.btn--group *[class*="btn"].d-flex {
  padding: 0.5rem 2.1875rem;
}

.btn--group.style--two {
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}

.btn--group.style--two *[class*="btn"] {
  margin: 0.1875rem 0.3125rem;
}

[class*="btn"].btn-md {
  padding: 0.625rem 1.25rem;
}

[class*="btn"].btn-sm {
  padding: 0.375rem 0.625rem;
}

.badge--primary {
  background-color: rgba(115, 103, 240, 0.15);
  border: 1px solid #7367f0;
  color: #7367f0;
}

.badge--secondary {
  background-color: rgba(134, 142, 150, 0.15);
  border: 1px solid #868e96;
  color: #868e96;
}

.badge--success {
  background-color: rgba(40, 199, 111, 0.15);
  border: 1px solid #28c76f;
  color: #28c76f;
}

.badge--danger {
  background-color: rgba(234, 84, 85, 0.15);
  border: 1px solid #ea5455;
  color: #ea5455;
}

.badge--warning {
  background-color: rgba(255, 159, 67, 0.15);
  border: 1px solid #ff9f43;
  color: #ff9f43;
}

.badge--info {
  background-color: rgba(30, 159, 242, 0.15);
  border: 1px solid #1e9ff2;
  color: #1e9ff2;
}

.badge--light {
  background-color: rgba(188, 199, 218, 0.15);
  border: 1px solid #bcc7da;
  color: #bcc7da;
}

.badge--dark {
  background-color: rgba(16, 22, 58, 0.15);
  border: 1px solid #10163a;
  color: #10163a;
}

.badge--base {
  background-color: rgba(247, 124, 90, 0.15);
  border: 1px solid #f77c5a;
  color: #f77c5a;
}

.custom--table {
  background-color: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.custom--table.white-space-nowrap th {
  white-space: nowrap;
}

.custom--table thead {
  background-color: #071e3e;
}

.custom--table thead th {
  border-top: none;
  padding: 0.625rem 1.25rem;
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
}

.custom--table thead th:first-child {
  border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  text-align: left;
}

.custom--table thead th:last-child {
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  text-align: right;
}

.custom--table tbody td {
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.9375rem 1.25rem;
  color: #464646;
  vertical-align: middle;
  font-size: 0.9375rem;
  text-align: center;
}

.custom--table tbody td:first-child {
  text-align: left;
}

.custom--table tbody td:last-child {
  text-align: right;
}

.custom--table tbody tr:nth-child(even) {
  background-color: #afb1b50d;
}

.custom--table tbody tr:last-child td {
  border-bottom: none;
}

.table-tour-single {
  align-items: center;
}

.table-tour-single .thumb {
  width: 65px;
  height: 45px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid #c0cad5;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.table-tour-single .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.table-tour-single .content {
  padding-left: 0.9375rem;
}

[data-label] {
  position: relative;
}

[data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 700;
  color: #000000;
  top: 0;
  left: 0;
  padding: 0.8125rem 0.9375rem;
  display: none;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .table-responsive--md thead {
    display: none;
  }

  .table-responsive--md tbody tr:nth-child(odd) {
    background-color: #fff;
  }

  .table-responsive--md tr th,
  .table-responsive--md tr td {
    display: block;
    padding-left: 45%;
    text-align: right !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .table-responsive--md tr th:first-child,
  .table-responsive--md tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--md [data-label]::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .table-responsive--sm thead {
    display: none;
  }

  .table-responsive--sm tbody tr:nth-child(odd) {
    background-color: aliceblue;
  }

  .table-responsive--sm tr th,
  .table-responsive--sm tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .table-responsive--sm tr th:first-child,
  .table-responsive--sm tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--sm [data-label]::before {
    display: block;
  }
}

@media (max-width: 1199px) {
  *[class*="table-responsive--"].data-label--none tr th,
  *[class*="table-responsive--"].data-label--none tr td {
    padding-left: 0.75rem;
  }
}

.form-group {
  margin-bottom: 0.9375rem;
}

.form--control {
  padding: 0.625rem 1.25rem;
  border: 1px solid #f77c5a;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #000;
  height: 3.125rem;
}

.form--control:focus {
  background-color: #fff;
  border-color: #f77c5a !important;
  box-shadow: 0 0 5px rgba(247, 124, 90, 0.35);
  color: #000;
}

.form--control:placeholder-shown {
  border-color: #b1bdcb;
  color: #464646;
}

.form--control[readonly] {
  background-color: #fff;
}

.form--control.style--two {
  border-width: 0 0 1px 0;
  padding: 0.625rem 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: "Josefin Sans", sans-serif;
  border-bottom-color: #999;
}

.form--control.style--two:focus {
  box-shadow: none;
}

.form--control.form-control-sm {
  height: 35px;
}

.select {
  padding: 0.625rem 1.25rem;
  width: 100%;
  border: 1px solid #b1bdcb;
  cursor: pointer;
  color: #464646;
  background-color: #fff;
  height: 3.125rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.select option {
  padding: 0.625rem 0;
  display: block;
  border-top: 1px solid #e5e5e5;
}

.select.style--trans {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.select.style--trans option {
  color: #363636;
}

.select.select-sm {
  height: 2.1875rem;
  font-size: 0.875rem;
  padding: 0.3125rem;
}

textarea {
  min-height: 9.375rem !important;
  resize: none;
  width: 100%;
}

label {
  color: #535353;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.input-group > .form--control,
.input-group > .select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group select {
  background-color: transparent;
  border: none;
}

.custom-radio {
  position: relative;
  padding-left: 0;
}

.custom-radio input[type="radio"] {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  cursor: pointer;
}

.custom-radio input[type="radio"]:checked ~ label::before {
  border-width: 2px;
  border-color: #f77c5a;
}

.custom-radio input[type="radio"]:checked ~ label::after {
  opacity: 1;
}

.custom-radio label {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
}

.custom-radio label::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #888888;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: #f77c5a;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-radio.style--two label::before {
  top: 5px;
}

.custom-radio.style--two label::after {
  top: 9px;
}

.custom--checkbox {
  padding-left: 1.5625rem;
}

.custom--checkbox input {
  display: none;
}

.custom--checkbox input:checked ~ label::before {
  content: "\f14a";
  color: #f77c5a;
}

.custom--checkbox label {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.custom--checkbox label::before {
  position: absolute;
  content: "\f04d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 3px;
  left: -1.5625rem;
  font-size: 1.25rem;
  line-height: 1;
}

.wrong-info .form--control {
  border-color: #ea5455 !important;
  box-shadow: 0 0 6px 1px rgba(234, 84, 85, 0.3) !important;
}

.select2-basic ~ .select2-container {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: 50px;
}

.select2-container .select2-dropdown {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.select2-container .selection,
.select2-container .select2-selection--single,
.select2-container .select2-selection__rendered {
  display: block;
}

.select2-container .select2-selection--single {
  height: 50px;
  border-color: #b1bdcb;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  padding-left: 1.25rem;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 50px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #f77c5a;
}

.select2-dropdown ::-webkit-scrollbar {
  width: 0.5rem;
}

.select2-dropdown ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.select2-dropdown ::-webkit-scrollbar-thumb {
  background-color: #14233c;
}

.custom--card {
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.custom--card .card-header {
  background-color: #fff;
  padding: 0.625rem 0.9375rem;
}

.custom--card .card-body {
  padding: 0.9375rem;
}

.modal {
  z-index: 999999;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
}

.header.menu-fixed .header__top {
  display: none;
}

.header.menu-fixed {
  top: 0;
}

.header.menu-fixed .header-top {
  display: none;
}

.header.menu-fixed .header__bottom {
  background-color: #14233c;
}

.header__bottom {
  padding: 0.9375rem 0;
}

@media (max-width: 1199px) {
  .header__bottom {
    padding: 0.625rem 0;
  }
}

.header .site-logo img {
  max-width: 10.9375rem;
  max-height: 3.75rem;
}

@media (max-width: 1199px) {
  .header .site-logo img {
    max-width: 9.375rem;
  }
}

.header .main-menu {
  margin-left: 4.375rem;
}

@media (max-width: 1199px) {
  .header .main-menu {
    margin-left: 0;
    padding: 0.9375rem 0;
  }
}

.header .main-menu li {
  position: relative;
}

@media (max-width: 1199px) {
  .header .main-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.header .main-menu li:last-child a {
  padding-right: 0;
}

.header .main-menu li.menu_has_children {
  position: relative;
}

.header .main-menu li.menu_has_children.open > .sub-menu {
  display: block;
}

.header .main-menu li.menu_has_children > a {
  padding-right: 1.5625rem;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a {
    display: block;
  }
}

.header .main-menu li.menu_has_children > a::before {
  position: absolute;
  content: "\f067";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 15px;
  right: 0;
  color: #fff;
}

@media (max-width: 1199px) {
  .header .main-menu li.menu_has_children > a::before {
    display: block;
    top: 0.5625rem;
    color: #fff;
  }
}

.header .main-menu li.menu_has_children:hover > a::before {
  content: "\f068";
  color: #f77c5a;
}

.header .main-menu li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;

  padding: 0.9375rem 0.9375rem 0.9375rem 0;
  font-size: 0.9375rem;
  color: #fff;
}

@media (max-width: 1199px) {
  .header .main-menu li a {
    color: #fff;
    padding: 0.5rem 0;
    display: block;
  }
}

.header .main-menu li a:hover,
.header .main-menu li a:focus {
  color: #d7d7d7 !important;
}

.header .main-menu li .sub-menu {
  position: absolute;
  width: 220px;
  top: 105%;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  padding: 0.625rem 0;
  -webkit-box-shadow: 0px 18px 54px -8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 25px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    position: static;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    background-color: #14233c;
    border: none;
  }
}

.header .main-menu li .sub-menu li {
  border-bottom: 1px dashed #e5e5e5;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu li {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

.header .main-menu li .sub-menu li:last-child {
  border-bottom: none;
}

.header .main-menu li .sub-menu li a {
  padding: 0.5rem 1.5625rem;
  display: block;
  /* color: #464646; */
  position: relative;
  font-size: 0.9375rem;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .header .main-menu li .sub-menu li a {
    color: #fff;
  }
}

.header .main-menu li .sub-menu li a:hover {
  background-color: rgba(247, 124, 90, 0.05);
  color: #f77c5a;
}

.header .main-menu li .sub-menu li + li {
  margin-left: 0;
}

.header .main-menu li:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  /*color:#d7d7d7;*/
}

.header .main-menu li + li {
  margin-left: 1.25rem;
}

@media (max-width: 1199px) {
  .header .main-menu li + li {
    margin-left: 0;
  }
}

.header .main-menu .sub-menu li.menu_has_children > a::before {
  top: 9px;
  right: 8px;
}

.header .main-menu .sub-menu li.menu_has_children > .sub-menu {
  left: 100%;
  top: 0;
}

@media (max-width: 1199px) {
  .header .main-menu .sub-menu li.menu_has_children > .sub-menu {
    padding-left: 15px;
  }
}

.header .nav-right {
  padding-left: 3.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1199px) {
  .header .nav-right {
    padding-left: 0;
  }
}

.language-select {
  background-color: transparent;
  color: #fff;
  height: 46px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 5px 10px;
}

@media (max-width: 1199px) {
  .language-select {
    color: #fff;
  }
}

.language-select option {
  background-color: #14233c;
  color: #fff;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    margin-top: 20px !important;
    background-color: #071e3e;
    padding: 0 1.875rem 1.25rem 1.875rem;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    max-height: 40rem;
    overflow: auto;
  }
}

.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu-toggle {
  margin: 10px 0;
  position: relative;
  display: block;
  width: 2.1875rem;
  height: 1.25rem;
  cursor: pointer;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #fff;
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: -webkit-transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  -moz-transition: -webkit-transform 0.25s ease-in-out;
  -ms-transition: -webkit-transform 0.25s ease-in-out;
}

@media (max-width: 1199px) {
  .menu-toggle:before,
  .menu-toggle:after {
    background-color: #fff;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hero {
  padding-top: calc(12.5rem + 66px);
  padding-bottom: 15.625rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero {
    padding-top: 10rem;
  }
}

.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -1;
}

.hero__title {
  font-size: 4.125rem;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 2.25rem;
  }
}

.inner-hero {
  padding-top: calc(9.375rem + 66px);
  padding-bottom: 4.375rem;
  position: relative;
  z-index: 1;
}

.inner-hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14233c;
  opacity: 0.65;
  z-index: -1;
}

.search-area {
  margin-top: -220px;
  position: relative;
  z-index: 1;
}

.find-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 30px;
}

.find-tabs .nav-item {
  margin: 0 10px;
}

.find-tabs .nav-item .nav-link {
  padding: -0.375rem 1.25rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.find-tabs .nav-item .nav-link p {
  font-size: 0.875rem;
}

.find-tabs .nav-item .nav-link i {
  font-size: 24px;
  height: 30px;
}

.find-form {
  box-shadow: 0 5px 25px rgba(7, 30, 62, 0.15);
  background-color: #fff;
  padding: 1.25rem 1.875rem;
  align-items: flex-end;
}

.find-form label {
  color: #797979;
}

.find-form .form--control {
  background-color: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  border-bottom: 1px solid #c0cad5;
  padding: 0.625rem 0;
}

.find-form .form--control:focus {
  box-shadow: none;
}

.find-form .select2-container .select2-selection--single {
  border: none;
  border-bottom: 1px solid #c0cad5;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.find-form
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}

.find-form__destination {
  align-items: center;
  width: calc((100% / 2) - (155px / 2));
}

@media (max-width: 1199px) {
  .find-form__destination {
    width: 100%;
  }
}

.find-form__destination .left {
  width: calc((100% / 1.1) - (522px / 2));
}

@media (max-width: 1399px) {
  .find-form__destination .left {
    width: calc((100% / 1.1) - (450px / 2));
  }
}
.find-form__destination .right {
  width: calc((100% / 2) - (84px / 2));
}

@media (max-width: 1199px) {
  .find-form__destination .left {
    width: calc((100% / 2) - (350px / 2));
  }

  .find-form__destination .right {
    width: calc((100% / 2) - (55px / 2));
  }
}

@media (max-width: 991px) {
  .find-form__destination .left {
    width: calc((100% / 2) - (450px / 2));
  }
}

@media (max-width: 460px) {
  .find-form__destination .left {
    width: 100%;
  }
}

.find-form__destination .icon {
  width: 50px;
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 460px) {
  .find-form__destination .icon {
    display: none;
  }
}

.find-form__destination .icon img {
  width: 20px;
}

@media (max-width: 460px) {
  .find-form__destination .right {
    width: 100%;
    margin-top: 20px;
  }
}

.find-form__duration {
  width: calc((100% / 2) - (155px / 2));
  align-items: center;
  padding: 0 1.25rem;
}

@media (max-width: 1199px) {
  .find-form__duration {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}

.find-form__duration .left {
  width: calc((100% / 2) - (50px / 2));
}

@media (max-width: 460px) {
  .find-form__duration .left {
    width: 100%;
  }
}

.find-form__duration .icon {
  width: 50px;
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 460px) {
  .find-form__duration .icon {
    display: none;
  }
}

.find-form__duration .icon img {
  width: 20px;
}

.find-form__duration .right {
  width: calc((100% / 2) - (50px / 2));
}

@media (max-width: 460px) {
  .find-form__duration .right {
    width: 100%;
    margin-top: 20px;
  }
}

.find-form__btn {
  width: 155px;
}

@media (max-width: 1199px) {
  .find-form__btn {
    width: 100%;
    margin-top: 20px;
  }
}

.location-section {
  position: relative;
  z-index: 1;
  background-position-y: top;
  background-position-x: 0px;
}

.location-card {
  position: relative;
  overflow: hidden;
}

.location-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff7e5f;
  background: -webkit-linear-gradient(
    to top,
    rgba(20, 35, 60, 0.65),
    rgba(20, 35, 60, 0.1)
  );
  background: linear-gradient(
    to top,
    rgba(20, 35, 60, 0.65),
    rgba(20, 35, 60, 0.1)
  );
}

.location-card .overlay-content {
  position: absolute;
  padding: 1.25rem;
  left: 0;
  bottom: 0;
  width: 100%;
}

.location-card .overlay-content .top,
.location-card .overlay-content .bottom {
  width: 100%;
}

.location-card .ratings i {
  color: #fac42d;
}

.location-card__price {
  font-size: 1rem;
  line-height: 1.1;
}

.location-name {
  display: block;
  margin-bottom: 5px;
}

/*.location-slider .slick-list {*/
/*  margin: 0 -0.625rem;*/
/*}*/

.location-slider .single-slide {
  margin: 0 0.625rem;
}

.location-slider .location-card {
  height: 275px;
}

.location-slider .location-card:hover {
  -webkit-transform: scale(1.03, 1.03);
  -ms-transform: scale(1.03, 1.03);
  transform: scale(1.03, 1.03);
}

.location-slider .location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.location-slider .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #464646;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  top: 45%;
  z-index: 1;
}

.location-slider .slick-arrow:hover {
  color: #ffff;
}

.location-slider .slick-arrow.prev {
  left: 15px;
}

.location-slider .slick-arrow.next {
  right: 15px;
}

.about-thumb {
  padding: 0.9375rem;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.about-item__icon {
  width: 40px;
}

.about-item__icon i {
  font-size: 2.25rem;
}

.about-item__content {
  padding-left: 0.9375rem;
  width: calc(100% - 40px);
  text-align: left;
}

.line-area {
  position: relative;
  margin-top: 100px;
}

@media (max-width: 575px) {
  .line-area {
    margin-top: 50px;
  }
}

.overview-single + .overview-single {
  margin-top: 30px;
}

.overview-single {
  position: relative;
}

.overview-single::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 4px solid #c0cad5;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .overview-single::after {
    display: none;
  }
}

.overview-single:nth-child(1)::after {
  top: -35px;
}

.overview-single:nth-child(2) {
  margin-top: -40px;
}

@media (max-width: 1650px) {
  .overview-single:nth-child(2) {
    margin-top: -20px;
  }
}

@media (max-width: 575px) {
  .overview-single:nth-child(2) {
    margin-top: 0;
  }
}

.overview-single:nth-child(2)::after {
  top: -32px;
}

@media (max-width: 1650px) {
  .overview-single:nth-child(2)::after {
    top: -20px;
  }
}

.overview-single:nth-child(3) {
  margin-top: 20px;
}

@media (max-width: 575px) {
  .overview-single:nth-child(3) {
    margin-top: 0;
  }
}

.overview-single:nth-child(3)::after {
  top: -40px;
}

.overview-single:nth-child(4) {
  margin-top: -15px;
}

@media (max-width: 1650px) {
  .overview-single:nth-child(4) {
    margin-top: 0;
  }
}

.overview-single:nth-child(4)::after {
  top: -28px;
}

@media (max-width: 1650px) {
  .overview-single:nth-child(4)::after {
    top: -15px;
  }
}

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

.overview-item__number {
  font-size: 4.5rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .overview-item__number {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .overview-item__number {
    font-size: 2.25rem;
  }
}

.overview-item__caption {
  font-weight: 500;
}

@media (max-width: 767px) {
  .overview-item__caption {
    font-size: 0.875rem;
  }
}

.trip-card {
  background-color: #fff;
  padding: 0.75rem;
  box-shadow: 0 5px 15px rgba(7, 30, 62, 0.15);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.trip-card:hover {
  box-shadow: 0 10px 20px rgba(7, 30, 62, 0.25);
}

.trip-card__thumb {
  position: relative;
  height: 250px;
}

.trip-card__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.trip-card__price {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: inline-block;
  padding: 0.3125rem 1.5625rem;
  color: #fff;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  box-shadow: 0 5px 15px 2px rgba(247, 124, 90, 0.4);
  font-size: 1rem;
  font-weight: 600;
}

.trip-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
}

.trip-card__content {
  padding: 2.1875rem 0.625rem 0.625rem 0.625rem;
}

.trip-card__meta li + li {
  margin-top: 7px;
}

.trip-card__meta li {
  align-items: center;
  font-size: 0.875rem;
}

.trip-card__meta li i {
  font-size: 1.125rem;
  width: 30px;
  line-height: 1;
}

.trip-card__meta li p {
  width: calc(100% - 30px);
}

.trip-slider .slick-list {
  margin: -1.25rem -0.9375rem;
}

.trip-slider .single-slide {
  padding: 1.25rem 0.9375rem;
}

.trip-slider .slick-dots {
  justify-content: center;
  margin-top: 20px;
}

.trip-slider .slick-dots li {
  margin: 0 5px;
}

.trip-slider .slick-dots li button {
  width: 20px;
  height: 6px;
  font-size: 0;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.step-card:hover .step-card__content {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 5 20px rgba(0, 0, 0, 0.12);
}

.step-card__number {
  font-size: 3.875rem;
  font-weight: 700;
  text-align: right;
  line-height: 1;
  color: #4d5767;
}

.step-card__content {
  padding: 1.875rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: -15px;
  position: relative;
  border-radius: 0px;
}

.step-card__content .line-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.step-card__content .line-shape img {
  max-height: 200px;
}

.step-card__content .icon-image {
  max-height: 50px;
}

.testimonial-card {
  padding: 1.875rem;
}

.ratings {
  color: #fac42d;
}

.testimonial-slider .slick-list {
  margin: 0 -0.625rem;
}

.testimonial-slider .single-slide {
  margin: 0 0.625rem;
}

.post-card {
  padding: 0.8125rem;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(7, 30, 62, 0.075);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  height: 100%;
}

.post-card:hover {
  box-shadow: 0 10px 35px rgba(7, 30, 62, 0.1);
}

.post-card:hover .post-card__thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.post-card__thumb {
  overflow: hidden;
  height: 200px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
}

.post-card__content {
  padding: 1.25rem 0.625rem 0.625rem 0.625rem;
}

.post-card__meta li a {
  font-size: 0.9375rem;
  color: #464646;
}

.post-card__meta li a:hover {
  color: #f77c5a;
}

.blog-details-area .blog-details-thumb {
  margin-bottom: 30px;
}

.blog-details-content .blog-details-title {
  font-size: 2rem;
}

.blog-details-content p {
  margin-top: 20px;
}

.blog-details-content blockquote {
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 30px;
  background-color: #f5f7fa;
}

.blog-details-content blockquote p {
  margin-top: 0;
  font-size: 18px;
  font-style: italic;
}

.blog-details-content .inner-title {
  margin-top: 20px;
}

.blog-details-content .row .inner-title {
  margin-top: 0;
}

.blog-details-content .cmn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
}

.blog-details-content .cmn-list li {
  width: 50%;
  padding-right: 15px;
}

@media (max-width: 575px) {
  .blog-details-content .cmn-list li {
    width: 100%;
  }
}

.blog-details-content .cmn-list li + li {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .blog-details-content .inner-thumb {
    margin-bottom: 20px;
  }
}

.post-meta {
  display: flex;
  margin: -5px -15px;
}

.post-meta li {
  padding: 5px 15px;
}

.post-meta li a {
  font-size: 0.9375rem;
  color: #464646;
}

.post-meta li a:hover {
  color: #f77c5a;
}

.blog-details-footer {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-details-footer .share-caption {
  font-weight: 700;

  margin-top: 5px;
}

.blog-details-footer .share-post-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: -5px -7px;
}

.blog-details-footer .share-post-links li {
  margin: 5px 7px;
}

.blog-details-footer .share-post-links li a {
  padding: 6px 15px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog-details-footer .share-post-links li a.twitter {
  background-color: #55acee;
}

.blog-details-footer .share-post-links li a.facebook {
  background-color: #3b5998;
}

.blog-details-footer .share-post-links li a i {
  margin-right: 7px;
}

.reply-btn {
  padding: 5px 20px;
  background-color: #f77c5a;
  color: #000;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  float: right;
  margin-top: -30px;
}

.reply-btn:hover {
  color: #ffffff;
}

.comments-area {
  margin-top: 50px;
}

.comments-area .title {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.comments-list .single-comment {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}

.comments-list .single-comment:first-child {
  padding-top: 0;
}

.comments-list .single-comment:last-child {
  padding-bottom: 0;
}

.comments-list .single-comment .thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.comments-list .single-comment .thumb img {
  width: 100%;
  height: 100%;
}

.comments-list .single-comment .content {
  flex: 0 0 calc(100% - 80px);
  -ms-flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  padding-left: 20px;
}

@media (max-width: 480px) {
  .comments-list .single-comment .content {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}

.comments-list .single-comment .content .name {
  text-transform: capitalize;
}

.comments-list .single-comment .content .date {
  font-size: 14px;
}

.comments-list .single-comment .content p {
  margin-top: 5px;
}

.comment-form-area {
  margin-top: 50px;
}

.comment-form-area .title {
  margin-bottom: 30px;
}

.comment-form-area .comment-form .form-group {
  margin-bottom: 30px;
}

.comment-form-area .comment-form .submit-btn {
  text-transform: none;
}

.subscribe-wrapper {
  padding: 5rem 3.125rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .subscribe-wrapper {
    padding: 3.125rem 1.875rem;
  }
}

@media (max-width: 575px) {
  .subscribe-wrapper {
    padding: 1.875rem 0.625rem;
  }
}

.subscribe-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 30, 62, 0.65);
  z-index: -1;
}

.subscribe-wrapper .paper-plane {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
}

.subscribe-wrapper .paper-plane img {
  max-height: 200px;
}

.subscribe-form {
  padding: 0.9375rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  justify-content: space-between;
}

.subscribe-form .form--control {
  width: calc(100% - 80px);
  background-color: transparent;
  color: #fff;
  border: none;
  padding-left: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.subscribe-form .form--control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form .form--control:focus {
  box-shadow: none;
}

.subscribe-form button {
  width: 60px;
  color: #fff;
  font-size: 1.25rem;
}

.d-widget {
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  min-height: 200px;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.d-widget.bg-1 {
  background: linear-gradient(115deg, #000 0%, #00c508 55%, #000 100%),
    linear-gradient(115deg, #0057ff 0%, #020077 100%),
    conic-gradient(from 110deg at -5% 35%, #000 0deg, #faff00 360deg),
    conic-gradient(
      from 220deg at 30% 30%,
      red 0deg,
      blue 220deg,
      #240060 360deg
    ),
    conic-gradient(
      from 235deg at 60% 35%,
      #0089d7 0deg,
      blue 180deg,
      #240060 360deg
    );
  background-blend-mode: soft-light, soft-light, overlay, screen, normal;
}

.d-widget.bg-2 {
  background: linear-gradient(45deg, #000850 0%, #000320 100%),
    radial-gradient(100% 225% at 100% 0%, #ff6928 0%, #000 100%),
    linear-gradient(225deg, #ff7a00 0%, #000 100%),
    linear-gradient(
      135deg,
      #cdffeb 10%,
      #cdffeb 35%,
      #009f9d 35%,
      #009f9d 60%,
      #07456f 60%,
      #07456f 67%,
      #0f0a3c 67%,
      #0f0a3c 100%
    );
  background-blend-mode: screen, overlay, hard-light, normal;
}

.d-widget.bg-3 {
  background: radial-gradient(100% 225% at 0% 0%, #de3e3e 0%, #17115c 100%),
    radial-gradient(100% 225% at 100% 0%, #ff9040 0%, red 100%),
    linear-gradient(180deg, #ce63b7 0%, #ed6283 100%),
    radial-gradient(100% 120% at 75% 0%, #a74600 0%, #000 100%),
    linear-gradient(310deg, #0063d8 0%, #16009a 50%);
  background-blend-mode: overlay, color-dodge, color-burn, color-dodge, normal;
}

.d-widget.bg-4 {
  background: linear-gradient(123deg, #fff 0%, #00b2ff 100%),
    linear-gradient(236deg, #baff99 0%, #005e64 100%),
    linear-gradient(180deg, #fff 0%, #002a5a 100%),
    linear-gradient(
      225deg,
      #0094ff 20%,
      #bff4ed 45%,
      #280f34 45%,
      #280f34 70%,
      #ff004e 70%,
      #e41655 85%,
      #b30753 85%,
      #b30753 100%
    ),
    linear-gradient(
      135deg,
      #0e0220 15%,
      #0e0220 35%,
      #e40475 35%,
      #e40475 60%,
      #48e0e4 60%,
      #48e0e4 68%,
      #d7fbf6 68%,
      #d7fbf6 100%
    );
  background-blend-mode: overlay, overlay, overlay, darken, normal;
}

.d-widget__icon {
  justify-content: space-between;
  align-items: flex-start;
}

.d-widget__icon i {
  font-size: 2.625rem;
  line-height: 1;
}

.d-widget .view-all {
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  background-color: #fff;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  color: #464646;
}

.d-widget__number {
  justify-content: center;
  font-size: 2rem;
}

.d-widget .caption {
  padding-top: 0.3125rem;
  margin-top: 0.625rem;
  border-top: 1px solid rgba(192, 202, 213, 0.5);
}

.sidebar {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}

.sidebar .widget + .widget {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .sidebar .widget + .widget {
    margin-top: 30px;
  }
}

.sidebar .widget {
  padding: 20px;
  border: 1px solid #c0cad5;
  background-color: #fff;
}

.sidebar .widget .search-form {
  position: relative;
}

.sidebar .widget .search-form input {
  width: 100%;
}

.sidebar .widget .search-form .search-btn {
  position: absolute;
  color: #f77c5a;
  background-color: transparent;
  top: 0;
  right: 0;
  font-size: 18px;
  color: #464646;
  width: 50px;
  height: 100%;
}

.sidebar .widget .widget__title {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

.sidebar .widget .widget__title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #f77c5a;
}

.sidebar .widget .map iframe {
  width: 100%;
}

.sidebar .search--widget {
  padding: 0;
  border: none;
}

.sidebar .list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar .list li:first-child {
  padding-top: 0;
}

.sidebar .list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .list li .caption {
  font-weight: 600;
}

.sidebar .list li .caption::after {
  content: " :";
}

.sidebar .list li .info {
  float: right;
}

.sidebar .categories__list li:first-child a {
  padding-top: 0;
}

.sidebar .categories__list li:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .categories__list li a {
  display: block;
  color: #464646;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar .categories__list li a span {
  float: right;
}

.sidebar .categories__list li a span::before {
  content: "(";
}

.sidebar .categories__list li a span::after {
  content: ")";
}

.sidebar .archive__list li:first-child a {
  padding-top: 0;
}

.sidebar .archive__list li:last-child a {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .archive__list li a {
  display: block;
  color: #464646;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar .archive__list li a:hover {
  color: #f77c5a;
}

.sidebar .archive__list li a span {
  float: right;
}

.sidebar .archive__list li a span::before {
  content: "(";
}

.sidebar .archive__list li a span::after {
  content: ")";
}

.sidebar .small-post-list .small-post {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar .small-post-list .small-post:first-child {
  padding-top: 0;
}

.sidebar .small-post-list .small-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .small-post-list .small-post__thumb {
  width: 58px;
}

.sidebar .small-post-list .small-post__content {
  width: calc(100% - 58px);
  padding-left: 20px;
}

.sidebar .small-post-list .small-post__content .post__title a {
  font-size: 16px;
  font-weight: 600;
}

.sidebar .tags {
  margin: -5px -2px;
}

.sidebar .tags a {
  font-size: 16px;
  font-weight: 400;
  color: #464646;
  padding: 8px 20px;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 5px 2px;
  text-transform: capitalize;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.sidebar .tags a:hover {
  background-color: #f77c5a;
  color: #ffffff;
  border-color: #f77c5a;
}

.action-sidebar {
  background-color: #fff;
}

@media (max-width: 991px) {
  .action-sidebar {
    padding: 30px;
    width: 350px;
    position: fixed;
    top: 100px;
    left: -105%;
    z-index: 99999;
    max-width: 100%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 75px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: darkgrey #e7e7e7;
  }

  .action-sidebar::-webkit-scrollbar {
    width: 5px;
  }

  .action-sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }

  .action-sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
  }

  .action-sidebar.active {
    left: 0;
  }
}

.action-widget {
  padding: 20px 0;
  border-bottom: 1px solid #dfe4e9;
}

.action-widget:first-child {
  padding-top: 0;
}

.action-widget:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.action-widget__title {
  font-size: 1rem;
  color: #182c61;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.action-widget__title::after {
  position: absolute;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  top: 0;
  right: 0;
  font-size: 0.875rem;
}

.action-widget__body {
  margin-top: 0.9375rem;
}

.action-widget__body.scroll--active {
  max-height: 200px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: darkgrey #e7e7e7;
}

.action-widget__body.scroll--active::-webkit-scrollbar {
  width: 5px;
}

.action-widget__body.scroll--active::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.action-widget__body.scroll--active::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.search-form-inline {
  position: relative;
}

.search-form-inline input {
  padding-left: 10px;
  padding-right: 30px;
}

.search-form-inline__btn {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
}

.action-sidebar-close {
  width: 30px;
  height: 30px;
  background-color: #f77c5a;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}

@media (max-width: 991px) {
  .action-sidebar-close {
    display: inline-block;
  }
}

.action-sidebar-open {
  padding: 0.5rem 1.5625rem;
  background-color: #f77c5a;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: none;
}

@media (max-width: 991px) {
  .action-sidebar-open {
    display: inline-flex;
  }
}

.action-sidebar-open i {
  font-size: 1.375rem;
  margin-right: 5px;
}

.property-sidebar {
  position: sticky;
  top: 100px;
}

.property-widget {
  padding: 0.9375rem;
  background-color: #fff;
  border: 2px solid #c0cad5;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.agent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.agent__thumb {
  width: 70px;
}

.agent__content {
  width: calc(100% - 70px);
  padding-left: 1.25rem;
}

.agent-form .form--control {
  height: 45px;
}

.footer__overview {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__top {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 575px) {
  .footer__top {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.footer__bottom {
  padding: 0.9375rem 0;
  position: relative;
  z-index: 1;
}

.footer__bottom::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #071e3e;
  opacity: 0.45;
  z-index: -1;
}

.footer-logo img {
  max-width: 150px;
  max-height: 70px;
}

.inlne-menu {
  margin: -0.3125rem -0.625rem;
}

.inlne-menu li {
  padding: 0.3125rem 0.625rem;
}

.inlne-menu li a {
  color: #fff;
}

.footer-card {
  max-height: 30px;
}

.single-package-header {
  min-height: 550px;
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  padding-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .single-package-header {
    min-height: 400px;
  }
}

.single-package-header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bdc3c7;
  background: -webkit-linear-gradient(
    to top,
    rgba(7, 30, 62, 0.85),
    rgba(7, 30, 62, 0.45)
  );
  background: linear-gradient(
    to top,
    rgba(7, 30, 62, 0.85),
    rgba(7, 30, 62, 0.45)
  );
  z-index: -1;
}

.single-package-content .title {
  font-size: 3rem;
}

@media (max-width: 575px) {
  .single-package-content .title {
    font-size: 2.25rem;
  }
}

.gallery-card {
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 250px;
}

.gallery-card:hover::before {
  opacity: 0.65;
}

.gallery-card:hover .view-thumb {
  opacity: 1;
  visibility: visible;
}

.gallery-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #071e3e;
  opacity: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
}

.gallery-card .view-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.package-tab-content .cmn-list {
  margin: -10px -15px -10px 0;
}

.package-tab-content .cmn-list li + li {
  margin-top: 0;
}

.package-tab-content .cmn-list li {
  width: 50%;
      padding: 4px 15px 0px 30px;
}

@media (max-width: 575px) {
  .package-tab-content .cmn-list li {
    width: 100%;
  }
}

.package-tab-content .cmn-list li::before {
  top: 12px;
  font-size: 1.5rem;
}

.tour-map-wrapper {
  padding: 0.9375rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.tour-map-wrapper #tour-map {
  width: 100%;
  height: 450px;
}

.tour-plan-block + .tour-plan-block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #14233c33;
}

.tour-plan-block .title span {
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
  padding: 0.375rem 1.25rem;
  margin-right: 10px;
}

.tour-plan-block__content {
  padding-left: 115px;
}

@media (max-width: 460px) {
  .tour-plan-block__content {
    padding-left: 0;
  }
}

.package-sidebar-widget {
  padding: 0.9375rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background-color: #14233c;
  margin-top: -130px;
  position: sticky;
  z-index: 1;
  top: 120px;
}

@media (max-width: 991px) {
  .package-sidebar-widget {
    margin-top: 20px;
  }
}

.package-sidebar-widget .thumb {
  position: relative;
}

.package-sidebar-widget .thumb .price {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: inline-block;
  padding: 0.3125rem 1.5625rem;
  color: #fff;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  box-shadow: 0 5px 15px 2px rgba(247, 124, 90, 0.4);
  font-size: 1.25rem;
  font-weight: 600;
}

.package-sidebar-widget .thumb .price span {
  font-size: 0.875rem;
  font-weight: 400;
}

.package-sidebar-widget .thumb img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  width: 100%;
}

.package-sidebar-widget .caption-list {
  padding: 0 10px;
}

.package-sidebar-widget .caption-list li {
  border-color: rgba(255, 255, 255, 0.15);
}

.package-sidebar-list {
  padding: 10px 5px;
  background-color: #1a2e4f;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media (max-width: 1199px) {
  .package-sidebar-list li + li {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .package-sidebar-list li + li {
    margin-top: 0;
  }
}

@media (max-width: 440px) {
  .package-sidebar-list li + li {
    margin-top: 20px;
  }
}

.package-sidebar-list li {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1199px) {
  .package-sidebar-list li {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .package-sidebar-list li {
    width: calc(100% / 3);
  }
}

@media (max-width: 440px) {
  .package-sidebar-list li {
    width: 100%;
  }
}

.package-sidebar-list li i {
  font-size: 2rem;
  line-height: 1;
}

.package-sidebar-list li span {
  font-size: 0.875rem;
  color: #fff;
  margin-top: 5px;
}

.course-details-review {
  padding: 1.875rem;
  background-color: #fff;
  border: 1px solid #c0cad5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-details-review .rating-area .rating {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.875rem;
  font-weight: 700;
  line-height: 1;
}

.course-details-review .rating-area .content {
  text-align: right;
}

.single-review {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.single-review .star {
  width: 30px;
}

.single-review .progress {
  width: calc(100% - 80px);
  height: 10px;
}

.single-review .percentage {
  width: 30px;
  text-align: right;
}

.single-rating {
  padding: 1.5625rem 0;
  border-bottom: 1px solid #dfe4e9;
}

.single-rating:first-child {
  padding-top: 0;
}

.single-rating:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.single-rating__thumb {
  width: 75px;
  height: 75px;
  overflow: hidden;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
}

.single-rating__thumb img {
  width: inherit;
  height: inherit;
}

.single-rating__content {
  width: calc(100% - 75px);
  padding-left: 1.5625rem;
}

@media (max-width: 460px) {
  .single-rating__content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.account-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-height: 100vh;
}

.account-section .left {
  background-color: #14233cc9;
  -webkit-backdrop-filter: blur(10px);
  padding: 100px 50px;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  order: 1;
}

@media (max-width: 991px) {
  .account-section .left {
    width: 100%;
    order: 2;
  }
}

@media (max-width: 575px) {
  .account-section .left {
    padding: 90px 30px;
  }
}

.account-section .left .account-form-area {
  width: 60%;
}

.account-section .left .account-form-area.register {
  width: 90%;
}

@media (max-width: 1650px) {
  .account-section .left .account-form-area {
    width: 70%;
  }

  .account-section .left .account-form-area.register {
    width: 80%;
  }
}

@media (max-width: 1399px) {
  .account-section .left .account-form-area {
    width: 100%;
  }

  .account-section .left .account-form-area.register {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .account-section .left .account-form-area {
    width: 60%;
  }

  .account-section .left .account-form-area.register {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .account-section .left .account-form-area {
    width: 80%;
  }
}

@media (max-width: 575px) {
  .account-section .left .account-form-area {
    width: 100%;
  }
}

.account-section .account-logo img {
  max-height: 110px;
}

.account-form label {
  color: #fff;
}

.account-form .form--control {
  background-color: #071e3e;
  color: #fff;
}

.account-form .form--control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.account-form .form--control:placeholder-shown {
  backdrop-filter: blur(5px);
  background-color: rgb(255 255 255 / 10%);
}

.contact-thumb {
  float: right;
  width: 130%;
  height: 100%;
}

@media (max-width: 1399px) {
  .contact-thumb {
    width: 100%;
    float: none;
  }
}

.contact-thumb img {
  height: 100%;
  width: 100%;
}

.contact-item i {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-item p a {
  color: #464646;
}

.map-area {
  filter: grayscale(100%);
}

.map-area iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 767px) {
  .map-area iframe {
    height: 400px;
  }
}

.cookie__wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #071e3e;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  font-size: 18px;
  z-index: 99999;
}

@media only screen and (max-width: 991px) {
  .cookie__wrapper {
    padding: 20px;
  }
}

.cookie__wrapper .txt {
  max-width: 720px;
  margin-right: 20px;
  font-size: 14px;
}

.cookie__wrapper .txt a {
  margin-top: 10px;
}

/* Custom file upload*/
.custom--file-upload ~ label {
  position: absolute;
  top: 4px;
  left: -1px;
  width: 121px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f77c5a;
  color: #fff;
  border-radius: 5px 0 0 5px;
}

.profile-thumb {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: inline-flex;
  margin-top: -100px;
}

.profile-thumb .profilePicPreview {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: block;
  border: 3px solid #ffffff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
}

.profile-thumb .profilePicUpload {
  font-size: 0;
  opacity: 0;
}

.profile-thumb .avatar-edit {
  position: absolute;
  right: 35%;
  bottom: -30px;
}

.profile-thumb .avatar-edit input {
  width: 0;
}

.profile-thumb .avatar-edit label {
  width: 45px;
  height: 45px;
  background-color: #f77c5a;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  border: 2px solid #ffffff;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}

@media screen and (min-width: 1620px) {
  .col--xxl-2 {
    flex: 0 0 calc((100% / 12) * 2);
  }
}

/* profile section css end */
.mw--120 {
  min-width: 120px;
}

.nav-tabs .nav-item .mw--120 {
  margin: 5px 15px;
  display: flex;
  align-items: center;
}

.nav-tabs .nav-item .mw--120 i {
  margin: 5px 5px 0 0;
}

.nav-tabs .nav-item .mw--120 p {
  margin: 6px 0;
}

.form-check,
.form-check * {
  cursor: pointer !important;
}

.form-check-input:checked {
  background-color: #f77c5a;
  border-color: #f77c5a;
}

.form-check .left {
  flex-grow: 1;
}

.form-check-label {
  display: block;
}

.form-check-input:checked[type="checkbox"] {
  box-shadow: none !important;
}

.widget--shadow:not(:last-child) {
  margin-bottom: 30px;
}

.widget--shadow {
  box-shadow: 0 5px 15px rgb(7 30 62 / 15%);
  padding: 15px !important;
  border-radius: 5px;
}

.action-widget__title.no-icon::after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 30px;
  position: relative;
  background: #f77c5a;
  display: block;
  margin-left: 15px;
}

.action-widget__title.no-icon {
  display: flex;
  align-items: center;
}

.tour-plan-img {
  max-height: 450px;
  object-fit: cover;
  border-radius: 5px;
}

.account-form .form--control:placeholder-shown {
  border-color: rgb(255 255 255 / 10%);
}

.account-section {
  background-attachment: fixed;
}

.d-widget__icon i {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #f5f0fc;
  color: #ff7e5f;
  border-radius: 3px;
}

.d-widget__icon {
  align-items: center;
}

.d-widget .d-widget__icon .view-all {
  background: #f5f0fc;
}

@media screen and (min-width: 992px) {
  .page-title {
    font-size: 3rem;
  }
}

.border-radius-0 .trip-card__thumb .card-img-top {
  border-radius: 0 !important;
}

.contact-item {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgb(7 30 62 / 15%);
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-item .icon {
  background: #ff7e5f;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .icon i {
  margin: 0;
  color: #fff !important;
}

.contact-item span,
.contact-item a {
  display: block;
}

.contact-item .cont {
  width: calc(100% - 70px);
  padding-left: 20px;
}

.phone-number {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.header-top-bar-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: -3px;
}

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

.phone-number li,
.social-icons li {
  padding: 3px;
}

.social-icons li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background: #ff7e5f;
  color: #fff;
}

.social-icons li a:hover {
  color: #fff;
  background: #ff7e5f;
}

.phone-number li a {
  color: #fff;
  padding: 0 10px;
}

.phone-number li a i {
  margin-right: 5px;
  color: #ff7e5f;
}

.header-top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

@media screen and (max-width: 767px) {
  .phone-number,
  .social-icons {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 1199px) {
  .hero {
    padding-top: calc(9.375rem + 140px);
  }
}

@media screen and (max-width: 500px) {
  .inner-hero {
    padding-top: calc(9.375rem + 140px);
  }

  .hero {
    padding-top: calc(10rem + 130px);
  }
}

@media only screen and (max-width: 991px) {
  .cookie__wrapper {
    padding: 10px;
    font-size: 12px !important;
  }
}

@media only screen and (max-width: 1199px) {
  .location-section .ps-5 {
    padding-left: 10px !important;
  }
}

/* Custom Dropdown Css Start */
@media (max-width: 991px) {
  .header-section .custom--dropdown {
    display: inline-block;
  }
}

.custom--dropdown {
  position: relative;
  width: auto;
  min-width: max-content;
  border-radius: 5px;
  padding-right: 20px;
}

.custom--dropdown:after {
  content: "\f107";
  position: absolute;
  font-weight: 900;
  font-family: "Line Awesome Free";
  top: 50%;
  right: 0;
  transition: auto;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  font-size: 0.875rem;
  color: #fff;
}

.custom--dropdown.open:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.custom--dropdown > .custom--dropdown__selected {
  cursor: pointer;
  font-size: 0.875rem;
  color: #fff !important;
}

.custom--dropdown > .dropdown-list {
  position: absolute;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  opacity: 0;
  overflow: hidden;
  transition: 0.25s ease-in-out;
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  top: 100%;
  margin-top: 10px;
  z-index: -1;
  visibility: hidden;
  max-height: 230px;
  overflow-y: auto !important;
}

.custom--dropdown > .dropdown-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom--dropdown.open > .dropdown-list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  z-index: 999 !important;
  background: #fff !important;
}

.dropdown-list > .dropdown-list__item {
  padding: 6px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 0.875rem;
  margin-right: 0 !important;
}

.dropdown-list > .dropdown-list__item:hover {
  background-color: #ff6a00;
  color: #fff !important;
}

.dropdown-list > .dropdown-list__item,
.custom--dropdown > .custom--dropdown__selected {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dropdown-list > .dropdown-list__item .thumb,
.custom--dropdown > .custom--dropdown__selected .thumb {
  max-width: 30px;
}

.dropdown-list__item .thumb img {
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.dropdown-list > .dropdown-list__item .text,
.custom--dropdown > .custom--dropdown__selected .text {
  width: calc(100% - 30px);
}

.custom--dropdown__selected.dropdown-list__item .thumb .flag {
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.forgot-pass {
  font-size: 13px;
}

.rating-stars i {
  display: inline-block;
  font-size: 1em;
  color: gold;
}

.main-menu li a.active {
  color: #f77c5a !important;
}

.cmn-list-excluded li::before,
.d-widget__icon i {
  color: #f7bf5a;
}

/* .cmn-list-excluded li::before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f057" !important;
  color: #ec0a19 !important;
} */

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: #f77c5a;
}

.blog-details-footer .share-post-links li a.instagram {
  background-color: #ce30b2;
}

.blog-details-footer .share-post-links li a.linkedin {
  background-color: #0077b5;
}

/* plan-seminer-detials-photo-card-rating -start */
.rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.rating-stars ul > li.star {
  display: inline-block;
}

.rating-stars ul > li.star > i.fa {
  font-size: 2.5em;
  color: #ccc;
}

.rating-stars ul > li.star.hover > i.fa {
  color: #ffcc36;
}

.rating-stars ul > li.star.selected > i.fa {
  color: #ff912c;
}

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

.gallery-card img {
  width: 400px;
  height: 300px;
  /* border-radius: 10%; */
  object-fit: cover;
}

.iframe {
  width: 100%;
  height: 580px;
}

@media (max-width: 991px) {
  .iframe {
    width: 100%;
    height: inherit;
  }
}

.list-group-item {
  border: 0;
}

.border-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.gallery-card {
  max-width: 450px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.gallery-card__thumb img {
  object-fit: cover;
  object-position: center;
}

iframe.iframe {
  min-height: 300px;
}

.list-group-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #f1f1f1;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.gallery-card {
  position: relative;
}

.gallery-card:hover .view-btn {
  opacity: 1;
  visibility: visible;
}

.gallery-card .view-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.364);
  color: #f0e9e9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  opacity: 0;
  visibility: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.thumb i {
  font-size: 22px;
}

.lightcase-icon-prev:before {
  content: "\f104" !important;
  font-family: "Line Awesome Free" !important;
  font-weight: 900 !important;
}

.lightcase-icon-next:before {
  content: "\f105" !important;
  font-family: "Line Awesome Free" !important;
  font-weight: 900 !important;
}

.lightcase-icon-close:before {
  content: "\f00d" !important;
  font-family: "Line Awesome Free" !important;
  font-weight: 900 !important;
}

.lightcase-icon-prev,
.lightcase-icon-next,
.lightcase-icon-close {
  border: 1px solid #ddd;
  font-size: 22px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff0f;
}

.nav-link {
  color: #2e3945;
}

/* plan-seminer-detials-photo-card-rating -end */

.form--control[readonly] {
  background-color: #f9f9f9;
  color: #6c757d;
  border: 1px solid #ced4da;
  cursor: not-allowed;
}

.btn--base:disabled {
  background-color: #d3d3d3;
  color: #6c757d;
  cursor: not-allowed;
  border: 1px solid #ced4da;
  opacity: 0.65;
}

.profile-area {
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .profile-area {
    padding: 0;
    background: transparent !important;
    border: none;
  }
}

.user-profile {
  max-width: 350px;
}

@media (max-width: 991px) {
  .user-profile {
    margin: 0 auto 30px;
  }
}

.user-profile img {
  width: 100%;
}

.user-profile .thumb {
  position: relative;
  margin: 0 auto -50px;
  max-width: calc(100% - 30px);
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 220px;
}

.user-profile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-profile .content {
  background: rgba(30, 144, 255, 0.1);
  text-align: center;
  padding: 80px 15px 30px;
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  border-radius: 30px 30px 0 0;
}

.user-profile .content .title {
  font-weight: 700;
}

.user-profile .remove-image {
  display: none;
}

.profile-area {
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .profile-area {
    padding: 0;
    background: transparent !important;
    border: none;
  }
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 5;
  transition: 0.5s;
  cursor: pointer;
  transform: scale(0);
  background-color: #5a70f7;
}

.scroll-top.show {
  transform: scale(1);
  color: #fff;
}

.search-area .find-form .select2-container .select2-selection--single {
  border-radius: 0 !important;
  border-color: #c0cad5 !important;
}

.search-area
  .nav.nav-tabs
  :is(.nav-link:hover, .nav-link.active, .nav-link:active) {
  color: #fff !important;
}

.contact-item .cont a {
  color: #464646;
}

.contact-item .cont a:hover {
  color: #f77c5a;
}

.blog-details__share-title {
  margin-bottom: 0;
}

.blog-details__share {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #fff;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .not-found {
    padding: 15px 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*testimonial section */

    

    .testimonial-overlay {
      background-color: rgba(11, 41, 69, 0.5);
      padding: 50px 0px;
      margin-top: -40px;
      margin-bottom: -40px;
      color: white;
    }

    .testimonial-title {
      font-size: 48px;
      font-family: 'Dancing Script', cursive;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 10px;
    }

    .testimonial-subtitle {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 40px;
      text-align: center;
      color: #fff;
    }

    .testimonial-card {
      background-color: white;
      color: black;
      padding: 25px 35px;
      border-radius: 3px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: left;
      margin-bottom: 30px;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .testimonial-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .testimonial-header h3 {
      font-size: 18px;
      margin: 0;
    }

    .testimonial-header span {
      font-size: 12px;
      color: #444;
    }

    .stars {
      color: #ff9900;
      font-size: 16px;
      font-weight: bold;
      margin-left: auto;
    }

    .testimonial-text {
      margin-top: 20px;
      text-align: justify;
      font-size: 11px;
      line-height: 1.7;
      color: #333;
    }

    .feedback-button {
      display: inline-block;
      background-color: #0b2945;
      color: white;
      text-decoration: none;
      padding: 12px 30px;
      font-weight: 600;
      font-size: 15px;
      transition: 0.3s;
    }

    .feedback-button:hover {
      background-color: #1d4263;
      color:#fff;
    }
    
    .swiper-button-next:after{
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #fff !important;
    color: #464646 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 1.125rem !important;
    /*top: -64% !important;*/
    right:-7px;
    z-index: 1 !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*overflow:hidden;*/
   
    }
    .swiper-button-prev:after{
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #fff !important;
    color: #464646 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 1.125rem !important;
    /*top: -65% !important;*/
   left:-7px;
    z-index: 1 !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*overflow:hidden;*/
   
    }
     .testimonial-page {
    background-color: #f9fafb;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }

  .testimonial-page-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #0b2945;
  }

  .testimonial-page-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }

  .testimonial-item {
    background: #fff;
    border-radius: 0px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }

  .testimonial-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .testimonial-item-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }

  .testimonial-user h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
  }

  .testimonial-user .stars {
    font-size: 14px;
    color: #ff9900;
    margin-top: 3px;
    display: block;
  }

  .testimonial-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
  }
  .more-feedback-btn:active{
      
      background-color:#14233c !important;
      border-color:#14233c !important;
  }
  
  
  /*subcription section */
      @media (max-width: 767px) {
    .subscribe-wrapper {
        margin: 0 !important;
        padding: 30px !important;
        border-radius: 5px;
    }

    .px-5, 
    .mx-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 5px !important;
        margin-right:5px !important;
    }

    section.pt-100.pb-100.bg-white.px-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/*service we offer section*/
.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 13px !important;
    background-color: white;
    padding: 7px;
    transition: background-color 0.3s ease; 
}

.swiper-button-next:hover::after {
    background-color: orange !important;
    color: white !important;
}

.swiper-button-prev:hover::after {
    background-color: orange !important;
     color: white !important;
}
.service-offer {
            background: url(/core/storage/app/public/{{$blogs['intro']['background_image']}}), #fffff1bd;
            background-blend-mode: overlay;
            background-size: cover;
        }
        
        .exlpore-more-bg{
            background-color: #14233c !important;
        }
        
        .zoom-container {
    overflow: hidden;
    display: inline-block;
}

.zoom-image {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.zoom-image:hover {
    transform: scale(1.1);
}
/*send feedback popup sections*/
 .cross-btn:hover{
        color:#0C2646;
    }
   .form-control:focus{
            border-color: #ff6b00 !important;
    /*outline: none !important;*/
    /*box-shadow: 0 0 0 0.1rem rgba(61,61, 61) !important;*/
    
    
    outline: none !important;
    box-shadow: none !important;
    transition: all 500ms 
ease !important;
    }

/*plan experience sections*/

 .contact-information h3,.contact-information h6 a{
            color: white;
        }
        .contact-information h6 a{
           font-weight: 100;
        }
        .cnttForm input,.cnttForm select, .cnttForm textarea, .cnttForm textarea:focus, .cnttForm input:focus {
    border: none;
    border-bottom: 1px solid gray;
    background-color: transparent;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border-color: #aaa !important;
}
  .cnttForm label {
     margin-bottom: 0;
     
}      
    .Stay-Duration-box{
        border : none !important;
        border-bottom:1px solid !important;
        background-color: white !important; 
        color: none !important;
    }
    
    
    
    .countrySelect {
  /* Remove all borders except bottom */
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  outline: none !important;
  
  /* Remove dropdown arrow */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  
  /* Remove background and box shadow */
  background: transparent !important;
  box-shadow: none !important;
  
  /* Reset padding and margin if needed */
  padding: 8px 0 !important;
  margin: 0 !important;
  
  /* Ensure full width */
  width: 100% !important;
}

/* Remove arrow for IE */
.countrySelect::-ms-expand {
  display: none !important;
}

/* Optional: Style for focus state */
.countrySelect:focus {
  border-bottom-color: #007bff !important;
}
   .form-focus-remove : focus{
        outline: none;
  box-shadow: 0 0 0 3px rgba(0,95,204,0.15);  
  
        
    }
    .flag-option {
        padding-left: 2rem;
        background-repeat: no-repeat;
        background-size: 1.5rem auto;
        background-position: 0.3rem center;
    }
    .ts-control{
        border:none;
    }
    
    .form--control[readonly] {
    background-color: white;
    color: #6c757d;
    border: none;
    cursor: pointer;
}
/*interest section */
.lll{
    position:relative;
}
    .sub-hh{
        position:absolute;
        bottom:0;
        text-align: center;
        padding-bottom: 12px;
    }
/*gellary section */
.junait {
    position: relative;
    overflow: hidden;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
   
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.junait:hover .overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay h5 {
    text-transform: uppercase;
    margin: 0;
}
/*feedback section */
    .profile-img {
  width: 80px;   /* small size for mobile */
}

@media (min-width: 768px) {
  .profile-img {
    width: 200px; /* bigger size for tablet/desktop */
  }
}

/*FAQ section */
/* Base styles */
.faq-section {
  background-color: #14233c;
 
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-container {

  margin: 0 auto;
  
}

.faq-item {

  margin-bottom: 20px;
  background-color: #f5f5f5;
  text-align: left;
  border-radius: 2px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  background-color: white;
  padding: 18px 20px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 20px;
  font-size: 15px;
  color: #333;
  background-color: white;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
  display: block;
}

.toggle-icon {
  font-size: 20px;
  color: #00706c;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.more-faq-btn {
  margin-top: 30px;
}

.more-faq-btn a {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 2px;
  font-size: 16px;
  transition: 0.3s;
}

.more-faq-btn a:hover {
  background-color: #e0e0e0;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .more-faq-btn a {
    font-size: 15px;
    padding: 10px 25px;
  }
}
/*experience theme section*/

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    .experience_heading{
        color:#f98f00;
        font-family: "Roboto", sans-serif !important;
    }
    .section-title{
        padding-bottom:0 !important;
       margin-bottom:0 !important;
        font-family: "Roboto", sans-serif !important;
    }
    .section-title-subheading{
        font-family: "Bitter", serif !important;
        
    }
    .location-name{
        font-family: "Roboto", sans-serif !important;
    }  

/*enquiry form section*/
  .enquiry_form {
    background-position: center;
    background-size: cover;
    padding: 50px 10px;
    color: #14233c;
}
   .enquiry_form .form-control {
    border: none;
    background: transparent;
    border-bottom: 1px solid black;
    border-radius: inherit;
    box-shadow: none;
    
}
.enquiry_form label {
    color: #14233c !important;
    font-weight: bold;
}
.enquiry_form .submit-btn{
    background-color: #012E63;
    color: white;
    padding 5px 2px;
 
}
/*counter section */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.counter-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color:#f4f2ee;
    
}
.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 20px 8px 20px 20px rgba(0,0,0,0.15);
}
.counter-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f98f00;
     font-family: "Roboto", sans-serif;
    
}

/*clint section*/
    section {
      padding: 40px 0;
      text-align: center;
    }

    h2 {
      font-weight: bold;
      margin-bottom: 30px;
    }

    .logo-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

   .client-swiper {
  padding: 20px 0;
}

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

.client-logo {
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  max-width: 100%;
  margin: 0 auto;
}

.client-logo:hover {
  filter: grayscale(0%);
}


    @media (max-width: 768px) {
      .logo-row {
        justify-content: center;
        gap: 30px;
      }
    }
/*blog right side */
.gallery {
    padding-right: 7px !important;
}
.letest span i{
    color: #ff6b00;
}
.letest span{
    color: gray;
}

.letest:hover h5{
     color: #ff6b00;
}
.letest h5 {
   
    font-size: 18px;
    line-height: 22px;
   
}

.categories li{
    line-height: 28px;
        margin-bottom: 20px;
}
.categories li a {
    position: relative;
    display: inline-block;
    color: #111;
    padding-left: 0;              /* base padding */
    transition: padding 300ms ease, color 300ms ease;
}

.categories li a:hover {
    padding-left: 17px;
    color: #ff6b00;
}

.categories li a::before {
    content: "\f105";             /* angle-right in LA */
    font-family: "Line Awesome Free";
    font-weight: 900;             /* important for solid icons */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
    font-size: 12px;
}

.categories li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) rotate(0deg);
}

h4 {
    font-size: 24px;
    line-height: 32px;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 50px 10px 30px;
    background: #fff;
    position: relative;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
     background-color: transparent;
}

.search-box i {
    color: #888;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 10px;
   
}

.search-box i:hover {
    color: #333;
}
 .catgory {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    line-height: 28px;
    color: rgba(106, 106, 106, 1);
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 3px 17px;
    border-radius: 5px;
}

.catgory:hover {
    /*background: #ff6b00;*/
    /*border-color: #ff6b00;*/
    /*color: #fff;*/
    
    
        color: #fff !important;
    background: #f98f00;
    border-color:#f98f00;
}

.blog-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 0px;
   
    padding: 0px 0;
}
.blog-title a{
     color: #111111;
}
.blog-title a:hover{
    color: #ff6b00;
}

.zoom-container {
    overflow: hidden; /* ensures zoom doesn't spill outside the div */
}

.zoom-container img {
    transition: transform 0.4s ease; /* smooth animation */
}

.zoom-container:hover img {
    transform: scale(1.1); /* zoom in */
}
.text-justify{
    text-align: justify;
}
    .blog-thumb {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
   
}

/*banner section*/
 .find-form__group-size {
        position: relative;
        flex: 1;
    }
    .find-form__group-size input[readonly] {
        cursor: pointer;
        background-color: #fff;
    }
    .group-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 140%;
        max-width: 350px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .group-dropdown .input-group {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .group-dropdown .btn {
        width: 35px;
        height: 35px;
        padding: 0;
        font-size: 20px;
        line-height: 1;
    }
    .group-dropdown span {
        font-weight: 500;
    }
    .find-form .form-row > * {
        margin-bottom: 20px;
     
    }
    
    
    .border_remove {
    
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgb(192, 202, 213);
   
}
.hero__title{
        font-size: 2.125rem !important;
        margin-bottom:0px !important;
}
.hero__subtitle{
    margin-top:-5px !important;
}
.banner_button-bg:hover{
    background-color:#f98f00 !important;
     border: none !important;
}

.banner_button{
    text-decoration:none !important;
    color:white;
}
.banner_button:hover{
    text-decoration:none !important;
    color:white;
    
}
.border_remove:focus{
     box-shadow:none;
}
    @media (min-width: 992px) {
        .find-form .form-row {
            display: flex;
            gap: 0px;
            align-items: flex-end;
            margin-left:40px;
        }
        .find-form .form-row > * {
            flex: 1;
        }
        .find-form__btn {
            flex: 0 0 50px;
        }
    }
    .tab-content{
        margin-top:130px !important;
        
    }
    .tab-content .find-form{
        border-radius:0 !important;
        padding-bottom: 0px !important;
        padding-top:3px !important;
        margin-bottom:0px !important;
        border:1px solid #4444433a;
        
    }
    
    /* Form Container */
.tab-content {
    width: 100%;
}

.find-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: -1px;
}

.form-row > div {
    flex: 1;
    padding-left:15px;
    min-width: 235px;
    position: relative;
}

/* Select2 Styling */
.select2-basic.select2.form-control {
    width: 100% !important;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    height: auto;
}

.select2-basic.select2.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.select2-container--default .select2-selection--single {
    border: none !important;
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 10px !important;
}

/* Date Range Styling */
.find-form__duration {
    position: relative;
}

.find-form__duration .form--control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 0;
    background-color: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.find-form__duration .form--control:focus {
    outline: none;
    border-color: none;
    
}

/* Group Size Styling */
.find-form__group-size {
    position: relative;
}

.find-form__group-size .form-control.border_remove {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 0px;
    background-color: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.find-form__group-size .form-control.border_remove:focus {
    outline: none;
    /*border-color: #3498db;*/
    /*box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);*/
}

/* Group Dropdown */
.group-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: none !important;
    border-radius: 0px;
    padding: 15px;
    margin-top: 5px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.find-form__group-size:hover .group-dropdown,
.find-form__group-size:focus-within .group-dropdown {
    display: block;
}

.group-dropdown .d-flex {
    margin-bottom: 15px;
}

.group-dropdown .d-flex:last-child {
    margin-bottom: 0;
}

.group-dropdown span {
    font-weight: 500;
    color: #2c3e50;
}

.input-group {
    width: auto;
}

.btn-outline-secondary {
    border: 1px solid #ddd;
    background: white;
    color: #333;
    width: 190px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.form-control.text-center {
    border: 1px solid #ddd;
    background: white;
    height: 35px;
}

/* Find Button */
.find-form__btn {
    flex-basis: 100%;
    margin-top: 10px;
}



/* Remove underlines and borders */
.form-control,
.select2-basic,
.form--control,
.btn-outline-secondary,
.input-group {
    text-decoration: none !important;
    outline: none !important;
}

.form-control:focus,
.select2-basic:focus,
.form--control:focus {
    text-decoration: none !important;
    outline: none !important;
}

.border_remove {
    border: none !important;
}

.border_remove:focus {
    border-color: #3498db !important;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-row > div {
        width: 100%;
    }
    
    .find-form__btn {
        margin-top: 15px;
    }
    
    .btn.btn--base {
        padding: 12px 108px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 0px;
    }
    
    .select2-basic.select2.form-control,
    .find-form__duration .form--control,
    .find-form__group-size .form-control.border_remove {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .group-dropdown {
        padding: 10px;
    }
    
    .btn-outline-secondary {
        width: 150px;
        height: 50px;
    }
    
    .form-control.text-center {
        height: 30px;
        width: 40px !important;
    }
}

/*about section*/
  .about-thumb {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.location-slider .slick-arrow, .about-thumb img {
    border-radius: 0px;
}
.about_us_mai_heading{
    text-align: left;
    font-family: Arial, sans-serif;
    color :#f98f00;
    margin-bottom:10px;
}
.section-title{
    text-align: left;
}
.section-title-subheading{
    text-align: left;
}
.about-button{
     background-color:#f98f00 !important;
     color:white;
     
}
.about-button:hover{
     
     color:white;
     
}