@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

/*----------------------------------------------------------------
					Start Default Settings
----------------------------------------------------------------*/

* {
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

/*========== Block Settings ==========*/
:root {
  --main-color: #e2a93a;
  --color-accent-1: #b97d25;
  --second-color: #221f3f;
  --white-color: #fff;
  --black-color: #333;
  --main-grey: #f9f9f9;
  --title-color: #272262;
  --color-black: #000000;
  --para-color: #717275;
  --color-dark-1: #094174;
  scroll-behavior: smooth;
  --section-space: 120px;
  --main-font: "Poppins", sans-serif;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}
.display-4 {
  font-weight: 500 !important;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

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

iframe {
  width: 100%;
  border: none;
  border-radius: 20px;
}

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

select:focus,
select:active {
  box-shadow: none;
  border: 0;
  outline: 0;
}

textarea {
  height: 150px;
  padding-top: 20px;
}

textarea:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/*========== Typography Settings ==========*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2;

}

h1 {
  font-size: 55px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 500;
}

h3 {
  font-weight: 500;
  font-size: 23px;
}

h4 {
  font-size: 23px;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  font-weight: 500;
}

p {
  line-height: 2;
  font-weight: 500;
  color: #989898;
  /* letter-spacing: 0.5px; */
  margin: 0;
}

/*========= Alignment CSS ==========*/

/* ============= Reset CSS =========== */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="subject"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid var(--second-color);
  transform: scale(1.05);
  font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="subject"],
input[type="datetime-local"],
textarea {
  background: var(--white-color);
  border: 1px solid #ddd;
  outline: 0;
  width: 100%;
  padding: 13px 20px;
  resize: none;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border-radius: 15px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="subject"],
input[type="datetime-local"] {
  height: 60px;
}

textarea {
  height: 220px;
  padding-top: 20px;
}

.text-msg {
  margin-bottom: 15px !important;
}

textarea:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/*========== Block Settings ==========*/
a,
a:hover,
a:focus,
a:active,
button:focus {
  text-decoration: none;
  border: none;
  outline: 0;
  /* color: var(--white-color); */
  cursor: pointer;
}

ul ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

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

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


/*===================================================
                btn classess
===================================================*/

.btn-effect {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;

  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 15px 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-effect:before,
.btn-effect:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background-color: var(--second-color);
  transform: scale(0);
  z-index: -1;
  border-radius: inherit;
  transform-origin: right bottom;
  transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
}

.btn-effect:before {
  transform-origin: left top;
}

.btn-effect:hover {
  color: var(--white-color);
}

.btn-effect:hover:before,
.btn-effect:hover:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;

}

/*----------------------------------------------------------------
      Start Navbar
----------------------------------------------------------------*/

nav {
  display: block;
  width: 100%;
  position: relative;
  z-index: 999;
  /* border-bottom: 1px solid #eee; */
}

.bg-gray {
  background-color: var(--color-black);
}

.icons {
  color: var(--color-accent-1);
}

.navbar-brand {
  width: 132px !important;
}

.navsLink-hasdropdown .dropdown-menu {
  transform: translateZ(100%);
  transition: 0.3s all ease-in;
}

.navsLink-hasdropdown .dropdown-menu {
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.navsLink-hasdropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navsLink,
.navsLink-hasdropdown {
  font-size: 17px;
  font-weight: 500;
  padding: 5px 10px;
  display: inline-block;
  color: var(--second-color);
  transition: .3s;
  text-decoration: none;
}

.nav-menu-bar {
  background: var(--white-color);
  border-bottom: 1px solid #eee;
  height: 85px;
  width: 100%;
}


.nav__menu__bar {
  background: var(--white-color);
  border-bottom: 1px solid #eee;
  height: 85px;
  width: 100%;
}


.nav-bar .single-item {
  position: relative;
  padding-left: 40px;
  float: right;
}

.nav-bar .single-item span {
  left: 0;
  top: 0;
  color: var(--main-color);
  position: absolute;
}

.nav-bar .single-item span::before {
  margin: 0;
  font-size: 30px;
  line-height: 30px;
}

.nav-bar .single-item h3 {
  color: var(--second-color);
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

.nav-bar .single-item p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 26px;
  color: var(--white-color);
  font-weight: 500;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:focus {
  outline: 0;
  color: var(--white-color);
  border: none;
}

.nav-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
}

.nav-menu .btn-effect {
  margin-left: 3rem;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu li a {
  color: var(--main-color);
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;

}

.dropdown-menu li {
  display: block;
  width: 100%;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  border-bottom: 1px solid #eee;
}

.dropdown-li:hover .dropdown-menu {
  display: block;
  /* border-radius: 10px; */
  padding: 0;
  margin-top: -30pxx;
  border-top: 2px solid #b97d25;
}

.navsLink.dropdown-li i {
  padding-left: 3px;
}

.navsLink.dropdown-li:hover .nav-link i {
  transform: rotate(-180deg);
  color: var(--main-color);
}

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

.dropdown-menu li .dropdown-item {
  text-transform: capitalize;
  font-weight: 500;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--main-color);
  color: var(--white-color);
}

.nav-menu .nav-item.active .nav-link,
.nav-menu .nav-item:hover .nav-link {
  color: var(--main-color);
}

.contact-boxes {
  height: 100%;
  padding: 0 20px;
}

.dropdown-li:hover .dropdown-menu {
  display: block;
  border-radius: 10px;
  padding: 0;
}

.navsLink,
.dropdown-menu li {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  display: inline-block;
  color: #000;
  transition: 0.3s;
  text-decoration: none;
}

.nav-menu-bar {
  background: var(--white-color);
  border-bottom: 1px solid var(--main-grey);
  height: 85px;
  width: 100%;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:focus {
  outline: 0;
  color: #000;
  border: none;
  font-size: 30px;
}

.nav-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
}

.nav-menu .btn-effect {
  margin-left: 3rem;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu li a {
  color: var(--color-accent-1);
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.dropdown-menu li {
  display: block;
  width: 100%;
  padding: 10px unset;
  border-bottom: 1px solid var(--main-grey);
  margin: 0;
  border-radius: 0;
}

.animate__animated.animate__zoomIn {
  --animate-duration: 0.7s;
}

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

.dropdown-menu li .dropdown-item {
  color: #000;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--white-color);
  color: var(--white-color) !important;
}

.contact-boxes {
  height: 100%;
}


#footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  gap: 28px;
  right: 0;
  z-index: 98;
  background-color: rgba(249, 249, 249, 0.98);
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.06);
  min-height: 60px;
  display: none;
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 300ms ease;

}

#footer-bar a {
  color: #1f1f1f;
  padding-top: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
}

#footer-bar a i {
  margin-top: -3px;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.caran {
  display: none;
}

.nav__link {
  color: var(--color-accent-1);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.accordion-body ul li {
  padding: 10px 0;
  display: flex;
}

.home_accordion-body ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.accordion-button {
  font-size: 13px;
}

.accordion-body ul li a {
  color: #000;

}

.nav-link {
  padding-right: 1rem !important;
}

@media (max-width: 575.98px) {
  .bg-gray {
    display: none !important;
  }

  .navbar-light {
    background: #FFF;
    height: 138px;
  }

  .nav-menu {
    margin-top: 15px;
    margin-bottom: 15px !important;
  }

  .nav-menu .btn-effect {
    margin-left: 0;
  }

  .nav-menu {
    width: 100%;
  }

  .navbar-light .navbar-toggler-icon,
  .navbar-light .navbar-toggler-icon.active {

    background: #fff !important;
  }

  .navbar-light .navbar-toggler-icon .fa-bars,
  .navbar-light .navbar-toggler-icon.active .fa-bars {
    color: var(--main-color);
    font-size: 24px;
  }

  .nav-bar .single-item {
    padding-left: 30px;
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #444;
    margin: 0;
    padding: 0 0 20px 0;
  }

  .navbar-light .social-media-nav li {
    padding: 20px 10px 20px 0;
  }

  .navbar-light .social-media-nav li .fab {
    color: #444;
  }

  #footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 999;
  }

  .caran {
    display: flex;
    padding-left: 24px;
    padding-top: 20px;
    justify-content: space-between;
  }

  .nav-menu-bar {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {

  .bg-gray {
    display: none !important;
  }

  .navbar-light {
    background: #FFF;
    height: auto;
  }

  .nav-menu {
    margin-top: 15px;
    margin-bottom: 15px !important;
  }

  .nav-menu .btn-effect {
    margin-left: 0;
  }

  .nav-menu {
    width: 100%;
  }

  .navbar-light .navbar-toggler-icon,
  .navbar-light .navbar-toggler-icon.active {

    background: #fff !important;
  }

  .navbar-light .navbar-toggler-icon .fa-bars,
  .navbar-light .navbar-toggler-icon.active .fa-bars {
    color: var(--main-color);
    font-size: 24px;
  }

  .nav-bar .single-item {
    padding-left: 30px;
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #444;
    margin: 0;
    padding: 0 0 20px 0;
  }

  .navbar-light .social-media-nav li {
    padding: 20px 10px 20px 0;
  }

  .navbar-light .social-media-nav li .fab {
    color: #444;
  }


}

@media (min-width: 768px) and (max-width: 991.98px) {

  .navbar-light {
    background: #FFF;
    height: auto;
  }

  .nav-menu {
    margin-top: 15px;
    margin-bottom: 15px !important;
  }

  .nav-menu .btn-effect {
    margin-left: 0;
  }

  .nav-menu {
    width: 100%;
  }

  .navbar-light .navbar-toggler-icon,
  .navbar-light .navbar-toggler-icon.active {

    background: #fff !important;
  }

  .navbar-light .navbar-toggler-icon .fa-bars,
  .navbar-light .navbar-toggler-icon.active .fa-bars {
    color: var(--main-color);
    font-size: 24px;
  }

  .nav-bar .single-item {
    padding-left: 30px;
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #444;
    margin: 0;
    padding: 0 0 20px 0;
  }

  .navbar-light .social-media-nav li {
    padding: 20px 10px 20px 0;
  }

  .navbar-light .social-media-nav li .fab {
    color: #444;
  }
}

.container {
  max-width: 1360px !important;
}



/*---------------------------------------------------------------
      End Navbar
----------------------------------------------------------------*/

/* -====================================================================
       Destination
==================================================================== */
section.gallery {
  padding-block: 0vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery h2 {
  text-align: center;
}

.gallery-box {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;

}

.gallery_box_6 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.gallery__item:nth-child(n + 4) {
  grid-column: span 1;
}

.gallery__item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery__item:nth-child(3) {
  grid-area: 1 / 3 / 3 / 5;
}

.gallery__item:nth-child(n + 4) {
  grid-column: span 2;
}

.gallery__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.started {
  padding: 12vh 30px;
  margin-inline: 5%;
  border-radius: 15px;
  background: var(--main-color);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.started *:nth-last-child(n + 2) {
  max-width: 600px;
}

.started button {
  margin-top: 30px;
}

section.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.padding-5 {
  width: calc(100% - 10%);
  padding: 0 5%;
}

.gallery__item h3 {
  position: absolute;
  top: 6%;
  left: 7%;
  background: #b97d25;
  padding: 5px;
  font-size: 21px;
  color: #fff;
  border-radius: 9px;
}

.gallery__item p {
  position: absolute;
  bottom: 0;
  right: 7%;
  background: #b97d2580;
  padding: 5px;
  font-size: 21px;
  color: #fff;
  border-radius: 9px;
}

.gallery__item p:hover {
  display: block;
}

.gallery__item1,
.gallery__item2,
.gallery__item4,
.gallery__item5s {
  height: 270px !important;
}

.gallery__item3 {

  height: 560px;
}

@media screen and (max-width: 900px) {
  section.experience {
    flex-direction: column-reverse;
  }

  .experience-info {
    width: 100%;
    align-items: center;
    max-width: 550px;
  }

  .experience-info * {
    text-align: center !important;
  }

  .experience-info h2 {
    max-width: 400px;
  }

  .experience-info p {
    max-width: 500px;
  }

  .experience-image {
    width: 90%;
    height: 400px;
  }

  .experience-image img:last-child {
    left: 25%;
    transform: translateX(-50%);
  }

  .experience-box {
    justify-content: center;
  }

  .gallery-box {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

}

@media screen and (max-width: 600px) {
  .experience-image img:last-child {
    left: max(15%, 30px);
    bottom: -20px;
  }

  .gallery-box {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
  }

  .gallery__item:nth-last-child(1) {
    grid-area: 3 / 2 / 4 / 3;
  }

  .gallery__item3 {
    height: 0;
  }
}

/* -====================================================================
                       Destination
==================================================================== */

/* ====================================================================
                      Best Selling Trips
==================================================================== */

.ExploreTour .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.ExploreTour .NationalTab .national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #084298;
}

.ExploreTour .NationalTab .national-item img {
  transition: 0.5s;
  height: 280px;
}

.ExploreTour .NationalTab .national-item:hover img {
  transform: scale(1.2);
}

.ExploreTour .NationalTab .national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour .NationalTab .national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour .NationalTab .national-item:hover .national-plus-icon {
  opacity: 1;
}

.ExploreTour .NationalTab .national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--second-color);
  color: var(--color-white);
}

.ExploreTour #InternationalTab-2 .international-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
  transition: 0.5s;
  height: 280px;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--second-color);
  color: var(--color-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
  pointer-events: none
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
  /* background: rgba(19, 53, 123, 0.6); */
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
  font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
  opacity: 1;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
  position: relative;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--main-grey);
  border: 1px solid var(--second-color);
  border-radius: 10px;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  /* background: var(--second-color); */
}

/* ====================================================================
                      Best Selling Trips
==================================================================== */

/*--====================================================================
                       Tailor Your Trip
====================================================================--> */

.banner-info {
  background: url("https://themexriver.com/wp/goyto/wp-content/uploads/2024/04/why-choose-bg.webp") no-repeat fixed;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-position: 50% 50%;
  border-bottom: 1px solid #eee;
}

.banner-info::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f5e8c796;
  opacity: 0.9;
  z-index: -1;
}

.banner-content {
  padding: 70px 0;
}

.banner-content span {
  font-weight: 500;
  color: #000;
  letter-spacing: 1px;
  font-size: 20px;
}

.banner-content .btn-effect {
  background-color: var(--color-accent-1);
  color: #f9fafb;
}

.banner-content h2 {
  padding: 20px 0 20px 0;
  font-weight: 600;
}


@media (max-width: 767px) {
  .banner-content h2 {
    padding: 20px 0 20px 0;
    font-weight: 600;
    font-size: 26px;
  }
}

/*--====================================================================
                         Tailor Your Trip
====================================================================--> */

/* -====================================================================
                         Blog
==================================================================== */

.blog .blog-item .blog-img {
  position: relative;
}

.blog .blog-item .blog-img .blog_info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
  opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
  overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
  height: 300px;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
  transform: scale(1.2);
}

small {
  font-size: 18px;
}

.blog__img {
  height: 300px;
}

.blog .blog-item .blog-img .blog--info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  color: var(--main-grey);
}

.title-post {
  height: 150px;
  overflow: hidden;
}

.title-post .tour-para {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}

.btn-primary {
  background-color: var(--color-accent-1) !important;
  border: none;
}

.section--title {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-size: 20px;
  color: var(--title-color);
}

/* -====================================================================
                         Blog
==================================================================== */

/*===============================================================
                    Explore Tour Start
===============================================================*/


.ExploreTour .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.ExploreTour .NationalTab .national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour .NationalTab .national-item img {
  transition: 0.5s;
  height: 280px;
}

.ExploreTour .NationalTab .national-item:hover img {
  transform: scale(1.2);
}

.ExploreTour .NationalTab .national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour .NationalTab .national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour .NationalTab .national-item:hover .national-plus-icon {
  opacity: 1;
}

.ExploreTour .NationalTab .national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--second-color);
  color: var(--color-white);
}

.ExploreTour #InternationalTab-2 .international-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
  transition: 0.5s;
  height: 280px;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--second-color);
  color: var(--color-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
  /* background: rgba(19, 53, 123, 0.6); */
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
  font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
  opacity: 1;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
  position: relative;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--main-grey);
  border: 1px solid var(--second-color);
  border-radius: 10px;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  /* background: var(--second-color); */
}


.international-info h5 a {
  color: #fff;
  font-size: 20px !important;
}

/*===============================================================
                    Explore Tour Start
===============================================================*/

/*===============================================================
                   Footer
===============================================================*/

.footer .footer-item a {
  line-height: 35px;
  color: var(--main-grey);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
  color: #fff;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--color-accent-1);
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn {
  font-weight: 600;
  transition: 0.5s;
}

.footer-bar {
  z-index: 3;
  position: relative;
}

.copyright a {
  color: var(--color-accent-1);
  font-weight: 700;
}

.copyright {
  font-weight: 500;
  font-size: 14px;
  color: #f4f7fd;
  letter-spacing: 1.7px;
  line-height: 30px;
  padding-top: 20px;
}

.footer .logo {
  max-width: 70%;
  margin-top: 8px;
}

.btn-primary {
  background-color: var(--color-accent-1) !important;
  border: none;
}

.logo-footer {
  margin-top: -46px;
}

.national_text a {
  color: var(--second-color);
}

/*===============================================================
                   Footer
===============================================================*/

/*===============================================================
                    start Section testimonials
===============================================================*/

.shadow-effect {
  /* background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02); */
  background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 4px solid #b97d25;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
    width: 342px;
    height: 350px !important;

}

#customers-testimonials .shadow-effect p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
  text-align: left;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-name {
  /* margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190E7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05); */
  margin-left: 47%;
  display: table;
  width: auto;
  background: #b97d25;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
  position: relative;
  top: -21px;
}

#customers-testimonials .item {
  text-align: center;
  padding: 50px;
  margin-bottom: 80px;
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item .img-circle {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
  border-radius: 50%;
}

.testimonial_title{
  margin-bottom: 6px;
  color: #094174;
  font-size: 17px;
}
.testimonial_day{
  color: #094174;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190E7;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-theme .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #3190E7;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}


#customers-testimonials .owl-nav .owl-prev {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid #084298;
  border-radius: 30px;
  transition: 0.5s;
}

#customers-testimonials .owl-nav .owl-next {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid #0a58ca;
  border-radius: 30px;
  transition: 0.5s;
}

#customers-testimonials .owl-nav .owl-prev i,
#customers-testimonials .owl-nav .owl-next i {
  color: #084298;
  font-size: 17px;
  transition: 0.5s;
}

#customers-testimonials .owl-nav .owl-prev:hover,
#customers-testimonials .owl-nav .owl-next:hover {
  background: var(--white-color);
}

#customers-testimonials .owl-nav .owl-prev:hover i,
#customers-testimonials .owl-nav .owl-next:hover i {
  color: var(--color-black);
}


.img_trb {
  height: 340px;
}

/*===============================================================
                    start Section testimonials
===============================================================*/

/*===============================================================
                 subcategory
===============================================================*/

.service .service-item {
  position: relative;
  overflow: hidden;
}

.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: var(--color-accent-1);
  opacity: 0;
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
  border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}

.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .5);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}

.service .service-item .service-inner .service-img img {
  transition: 0.5s;
  height: 333px;
  object-fit: cover;
}

.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}

.btn_primary,
.bg_primary {
  background-color: #e2a93a !important;
}

/*===============================================================
                 subcategory
===============================================================*/

/*===============================================================
                tours
===============================================================*/

.tours-card {
  background: url(../image/Bg.png);
  overflow: hidden;
}

.tours-card .section--title span {
  color: #ddd;
}

.left-shape {
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  top: 5rem;
  left: 3rem;
  animation: move2 3s infinite;
}

.right-shape {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  z-index: 0;
  animation: leftToRight 10s infinite linear;
}

.package-card {
  background-color: var(--color-white);
  box-shadow: 0px 13px 48px 0px #09417452;
  margin-bottom: 30px;
  border-radius: 20px;
  position: relative;
}

.package-content {
  padding: 24px 15px;
  height: 361px;
}

.package-card .package-img .feature-info {
  position: absolute;
  top: 2rem;
  padding: 0 30px;
  width: 100%;
}

.package-card .package-img .feature-info .discount {
  background: var(--color-dark-1);
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 14px;
}

.package-card .package-img .feature-info .wishlist-icon {
  background: rgba(45, 35, 48, 0.5);
  border-radius: 50%;
  color: var(--color-white);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-img {
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: 1s all ease-in-out;
}

.package-img::before {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85%;
  display: block;
  z-index: 1;
  content: "";
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  cursor: pointer;
  opacity: 0;
}

.package-img:hover::before {
  opacity: 1;
}

.package-img:hover.package-img img {
  transform: scale(1.2);
}

.package-img img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.package-footer .package-price {
  font-weight: 600;
  color: var(--color-black);
  font-size: 18px;
}

.package-content .package-meta {
  border-top: 1px dashed var(--second-color);
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-content .package-meta a i {
  color: var(--color-dark-1);
  margin-right: 5px;
}

.package-content .package-meta a {
  color: var(--color-black);
  font-size: 16px;
  margin-right: 30px;
}

.package-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.package-card .package-title a {
  color: var(--color-dark-1);
}

@keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }

  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }

  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
}

@keyframes leftToRight {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

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

.tours-card .section-title span {
  color: #ddd;
}

.section--title span {
  color: #f7f7f7;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 100px;
  line-height: 14px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
  width: 100%;
}

.section--title h3 {
  color: var(--color-accent-1);
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 45px;
  position: relative;
  z-index: 200;
}

.section--title {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-size: 20px;
}

/*===============================================================
                tours
===============================================================*/

/*===============================================================
                Contact Us
===============================================================*/

.contact-us {
  background-color: #f1f6ff;
  position: relative;
  z-index: 222;
}

.contact-us-plane-shape {
  height: 300px;
  position: absolute;
  width: 300px;
  top: 20%;
}

.contact-us .contact-us-sky-shape {
  position: absolute;
  top: 5rem;
  right: 0;
  z-index: -1;
}


.contact-box h2 {
  font-size: 28px;
  font-weight: 600;
}

.contact-box img {
  margin-bottom: 10px;
  width: 50px;
  height: 50px;
}

.contact-box-email,
.contact-box-location,
.contact-box-phone {
  text-align: center;
  width: 33.3%;
}

.contact-info {
  padding-left: 0;
  position: relative;
  z-index: 10;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="subject"],
input[type="datetime-local"],
textarea {
  background: #fff;
  border: 1px solid #e9ecef;
  outline: 0;
  width: 100%;
  padding: 13px 20px;
  resize: none;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border-radius: 15px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="subject"],
input[type="datetime-local"] {
  height: 60px;
}

.text-msg {
  margin-bottom: 15px !important;
}

textarea {
  height: 220px;
  padding-top: 20px;
}

.btn-effect {
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  background-color: var(--color-accent-1);
  color: var(--white-color);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 15px 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.btn-effect:before {
  transform-origin: left top;
}

.btn-effect:before,
.btn-effect:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background-color: var(--second-color);
  transform: scale(0);
  z-index: -1;
  border-radius: inherit;
  transform-origin: right bottom;
  transition: opacity ease 0.4s, visibility ease 0.4s, transform ease 0.4s;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 20px;
  height: 80px;
}

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

.text__primary {
  color: var(--color-accent-1) !important;
}

.form-select,
input[type="date"],
input[type="number"] {
  height: 60px;
  box-shadow: none;
  border-radius: 15px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px;
}

@media (max-width: 575.98px) {
  .contact-box {
    justify-content: space-evenly !important;
    margin-right: 10px;
    margin-left: 10px;
  }

  .contact-box-email,
  .contact-box-location,
  .contact-box-phone {
    width: auto;
  }

  .contact-box-email,
  .contact-box-location,
  .contact-box-phone {
    padding-bottom: 20px;
  }

  .contact-info .btn-effect {
    margin-bottom: 30px;
    width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .contact-box {
    justify-content: space-evenly !important;
    margin-right: 10px;
    margin-left: 10px;
  }

  .contact-box-email,
  .contact-box-location,
  .contact-box-phone {
    width: auto;
  }

  .contact-box-email,
  .contact-box-location,
  .contact-box-phone {
    padding-bottom: 20px;
  }

  .contact-info .btn-effect {
    margin-bottom: 30px;
    width: 100%;
  }
}

.main-btn {
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  margin-left: 101px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 15px 37px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-color) !important;
  background-color: var(--color-accent-1);
  transition: all 0.2s linear;
}

.contact-box-phone,
.contact-box-location,
.contact-box-email {
  padding: 20px;
  background: var(--white-color);
  border-radius: 20px;
  padding: 2rem;
  height: 150px;
  width: 350px;
}

.contact-box-phone p a,
.contact-box-location p a,
.contact-box-email p a {
  max-width: 200px;
  color: #000;
}

.contact-box-body {
  margin-left: 20px;
}

.contact-box-body i {
  margin-right: 13px;
}

/*===============================================================
                Contact Us
===============================================================*/
/*===============================================================
               tailor Your Trip
===============================================================*/

.tailor-cover {
  background-attachment: fixed;
  background-size: cover;
  min-height: 450px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 222;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  background-position: 50% 50%;
}

.tailor-made {
  position: relative;
  z-index: 222;
  background: #f1f6ff;
}

.tailor-box {
  z-index: 2;
  position: relative;
  margin: 50px auto;
}

.tailor-made-shape-sun {
  position: absolute;
  top: 2rem;
  right: 4rem;
  width: 150px;

}

.form-select,
input[type="date"],
input[type="number"] {
  height: 60px;
  box-shadow: none;
  border-radius: 15px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px;
}

.form-select:focus,
input[type="date"]:focus-visible,
input[type="number"]:focus-visible {
  height: 60px;
  box-shadow: none;
  border-radius: 15px;
  border: 1px solid var(--second-color);
  outline: none;
}

.tailor-made-shape-footer-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tailor-made-shape-footer-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.tailor-made {
  position: relative;
  z-index: 222;
  background: #f1f6ff;
}

.padtobo-60 {
  padding-top: 34px;
}

.span {
  color: var(--color-accent-1);
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 16px;
  line-height: 14px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.text_h3 {
  color: var(--second-color);
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 45px;
}

.tour-details-package-box label {
  position: absolute;
  z-index: 2;
  top: -0.8rem;
  left: 1rem;
  padding: 2px;
  color: #000;
  background: #fff;
}

/*===============================================================
                tailor Your Trip
===============================================================*/

/*===============================================================
               about
===============================================================*/

.about_area {
  position: relative;
}

.about_area .about_info_wrap h3 {
  font-size: 39px;
  color: #b97d25;
  line-height: 50px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about_area .about_info_wrap h3 {
    font-size: 25px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .about_area .about_info_wrap h3 br {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_info_wrap h3 br {
    display: none;
  }
}

.about_area .about_info_wrap .long_dash {
  height: 3px;
  width: 70px;
  background: #DB9A64;
  display: inline-block;
  margin-bottom: 34px;
  margin-top: 17px;
}

.about_area .about_info_wrap p {
  font-size: 16px;
  line-height: 28px;
  color: #596672;
  margin-bottom: 50px;
}

.ptext {
  font-size: 16px;
  line-height: 28px;
  color: #596672;
  margin-bottom: 50px;
}

.about-us-info p {
  font-size: 16px;
  color: #596672;

}

.about_area .about_info_wrap .food_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .about_area .about_info_wrap .food_list {
    display: block;
  }
}

.about_area .about_info_wrap .food_list li {
  margin-right: 50px;
}

@media (max-width: 767px) {
  .about_area .about_info_wrap .food_list li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.about_area .about_info_wrap .food_list li span {
  padding-left: 14px;
  color: #DB9A64;
  font-size: 16px;
  font-weight: 400;
}

.about_area .about_img {
  position: relative;
}

.about_area .about_img .img_1 {
  padding-left: 80px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.about_area .about_img .img_1 img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  height: 500px;
}

.about_area .about_img .small_img {
  position: absolute;
  margin-top: -163px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .about_area .about_img .small_img {
    position: absolute;
    margin-top: -80px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 210px;
  }
}

.about_area .about_img .small_img img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  width: 100%;
  height: 224px;
}

.about_area .icon_1 {
  position: absolute;
  top: 7%;
  left: 4%;
}

.about_area .icon_3 {
  position: absolute;
  right: 4%;
  bottom: 10%;
}

.about_area .icon_2 {
  position: absolute;
  bottom: -12%;
  left: 6%;
}

.main_about_wrap {
  padding-top: 145px;
  padding-bottom: 130px;
}

@media (max-width: 767px) {
  .main_about_wrap {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .main_about_wrap {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.main_about_wrap h3 {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .main_about_wrap h3 {
    font-size: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main_about_wrap h3 {
    font-size: 35px;
  }
}

.main_about_wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 46px;
  margin-top: 24px;
}

.main_about_wrap .about_thumb {
  margin-bottom: 30px;
}

.main_about_wrap .about_thumb img {
  width: 100%;
}

.about-us-img .about-shape {
  position: absolute;
  left: 2rem;
  transform: rotate(286deg);
  top: 10rem;
}

.section-title h2,
.section-title-left h2 {
  color: var(--title-color);
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3.2px;
  font-size: 22px;
  line-height: 17px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title h3 {
  margin-bottom: 20px;
}

.section-title h3,
.section-title-left h3 {
  color: var(--color-accent-1);
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 45px;
}

.about-us-info {
  display: flex;
  justify-content: space-around;
}

.services-item {
  margin-bottom: 30px;
  padding: 40px;
  background: #fff;
  border: 1px solid #f3f2f2;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 40px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  text-align: left;
  position: relative;
  z-index: 1;
  height: 270px;
}

.services-item:hover hr {
  width: 100px;
  color: #fff;
}

.services-item hr {
  width: 60px;
  margin-left: 0;
  background: var(--second-color);
}

.number-bg {
  position: absolute;
  right: 40px;
  font-size: 70px;
  top: 30px;
  color: #deebff;
  z-index: -1;
  font-weight: 700;
}

.services-item:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 25px rgb(68 68 68 / 0.2);
  position: relative;
  z-index: 9;
  -webkit-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  transform: translate(0, -5px);
  border: 1px solid #e4efff;
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  border-top-left-radius: 70px;
}

.services-item:hover .service-line {
  width: 100px;
  border: 1px dotted #fff;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.services-item:hover h4 {
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -o-text-fill-color: transparent;
  -webkit-text-stroke-color: #deebff;
  -webkit-text-stroke-width: 1px;
}

.services-item:hover .number-bg {
  color: var(--main-color);
  font-size: 50px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.services-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10%;
  height: 10%;
  z-index: 3;
  border-radius: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0;
}

.services-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #7bc1c8;
  border-radius: 5px;
  -webkit-transition: 0.7s easeinout;
  -o-transition: 0.7s easeinout;
  transition: 0.7s easeinout;
  z-index: -1;
}

.services-item:hover::after,
.services-item:hover::before {
  height: 100%;
  opacity: 1;
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  border-top-right-radius: 70px;
}

.icon-services img {
  width: 70px;
  height: 70px;
}

.services-item:hover .icon-services {
  background-color: #fff;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.services-item:hover .icon-services img {
  width: 50px;
  height: 50px;
}

.services-item h4 {
  margin-bottom: 10px;
  margin-top: 10px;
  color: #333;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-item hr {
  width: 60px;
  margin-left: 0;
  background: var(--second-color);
}

.services-item:hover hr {
  width: 100px;
}

.services-item p {
  margin-bottom: 0px;
  color: #000;
  font-weight: 500;
}

.services-item:hover p {
  color: #fff;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.about_big_img {
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}


/*========================================  Gallery Start ======================================== */

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
}


.swiper-slide img {
  display: block;
  width: 487px;
  height: 254px;
  object-fit: cover;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  object-fit: cover;
}

.gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.125);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery-item:hover .gallery-content .gallery-info,
.gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  margin: 0;
}

.gallery-item img {
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.2);
}

.gallery-item:hover .gallery-content {
  background: rgb(185 125 37 / 62%);
}

.tab-class .nav-item {
  padding: 0 0 20px 0;
}

.tab-class .nav-item a.active {
  background: var(--second-color) !important;
}

.tab-class .nav-item a.active span {
  color: var(--color-white) !important;
}

.swiper_gallery {
  display: none;
}

.sho {
  display: none;
}

.character-gallery {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: repeat(4, calc(100px - 0.25rem / 2));
  grid-template-rows: repeat(6, calc(100px - 0.25rem / 2));
}

.character-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  grid-column: span 2;
  clip-path: path("M 80 20 C 100 0 100 0 120 20 C 140 40 160 60 180 80 C 200 100 200 100 180 120 C 160 140 140 160 120 180 C 100 200 100 200 80 180 C 60 160 40 140 20 120 C 0 100 0 100 20 80 Z"
    );
  transition: filter 0.5s, clip-path 0.5s;
  border-radius: 0.5rem;
}

.character-gallery img:nth-of-type(3),
.character-gallery img:nth-of-type(6) {
  grid-column: 2 / span 2;
}


.character-gallery img:not(:hover) {
  animation: zIndexHack 0.5s;
}

@keyframes zIndexHack {

  0%,
  100% {
    z-index: 10;
  }
}

.character-gallery>img:hover {
  filter: brightness(1) saturate(1.5);
}

/*===============================================================
               about
===============================================================*/


/* <!--=========================================== Blog Details Start ============================================= --> */
/* <!--=========================================== Blog Details Start ============================================= --> */

.padtop-70 {
  margin-top: 30px;
}

.tour-details-right.blog-side {
  padding: 0 10px;
}

.tour-details-package-title {
  letter-spacing: 0.25px;
  font-size: 24px;
  line-height: 27px;
  color: var(--color-dark-1);
  font-weight: bold;
  margin-bottom: 20px;
}

.tour-details-package-item.blog-sidebar {
  border-bottom-right-radius: 20px;
  margin-bottom: 20px;
  background: #f9f9f9;
  border-bottom-left-radius: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.blog-sidebar ul li {
  align-items: center;
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding: 0px 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  height: 56px;
  margin-bottom: 6px;
  background-color: #b97d25;
}

.blog-sidebar ul li a {
  font-size: 20px;
  color: #2d373c;
  transition: 0.5s;
}

.underline-two a:hover {
  color: #fff;
  letter-spacing: 2px;
}

.tour-side-item {
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}

.tour-side-item img {
  border-radius: 5px;
  height: 243px;
  width: 365px;
}

.tour-side-price {
  background: var(--white-color);
  position: absolute;
  bottom: 13px;
  padding: 10px;
  right: 0;
}

.tour-side-price h3 {
  color: var(--second-color);
  font-size: 16px;
}

.tour-side-price h3 span {
  color: var(--color-accent-1);
  font-weight: 600;
}

.inteagram-img a img {
  margin: 3px 1px;
  width: 114px;
  height: 96px;
  object-fit: cover;
}

.blog_details h2 {
  font-size: 28px;
  line-height: 1.5;
  padding-top: 20px;
  color: var(--second-color);
  font-weight: 600;
}

.blog-info-link {
  display: flex;
}

.blog-info-link li {
  margin-right: 15px;
}

.blog-info-link li a {
  color: var(--color-black);
}

.blog-info-link li i {
  color: var(--color-accent-1);
  margin-right: 5px;
}

blockquote {
  background-color: #faf8fb;
  padding: 40px;
  position: relative;
  margin-top: 55px;
  margin-bottom: 50px;
  border-radius: 10px;
}

blockquote:before {
  font: var(--fa-font-solid);
  content: "\f10d";
  position: absolute;
  left: 58px;
  top: -23px;
  width: 46px;
  line-height: 0.8;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-details-img {
  gap: 20px;
  display: flex;
}

.blog-details-img img {
  max-width: 50%;
  border-radius: 10px;
}

@media (max-width: 575.98px) {
  .blog-details-img img {
    max-width: 100%;
  }

  .blog-details-img {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
  }

  .blog-info-link {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: column;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .blog-details-img img {
    max-width: 100%;
  }

  .blog-details-img {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
  }

  .blog-info-link {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: column;
  }
}

.tour-side-price {
  background: var(--white-color);
  position: absolute;
  bottom: 13px;
  padding: 10px;
  right: 0;
}

.tour-details-deals-thumb .img {
  border-radius: 10px;
  width: 304px;
  height: 197px;
}

.tour-details-deals-text a {
  font-size: 16px;
  color: var(--color-dark-1);
  font-weight: 600;
}

/* <!--=========================================== Blog Details Start ============================================= --> */
/* <!--=========================================== Blog Details Start ============================================= --> */

/* -=========================================== tour-details Start =============================================  */
/* -=========================================== tour-details Start =============================================  */

.tour-details-package-content,
.tour-details-info-box,
.tour-details-deals-box {
  background-color: var(--main-grey);
  border-radius: 18px;
  padding: 15px 15px;
  border: 1px Solid #eee;
}

.tour-details-title {
  font-weight: 700;
  font-size: 28px;
  color: var(--second-color);
  position: relative;
}

.tour-details-package-box {
  width: 100%;
  /* padding-bottom: 20px; */
}

.date-box {
  position: relative;
}

.date-box label {
  position: absolute;
  font-size: 18px;
  left: 1rem;
  background: #fff;
  top: 15px;
}

.tour-details-package-box label {
  position: absolute;
  z-index: 2;
  top: -0.9rem;
  left: 1rem;
  padding: 2px;
  color: var(--second-color);
  font-size: 18px;
  background-color: #fff;
}

.tour-details-package-box label::before {
  width: 100%;
  position: absolute;
  content: "";
  background: #f9f9f9;
  height: 2px;
  top: 12px;
  z-index: -1;
}

.tour-details-package-proceed .btn-effect {
  width: 100%;
}

.tour-overview p {
  line-height: 1.6;
  font-size: 17px;
}

.tour-details-deals-text a {
  font-size: 15px;
  color: var(--second-color);
  font-weight: 600;
}

.tour-details-deals-thumb {
  padding-right: 20px;
}

.tour-details-deals-thumb img {
  border-radius: 10px;
}

.tour-details-passenger-categories {
  font-size: 16px;
}

.it-cart-input {
  width: 80px !important;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--color-accent-1);
}

.it-cart-input:focus-visible {
  border: 2px solid var(--second-color);
  outline: none;
}

.tour-details-service-checkbox input[type="checkbox"] {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

.tour-heading h2 {
  font-size: 35px;
  font-weight: 600;
  color: #221f3f;
}

.tour-details-service-price {
  color: var(--second-color);
  font-size: 16px;
  font-weight: 500;
}

.tour-details-service-title {
  color: var(--color-accent-1);
}

.tour-details-package-total-text {
  color: var(--second-color);
}

.tour-details-package-total-text span {
  color: var(--color-accent-1);
}

.tour-amenities-content {
  border: 1px dotted var(--color-accent-1);
  padding: 10px;
  border-radius: 10px;
}

.tour-amenities-list li a {
  color: var(--second-color);
  padding-right: 20px;
}

.tour-amenities_list li a {
  color: var(--second-color);
  padding-right: 20px;
}

.tour-amenities-list li a span {
  color: var(--color-accent-1);
}

.tour-amenities_list li a span {
  color: var(--color-accent-1);
}


.tour-include-exclude-table {
  border-radius: 20px;
  background-color: var(--main-grey);
  border: 1px dashed var(--color-accent-1);
}

.tour-include {
  border-right: 1px dashed var(--color-accent-1);
  padding: 20px;
}

.tour-exclude {
  padding: 20px;
}

.tour-include ul {
  display: flex;
  flex-direction: column;
}

.tour-exclude ul {
  display: flex;
  flex-direction: column;
}

.tour-include {
  font-size: 16px;
  color: var(--second-color);
  line-height: 2;
}

.tour-exclude {
  font-size: 16px;
  color: var(--second-color);
  line-height: 2;
}

#Exclusions .tour-include ul li::before {
  font: var(--fa-font-solid);
  content: "\f00c";
  width: 20px;
  height: 20px;
  color: green;
  margin-right: 10px;
  font-size: 16px;
}

#Exclusions .tour-exclude ul li::before {
  font: var(--fa-font-solid);
  content: "\f00d";
  width: 20px;
  height: 20px;
  color: red;
  margin-right: 10px;
  font-size: 16px;
}

.it-custom-accordion .accordion-buttons span {
  background-color: var(--color-accent-1);
  padding: 7px;
  border-radius: 10px;
  margin: auto 10px;
  color: var(--second-color);
}

.it-custom-accordion .accordion-buttons p {
  color: var(--second-color);
  font-size: 18px;
}

.it-custom-accordion .accordion-buttons {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.accordion-collapse {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.accordion-buttons.collapsed {
  background-color: var(--color-white);
  transform: scale(1);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.it-custom-accordion .accordion-buttons:hover,
.it-custom-accordion .accordion-buttons:focus {
  color: var(--second-color);
  border-bottom: 1px var(--second-color);
}

.accordion-items {
  border: 1px solid var(--color-accent-1);
  border-radius: 20px;
}

.accordion-items:visited {
  border-radius: 20px;
  background-color: var(--main-grey);
}

.tour-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.blog__item__img img {
  width: 50%;
}

.tour__side__price {
  position: absolute;
  top: 2rem;
  padding: 10px;
  right: 0;
}

.wpo-contact-widget {
  border: 0;
  background: url(../image/blog-6.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 30px 40px;
  border-radius: 44px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 40px 0px rgb(50 50 50 / 10%);
  box-shadow: 0px 10px 40px 0px rgb(50 50 50 / 10%);
}


.wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 104 26 / 59%);
  content: "";
  z-index: -1;
}

.wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.blog-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  position: relative;
  margin-top: 10px;
}

.tour_details_top_bottom {
  display: flex;
  justify-content: space-between;
}

.toru_details_top_bottom_item {
  display: flex;
  align-items: center;
}

.tour_details_top_bottom_icon {
  font-size: 27px;
  padding-right: 10px;
  color: #ff681a;
}

.tour_details_top_bottom_text h5 {
  font-weight: 500;
  color: #084298;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .swiper__img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}

.tour-details-area .package-included-location {
  margin-top: 33px;
  margin-bottom: 78px;
}

.package-included-location .single-blog {
  position: relative;
}

.single-blog {
  margin-bottom: 30px;
  border-radius: 10px;
}

.p-list {
  display: inline-block;
  text-align: center;
}

.p-list .list {
  width: 22px;
  height: 22px;
  background: #76819f;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  display: inline-block;
}

.p-list .list:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -15px;
  margin-right: -15px;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #76819f;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.itinerary__img {
  width: 97%;
  height: 391px;
  border-radius: 10px;
}

.thumb {
  position: relative;
}

.sen {
  display: block;
  color: #ff681a;
}

.test {
  font-weight: 700;
  display: block;
}

.single-blog-details {
  padding: 20px 0 10px 0;
}

.single-blog-details .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #27477d;
}

.single-blog-details .content {
  margin-bottom: 13px;
}

.btn-read-more {
  color: var(--color-accent-1);
}

.btn-read-more span {
  position: relative;
  padding-right: 28px;
}

.package-included-location .single-blog:after {
  content: "";
  position: absolute;
  top: 16px;
  width: 88%;
  border: 1px solid #76819f;
  left: 34px;
  z-index: -2;
}

.p-list p {
  color: var(--para-color);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

.btn-read-more span i {
  position: absolute;
  top: 5px;
  font-size: 18px;
  margin-left: 7px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}


.price {
  margin-top: 20px;
  font-size: 20px;
  color: #000;
  text-align: left;
  margin-bottom: 13px;
}

.main-btn--scroll {
  background: var(--color-accent-1);
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  font-size: 17px;
  border-radius: 6px;
  margin-left: 183px;
  width: 36%;
}

/* -=========================================== tour-details Start =============================================  */
/* -=========================================== tour-details Start =============================================  */


.see {
  font-size: 20px;
  color: #2d373c;
  transition: 0.5s;
  /* margin-left: 55%; */
}

.cruise_search_item {
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 20px;
}

.cruise_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cruise_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.add-to-cart-icon {
  left: 0;
  position: absolute;
  top: 0;
  margin: 15px;
  background: #7bc1c8;
  width: 30px;
  text-align: center;
  height: 30px;
  line-height: 34px;
  color: #fff;
  border-radius: 15px;
}

.cruise_item_inner_content {
  padding: 15px 20px 22px 19px;
}


.cruise_content_top_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cruise_content_top_left h4 a {
  padding-top: 8px;
  color: #000;
}


.cruise_content_middel_wrapper {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
}

.cruise_content_middel_left p {
  margin-bottom: 2px;
}

.cruise_content_middel_right h3 {
  font-weight: 500;
  margin-top: 10px;
}

.cruise_content_bottom_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
}


.btn_theme {
  color: var(--white-color);
  background-color: var(--main-color);
  transition: 0.4s all ease-out;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  border: none;
}

.btn_theme:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 574px;
  height: 550px;
  margin: auto;
  background: var(--para-color);
  color: var(--white-color);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);

}

.btn_theme:hover:before {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: translateX(-45%) translateY(0) scale(1);
  transform: translateX(-50%) translateY(0) scale(1);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  border: none;
}

.tour__details {
  background-color: #efefef;
  padding-top: 54px;
  padding-bottom: 50px;
}

.text-center p {
  font-weight: 400;
  color: #707070;
}

.type_encrypted {
  color: var(--second-color);
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

.Payment-Method {
  gap: 27px;
}

.booking-form {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 40px;
  overflow: hidden;
  background-image: url('https://i.imgur.com/8z1tx3u.jpg');
  background-size: cover;
  border-radius: 5px;
  z-index: 20
}

.booking-form::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1
}

.booking-form .form-header {
  text-align: center;
  position: relative;
  margin-bottom: 30px
}

.booking-form .form-header h1 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 42px;
  margin: 0px;
  color: #fff
}

.booking-form .form-group {
  position: relative;
  margin-bottom: 30px
}

.booking-form .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  height: 60px;
  padding: 0px 25px;
  border: none;
  border-radius: 40px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px transparent;
  box-shadow: 0px 0px 0px 2px transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s
}

.booking-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control:focus {
  -webkit-box-shadow: 0px 0px 0px 2px #ff8846;
  box-shadow: 0px 0px 0px 2px #ff8846
}

.booking-form input[type="date"].form-control {
  padding-top: 16px
}

.booking-form input[type="date"].form-control:invalid {
  color: rgba(255, 255, 255, 0.5)
}

.booking-form input[type="date"].form-control+.form-label {
  opacity: 1;
  top: 10px
}

.booking-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.booking-form select.form-control:invalid {
  color: rgba(255, 255, 255, 0.5)
}

.booking-form select.form-control+.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  line-height: 32px;
  height: 32px;
  text-align: center;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px
}

.booking-form select.form-control+.select-arrow:after {
  content: '\279C';
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.booking-form select.form-control option {
  color: #000
}

.booking-form .form-label {
  position: absolute;
  top: -10px;
  left: 25px;
  opacity: 0;
  color: #ff8846;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  height: 15px;
  line-height: 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all
}

.booking-form .form-group.input-not-empty .form-control {
  padding-top: 16px
}

.booking-form .form-group.input-not-empty .form-label {
  opacity: 1;
  top: 10px
}

.booking-form .submit-btn {
  color: #fff;
  background-color: #e35e0a;
  font-weight: 700;
  height: 60px;
  padding: 10px 30px;
  width: 100%;
  border-radius: 40px;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.3px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
  opacity: 0.9
}

.taxes_fees_included {
  font-size: 20px;
  margin-top: 13px;
  margin-bottom: 15px;
}

.total_price {
  font-size: 20px;
  margin-top: 20px;
}

.wpo-select-section .tourist-group-wrap span,
.wpo-select-section .tourist-item-group,
.wpo-select-section-s2 .tourist-group-wrap span,
.wpo-select-section-s2 .tourist-item-group {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wpo-select-section .tourist-item-group button,
.wpo-select-section-s2 .tourist-item-group button {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #e3e7e9;
  vertical-align: top;
  cursor: pointer;
  position: relative;
  min-width: 32px;
}

#adults_dec,
#adults_inc,
#Children_inc,
#Children_dec,
#Infants_inc,
#Infants_dec,
#Childrenkid_inc,
#Childrenkid_dec {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #e3e7e9;
  vertical-align: top;
  cursor: pointer;
  position: relative;
  min-width: 32px;
}

#adults_val,
#Children_val,
#Infants_val,
#Childrenkid_val {
  height: 20px;
  width: 66px;
  text-align: center;
  background: 0 0;
  color: #000;
  border: 2px solid #b97d25;
}

.cart_l {
  color: #000;
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 600;
}

.cart_con {
  height: 78px;
  padding-left: 8px;
  padding-top: 23px;
  padding-right: 20px;
  display: flex;
  margin-bottom: 20px;
  border: 6px solid #fff;
  border-radius: 20px;
}

.check {
  color: #fff;
  top: 10px;
  position: relative;
  left: 19px;
}

#Highlights ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

}

#Highlights ul li {
  font-size: 19px;
}

#Highlights ul li:before {
  font: var(--fa-font-solid);
  content: "\e554";
  width: 20px;
  height: 20px;
  color: var(--color-accent-1);
  margin-right: 10px;
  font-size: 16px;
}

#Notes ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

}

#Notes ul li {
  font-size: 19px;
}

#Notes ul li:before {
  font: var(--fa-font-solid);
  content: "\21";
  width: 20px;
  height: 20px;
  color: var(--color-accent-1);
  margin-right: 10px;
  font-size: 16px;
}

#Optional ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

}

#Optional ul li {
  font-size: 19px;
}

#Optional ul li:before {
  font: var(--fa-font-solid);
  content: "\f005";
  width: 20px;
  height: 20px;
  color: var(--color-accent-1);
  margin-right: 10px;
  font-size: 16px;
}


#Accommodation ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

}

#Accommodation ul li {
  font-size: 19px;
}

#Accommodation ul li:before {
  font: var(--fa-font-solid);
  content: "\f594";
  width: 20px;
  height: 20px;
  color: var(--color-accent-1);
  margin-right: 10px;
  font-size: 16px;
}




.package-Details .detalis--tour li {
  color: var(--black-color);
  list-style-type: disc !important;
}

.package-Details .float-start i {
  color: #003;
  border: 1px solid #ddd;
  text-align: center;
  margin: 0 10px 0 0;
  height: -13px;
  padding: 0;
}

.tour_details_boxed_inner h3 {
  font-weight: 600;
  padding-bottom: 20px;
  font-size: 18px;
}

.tour_details_boxed_inner {
  padding-top: 8px;
}

.tour_details_boxed_inner p {
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.tour_details_boxed_inner ul li {
  padding-bottom: 15px;
  color: var(--color-black);
  display: flex;
}

.tour_details_boxed_inner ul li i {
  color: var(--black-color);
  font-size: 6px;
  padding-right: 7px;
  padding-top: 6px;
}

.tour_details_boxed_inner .accordion-button {
  padding: 0;
  font-weight: 600;
  font-size: 18px;
}

.tour_details_boxed_inner .accordion-item {
  border: none;
  border-radius: 0;
  padding-bottom: 15px;
  width: 100%;
}

.tour_details_boxed_inner .accordion-button:not(.collapsed) {
  color: var(--main-color);
  background-color: #fff;
  box-shadow: none;
}

.tour_details_boxed_inner .accordion-button:focus {
  z-index: 3;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}

.tour_details_boxed_inner .accordion-body {
  padding: 0;
}


.accordion_itinerary_list {
  padding-top: 15px;
  float: right;
}

.accordion_flex_area {
  display: flex;
}

.accordion_left_side h5 {
  width: 100px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: #4c82ff24;
  margin-right: 15px;
  font-weight: 600;
  font-size: 18px;
}

.tour_details_boxed_inner .accordion-button {
  padding: 0;
  font-weight: 600;
  font-size: 18px;
}

.tour_details_boxed_inner .accordion-item {
  border: none;
  border-radius: 0;
  padding-bottom: 15px;
  width: 100%;
}

.tour_details_boxed_inner .accordion-button:not(.collapsed) {
  color: var(--main-color);
  background-color: #fff;
  box-shadow: none;
}

.tour_details_boxed_inner .accordion-button:focus {
  z-index: 3;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}

.tour_details_boxed_inner .accordion-body {
  padding: 0;
}

.accordion_itinerary_list {
  padding-top: 15px;
}

.accordion_flex_area {
  display: flex;
  padding-bottom: 20px;
}

.accordion_left_side h5 {
  width: 100px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: #f9f9f9;
  margin-right: 15px;
  font-weight: 600;
  font-size: 18px;
}

.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-dark-1);
  font-size: 25px;
  margin-bottom: 15px;
  padding-top: 44px;
}

.text_client {
  font-weight: 400;
  font-size: 16px;
  color: #212529 !important;
}


.dropdown_menu {
  margin-top: -10px;
}

.dropdownmenu {
  background-color: #212529;
}

.dropdown-menu {
  min-width: 7rem !important;
}

.travel-shape-one {
  position: absolute;
  left: 15px;
  opacity: 0.3;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: palneRight;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .travel-shape-one {
    display: none;
  }
}

.travel-shape-two {
  position: absolute;
  left: 16px;
  bottom: 140px;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: palneRight;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .travel-shape-two {
    left: 180px;
    bottom: 160px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .travel-shape-two {
    left: 160px;
    bottom: 125px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .travel-shape-two {
    display: none;
  }
}


@keyframes palneRight {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  80% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    transform: translateX(250px);
    opacity: 0;
  }
}


.travel-shape-three {
  position: absolute;
  right: 0;
  top: 0;
  animation: cameraScale 3s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
  -webkit-animation: cameraScale 3s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .travel-shape-three {
    right: 110px;
    top: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .travel-shape-three {
    display: none;
  }
}


@keyframes cameraScale {
  0% {
    transform: scale(0.5);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.travel-shape-six {
  position: absolute;
  right: 0;
  bottom: 117px;
  animation: stoneSlide 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate both;
  -webkit-animation: stoneSlide 5s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .travel-shape-six {
    bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .travel-shape-six {
    display: none;
  }
}


@keyframes stoneSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100px);
  }
}


.dropdown-item:focus,
.dropdown-item:hover {
  color: #1e2125;
  background-color: #e291199e;
}

/* strong{
  color: var(--color-accent-1);
} */

.section_title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section_title p {
  color: #666;
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 400;
}

.section_title h3 {
  color: var(--black-color);
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 45px;
  margin-bottom: 13px;
}

.filter-result {
  align-items: center;
  box-shadow: 5px 0px 8px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  padding: 18px;
}

.filter-result p {
  margin: 0;
  margin-left: 10px;
  color: var(--color-accent-1);
}

.nice-select {
  width: 100%;
  border: 1px solid var(--second-color) !important;
  margin: 10px 25px;
  background-color: #f9f9f9;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.filter-result .nice-select {
  max-width: 200px;
}

.nice-select {
  width: 100%;
  border: 1px solid var(--second-color) !important;
  margin: 10px 25px;
  background-color: #f9f9f9;
}

.filter-result .nice-select {
  max-width: 200px;
}

.nice-select .list {
  width: 100%;
}

.nice-select .list .option {
  display: block;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}


.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  ttransition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.breadcrumb {
  padding-left: 136px;
}

.banar {
  padding: 20px;
  background-color: #2222;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.baner_contant {
  text-align: center;
}

.image_banar {
  border-radius: 32px;
  height: 360px;
}

.about_heder {
  color: var(--second-color);
}

.about_text {
  font-size: 37px;
  color: #b97d25;
  line-height: 47px;
  margin-bottom: 0;
}


.btn__primary {
  background-color: var(--second-color) !important;
  border: none;
  color: #fff;
}

.btn__primary:hover {

  color: #fff;
}

.cont_icone {
  color: #b97d25;
  font-size: 28px !important;
}

.tel_cont {
  margin-left: 52px;
}

.tailor {
  background: var(--color-accent-1);
  display: block;
  text-align: center;
  padding: 14px 0;
  color: #fff;
  font-size: 17px;
  border-radius: 6px;
  margin-left: 45%;
  width: 16%;
}

.single_sidebar_widget {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #f3f3f3;
  border-radius: 10px;
}

.widget_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 13px;
  color: #444;
  margin-bottom: 15px;
}

.widget_title::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #f0e9ff;
}

.post_item img {
  width: 121px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
}

.popular_post_widget .post_item .media-body {
  max-width: 250px;
  padding-left: 20px;
}

.popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: var(--main-color);
}

.popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}

.popular_post_widget .post_item+.post_item {
  margin-top: 20px;
}

.social-media {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.social-media li {
  display: inline-block;
  margin: 10px 0;
}

.social-media li a {
  margin-right: 10px;
  transition: .4s;
  width: 40px;
  height: 40px;
  border-radius: 1px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  color: var(--white-color);
  border: 1px solid #ffbeab;
  background: var(--main-color);
  display: block;
  border-radius: 50%;
}

.navsLink.dropdown-li:hover .nav-link i {
  transform: rotate(-180deg);
  color: var(--color-accent-1);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.navsLink.dropdown-li i {
  padding-left: 3px;
}

.facebook:hover {
  color: #1877f2;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.twitter:hover {
  color: #1da1f2;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.linkedin:hover {
  color: #0a66c2;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.instagram:hover {
  color: #e1306c;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.pinterest:hover {
  color: #df0018;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social_icon:hover {
  box-shadow: inset 300px 0 0 0 #f2f2f2 !important;
  color: #13357b !important;
}

.tour-details-cat-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 33px;
  margin-top: 15px;
  margin-bottom: 0;
}

.tour-details-cat-item {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.tour-details-cat-text p {
  font-size: 23px;
  color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 21px !important;
  color: #000 !important;
}

.tour-Overview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tour-Overview li {
  font-size: 14px;
  color: var(--color-dark-1);
}

.tour-Overview li span {
  color: #0000009c;
}

.tour-Overview i {
  color: #b97d25;
  margin-right: 6px;
  font-size: 18px;
}

.tour_tab {
  background: var(--main-grey);
  --tw-shadow: 0px 0px 10px 1px rgba(0, 0, 0, .15);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  padding: 5px 29px;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  border-radius: 26px;
}

.tour_tabitem span {
  color: var(--second-color);
  margin-right: 17px;
  font-size: 20px;
  font-weight: 600;
}

.tour_details_right {
  background: #f9f9f9;
  padding: 30px 11px ;
  margin-bottom: 30px;
  border: 1px solid #f3f3f3;
  border-radius: 10px;
}

.tour_details_right .widget_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 13px;
  color: var(--second-color);
  margin-bottom: 15px;
}

.tour_details_right .widget_title::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #f0e9ff;
}

.check {
  color: #000;
  top: 10px;
  position: relative;
  left: 19px;
  z-index: 1;
}

.tourist-item-group {
  display: flex;
  gap: 7px;
  font-size: 20px;
}

.cartcon {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
}

.cart_l i {
  color: #b97d25;
  margin-right: 6px;
  font-size: 18px;
}

.now {
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #000;
  font-size: 17px;
  border-radius: 22px;
  margin-left: 16px;
  width: 90%;
}

.Price {
  background: var(--color-accent-1);
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  font-size: 17px;
  border-radius: 22px;
  width: 54%;
  margin-left: 21%;
}

.ticket_text {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--second-color);
  margin-bottom: 15px;
}

.ticket_text::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #f0e9ff;
}

.ticket {
  background: var(--color-accent-1);
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  font-size: 17px;
  border-radius: 22px;
  margin-left: 23%;
  width: 51%;
}

.ticket-text {
  line-height: 1.5;
  font-weight: 600;
}

.tour__ticket blockquote {
  background-color: #e9ecef;
  padding: 29px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
  font-size: 19px;
  color: #000000;
}

.tour__ticket blockquote:before {
  font: var(--fa-font-solid);
  content: "\f10d";
  position: absolute;
  left: 14px;
  top: -23px;
  width: 46px;
  line-height: 0.8;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-book {
  display: flex;
}

.tour__ticket blockquote i {
  color: #b97d25;
  margin-right: 6px;
  font-size: 32px;
  margin-bottom: 4px;
}

.tour_itinerary {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.tour_itinerary img {
  width: 43%;
  height: 200px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  float: right;
  margin-left: 10px;
  margin-bottom: 7px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 222222;
  padding-top: 9%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp i {
  background-color: #198754;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
}

.phone i {
  background-color: #0dcaf0;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
}

.form-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}

.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.form-container {
  background-color: #2d3638c2;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 40px;
  color: #fff;
}

.close-button {
  background: none;
  color: #fff;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  border: solid 1px #fff;
}

.form-popup-bg:before {
  content: '';
  background-color: #fff;
  opacity: .25;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.chrk {
  background-color: #d3e6ff;
}

.trip_Summary {
  position: sticky;
  top: 0;
}

.trip_Summary i {
  color: #b97d25;
  margin-right: 6px;
  font-size: 18px;
}

.tour_tob {
  display: flex;
  justify-content: space-between;
}

.tourr {
  margin-top: 76px;
}

.baner__contant {
  margin-top: 12%;
  margin-left: 30px;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff !important;
  opacity: 1;
}

.btn_box {
  background-color: transparent;
  border: 2px solid #b97d25;
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #000;
  font-size: 17px;
  border-radius: 22px;
  margin-left: 4px;
  width: 90%;
}

.btn_ask {
  margin-left: 10px;
}

.Checkout-form {
  padding-left: 20px;
  padding-bottom: 26px;
  padding-right: 20px;
}

.Checkoutbox {
  background-color: #ebeaea00;
  border: 2px solid #b97d257a;
  border-radius: 20px;
  padding-top: 47px;
}

.text_form {
  top: -33px;
  font-size: 24px;
  font-weight: 700;
}

.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img::before,
.feature-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--color-accent-1);
  z-index: -1;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 60%;
  height: 80%;
  object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
  margin: 20% 0 0 40%;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 57%;
  height: 70%;
  object-fit: cover;
  border-radius: 30px;
  border-radius: 42px;
}

.why_text {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--color-dark-1);
  font-size: 25px;
  margin-bottom: 15px;
}

.why_hero {
  font-size: 22px;
  font-weight: 600;
}

.why_item i {
  font-size: 21px;
  background-color: rgb(183 175 175 / 35%);
  padding: 12px;
  border-radius: 20%;
  color: #b97d25;
}

.why_item p {
  font-size: 16px;
}

.why_title {
  font-size: 16px;
}


.Payment {
  padding-top: 20px;
}


.feature_img img {
  height: 479px;
  border-radius: 11px;
  width: 838px;
  margin-bottom: 23px;
}



.international-item img {
  transition: 0.5s;
  height: 280px;
}

#InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  background: var(--second-color);
}

#InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 18px 5px;
  width: 15px;
  height: 15px;
  background: var(--main-grey);
  border: 1px solid var(--second-color);
  border-radius: 10px;
  transition: 0.5s;
}


.offcanvas-body {
  border-radius: 14px;
}

.about-us {
  margin-top: 12%;
}

.title_post {
  height: 112px;
  overflow: hidden;
}

.title_post .tour_para {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}


.contact_img {
  width: 100%;
  border: none;
  border-radius: 20px;
  height: 562px;
}

.InternationalTour-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 129px;
  left: -74px;
  padding: 5px 13px;
  border: 1px solid var(--color-accent-1);
  border-radius: 30px;
  transition: 0.5s;
}

.InternationalTour-carousel .owl-nav .owl-next {
  position: absolute;
  top: 119px;
  right: -78px;
  padding: 5px 13px;
  border: 1px solid var(--color-accent-1);
  border-radius: 30px;
  transition: 0.5s;
}


.InternationalTour-carousel .owl-nav .owl-prev i,
.InternationalTour-carousel .owl-nav .owl-next i {
  color: var(--color-accent-1);
  font-size: 22px;
  transition: 0.5s;
}

.tex_cont {
  font-size: 40px;
  color: #000;
}


/*===========pagination box ==================*/

.pagination {
  padding: 0;
  margin: 20px auto 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.paginationt li {
  margin-right: 20px
}

.paginationt li .shop-pagi-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s
}

.paginationt li .shop-pagi-btn i {
  color: var(--main-color);
  transition: .5s
}

.pagination li .shop-pagi-btn:hover {
  background-color: var(--main-color);
  border-color: var(--main-color)
}

.pagination li .shop-pagi-btn:hover i {
  color: var(--white-color)
}

.pagination li a {
  color: #b97d25;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  padding: 13px;
}

.pagination li a.active {
  color: var(--main-color)
}

.pagination li:first-child {
  /* margin-right: 30px; */
}

.pagination li:last-child {
  /* padding-left: 10px; */
  /* margin-right: 20px; */
}

/*===========pagination box ==================*/

/* Ù„Ø§Ø¨ ØªÙˆØ¨ ØµØºÙŠØ±Ø© */
@media (min-width: 1024px) and (max-width: 1366px) {
  .InternationalTour-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 129px;
    left: 0;
    padding: 5px 13px;
    border: 1px solid var(--color-accent-1);
    border-radius: 30px;
    transition: 0.5s;
  }

  .InternationalTour-carousel .owl-nav .owl-next {
    position: absolute;
    top: 119px;
    right: 0;
    padding: 5px 13px;
    border: 1px solid var(--color-accent-1);
    border-radius: 30px;
    transition: 0.5s;
  }

  .nav-link {
    /* padding-right: 0 !important; */
    padding-left: 0 !important;
  }

}


@media (max-width: 767px) {
  .about_area .about_img .img_1 img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
    height: 303px;
  }

  .about-us {
    margin-top: 1%;
  }

  .about_big_img {
    height: 324px;
  }

  .section-title h3,
  .section-title-left h3 {
    font-size: 26px;
  }

  .about-us-info {
    display: flex;
    flex-direction: column;
  }

  .swiper-slide img {

    height: 204px;
  }

  .cruise_content_middel_right h3 {
    font-weight: 500;
    margin-top: 44px;
  }

  .tourr {
    margin-top: 0;
  }

  .baner__contant {
    /* text-align: center; */
    margin-top: 9px;
    margin-left: 2px;
  }

  .text-light h1 {
    font-size: 19px;
    margin-top: 21px;
  }


  .breadcrumb {
    padding-left: 0;
  }

  .Payment-Method {
    gap: 27px;
    flex-direction: column;
  }

  .tailor {
    margin-left: 29%;
    width: 36%;
  }

  .section_title h3 {
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
  }

  .filter-result {
    gap: 20px;
    flex-direction: column;
  }

  .main-btn--scroll {
    /* margin-left: 115px; */
    width: 39%;
  }

  .gallery h2 {
    text-align: center;
    font-size: 24px;
  }

  .slider--el-content {
    left: 0;
  }

  .slider--el-text {
    margin-top: 140px;
    margin-left: 0;
    width: 22rem;
  }

  .btn_ask {
    margin-left: 10px;
    margin-top: 19px;
  }

  .slider--el-heading {
    margin-left: 33%;
    font-size: 3rem;
  }

  .slider_Hu {
    margin-left: 18%;
  }

  .tour-include-exclude-table {
    flex-direction: column;
  }

  .tour-include {
    border-bottom: 1px dashed rgb(185 125 37);
  }

  .tour_item {
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }

  .tour_itinerary {
    display: flex;
    align-items: flex-end;
    gap: 11px;
    flex-direction: column-reverse;
  }

  .tour_itinerary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 14px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  .now {
    width: 84%;
  }

  .right {
    /* margin-top: 17px; */
  }

  .tour_details_right .widget_title {
    font-size: 18px;
  }

  .tour_details_right {
    background: #f9f9f9;
    padding: 18px;
  }

  .cart_con {
    height: 78px;
    padding-left: 2px;
    padding-top: 3px;
    padding-right: 3px;
    display: flex;
    margin-bottom: 12px;
    border: 6px solid #fff;
    border-radius: 20px;
    align-items: center;
  }

  .form-container {
    padding-top: 170px;
  }

  .btn-model {
    margin-left: 92px;
    width: 34%;
  }

  .tour_details_right .widget_title {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 20px;
    color: var(--second-color);
    margin-bottom: 15px;
  }


  .Checkout_row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;

  }

  .About_mo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .about_info_wrap {
    margin-top: 54%;
  }

  .Send_Now {
    margin-left: 94px;
    width: 39%;
  }

  .cart_sh {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 35px;
  }

  .form-container h1 {
    font-size: 45px;
  }

  .close-button {
    background: none;
    color: #fff;
    width: 40px;
    height: 40px;
    position: relative;
    top: 37px;
    left: 91%;
    border: solid 1px #000;
  }

  .tour-book {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about_text {
    font-size: 19px;
    line-height: 34px;
  }

  .single-post h2 {
    font-size: 23px;

  }

  .feature_img img {
    height: 334px;
    border-radius: 11px;
    object-fit: cover;
  }

  .tex_cont {
    font-size: 29px;
    color: #000;
  }

  .contact_img {
    width: 100%;
    border: none;
    border-radius: 20px;
    height: 340px;
    margin-bottom: 22px;
  }

  .InternationalTour-carousel .owl-nav .owl-next {
    right: 0;
    display: none;
  }

  .InternationalTour-carousel .owl-nav .owl-prev {
    left: 0;
    display: none;
  }

  .accordion_flex_area {
    display: flex;
    padding-bottom: 20px;
    flex-direction: column;
  }

  .tour_tab {
    padding: 7px;

  }

  .tour_tabitem span {
    font-size: 9px;
  }

  .btn_box {
    margin-left: 8px;
  }

  .shadow-effect {
    background: #fff;
    padding: 0px;
  }

  .tour-heading h2 {
    font-size: 27px;
    font-weight: 600;
    color: #221f3f;
  }

  .Price {
    background: var(--color-accent-1);
    display: block;
    text-align: center;
    padding: 16px 0;
    color: #fff;
    font-size: 17px;
    border-radius: 22px;
    width: 75%;
    margin-left: 8%;
  }

  .accordion_left_side h5 {
    width: 100px;
    height: 35px;
    text-align: left;
    background: #f9f9f9;
    margin-right: 15px;
    font-weight: 600;
    font-size: 18px;
  }
}

.national-info p {
  margin-bottom: 12px;
  color: #fff;
}

.blog_details strong {
  color: #094174;
}

.blog_details ul li::before {
  font: var(--fa-font-solid);
  content: "\f111";
  width: 20px;
  height: 20px;
  color: #b97d25;
  margin-right: 6px;
  font-size: 6px;
}


.accordion_itinerary_list::after {
  content: "";
  clear: both;
  display: table;
}

.tour_tabitem {
  margin-left: 15px;
}

/* .tour-nav-content{
  justify-content: space-between;
} */

.tour-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white-color);
  border-radius: 10px;
  border: 1px solid #eee;
  margin-top: 21px;
  overflow: hidden;
}

#Highlights,
#Itinerary,
#Exclusions,
#Notes,
#Tours,
#Optional,
#Accommodation {
  scroll-margin-top: 100px;
}

.tour-nav h3 {
  padding: 20px 10px;
  border-right: 1px solid #eee;
  text-align: center;
  /* width: 100%; */
  position: relative;
}

.tour-nav h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
  opacity: 0;
}

.stickyNav {
  box-shadow: none;
}

.tour-nav h3.active {
  background-color: #eee;
}

.tour-nav h3.active::before {
  opacity: 1;
}

.tour-nav h3 a {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 600;
}


.tabs-navbar1 ul li a:hover,
.tabs-navbar1 ul li.active a {
  color: #fff;
  background: #a30e0e;
  transition: all ease-in-out .5s;
}

@media (max-width: 767.98px) {
  .tour-nav-content {
    display: grid !important;
    grid-template-columns: repeat(3, auto);
  }

  .tour-nav h3 {
    padding: 5px !important;
  }

  .breadcrumb {
    padding-left: 0;
    font-size: 18px;
  }

  #Highlights,
  #Itinerary,
  #Exclusions,
  #Notes,
  #Tours,
  #Optional,
  #Accommodation {
    scroll-margin-top: 150px;
  }
}

.package-card .package-title {
  height: 55px;
}

.tour-nav h3:last-of-type {
  border-right: none;
}

.thanks__text p {
  color: #000;
  font-size: 25px;
  font-weight: 500;
  margin-top: 31px;
}


.nav-link {
  padding-right: 1rem !important;
}

.navsLink,
.navsLink-hasdropdown {
  font-size: 17px;
  font-weight: 500;
  padding: 5px 0px;
  display: inline-block;
  color: #000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

.navsLink-hasdropdown .dropdown-menu {
  transform: translateZ(100%);
  transition: 0.6s all ease-in-out;
}

 .bg-gray .dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: block;
  visibility: hidden;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.svg-inline--fa {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -.125em;
}

.navbar_top {
  padding: 5px;
}

.dropdown-menu {
  min-width: 9rem !important;
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .nav-menu li a {
    color: var(--color-accent-1);
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
  }

  .navsLink,
  .navsLink-hasdropdown {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 4px;
    display: inline-block;
    color: #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none;
  }

}


.popup {
  position: relative;
  width: 500px;
  padding: 20px;
  border: 2px solid #b97d25;
  border-radius: 10px;
  background: white;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #888;
  cursor: pointer;
}

.popup .close-btn:hover {
  color: #000;
}

.popup .special-offer {
  display: inline-block;
  font-size: 18px;
  color: white;
  background: red;
  padding: 5px 15px;
  border-radius: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.popup h2 {
  font-size: 23px;
  color: var(--color-dark-1);
  margin: 10px 0;
  font-weight: 700;
}

.popup p {
  font-size: 14px;
  color: var(--color-dark-1);

}

.popup .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #b97d25;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.popup .btn:hover {
  background-color: #094174;
  ;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 11111;
}

.overlay.active {
  display: flex;
}

.altumcode-button-modal-image {
  max-width: 100%;
  width: auto;
  height: auto;
}


#CDSWIDSSP{
  width: 379px !important;
}


.TA_selfserveprop{
  z-index: 22222;
    position: relative;
}



/*===============================================================
      start contact-floating-bo
  ===============================================================*/

  .contact-floatbox {
    position: fixed;
    cursor: pointer;
    left: 0;
    bottom: 1rem;
    z-index: 2222;
    padding: 10px;
  }

  .contact-floatbox a {
    margin: 0 5px;
  }

  .contact-floatbox a img {
    margin-top: 35px;
  }

  .tooltip-inner {
    background-color: var(--main-grey);
    color: var(--second-color);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--second-color);
    font-size: 14px;
    top: 0;
  }

  .tooltip-arrow {
    width: 12px;
    height: 12px;
  }

  .tooltip {
    box-shadow: 0px 13px 48px 0px rgb(153 110 59 / 20%);
    max-width: 200px;
  }

  .phone_call {
    background: transparent;
    box-shadow: 0 0 0;
    border: 0;
    position: relative;
  }

.counter-controls {
    display: flex;
    align-items: center;
    border-radius: 999px;
    gap: 0px;
}

button.increase-btn {
    background: var(--white-color);
    box-shadow: none;
    border: 2px solid #1a2b49;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    color: #1a2b49;
    font-size: 20px;
}

button.decrease-btn {
    background: var(--white-color);
    box-shadow: none;
    border: 2px solid #1a2b49;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    color: #1a2b49;
    font-size: 20px;
}


.btn-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.expand-all {
    margin-left: auto;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.expand-all:hover {
    background: #f8f9fa;
}


.tour_details_right .tour-details-package-box {
    width: 100%;
    padding-bottom: 11px;
}

  /*===============================================================
        end contact-floating-box
    ===============================================================*/

    @media (max-width: 767.98px) {
      #customers-testimonials .item {
        padding-left: 11px;
    }
    .testimonials{
        height: 138vh !important;
        padding-top: 0 !important;

    }
    #CDSWIDSSP {
      width: 336px !important
    }
    .nav_mo{
      flex-direction: column;
    }
    .dropdown_menu {
      margin-top: -10px;
      margin-left: 153px;
  }

  .other-product a{
    color: #212529 !important;

  }
  .dropdown-li:hover .dropdown-menu {
    display: block;
    border-radius: 10px;
    padding: 0;
    margin-left: 116px;
    margin-top: -29px;
}





    }

