/*===============================================
 Start Import Font Section
 ===============================================*/
/* poppins-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins-font/poppins-v22-latin-300.woff2") format("woff2");
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-font/poppins-v22-latin-regular.woff2") format("woff2");
}

/* poppins-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/poppins-font/poppins-v22-latin-italic.woff2") format("woff2");
}

/* poppins-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-font/poppins-v22-latin-500.woff2") format("woff2");
}

/* poppins-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-font/poppins-v22-latin-600.woff2") format("woff2");
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-font/poppins-v22-latin-700.woff2") format("woff2");
}

/* raleway-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway-font/raleway-v34-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Satisfy";
  src: url("../fonts/satisfy-font/satisfy-v21-latin-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/*=========================================
  End Import Font s section
  ==========================================*/
/*========== All Transition Settings ==========*/

* {
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  box-sizing: border-box;
}

:root {
  --main-color: #fc7417;
  --second-color: #2073f8;
  --light-color: #f2f7fc;
  --main-grey: #f1f2f3;
  --black-color: #1a2b49;
  --white-color: #fff;
  --para-color: #63687a;
  scroll-behavior: smooth;
  --font-family: "Poppins", sans-serif;
  --font-hand: "Satisfy", cursive;
  --box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

::selection {
  background-color: var(--second-color);
  color: var(--white-color);
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  width: 100%;
  border: none;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

select:focus,
select:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  outline: 0;
}

textarea {
  height: 220px;
  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: 50px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 600;
}

h3 {
  font-weight: 600;
  font-size: 20px;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 400;
}

p {
  line-height: 2;
  font-weight: 400;
  color: var(--para-color);
  letter-spacing: 0.5px;
  margin: 0;
}

p.two-line {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

p.three-line {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  height: 85px;
}

/*========== Spacing CSS ==========*/

.padtobo-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padtobo-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padtop-100 {
  padding-top: 100px;
}

.padbo-100 {
  padding-bottom: 100px;
}

.padtobo-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padtop-70 {
  padding-top: 70px;
}

.padtop-60 {
  padding-top: 60px;
}

.padbo-70 {
  padding-bottom: 70px;
}

.padbo-60 {
  padding-bottom: 60px;
}

.padtobo-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padtobo-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padtop-50 {
  padding-top: 50px;
}

.padbo-50 {
  padding-bottom: 50px;
}

.padbo-30 {
  padding-bottom: 30px;
}

.padrl-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.padtobo-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padtop-40 {
  padding-top: 40px;
}

.padbo-40 {
  padding-bottom: 40px;
}

.no-padding {
  padding: 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mt-25 {
  margin-top: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mb-10 {
  margin-bottom: 10px;
}

/*========= Alignment CSS ==========*/
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black-color);
}

/* ============= Reset CSS =========== */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="subject"]:focus,
textarea:focus,
.form-select:focus {
  outline: none !important;
  border: 1px solid var(--main-color);
  -webkit-transform: translate3d(0px, 0px, 5px);
  transform: translate3d(0px, 0px, 5px);
  font-size: 16px;
  color: var(--main-color);
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
textarea,
.form-select {
  background: var(--white-color);
  border: 1px solid #eee;
  outline: 0;
  width: 100%;
  padding: 1rem;
  resize: none;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
.form-select {
  height: 40px;
}

textarea {
  height: 200px;
  padding-top: 20px;
}

.text-msg {
  margin-bottom: 15px !important;
}

textarea:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

::-webkit-scrollbar {
  background: transparent;
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  /* border-radius: 20px; */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-button {
  background-color: var(--second-color);
  height: 15px;
  display: none;
}

/*========== Block Settings ==========*/
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  border: none;
  outline: 0;
}

ul ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

/*============== Start My classess ===============*/
.section-title {
  position: relative;
}

.section-title .section-title-span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--second-color);
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  z-index: 20;
  padding: 0.5rem 1rem;
  background-color: var(--light-color);
  border-radius: 999px;
  font-family: var(--font-hand);
  letter-spacing: 1px;
}

.section-title .section-title-span::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  z-index: -1;
  border: 1px solid var(--second-color);
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 20px;
}

.section-title .section-title-span::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  z-index: -1;
  border: 1px solid var(--second-color);
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 20px;
}

.section-title h2 {
  color: var(--black-color);
  text-transform: capitalize;
  font-size: 32px;
  font-weight: 600;
  /* margin-bottom: 20px; */
  line-height: 45px;
  position: relative;
}

.section-title h2 .section-title-head {
  color: var(--second-color);
}

.section-title-para {
  max-height: 150px;
  width: 75%;
  overflow: hidden;
  margin-block: 10px;
  transition: max-height 0.3s ease-in-out;
}

.section-title-para.show {
  max-height: 1000px;
}

.showMore-btn {
  transition: 0.3s all ease-in-out;
  display: none;
  margin-top: 10px;
  padding: 10px 20px;
  color: var(--main-color);
  border: 1px solid var(--second-color);
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  background-color: transparent;
  position: relative;
}

/* .showMore-btn::before {
  width: 50px;
  height: 2px;
  background-color: var(--second-color);
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
} */

.showMore-btn:hover {
  background-color: var(--second-color);
}

/*===================================================
                Start btn classess
===================================================*/
.btn-effect {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--second-color);
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  border-radius: 14px;
  z-index: 1;
  overflow: hidden;
  letter-spacing: 0.1px;
  height: max-content;
  width: max-content;
  border-radius: 4px;
  background: var(--main-grey);
  height: 40px;
  padding-inline: 1rem;
}

.btn-effect::after,
.btn-effect::before {
  width: 101%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--bg-color-4);
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: inherit;
}

.btn-effect:before {
  transform: rotateX(90deg);
}

.btn-effect:after {
  transform: rotateY(90deg);
}

.btn-effect>i {
  margin-right: 3px;
  transform: rotate(45deg);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 25px;
  width: 25px;
  line-height: 25px;
}

.btn-effect::before,
.btn-effect::after {
  background: var(--white-color);
}

.btn-effect:hover {
  color: var(--main-color);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.btn-effect:hover i {
  transform: rotate(90deg);
}

.btn-effect:hover:before {
  transform: rotateX(0);
}

.btn-effect:hover:after {
  transform: rotateY(0);
}

/*=============================================
               end  btn classess
==============================================*/
/*============================================
 start header
==============================================*/
.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.navbar-nav {
  gap: 15px;
}

.navbar.is-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: var(--box-shadow);
}

.navbar-main a.nav-link {
  font-size: 16px;
  color: var(--black-color);
  font-weight: 500;
  text-transform: capitalize;
}

.navbar-main a.nav-link:hover {
  background-color: var(--main-grey);
  border-radius: 20px;
}

.nav-item.has-dropdown .dropdown-parent {
  display: none;
  pointer-events: none;
  transition: 0.4s ease all;
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  background: var(--white-color);
  z-index: 2000;
  box-shadow: var(--box-shadow);
  padding: 10px;
}

.navbar-nav>li.nav-item {
  padding: 10px !important;
}

.navbar-toggler {
  padding: 0 5px;
}

.navbar-toggler-icon {
  height: auto !important;
  width: auto !important;
}

.navbar-toggler-icon span {
  background: var(--second-color);
  width: 30px;
  display: block;
  height: 2px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.navbar-nav>li:hover>.dropdown-parent {
  display: block;
  pointer-events: auto;
}

.nav-item.has-dropdown .dropdown-parent li {
  display: block;
  padding: 0.75rem;
}

.dropdown-parent .main-menu>li.active {
  background-color: var(--white-color);
  border-radius: 999px;
}

.nav-item.has-dropdown .dropdown-parent li:hover,
.nav-item.has-dropdown .dropdown-parent li a:hover,
.dropdown-parent .main-menu>li.active {
  background-color: var(--white-color);
  border-radius: 999px;
}

.nav-item.has-dropdown .dropdown-parent .main-menu>ul>li>a:hover {
  padding-left: 20px;
}

.navbar-nav>li:hover>.dropdown-parent {
  opacity: 1;
  visibility: visible;
  transition: 0.5s all ease-in-out;
  pointer-events: auto;
  display: block;
}

.main-menu {
  position: relative;
  width: fit-content;
  height: auto;
  background: var(--main-grey);
  padding: 5px;
  border-radius: 5px;
  min-width: 25%;
}

.nav-item.has-dropdown .dropdown-parent .main-menu .sub-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-menu .sub-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: absolute;
  left: 105%;
  top: 0;
  width: max-content;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  gap: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.main-menu .sub-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 500px;

}

.main-menu .sub-menu.active li a:hover {
  background-color: var(--main-grey);
}

.main-menu .sub-menu li {
  display: block;
  border-radius: 5px;
  width: 100%;
}

.main-menu .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--black-color);
  font-weight: 400;
}

.main-menu .sub-menu li a img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
}

.main-menu .sub-menu li a span {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.main-menu .sub-menu li:hover {
  background: var(--main-grey);
}

.main-menu .sub-menu li a:hover span {
  color: var(--main-color);
}

.dropdown-menu img {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  object-fit: cover;
}

.language-select li {
  display: block !important;
}

.lang-btn {
  display: flex;
  align-items: center;
}

header {
  background-color: var(--main-grey);
}

.upper-nav {
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 0.3rem;
}

.navbar-icons i,
.social-nav i {
  color: #505557;
}

.social-nav i {
  margin-right: 7px;
  font-size: 16px;
}

.social-nav a {
  margin-left: 10px;
}

.navbar-icons a,
.social-nav span {
  color: var(--black-color);
  font-weight: 400;
  letter-spacing: 1px;
}

.navbar-icons span {
  margin-left: 5px;
}

/* Side Menu Item */
.side-menu {
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  padding: 30px 15px;
  background: var(--main-grey);
  overflow: hidden;
  visibility: hidden;
  z-index: 23000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: -11px 0px 13px rgba(0, 0, 0, 0.02);
  -o-box-shadow: -11px 0px 13px rgba(0, 0, 0, 0.02);
  box-shadow: -11px 0px 13px rgba(0, 0, 0, 0.02);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.side-menu::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/shapes/about-us-pattern-bg.png");
  z-index: -1;
}

.side-menu.open {
  left: 0;
  visibility: visible;
  top: 0;
  bottom: 0;
  border-radius: 0 10px 10px 0;
  border: 1px solid #eee;
  width: 100%;
  height: 100%;
}

.side-menu::-webkit-scrollbar {
  width: 3px;
}

.follow-us h3 {
  color: var(--main-color);
}

.mobile.nav-menu li a {
  color: var(--black-color);
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-heading);
  position: relative;
  text-transform: capitalize;
}

.mobile.nav-item {
  padding-block: 10px;
  border-block: 1px solid #eee;
}

.mobile.nav-item,
.mobile.sub-menu li {
  display: block;
}

.mobile.sub-menu li {
  padding-left: 10px;
}

.mobile.sub-menu li a {
  padding: 0.5rem 1rem;
  color: var(--main-color);
}

.mobile.sub-menu.multi-layer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 5px auto;
}

.mobile.sub-menu.multi-layer li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--black-color);
}

.mobile.sub-menu.multi-layer li a img {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.icon-down.icon-down-one {
  position: absolute;
  right: 15px;
  top: 0;
  display: inline-block;
  cursor: pointer;
  background: var(--white-color);
  border-radius: 50%;
  display: block;
  padding: 5px 10px;
}

.icon-down.icon-down-one i {
  transform: rotate(-90deg);
}

.icon-down.icon-down-one.active {
  position: absolute;
  margin-left: 10px;
  padding: 5px 10px;
  color: var(--white-color);
  background-color: var(--black-color);
}

.icon-down.icon-down-one.active i {
  transform: rotate(0);
}

.mobile-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.close-side-menu {
  top: 30px;
  right: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  background: var(--main-color);
  z-index: 55;
  text-align: center;
  line-height: 40px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  /* border-radius: 50% 0 0 50%; */
}

.close-side-menu i.fas.fa-times {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  color: var(--white-color);
}

.close-side-menu:hover i.fas.fa-times {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.close-side-menu:hover {
  background: var(--second-color);
  color: var(--white-color);
  border-radius: 0;
}

.close-side-menu:hover span {
  color: var(--white-color);
}

.close-menu-sidebar {
  height: 100%;
  background-color: rgba(253, 253, 253, 0.8);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 22000;
  opacity: 0;
  visibility: hidden;
  width: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.close-menu-sidebar.open {
  width: 100%;
  opacity: 1;
  visibility: inherit;
  -webkit-animation: fadeIn ease 0.5s;
  animation: fadeIn ease 0.5s;
}

.side-menu-btn {
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 0;
  color: var(--second-color) !important;
  text-align: center;
  padding: 0;
  right: 0;
  z-index: 555;
  width: 20px;
  height: 15px;
  position: absolute !important;
  right: -40px;
  top: 30px;
  color: var(--white-color);
}

.side-menu-btn:hover {
  color: var(--main-color) !important;
}

.side-menu-btn span {
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s linear 0ms;
  -o-transition: all 0.3s linear 0ms;
  transition: all 0.3s linear 0ms;
  width: 20px;
  top: 0;
  right: 0;
}

.mobile.sub-menu {
  visibility: hidden;
  max-height: 0;
  overflow: hidden !important;
  -webkit-transition: max-height 1s ease-in-out, visibility 0s linear 1s;
  -o-transition: max-height 1s ease-in-out, visibility 0s linear 1s;
  transition: max-height 1s ease-in-out, visibility 0s linear 1s;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  scrollbar-width: 0;
  opacity: 0;
}

.mobile.sub-menu.sub-menu-collapsed {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
  -webkit-transition: max-height 1s ease-in-out, visibility 0s linear 0s;
  -o-transition: max-height 1s ease-in-out, visibility 0s linear 0s;
  transition: max-height 1s ease-in-out, visibility 0s linear 0s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

.social-media-navbar li {
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 33px;
  font-size: 14px;
  margin-inline: 5px;
  border: 1px solid transparent;
}

.social-media-navbar li:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--black-color);
}

.social-media-navbar li:hover i {
  color: var(--white-color);
}

.upper-navbar-right .social-media-navbar::before {
  position: absolute;
  content: "";
  left: -5px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #989898;
}

.social-media-navbar li a {
  color: var(--second-color);
  font-size: 16px;
  padding-inline: 5px;
}

/*============================================
 End header
==============================================*/
.home-search {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  justify-content: center;
  max-width: 1320px;
  margin: auto;
}

.search-form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  gap: 20px;
  width: 100%;
}

.search-select {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
  flex: 1;
  cursor: pointer;
  position: relative;
}

.search-select:last-of-type {
  border-right: none;
  padding-right: 0;
}

/* Icon styling */
.search-select i {
  font-size: 16px;
  color: var(--black-color);
}

.select2-container--default .select2-selection--single {
  border: none;
  background: transparent;
  padding: 0;
  height: auto;
}

.select2-container--open .select2-dropdown {
  left: 0;
  top: 20px;
  min-width: 300px !important;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #eee;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.select2-results__option {
  display: block;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black-color);
  font-weight: 500;
  padding: 0;
  border: none;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: initial !important;
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-container {
  width: auto !important;
}

.search-btn {
  background-color: var(--second-color);
  color: var(--white-color);
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background-color: var(--black-color);
}

.mobile-search {
  position: relative;
  text-align: center;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-search-wrapper {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.95);
  background: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  min-width: 300px;
  width: 90%;
  max-width: 500px;
  z-index: 1050;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-search-wrapper.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.custom-modal-title {
  color: var(--main-color);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: auto;
  margin-bottom: 20px;
}

.mobile-search-wrapper .search-select {
  position: relative;
  margin-bottom: 20px;
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-search-wrapper .floating-label {
  position: absolute;
  display: none;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: 0.2s ease;
}

.mobile-search-wrapper .search-select.active .floating-label {
  top: 5px;
  font-size: 12px;
  color: var(--main-color);
  display: block;
}

.floating-label {
  position: absolute;
  display: none;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.2s ease;
}


.search-select.active .floating-label {
  display: block;
  top: 0;
  font-size: 12px;
  color: #333;
  left: 20px;
  padding-bottom: 10px;
}

.mobile-search-btn {
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 60px;
  top: 10px;
}

.mobile-search-btn i {
  font-size: 20px;
  line-height: 50px;
  color: var(--black-color);
}

/*======================================
 Start Hero Slider 
 ======================================*/
.hero-slider {
  height: 60vh;
  overflow: hidden;
}

.heroSwiper {
  position: relative;
  z-index: 0;
}

.hero-home-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}

.hero-home-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(to top, var(--black-color), transparent);
  z-index: 1;
}

.hero-home-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 10px;
  object-fit: cover;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-home-content .hero-home-title {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 700;
}

.hero-home-content p {
  margin: 0.5rem auto;
  width: 75%;
  color: var(--white-color);
}

.swiper-slide-active .hero-home-item img {
  transform: scale(1.3);
  transition: 8s;
}

.hero-slider .swiper-slide {
  height: 60vh;
  border-radius: 10px;
  overflow: hidden;
}

.select-hero {
  display: none;
}

/*======================================================
  start tours
 ======================================================*/
.subcategory-tabs-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 10;
  margin-top: -50px;
  position: relative;
}

.favourite-btn {
  position: absolute;
  top: 0;
  z-index: 20;
  right: 20px;
  top: 20px;
  font-size: 16px;
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.subcategory-tabs {
  gap: 2rem;
}

.subcategory-tabs-container .nav-pills .nav-link.active {
  background-color: var(--white-color);
  color: var(--main-color) !important;
  border-radius: 25px 25px 0 0;
}

.subcategory-tabs-container .nav-pills .nav-link {
  color: var(--white-color) !important;
  font-size: 20px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 50px;
  position: relative;
}

.subcategory-tabs-container .nav-pills .nav-link.active::before {
  content: "";
  position: absolute;
  width: 25px;
  bottom: 0;
  right: -25px;
  height: 25px;
  background: transparent;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--white-color);
}

.subcategory-tabs-container .nav-pills .nav-link.active::after {
  content: "";
  position: absolute;
  width: 25px;
  bottom: 0;
  left: -25px;
  height: 25px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 10px 10px 0 var(--white-color);
}

.subcategory-tabs-content {
  margin-top: 20px;
}

.subcategory-tabs-content .subcategory-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 5px;
}

.tour-price span {
  top: 50%;
  position: absolute;
  width: 100%;
  transform: translate(0, -50%);
  left: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  display: block;
}

.tour-content h3 {
  padding: 10px 20px;
  color: var(--black-color);
}

.subcategory-tabs-content p {
  max-width: 80%;
}

.subcategory-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tours-wrappers {
  margin: 20px auto 50px;
}

.tour-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  margin-bottom: 20px;
}

.tour-item .tour-img {
  min-width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.tour-item .tour-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-item .tour-img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: -10px 10px 0 var(--white-color);
  z-index: 20;
}

.tour-item .tour-img::after {
  position: absolute;
  content: "";
  bottom: 70px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  box-shadow: -10px 10px 0 var(--white-color);
}

.tour-item .tour-content {
  background-color: var(--main-grey);
  height: 150px;
  position: relative;
  border-radius: 15px;
  border-top-left-radius: 0;
  box-shadow: var(--box-shadow);
}

.tour-item .tour-content h3 a {
  color: var(--black-color);
}

.tour-item .tour-content .tour-location {
  padding-left: 20px;
  color: var(--para-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.tour-item .tour-content .tour-location i {
  margin-right: 5px;
}

.tour-item .tour-content .tour-price {
  position: absolute;
  top: -80px;
  height: 80px;
  width: 50%;
  background-color: var(--main-grey);
  border-top: 10px solid var(--white-color);
  border-right: 10px solid var(--white-color);
  border-top-right-radius: 25px;
}

.tour-item .tour-content .tour-price::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: transparent;
  border-radius: 50%;
  box-shadow: -10px -10px 0 var(--white-color);
}

.tour-item .tour-content .tour-price::after {
  content: "";
  position: absolute;
  width: 25px;
  bottom: 0;
  right: -25px;
  height: 25px;
  background: transparent;
  border-radius: 50%;
  box-shadow: -10px 10px 0 var(--main-grey);
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.tour-duration i {
  color: var(--second-color);
}

.tour-duration {
  color: var(--black-color);
}

/*======================================================
  End tours
 ======================================================*/
/*======================================================
  start  special-card
 ======================================================*/
/*======================================================
  End  special-card
 ======================================================*/
.special-card-content {
  padding: 20px;
  margin-top: 10px;
  background: var(--main-grey);
  border-radius: 10px;
  margin-bottom: 20px;
}

.special-card-img,
.special-card-content {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 10px;
}

.special-card-img a {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}

.special-price {
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 20;
  width: 150px;
  height: 35px;
  margin: auto;
  left: 25%;
  right: 25%;
}

.special-price span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 10px auto;
  color: var(--main-color);
}

.special-price::before {
  position: absolute;
  content: "";
  background-image: url("../images/shapes/price-shape.png");
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.special-card-img img {
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
  min-width: 100%;
}

.special-card-content h3 {
  color: var(--black-color);
}

.special-card-content p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.special-card .tour-footer {
  padding: 0;
}

/*=========================================================
   Start Scroll To Top
=========================================================*/
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}

.scroll-top.active {
  bottom: 20px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--main-grey);
  color: var(--black-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/*=========================================================
   End  Scroll To Top
=========================================================*/

/* ===================================
Start Newsletter Section
======================================*/
.subscribe-area {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.subscribe-bg {
  padding: 1.5rem 1rem;
  border-radius: 5px;
  background-color: var(--second-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe-bg {
    padding: 80px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-bg {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .subscribe-area {
    padding: 10px;
  }

  .subscribe-bg {
    padding: 20px;
  }
}

.subscribe-tittle-box p {
  margin-bottom: 0;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-tittle-box p {
    font-size: 16px;
  }

  .subscribe-tittle-box p br {
    display: none;
  }
}

.subscribe-input {
  margin-right: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input {
    margin-right: 0;
  }
}

.subscribe-input input {
  height: 40px;
  font-weight: 400;
  font-size: 20px;
  border-radius: 999px;
  padding-right: 170px;
  background-color: transparent;
  color: var(--white-color);
  border: 1.5px solid var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input input {
    height: 50px;
  }
}

.subscribe-input input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input input::-webkit-input-placeholder {
    font-size: 16px;
  }
}

.subscribe-input input:-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input input:-moz-placeholder {
    font-size: 16px;
  }
}

.subscribe-input input::-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input input::-moz-placeholder {
    font-size: 16px;
  }
}

.subscribe-input input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input input:-ms-input-placeholder {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .subscribe-input .subscribe-button {
    font-size: 16px;
    padding: 9px 30px;
  }
}

.subscribe-button.btn-effect {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-color: var(--main-color);
  color: var(--black-color);
  border-radius: 999px;
}

.subscribe-title-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  display: block;
  text-transform: capitalize;
  color: var(--white-color);
}

.subscribe-title-para {
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.subscribe-button.btn-effect:hover {
  background-color: var(--main-color);
}

.border-line-white {
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.3s linear;
  background-image: linear-gradient(var(--second-color), var(--second-color)),
    linear-gradient(var(--second-color), var(--second-color));
}

.border-line-white:hover {
  background-size: 0% 1px, 100% 1px;
  color: var(--second-color);
}

.subscribe-img {
  position: absolute;
  bottom: 0;
  left: 80px;
  z-index: 1;
}

.subscribe-img img {
  max-width: 200px;
}

.subscribe-circle {
  position: absolute;
  left: -80px;
  bottom: -135px;
}

.subscribe-circle span {
  height: 456px;
  width: 456px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--main-color);
}

.subscribe-thumb-box {
  margin-bottom: -1px;
}

.subscribe-shape-1 {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}

.subscribe-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.subscribe-shape-3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/* ===================================
End Newsletter Section
======================================*/

/*===========================================
      Start Why Choose us
=============================================*/
.why-choose-us {
  background-color: var(--main-grey);
}

.choose-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-item {
  position: relative;
  border-radius: 10px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #d9dadb, #ffffff);
  box-shadow: 20px 20px 60px #cdcecf, -20px -20px 60px #ffffff;
  margin-bottom: 20px;
  transition: 0.7s all ease-in-out;
}

.choose-us-item:hover {
  box-shadow: inset 10px 10px 20px #cdcecf, inset -10px -10px 20px #ffffff;
  transform: scale(0.98);
  transition: 0.7s all ease-in-out;
}

/* .choose-us-item:hover {
  box-shadow: var(--boxShadow);
  transform: translateZ(0) scale(1.01, 1.01);
  transition: 0.5s all ease-in-out;
} */
.choose-us-para {
  height: 90px;
  overflow: hidden;
}

.choose-us-para p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.choose-us-icon {
  position: relative;
}

.why-choose-us .col-lg-6:nth-child(odd) .choose-us-icon::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  top: 10%;
  left: 10%;
  background-color: #f6ecbb;
  border-radius: 68% 32% 63% 37% / 60% 45% 55% 40%;
  z-index: 0;
}

.why-choose-us .col-lg-6:nth-child(even) .choose-us-icon::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  top: 10%;
  left: 10%;
  background-color: #d3f6ee;
  border-radius: 68% 32% 63% 37% / 60% 45% 55% 40%;
  z-index: 0;
}

.choose-us-icon img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  margin-left: 20px;
  position: relative;
}

/*.choose-us-item:hover .choose-us-icon {
  animation: bounce-in 3s linear 0s infinite;
  animation-delay: -300ms;
  animation-direction: alternate-reverse;
}

 @keyframes bounce-in {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1.1);
  }
} */

.choose-us-item h3 {
  font-size: 20px;
  color: var(--black-color);
  margin: 10px auto 5px;
  font-weight: 600;
}

/*===========================================
      End Why Choose us
=============================================*/

/*==============================================
        start partners
==============================================*/

/* .partners__section {
  background-color: var(--main-grey);
} */
.partners__slider {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 991.98px) {
  .partners__section {
    padding: 30px 0;
  }
}

.partners__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.partners__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.partners__slider .swiper-wrapper .swiper-slide .partner-item {
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: var(--white-color);
}

.partners__slider .swiper-wrapper .swiper-slide img {
  height: 50px;
  width: 150px;
  object-fit: cover;
}

/*===================================================
     End Partners
=====================================================*/
/*====================================================
    start banner
======================================================*/
.banner-box {
  background-color: var(--main-grey);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.moments-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.heart-comment:nth-last-of-type(1) {
  width: 20px;
  position: absolute;
  top: 0;
  left: 10px;
}

.heart-comment:nth-last-of-type(2) {
  width: 20px;
  position: absolute;
  top: 0;
  right: 10px;
}

.heart-comment:nth-last-of-type(3) {
  width: 20px;
  position: absolute;
  top: 100%;
  right: 55%;
}

.moment-image {
  transition: transform 0.3s ease;
}

.moment-img {
  width: 80px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 120px;
  padding: 3px;
  object-fit: cover;
}

.moment-image:hover {
  transform: scale(1.05) rotate(0deg);
}

/* Rotation classes */
.rotate-1 {
  transform: rotate(-5deg);
}

.rotate-2 {
  transform: translate(-5px, 10px) rotate(348deg);
}

.rotate-3 {
  transform: rotate(-2deg);
}

.rotate-4 {
  transform: translate(-7px, 15px) rotate(7deg);
}

.rotate-5 {
  transform: rotate(-3deg);
}

.rotate-6 {
  transform: translate(5px, -10px) skew(-10deg, 10deg);
}

/*===============================================================
    end banner
===============================================================*/

/*===============================================================
    start tags
===============================================================*/

.destination-card {
  display: flex;
  align-items: center;
  padding: 7px 7px;
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  gap: 10px;
  transition: 0.3s ease;
  min-width: 150px;
  margin: 20px 30px;
}

.destination-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.destination-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.destination-card span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.tags-slider .swiper-button-next {
  right: 0;
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ccc;
  width: 32px;
  height: 32px;
  color: #333;
}

.tags-slider .swiper-button-prev {
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ccc;
  width: 32px;
  height: 32px;
  color: #333;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\276E";
  font-size: 20px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
  content: "\276F";
  font-size: 20px;
}

.tags-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}


.tags-slider {
  flex: 1;
  overflow: hidden;
}



/*====================================
    End tags
===================================== */
/*====================================
    start blogs
===================================== */
.Blog-card {
  box-shadow: var(--box-shadow);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.card-title {
  color: var(--black-color);
}

.Blog-card .blog-img img {
  height: 240px;
  border-radius: 10px 10px 0 0;
  min-width: 100%;
  object-fit: cover;
}

.Blog-card .blog-img img:hover {
  filter: brightness(0.8);
}

.Blog-card .btn-effect {
  text-transform: capitalize;
  background: transparent;
}

.side-blogs .card {
  box-shadow: var(--box-shadow);
  background-color: var(--light-color);
}

.side-blogs i {
  font-size: 30px;
  color: var(--second-color);
}

.side-blogs .side-blog-content p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/*====================================
    End blogs
===================================== */

/*======================================================
  start footer 
 ======================================================*/
.footer-bg {
  /* padding-top: 140px;
  margin-top: -140px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-overlay {
  position: relative;
}

.footer-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--main-grey);
  opacity: 0.8;
}

.footer-area,
.copyright-area {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-text {
  margin-bottom: 30px;
}

.footer-text p {
  margin-bottom: 0;
  color: var(--black-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-text p {
    font-size: 16px;
  }

  .footer-text p br {
    display: none;
  }
}

.footer-social a {
  height: 40px;
  color: var(--second-color);
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:nth-child(1):hover {
  background-color: #0866ff;
  color: var(--white-color);
}

.footer-social a:nth-child(2):hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: var(--white-color);
}

.footer-social a:nth-child(3):hover {
  background-color: #1c96e8;
  color: var(--white-color);
}

.footer-social a:nth-child(4):hover {
  background-color: #1c96e8;
  color: var(--white-color);
}

.footer-social a:not(:last-child) {
  margin-right: 10px;
}

/* .footer-social a:hover {
  color: var(--white-color);
  border-color: var(--second-color);
  background-color: var(--second-color);
} */

.footer-widget-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.67;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--black-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-title {
    margin-bottom: 25px;
  }
}

.footer-widget-menu ul li {
  list-style-type: none;
  display: block;
}

.footer-widget-menu ul li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--black-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-widget-menu ul li a {
    font-size: 17px;
  }
}

.footer-widget-input input {
  padding-right: 65px;
  background-color: var(--black-color);
}

.footer-widget-input button {
  position: absolute;
  top: 50%;
  right: 6px;
  height: 48px;
  width: 48px;
  transition: 0.3s;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-50%);
  color: var(--white-color);
  background-color: var(--main-color);
}

.footer-widget-input button:hover {
  background-color: var(--main-color);
}

.footer-col-2 {
  padding-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-2 {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-2 {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-col-2 {
    padding-left: 0;
  }
}

.footer-col-3 {
  padding-left: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-3 {
    padding-left: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-3 {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-col-3 {
    padding-left: 0;
  }
}

.footer-col-4 {
  padding-left: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-col-4 {
    padding-left: 0;
  }
}

.footer-col-2-2 {
  padding-left: 122px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-2-2 {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-2-2 {
    padding-left: 70px;
  }
}

@media (max-width: 767px) {
  .footer-col-2-2 {
    padding-left: 0px;
  }
}

.footer-col-2-3 {
  padding-left: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-col-2-3 {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .footer-col-2-3 {
    padding-left: 0px;
  }
}

.footer-payment a {
  margin-right: 20px;
  display: inline-block;
}

.footer-payment a:last-child {
  margin-right: 0;
}

.footer-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.footer-shape-1 img {
  width: 100%;
}

.footer-shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.footer-shape-2 img {
  width: 100%;
}

.footer-top-ptb {
  padding-top: 70px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(25, 27, 26, 0.2);
}

.footer-top-left span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #5b5b5b;
}

@media (max-width: 767px) {
  .footer-top-left span {
    display: inline-block;
    margin-bottom: 15px;
  }
}

.footer-top-left span i {
  font-size: 30px;
  margin-right: 25px;
  color: var(--theme-1);
  transform: rotate(90deg);
}

.footer-top-left span a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-left: 20px;
  text-transform: capitalize;
  color: var(--common-black);
}

.footer-top-social a {
  color: #5b5b5b;
  background-color: rgba(25, 27, 26, 0.12);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .copyright-left {
    margin-bottom: 20px;
  }
}

.copyright-left p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgba(var(--white-color), 0.8);
}

.copyright-right a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgba(var(--white-color), 0.8);
}

.copyright-right a:not(:first-child) {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .copyright-right a:not(:first-child) {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .copyright-right a:nth-child(2) {
    margin: 0 10px;
  }
}

.copyright-right a:hover {
  color: var(--white-color);
}

.copyright-border {
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/*=========================================================
              end Footer
==========================================================*/
/*=========================================================
   start  Breadcrumb 
=========================================================*/
.Breadcrumb-cover {
  /* background-color: var(--main-grey); */
}

.breadcrumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.breadcrumb-nav {
  /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  z-index: 2;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--main-color);
  content: "/";
  font-size: 12px;
  color: var(--black-color);
  line-height: 1;
  float: left;
  margin: 5px;
  padding: 0;
}

.breadcrumb-item+.breadcrumb-item {
  padding: 0;
}

li.breadcrumb-item:last-child {
  padding-right: 0;
}

.breadcrumb-item a {
  color: var(--black-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
}

.breadcrumb-item a,
.breadcrumb-item span {
  padding: 0 5px;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--para-color);
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border-bottom: none;
  margin: 0.5rem;
}

/*=========================================================
   End  Breadcrumb 
=========================================================*/
/*======================================================
  start menu box
 ======================================================*/
.menu-mobile-fixed {
  position: fixed;
  bottom: 0;
  padding: 20px 20px 10px 20px;
  background: var(--white-color);
  width: 100%;
  left: 0;
  z-index: 20000;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.menu-mobile-fixed a {
  color: var(--black-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-mobile-fixed a img {
  width: 15px;
  height: 15px;
}

.menu-mobile-fixed a h5 {
  font-size: 13px;
}

/*======================================================
end menu box
======================================================*/
/*======================================================
   Start Faq 
======================================================*/
.faq .accordion-item {
  margin-bottom: 12px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px !important;
}

.faq .accordion-button {
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px !important;
  color: var(--black-color);
}

.faq .accordion-button:focus {
  z-index: 3;
  border-color: initial;
  outline: 0;
  box-shadow: initial;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--second-color);
  background: var(--main-grey);
  /* box-shadow: inset 0 -1px 0 rgba(0,0,0,.125); */
}

.faq .accordion-button:not(.collapsed)::after {
  filter: invert(100%);
}

.faq .accordion-body {
  border-top: none;
  border: 7px solid var(--main-grey);
}

.accordion-button::after {
  content: "\f059";
  font-size: 16px !important;
  font: var(--fa-font-solid);
  transition: 0.3s all ease-in-out;
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  content: "\f4ad";
  font: var(--fa-font-solid);
  transform: rotate(360deg) !important;
  transition: 0.5s all ease-in-out;
  background-image: none;
}

/*======================================================
   End Faq 
======================================================*/

/* ========================================================
About Us Section Custom Styles 
=========================================================== */
.about-us-content {
  padding: 30px 0;
}

.about-us-content .btn-effect:hover {
  color: var(--second-color);
}

.about-us-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 20px;
}

.about-us-content p {
  font-size: 16px;
  color: var(--para-color);
  margin-bottom: 10px;
  line-height: 1.8;
}

.about-us-content .btn-effect {
  display: inline-block;
  background: var(--second-color);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(32, 115, 248, 0.08);
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.about-us-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.about-us-img {
  display: grid;
  grid-template-areas:
    "one two"
    "three four";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 400px;
  margin: auto;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Individual positioning and scaling for dynamic layout */
.img-box:nth-child(1) {
  grid-area: one;
  transform: scale(1.05) translateY(-10px);
}
.img-box:nth-child(2) {
  grid-area: two;
  transform: scale(0.95) translateY(10px);
}
.img-box.img-box:nth-child(3){
  grid-area: three;
  transform: scale(1.1) translateX(-5px);
}
.img-box.img-box:nth-child(4) {
  grid-area: four;
  transform: scale(0.9) translateX(10px);
}

/* ===========================================================
About Us Section Custom Styles 
=========================================================== */