:root {
  --color1: #102054;
  --color2: #f06c1a;
  --color22: #fe8026;
  --color3: #213868;
  --color4: #2f375a;
  --color5: #5c6b8f;
}

body {
  font-family: "Tajawal", sans-serif;
}

hr {
  opacity: 1;
  border-top: 2px dashed #dfdfdf;
}

.color1 {
  color: var(--color1);
}
.color22 {
  color: var(--color22);
}
.color3 {
  color: var(--color3);
}
.color4 {
  color: var(--color4);
}
.color5 {
  color: var(--color5);
}

.bg_color1 {
  background-color: #102054;
}
.bg_color2 {
  background-color: #fe8026;
}
.bg_color3 {
  background-color: #213868;
}
.bg_color4 {
  background-color: #2f375a;
}
.bg_color5 {
  background-color: #5c6b8f;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.clamp {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  /* padding-bottom: .2rem; */
}
.clamp-1 {
  -webkit-line-clamp: 1;
}
.clamp-2 {
  -webkit-line-clamp: 2;
}
.clamp-3 {
  -webkit-line-clamp: 3;
}
.clamp-4 {
  -webkit-line-clamp: 4;
}
.clamp-5 {
  -webkit-line-clamp: 5;
}

@media (max-width: 991px) {
  .w_auto {
    width: auto !important;
  }
}

.wave-top-gallery {
  position: absolute;
  width: 100%;
  height: 18px;
  z-index: 10;
  background: url(../imgs/wave2.png) top center;
}

.top_head {
  background-color: var(--color1);
}

.btn_style1 {
  border: 0;
  border-radius: 0.375rem;
  background-color: var(--color1);
  color: #fff;
  transition: 0.3s;
  padding: 1rem 0.5rem;
}
.btn_style1:hover {
  background-color: var(--color22);
}

/* Header */
.navbar-brand img {
  width: 200px;
}
.btn_call_wts {
  background-color: #00d757;
  /* background-color: var(--color22); */
  /* background-color: #ff8029; */
  padding: 2px;
  color: #fff;
  transition: all 0.3s linear !important;
}
@media only screen and (max-width: 1400px) {
  .btn_call_wts {
    font-size: 14px;
  }
}
.btn_call_wts:hover {
  color: #fff;
  background-color: #00af46;
}
.nav-link {
  font-size: 14px;
  color: var(--color1);
}
.nav-link:hover {
  color: var(--color22);
}
.link_langs {
  color: var(--color1);
}
@media only screen and (max-width: 991px) {
  .navbar-brand img {
    width: 170px;
  }
  .brand-mobile img {
    width: 150px;
  }
  .navbar-nav .nav-item .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
}

.navbar .dropdown-menu {
  right: 10px;
  border-radius: 0;
  background-color: var(--color1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0;
  z-index: 12345;
}
.navbar .dropdown-menu a {
  padding: 10px;
  font-weight: 500;
  color: #fff;
}
.navbar .dropdown-menu a:hover {
  color: #fff;
  padding: 10px;
  background-color: var(--color22);
}
@media (min-width: 992px) {
  .navbar .dropdown-menu[data-bs-popper],
  .navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    top: 90%;
    left: 10px;
    transition: 0.2s;
    margin: 0;
  }
  .navbar .dropdown-menu[data-bs-popper],
  .navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    top: 100%;
  }
  [dir="rtl"] .navbar .dropdown-menu[data-bs-popper],
  [dir="rtl"] .navbar .dropdown-menu {
    right: 10px;
    left: auto;
  }
}

header a.dropdown-toggle::after {
  transition: all 0.3s ease-in-out;
}
.dropdown-toggle::after {
  content: "";
  border: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m19 9l-7 6l-7-6'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  position: absolute;
  right: -16px;
}
[dir="rtl"] .dropdown-toggle::after {
  position: absolute;
  left: -16px;
  right: auto;
}
[dir="rtl"] header .dropdown-toggle:hover::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header .dropdown-toggle:hover::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navbar-nav_lg a {
  background-color: #f9f9f9;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
}
.navbar-nav_lg a:hover {
  background-color: var(--color22);
  color: var(--color1);
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    background-color: var(--color1);
    color: #fff;
    padding: 8px 13px;
    position: absolute;
    left: 30px;
  }
  .dropdown-toggle::after {
    content: unset;
  }
  header .dropdown-menu[data-bs-popper],
  header .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    margin: 0;
  }
  header .dropdown-menu[data-bs-popper],
  header .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .nav-item.dropdown-item {
    position: relative;
  }
  .toggle_dropdown {
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #000;
    position: absolute;
    top: 10px;
    left: 0;
  }
  [dir="ltr"] .toggle_dropdown {
    left: auto;
    right: 0;
  }
  .toggle_dropdown::after {
    content: "";
    position: absolute;
    inset: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m19 9l-7 6l-7-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transition: 0.3s;
  }
  .toggle_dropdown:hover,
  .toggle_dropdown:focus {
    background-color: var(--color22);
    color: #fff;
    transition: 0.3s;
  }
  .toggle_dropdown:hover::after,
  .toggle_dropdown:focus::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .dropdown-menu.showing {
    position: static;
    top: 100%;
    width: 100%;
    right: 0;
    left: 0;
    border-top: 3px solid var(--color5);
  }
}

/* Home Banner */
.home_banner {
  padding: 5rem 0;
}
.bg_oberlay {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}
.bg_oberlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(226, 68%, 20%, 1);
  background: linear-gradient(180deg, hsla(226, 68%, 20%, 1) 0%, #213868 100%);
  background: -moz-linear-gradient(
    180deg,
    hsla(226, 68%, 20%, 1) 0%,
    #213868 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    hsla(226, 68%, 20%, 1) 0%,
    #213868 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#102054", endColorstr="#F06C1A", GradientType=1 );
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
.bg_oberlay.bg_oberlay2 {
  background-attachment: fixed;
}
.bg_oberlay.bg_oberlay2::before {
  background-image: none;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
.bg_oberlay.bg_oberlay2.bg_oberlay3::before {
  opacity: 0.7;
  background-color: var(--color1);
}
.bg_oberlay.bg_oberlay2.bg_oberlay4::before {
  opacity: 0.9;
  background-color: var(--color1);
}
.bg_oberlay.bg_oberlay2.bg_oberlay5::before {
  opacity: 0.8;
  background-color: var(--color1);
}
.home_banner h1 {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .home_banner {
    padding: 3rem 0;
  }
  .home_banner h1 {
    font-size: 1.4rem;
  }
}

.ts-wrapper:not(.form-control, .form-select).single .ts-control {
  background-color: var(--color4);
  color: #fff;
  border: 0;
  box-shadow: none;
  /* height: 60px; */
}
.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
  color: #fff;
}
.ts-wrapper.single .ts-control input::placeholder {
  color: #fff;
  font-size: 18px;
}
.ts-dropdown [data-selectable].option {
  font-size: 18px;
}

.service_item {
  background-color: var(--color1);
  color: #fff;
  /* min-height: 100px; */
  font-size: 20px;
  border: 1px solid var(--color1);
}
.service_item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--color5);
  border-color: var(--color5);
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .service_item {
    /* min-height: 60px; */
  }
}
.service_item img {
  width: 100px;
  transition: all 0.2s ease-in-out;
}
.service_item:hover img {
  transform: translateY(-5px) scale(1.1);
}
@media only screen and (max-width: 767px) {
  .service_item {
    font-size: 16px;
  }
  .service_item img {
    width: 80px;
  }
}
.home_banner .btn_call_wts {
  /* background-color: var(--color22);
  color: #fff !important;
  border: 1px solid #fff;
  font-size: 20px; */
  transition: all 0.2s ease-in-out;
}
.home_banner .btn_call_wts:hover {
  transform: translateY(-5px) scale(1.1);
}
/* End Home Banner */

.cta-item {
  z-index: 1;
  padding: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;

  background-size: cover;
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.cta-item:before {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #16243d;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(22, 36, 61, 0)),
    to(#16243d)
  );
  background: linear-gradient(180deg, rgba(22, 36, 61, 0) 0%, #16243d 100%);
  z-index: -1;
  opacity: 0.8;
  transition: all 0.3s linear;
}
.cta-item:hover::before {
  opacity: 1;
  height: 80%;
}

.cta-item h3 {
  transition: 0.3s ease-in-out;
  /* transform: translateY(50px); */
}
/* .cta-item:hover h3 {
  transform: translateY(0px);
} */

.cta-item h5 {
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(50px);
}
.cta-item:hover h5 {
  opacity: 1;
  transform: translateY(0px);
}
.cta_home .cta-item h3 {
  font-size: 30px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .cta-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .cta-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-item {
    min-height: 200px;
  }
  .cta-item h3 {
    font-size: 16px;
  }
  .cta-item h5 {
    font-size: 13px;
  }

  .cta_home .cta-item {
    min-height: 250px;
  }

  .cta_home .cta-item h3 {
    font-size: 25px;
  }
}

.theme-btn,
a.theme-btn {
  color: white;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  padding: 11px 36px;
  border-radius: 30px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: capitalize;
  background: var(--color22);
}
.theme-btn:hover {
  background-color: var(--color1);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 576px) {
  .theme-btn,
  a.theme-btn {
    padding: 8px 10px;
    font-size: 13px;
    /* width: 100%; */
  }
  .theme-btn.theme-btn_all,
  a.theme-btn.theme-btn_all {
    padding: 10px 16px;
    font-size: 16px;
    /* width: 100%; */
  }
}
.theme-btn span,
a.theme-btn span {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.theme-btn span:before,
a.theme-btn span:before {
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  content: attr(data-hover);
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
}
.theme-btn i,
.theme-btn svg,
a.theme-btn i {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-inline-start: 10px;
}
.theme-btn:hover span,
a.theme-btn:hover span {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.theme-btn:hover span:before,
a.theme-btn:hover span:before {
  opacity: 1;
}

.cta-item .theme-btn {
  padding: 8px 8px;
  font-size: 15px;
}
.theme-btn i,
.theme-btn svg,
a.theme-btn i {
  width: 21px;
  height: 21px;
  margin-inline-start: 5px;
}

/* Packages */
.pkg_item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pkg_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.pkg_item::before {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(16, 32, 84, 1) 0%,
    rgba(47, 55, 90, 1) 50%
  );
  opacity: 0;
}
.pkg_item:hover::before {
  opacity: 0.9;
}
/* .pkg_item img {
  transition: all 0.3s ease-in-out;
}
.pkg_item:hover img {
  filter: blur(10px);
} */
.pkg_item .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  transition: 0.8s all ease;
  color: #fff;
  text-align: center;
  transform: translateY(200px);
  opacity: 0;
}
.pkg_item:hover .content {
  transform: translateY(0px);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .pkg_item .content .title {
    font-size: 13px;
    line-height: 1.8;
  }
  .pkg_item .content .theme-btn {
    padding: 3px 0px;
    font-size: 12px;
  }
}

.destination-item {
  color: #000;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border: 1px solid #ddd;
}
.destination-item .image {
  margin: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  height: 300px;
}
.destination-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.destination-item .content {
  padding: 18px 10px 40px;
}
@media only screen and (max-width: 1599px) {
  .destination-item .content {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.destination-item .content .location {
  display: block;
  margin-bottom: 3px;
}
.destination-item .content .location i {
  margin-right: 5px;
}
@media only screen and (max-width: 375px) {
  .destination-item .content h5 {
    font-size: 22px;
  }
}
.destination-item .content h5 a {
  color: #000;
}
.destination-item .content h5 a:hover {
  text-decoration: underline;
}
.destination-item .destination-footer {
  padding: 20px 40px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1599px) {
  .destination-item .destination-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.destination-item .destination-footer .price {
  font-size: 14px;
  margin-bottom: 5px;
}
.destination-item .destination-footer .price span {
  color: white;
  font-size: 24px;
  font-weight: 500;
}
.destination-item .destination-footer .read-more {
  color: white;
  margin-bottom: 5px;
}
.destination-item:hover .image img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.destination-item.style-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .destination-item.style-three {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .destination-item .destination-footer .btn_call_wts {
    width: 100%;
  }
}
.destination-item.style-three .image {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 48%;
}
@media only screen and (max-width: 767px) {
  .destination-item.style-three .image {
    max-width: none;
    width: calc(100% - 20px);
  }
}
.destination-item.style-three .content {
  padding: 30px 10px 25px 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .destination-item.style-three .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .destination-item.style-three .content {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .destination-item.style-three .content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .destination-item.style-three .content {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 375px) {
  .destination-item.style-three .content {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 1600px) {
  .destination-item.style-three .content:first-child {
    padding-left: 50px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .destination-item.style-three .content:first-child {
    padding-left: 25px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .destination-item.style-three .content:first-child {
    padding-left: 35px;
    padding-right: 25px;
  }
}
.destination-item.style-three .content h5 {
  max-width: 320px;
}
.destination-item.style-three .content .list-style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.destination-item.style-three .content .list-style-one li:nth-child(odd) {
  width: 55%;
}
.destination-item.style-three .content .list-style-one li:nth-child(even) {
  width: 42%;
}
.destination-item.style-three .content .destination-footer {
  margin-top: 20px;
  padding: 20px 0 0;
}
.destination-item.style-three.bgc-lighter {
  color: var(--base-color);
  background: var(--lighter-color);
  border: 1px solid var(--border-color);
}
.destination-item.style-three.bgc-lighter .image .badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 10px;
  background: var(--secondary-color);
}
.destination-item.style-three.bgc-lighter .image .badge.bgc-pink {
  background: #fd4c5c;
}
.destination-item.style-three.bgc-lighter .image .badge.bgc-primary {
  background: var(--primary-color);
}
@media only screen and (min-width: 992px) {
  .destination-item.style-three.bgc-lighter .content {
    padding-left: 30px;
    padding-right: 40px;
  }
}
.destination-item.style-three.bgc-lighter .content .destination-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-header
  .location {
  margin-right: 20px;
  margin-bottom: 5px;
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-header
  .ratting {
  padding: 5px 10px;
  background: white;
  margin-bottom: 5px;
  border-radius: 30px;
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-header
  .ratting
  i {
  font-size: 10px;
}
.destination-item.style-three.bgc-lighter .content h5 {
  max-width: none;
}
.destination-item.style-three.bgc-lighter .content h5 a {
  color: var(--heading-color);
}
.destination-item.style-three.bgc-lighter .content p {
  margin-top: 12px;
}
.destination-item.style-three.bgc-lighter .content .destination-footer {
  border-top-color: var(--border-color);
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-footer
  .price
  span {
  color: var(--heading-color);
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-footer
  .read-more {
  color: var(--base-color);
  text-decoration: underline;
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-footer
  .read-more
  i {
  background: var(--secondary-color);
}
.destination-item.style-three.bgc-lighter
  .content
  .destination-footer
  .theme-btn.style-three {
  margin-bottom: 5px;
  padding: 5px 20px;
  font-size: 14px;
}
.destination-item.style-three.tour-grid {
  display: block;
}
.destination-item.style-three.tour-grid .image {
  max-width: none;
}
.destination-item.style-three.tour-grid .content {
  padding: 20px 30px 30px;
}
.destination-item.style-three.tour-grid .content .destination-footer {
  margin-top: 15px;
  border-top: none;
}
.destination-item.style-three.tour-grid
  .content
  .destination-footer
  .theme-btn.style-three:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.theme-btn_custom {
  font-size: 13px;
}
.theme-btn.theme-btn_custom:hover span,
a.theme-btn.theme-btn_custom:hover span {
  -webkit-transform: translateY(-160%);
  -ms-transform: translateY(-160%);
  transform: translateY(-160%);
}
@media only screen and (max-width: 375px) {
  .destination-item.style-three.tour-grid .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .theme-btn.theme-btn_custom:hover span,
  a.theme-btn.theme-btn_custom:hover span {
    -webkit-transform: translateY(-180%);
    -ms-transform: translateY(-180%);
    transform: translateY(-180%);
  }
}

/*
  START:: FAQ
*/
.faq-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.faq-section [class*="col-lg-"] {
  border-bottom: 1px solid #f1f1f1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.faq-section [class*="col-lg-"]:nth-child(odd) {
  padding-inline-end: 40px;
}
.faq-section [class*="col-lg-"]:nth-child(even) {
  border-inline-start: 1px solid #f1f1f1;
  padding-inline-start: 40px;
}
.faq-section [class*="col-lg-"]:nth-last-child(-n + 2) {
  padding-bottom: 0;
  border-bottom: 0;
}
.faq-section [class*="col-lg-"]:nth-child(1),
.faq-section [class*="col-lg-"]:nth-child(2) {
  padding-top: 0;
}
.faq-section .faq-icon span {
  background-color: var(--color22);
}
.faq-section .faq-icon span:before {
  border-color: var(--color22);
}

.faq-item {
}

.accordion-button {
  padding: 0;
}
.accordion-button:focus,
.accordion-button:hover {
  box-shadow: unset;
  color: var(--color22);
}
.accordion-button:not(.collapsed) {
  color: var(--color1);
  background-color: #fff;
  box-shadow: unset;
  outline: unset;
  color: var(--color22);
}

.faq-item:hover .faq-icon span::before {
  left: 0;
}
.faq-icon {
  margin-inline-end: 30px;
}
.faq-icon span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background-color: #f16101;
  font-family: "Satisfy";
  line-height: 70px;
  position: relative;
}
.faq-icon span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #f16101;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq-title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #012237;
}
.faq-text {
  font-size: 16px;
  font-weight: 600;
  padding-inline-start: 5.6rem;
}

.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .faq-title {
    font-size: 18px;
  }
  .faq-text {
    font-size: 14px;
    padding-inline-start: 5.6rem;
  }
}
@media (max-width: 991px) {
  .grid_2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .faq-title {
    font-size: 16px;
    /* margin-bottom: 20px; */
  }
}
@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 13px;
    /* margin-bottom: 10px; */
  }
  .faq-icon {
    margin-right: 24px;
  }
  [dir="rtl"] .faq-icon {
    margin-right: 0;
    margin-left: 20px;
  }
  .faq-icon span {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
  .faq-text {
    font-size: 13px;
    padding-inline-start: 3rem;
  }
}
/*
  END:: FAQ
*/

#spons-container {
  position: relative;
  overflow: hidden;
  height: 1.5em; /* adjust to match your line‑height/font-size */
}
/* all items start out translated above the container and invisible */
.spons-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .spons-item {
    font-size: 15px;
  }
}
/* the “active” one slides into place and fades in */
.spons-item.active {
  transform: translateY(0);
  opacity: 1;
}
.spons-item:hover {
  color: var(--color22) !important;
}

/* /////////////////////////// */

.social_item {
  text-align: center;
}
.social_item p {
  font-size: 13px;
}
.img_social {
  background-color: #eee;
  width: 100px;
  height: 100px;
  box-shadow: 0 0px 5px #ddd;
  border-radius: 50%;
  padding: 5px;
  margin-top: -50px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.social_item:hover .img_social {
  transform: scale(1.1);
}
.qr_code {
  background-color: #fff;
  /* width: 220px; */
  box-shadow: 0 0px 5px #ddd;
  border-radius: 20px;
  padding: 20px;
}

.qr_code .inset_qr {
  box-shadow: 0 0px 5px #ddd;
  border-radius: 20px;
  padding: 16px;
}
@media (max-width: 767px) {
  .social_item {
    padding: 30px;
  }
  .social_link {
    font-size: 13px !important;
  }
  .social_item p {
    font-size: 13px !important;
  }
  .img_social {
    width: 50px;
    height: 50px;
    padding: 3px;
    margin-top: -40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 578px) {
  .social_item {
    padding: 16px;
  }
  .qr_code {
    padding: 16px 8px;
  }
}
@media (max-width: 375px) {
  .social_item {
    padding: 12px;
  }
  .qr_code {
    padding: 16px 4px;
  }
}

/* $ => Footer */
footer {
  border-top: 1px solid #eee;
  padding-bottom: 5rem;
}
footer p {
  font-size: 16px;
}
.footer-description p {
  color: #333;
  font-weight: 500;
  width: 59%;
  padding-top: 20px;
}
.footer-description p {
  color: #999;
  font-size: 16px;
  width: 80%;
}
footer strong.h4 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color1);
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
}
/* 
create grid column 2
ul.footer-menu  */
ul.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
ul.footer-menu li {
  padding-bottom: 10px;
}
ul.footer-menu li a {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color3);
}
ul.footer-menu li a i {
  padding-left: 20px;
}
.footer-map {
  display: flex;
  align-items: baseline;
}
.footer-contacts i {
  color: var(--color22);
  font-size: 18px;
  width: 40px;
  text-align: center;
}
.footer-map p {
  color: var(--color3);
}
.footer-contacts a {
  color: var(--color3);
  font-size: 16px;
  display: block;
  padding-top: 20px;
}

ul.footer-menu li a:hover,
.footer-contacts a:hover {
  color: var(--color22);
}

.page-contact .social-icons a,
footer .social-icons a {
  border: 1px solid #eee;
}

.footer-copyright {
  padding-top: 25px;
  margin-top: 50px;
  border: 1px solid #eee;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding-bottom: 25px;
}
.footer-copyright a {
  color: #787878;
  font-size: 14px;
  padding-left: 20px;
}
.footer-copyright p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.wts_sec {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .wts_sec {
    /* margin-top: -20px; */
  }
  ul.footer-menu li a {
    font-size: 13px;
  }
  .footer-map p {
    font-size: 13px;
  }
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.social-icons a:hover {
  transform: translateY(-1px);
}
.social-icons a.linkedin {
  border-color: #0072b1;
  color: #0072b1;
}
.social-icons a.linkedin:hover {
  background-color: #0072b1;
  color: #fff;
}
.social-icons a.facebook-f {
  border-color: #3b5998;
  color: #3b5998;
}
.social-icons a.facebook-f:hover {
  background-color: #3b5998;
  color: #fff;
}
.social-icons a.twitter {
  border-color: #020202;
  color: #020202;
}
.social-icons a.twitter:hover {
  background-color: #020202;
  color: #fff;
}
/* # => Footer */

/* Whatsapp Button */
#wa_button {
  bottom: 50px;
  right: 10px;
  position: fixed;
  z-index: 999;
}
[dir=ltr] {
  right: auto;
  left: 10px;
}
.img-circle {
  background-color: #25d366;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
.circlephone {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border: 2px solid #25d366;
  width: 150px;
  height: 150px;
  bottom: -25px;
  right: 10px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  opacity: 0.5;
  -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
  -o-animation: circle-anim 2.4s infinite ease-in-out !important;
  animation: circle-anim 2.4s infinite ease-in-out !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-fill {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  background-color: #25d366;
  width: 100px;
  height: 100px;
  bottom: 0px;
  right: 35px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
  animation: circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.img-circle {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  bottom: 14px;
  right: 49px;
  position: absolute;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.9;
}
.img-circleblock {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  width: 72px;
  height: 72px;
  /* background-image: url("../imgs/whats-icon.png");
  background-position: center center;
  background-repeat: no-repeat; */
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-circle:hover {
  opacity: 1;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 1;
  }
}
@keyframes tossing {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(-8deg);
  }
}
@-moz-keyframes circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
    -moz-opacity: 0.1;
    -webkit-opacity: 0.1;
    -o-opacity: 0.1;
  }
  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
    -moz-opacity: 0.5;
    -webkit-opacity: 0.5;
    -o-opacity: 0.5;
  }
  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.6;
    -moz-opacity: 0.6;
    -webkit-opacity: 0.6;
    -o-opacity: 0.1;
  }
}
@-webkit-keyframes circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-o-keyframes circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: 0.1;
  }
  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity: 0.5;
  }
  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: 0.1;
  }
}
@keyframes circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@-moz-keyframes circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-o-keyframes circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}

@media screen and (max-width: 767px) {
  #wa_button {
    bottom: 20px;
    right: 0px;
  }
  .circlephone {
    width: 100px;
    height: 100px;
  }
  .circle-fill {
    width: 67px;
    height: 67px;
  }
  .img-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    right: 36px;
  }
  .img-circleblock {
    width: 37px;
    height: 37px;
    background-size: contain;
  }
  .circle-fill {
    bottom: -9px;
    right: 28px;
  }
}

.breadcrumb-area {
  background-color: var(--color1);
}
.breadcrumb-list ul li {
  display: inline-block;
  margin-inline-start: 40px;
  position: relative;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.breadcrumb-list ul li:first-child {
  margin-inline-start: 0;
}
.breadcrumb-list ul li:after {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 30px;
  height: 30px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cg fill='%23000'%3E%3Cpath d='M176 128a48 48 0 1 1-48-48a48 48 0 0 1 48 48' opacity='0.2'/%3E%3Cpath d='M140 128a12 12 0 1 1-12-12a12 12 0 0 1 12 12'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
[dir="rtl"] .breadcrumb-list ul li:after {
  content: "\f053";
  right: auto;
  left: -20px;
}
.breadcrumb-list ul li:last-child:after {
  content: unset;
}
.breadcrumb-list ul li a {
  color: #fff;
}
.breadcrumb-list ul li a:hover {
  color: var(--color22);
}

/* Page Packages Details */
.packages-slider {
}
.packages-slider .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  height: 450px;
}
.packages-slider .swiper-slide a {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.packages-slider .swiper-slide img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.packages-slider .swiper-slide:hover img {
  transform: scale(1.2);
  /* filter: blur(3px); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* .packages-slider .swiper-button-next,
.packages-slider .swiper-button-prev {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
  color: var(--color2);
  transition: 0.4s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.packages-slider .swiper-button-next {
  left: -60px;
}
.packages-slider .swiper-button-prev {
  right: -60px;
}
.packages-slider .swiper-button-next:hover,
.packages-slider .swiper-button-prev:hover {
  background-color: var(--color2);
  color: #fff;
} */
.packages-slider .swiper-button-next:after,
.packages-slider .swiper-button-prev:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.packages-slider .swiper-button-next:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 12H4m0 0l6-6m-6 6l6 6'/%3E%3C/svg%3E");
}
.packages-slider .swiper-button-prev:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h16m0 0l-6-6m6 6l-6 6'/%3E%3C/svg%3E");
}
.packages-slider:hover .swiper-button-next {
  left: 10px;
}
.packages-slider:hover .swiper-button-prev {
  right: 10px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d6d6d6;
  margin: 5px 7px !important;
  transition: all 0.2s ease;
  border-radius: 30px;
  opacity: 0.8;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
  background-color: #869791;
}
.packages-slider
  .swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.packages-slider
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  bottom: 30px;
}

/* .................................................... Pages .................................................... */

.item_sup .image {
  height: 250px;
}
.item_sup .image img {
  transition: all 0.3s;
}
.item_sup .image:hover img {
  transform: scale(1.1);
}
.item_sup .title {
  font-size: 17px;
}
.item_sup .title:hover {
  color: var(--color22);
}

.page-project-details .icon_img {
  height: 40px;
}

.page-project-details .accordion-item {
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.page-project-details .content_acc {
  border-top: 1px dashed #eee;
}

@media screen and (max-width: 991px) {
  .sc_mar_top {
    scroll-margin-top: 50px;
  }
  .page-project-details h2.title {
    font-size: 20px !important;
  }
  .page-project-details .icon_img {
    height: 30px;
  }
  .btn_see_gallries {
    transition: 0.3s;
  }
  .btn_see_gallries:hover {
    background-color: var(--color22);
    color: #fff;
  }
}

.galler_sw .swiper-slide {
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.galler_sw .swiper-slide img {
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.galler_sw .swiper-slide:hover img {
  filter: blur(5px);
}
.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.galler_sw .swiper-slide:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1.5);
}

.galler_sw .swiper-button-next,
.swiper-rtl.galler_sw .swiper-button-prev {
  right: -50px;
  left: auto;
  opacity: 0;
}
.galler_sw.swiper-button-prev,
.swiper-rtl.galler_sw .swiper-button-next {
  left: -50px;
  right: auto;
  opacity: 0;
}
.galler_sw:hover .swiper-button-next,
.swiper-rtl.galler_sw:hover .swiper-button-prev {
  right: 10px;
  left: auto;
  opacity: 1;
}
.galler_sw:hover.swiper-button-prev,
.swiper-rtl.galler_sw:hover .swiper-button-next {
  left: 10px;
  right: auto;
  opacity: 1;
}

.galler_thum .swiper-slide {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #ddd;
}
.galler_thum .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide.swiper-slide-thumb-active {
  border: 2px solid var(--color22);
}

@media screen and (max-width: 767px) {
  .galler_sw .swiper-slide {
    height: 200px;
  }
  .galler_thum .swiper-slide {
    height: 50px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  transition: 0.3s;
  width: 50px;
  height: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--color1);
  border-radius: 5px;
  padding: 18px 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color22);
  color: #fff;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: inline-block;
  font-size: 5rem;
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.swiper-button-next:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 12H4m0 0l6-6m-6 6l6 6'/%3E%3C/svg%3E");
}
.swiper-button-prev:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h16m0 0l-6-6m6 6l-6 6'/%3E%3C/svg%3E");
}

.text_styles ul li {
  padding-inline-start: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.text_styles ul li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' color='%23000'%3E%3Cpath d='M21.448 8.2c.052 1.05.052 2.3.052 3.8c0 4.478 0 6.718-1.391 8.109S16.479 21.5 12 21.5c-4.478 0-6.718 0-8.109-1.391S2.5 16.479 2.5 12c0-4.478 0-6.718 1.391-8.109S7.521 2.5 12 2.5c1.072 0 2.016 0 2.85.02'/%3E%3Cpath d='M8 11.5s1.5 0 3.5 3.5c0 0 5.059-9.167 10-11'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  margin-inline-end: 10px;
  color: var(--color22);
}
.text_styles table td {
  font-weight: 700;
}
.text_styles table td img {
  max-width: 200px;
  margin: auto;
  display: block;
}

.map-location {
  line-height: 0;
}
.map-location iframe {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  width: 100% !important;
  height: 350px !important  ;
}
@media (max-width: 767px) {
  .map-location iframe {
    height: 180px !important;
  }
  .contact_title p {
    font-size: 14px !important;
  }
  .page-contact .form-control {
    font-size: 12px !important;
  }
}

/* Make dynamic grid */
.grid_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.img_item_grid {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.img_item_grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.img_item_grid:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

.widget-area {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  top: 100px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--color1);
  border-color: var(--color1);
}

@media screen and (max-width: 767px) {

  .widget-area h2 {
    font-size: 18px;
  }
  .widget-area h4 {
    font-size: 16px;
  }
  .widget-area .nav-link {
    margin-top: .5rem !important;
  }
  
  .sec_title strong {
    font-size: 18px !important;
  }
  .sec_title p {
    font-size: 14px !important;
  }
  .search_form strong {
    font-size: 14px !important;
  }
  .search_form .btn_style1 svg {
    height: 18px;
  }
  .search_form .btn_style1,
  .ts-control {
    padding: 0.6rem 0.75rem;
    font-size: 14px;
  }
  .ts-dropdown [data-selectable].option,
  .ts-wrapper.single .ts-control input::placeholder {
    font-size: 14px;
  }
}
