/*=====================================================
Table of contents
=======================================================
1. Google fonts
2. Theme variables
3. General css
4. Preloader
5. Theme default css
6. Site title css
7. Margin & padding
8. Theme button
9. Scroll-top css
10. Terms/privacy css 
11. Nav menu css
12. Multi level dropdown menu
13. Hero css 
14. Search css
15. Date picker
16. Destination css 
17. Banner css 
18. Tour css 
19. About css 
20. Feature css 
22. Counter css 
23. Cta-area css 
24. Gallery css 
25. Sidebar css
26. Contact us css 
27. Faq css 
28. Breadcrumb css
29. Footer css 
=======================================================*/


/* ===================
1. Google fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');



/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Barlow', sans-serif;
  --body-text-color: #757F95;
  --theme-color: #2f3490;
  --theme-color2: #CD100A;
  --theme-bg-light: #F5F7FC;
  --color-white: #FFFFFF;
  --color-dark: #4F4B8B;
  --color-yellow: #FFA903;
  --color-green: #23BCB9;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --transition: all .5s ease-in-out;
  --footer-bg: #F5F7FC;
  --footer-bg2: #0D233E;
  --footer-text-color: #5D646D;
}



/* ===================
3. General css
====================== */

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/* ===================
4. Preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loader {
  position: relative;
  width: 90px;
  height: 90px;
}

.loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(18deg * var(--i)))
}

.loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  transform: scale(0);
  animation: loader 2s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes loader {
  0% {
    transform: scale(0);
  }

  10% {
    transform: scale(1.2);
  }

  80%,
  100% {
    transform: scale(0);
  }
}

.loader-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: loader-rotating 2s linear infinite;
  animation-delay: -1s;
}

@keyframes loader-rotating {
  0% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(370deg);
  }
}

.loader-plane::before {
  content: '\f072';
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  top: 53px;
  left: 58px;
  color: var(--color-white);
  font-size: 38px;
  transform: rotate(135deg);
}



/* ===================
5. Theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

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

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

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: var(--theme-bg-light);
}

@media all and (max-width: 1399px) {
  .container{
    max-width: 95%;
  }
}



/* ===================
6. Site title css
====================== */

.site-heading {
  margin-bottom: 50px;
  position: relative;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  background: var(--theme-color);
  border-radius: 50px;
  padding: 5px 20px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 40px;
  color: var(--color-dark);
  margin-top: 8px;
  margin-bottom: 0;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: var(--theme-color);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

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

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

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

@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
7. Margin & padding
====================== */

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

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}



/* ===================
8. Theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 11px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 400px;
  width: 400px;
  background: var(--theme-color2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

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

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}



/* ===================
9. Scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 25px;
  border: none;
  outline: none;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--theme-color);
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}

@media all and (min-width: 768px) and (max-width: 1399px) {
  #scroll-top {
    bottom: 70px;
  }
}



/* ===================
10. Terms/privacy css 
====================== */

.terms-content h2,
.terms-content h3,
.terms-content h4,
.terms-content h5,
.terms-content h6,
.terms-content p:not(:last-child),
.terms-content ul:not(:last-child) {
  margin-bottom: 20px;
}

.terms-content ul {
  margin-left: 20px;
}

.terms-content ul li {
  margin-left: 12px;
  list-style: circle;
}



/* ===================
11. Nav menu css
====================== */

.main {
  margin-top: -10rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 30px 0 30px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-white);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 8px;
    border: none;
    left: -15px;
    border-radius: 12px;
    background: var(--color-white);
    width: 220px;
    box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
  }

  .navbar .nav-item .dropdown-menu::before {
    content: "\f0d8";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: var(--color-white);
    font-size: 45px;
    font-weight: bold;
    left: 25px;
    top: -40px;
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0px 10px 20px;
    color: var(--color-dark);
    position: relative;
    text-transform: capitalize;
    transition: var(--transition);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 30px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 12px;
    top: 20.5px;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 6px;
    transform: scale(0, 0);
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    transform: scale(1, 1);
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

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

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 30px;
  }

  .header-nav-link {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-link:hover {
    color: var(--theme-color);
  }

  .header-nav-link.search-box-outer {
    font-size: 18px;
  }

  #main_nav {
    justify-content: flex-end;
  }

  /* mega menu */
  .navbar .dropdown-menu.mega-menu{
    width: 850px;
    left: -345px;
    padding: 15px 10px;
  }

  .navbar .dropdown-menu.mega-menu::before{
    display: none;
  }

  .navbar .dropdown-menu.mega-menu div[class*='col-']{
    border-right: 1px solid rgba(0, 0, 0, .05);
  }

  .navbar .dropdown-menu.mega-menu .dropdown-item{
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar .dropdown-menu.mega-menu .dropdown-item::before{
    top: 15px;
  }

  .navbar .dropdown-menu.mega-menu ul li{
    border-bottom: none;
  }
}

/*bootstrap nav*/
.navbar {
  background: transparent;
  z-index: 999;
}

.navbar.fixed-top {
  background: var(--color-white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

.navbar.fixed-top .nav-item .nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link:hover {
  color: var(--theme-color);
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
  color: var(--theme-color);
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

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

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 100px;
}

/* dropdown toggler */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}

/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

  .navbar-brand img {
    width: 80px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
    margin-right: 0;
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

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

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: var(--color-dark);
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

  .mobile-menu-link:hover {
    color: var(--theme-color);
  }

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 500;
  }

  .navbar.fixed-top .mobile-menu-link {
    color: var(--color-dark);
  }

  .navbar.fixed-top .navbar-toggler-btn-icon {
    color: var(--color-dark);
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .navbar .dropdown-menu .dropdown-item{
    color: var(--color-dark);
    font-weight: 500;
  }

  .navbar .dropdown-menu .dropdown-item:hover{
    color: var(--theme-color);
    background: transparent;
  }

  .header-nav-right {
    display: none;
  }
}



/* ============================
12. Multi level dropdown menu
=============================== */

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 12px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}



/* ===================
13. Hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 320px;
  padding-bottom: 270px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: rgba(0, 0, 0, .6);
  z-index: -1;
}

.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: var(--theme-color);
}

.hero-single .hero-content p {
  color: var(--color-white);
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-title {
    font-size: 40px;
  }

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

  .hero-img {
    display: none;
  }
}



/* =====================
14. Search css
===================== */

.search-area {
  position: relative;
  z-index: 2;
}

.search-wrapper {
  margin-top: -130px;
}

.search-header{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.search-nav{
  display: inline-block;
  background: var(--color-white);
  border-radius: 50px;
  margin-bottom: -28px;
}

.search-nav .nav-item {
  margin: 5px;
}

.search-nav .nav-link {
  background: rgba(113, 103, 255, .15);
  border-radius: 50px;
  padding: 6px 16px;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  transition: none;
}

.search-nav .nav-link i{
  margin-right: 8px;
  color: var(--theme-color);
}

.search-nav .nav-link.active i{
  color: var(--color-white);
}

.search-nav .nav-link.active {
  background: var(--theme-color);
}

.search-wrapper .tab-content{
  background: var(--color-white);
  padding: 45px 30px 50px 30px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.search-wrapper .search-box{
  background: var(--color-white);
  padding: 30px 30px 50px 30px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.search-wrapper .search-box.flight-search{
  padding-top: 20px
}

.search-form .form-group {
  position: relative;
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(113, 103, 255, .15);
}

.search-form .form-group label{
  color: var(--color-dark);
}

.search-form .form-control {
  border-radius: 12px;
  padding: 5px 0px;
  box-shadow: none;
  color: var(--color-dark);
  background: transparent;
  border: none;
  font-size: 19px;
  font-weight: 500;
}

.search-form .form-group i {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 28px;
  color: var(--theme-color);
}

.search-form .form-group p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-dark);
  font-size: 15px;
}

.search-form-swap{
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-form-swap i{
  background: #EAE8FF;
  font-size: 19px !important;
  position: unset !important;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  color: var(--theme-color);
}

.search-form-date{
  display: flex;
}

.search-form .passenger-total{
  border-radius: 12px;
  padding: 2.4px 0px;
  color: var(--color-dark);
  font-size: 19px;
  font-weight: 500;
}

.search-form .passenger-box{
  cursor: pointer;
}

.search-form .passenger-box .dropdown-menu{
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  padding: 15px 10px;
  width: 291px;
  right: -15px !important;
  margin-top: 15px !important;
  box-shadow: var(--box-shadow);
}

.search-form .static-dropdown.passenger-box .dropdown-menu{
  right: 0px !important;
} 

.search-form .passenger-box .dropdown-item:hover{
  background: transparent;
}

.search-form .passenger-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.search-form .passenger-qty{
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-form .passenger-qty button{
  border: none;
  width: 35px;
  height: 35px;
  line-height: 32px;
  border-radius: 50px;
  background: rgba(113, 103, 255, .15);
}

.search-form .passenger-qty button i{
  position: unset !important;
  font-size: 16px !important;
}

.search-form .passenger-qty input{
  width: 25px;
  text-align: center;
  border: none;
  outline: none;
  font-weight: 500;
  color: var(--color-dark);
}

.search-form .passenger-class-info .form-check{
  margin-top: 10px;
}

.search-form .passenger-class-info .form-check-input{
  box-shadow: none;
  margin-top: 7px;
}

.search-form .search-btn .theme-btn{
  position: absolute;
  border-radius: 50px;
  border: 5px solid var(--color-white);
  bottom: -25px;
  left: 50%;
  padding: 7px 25px;
  white-space: nowrap;
  transform: translateX(-50%);
}

/* flight */
.search-form .flight-type{
  margin-bottom: 10px;
}

.search-form .flight-type .form-check-input{
  margin-top: 6.5px;
  box-shadow: none;
  border: 2px solid var(--color-dark);
}

.search-form .flight-type .form-check-label{
  font-weight: 500;
  color: var(--color-dark);
}

.search-wrapper .flight-search-wrapper .tab-content{
  box-shadow: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

.flight-search .search-form-return{
  display: none;
}

.search-form .flight-multicity-item{
  margin-top: 25px;
  display: none;
}

.search-form .multicity-btn{
  padding-top: 31px;
  padding-bottom: 31px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-dark);
}

.search-form .multicity-item-remove{
  color: var(--theme-color2);
}

.search-form .multicity-item-remove i{
  color: var(--theme-color2) !important;
}

@media all and (max-width: 1199px) {
  .search-area .container{
    max-width: 100%;
  }
  .search-form .form-group{
    margin-bottom: 20px;
  }
} 

@media all and (max-width: 991px) {
  .search-nav{
    border-radius: 20px;
  }
  .search-nav .nav{
    justify-content: center;
  }
  .search-wrapper .tab-content{
    border-radius: 20px;
  }
  .search-form-swap{
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }
} 



/* =====================
15. Date picker
===================== */

.ui-widget.ui-widget-content{
  border: none;
  padding: 8px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.ui-widget-header .ui-icon{
  background-image: unset;
}

.ui-datepicker .ui-widget-header{
  background: var(--theme-color);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
}

.ui-datepicker .ui-datepicker-prev::after {
  content: "\f100";
  left: 5px;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  color: var(--color-white);
}

.ui-datepicker .ui-datepicker-next::after {
  content: "\f101";
  right: 5px;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  color: var(--color-white);
}

.ui-datepicker .ui-datepicker-header .ui-corner-all,
.ui-datepicker .ui-datepicker-header .ui-state-hover {
  cursor: pointer;
  border: 0;
  background: none;
  font-weight: 600;
  top: 3px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: center;
  text-decoration: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default{
  border: none;
  border-radius: 8px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  border: none;
  background: var(--theme-color2);
  color: var(--color-white);
}

.ui-state-active,
.ui-widget-content .ui-state-active{
  background: var(--theme-color);
  color: var(--color-white);
}




/* ===================
16. Destination css 
====================== */

.destination-area{
  position: relative;
}

.destination-item {
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.destination-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 15px;
  transition: all 0.3s;
  background: rgba(13, 35, 62, .5);
}

.destination-item img {
  border-radius: 15px;
  width: 100%;
  transition: all 0.5s;
}

.destination-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: -45px;
  left: 15px;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.destination-item:hover .destination-info{
  bottom: 15px;
}

.destination-info h4 {
  color: var(--color-white);
  font-size: 25px;
}

.destination-rate{
  font-size: 15px;
  margin-top: 5px;
}

.destination-rate i{
  color: var(--color-yellow);
}

.destination-rate span {
  color: var(--color-white);
  font-weight: 400;
}

.destination-more-info {
 margin-top: 30px;
 transition: all .3s ease-in-out;
}

.destination-item:hover .destination-more-info{
  margin-top: 8px;
}

.destination-more-info ul{
  display: flex;
  gap: 10px;
}

.destination-more-info ul li{
  color: var(--color-white);
  font-size: 16px;
}

.destination-more-info ul li i{
  margin-right: 2px;
}

.destination-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  line-height: 56px;
  text-align: center;
  background: var(--color-white);
  color: var(--theme-color) !important;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  top: 50%;
  left: 50%;
  font-size: 22px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: var(--transition);
  z-index: 1;
}

.destination-item:hover .destination-btn {
  visibility: visible;
  opacity: 1;
}

.destination-2 .destination-info{
  bottom: 15px;
}

.destination-2 .destination-more-info{
  margin-top: 8px
}

.destination-2 .destination-btn{
  width: unset;
  height: unset;
  line-height: unset;
  font-size: 16px;
  padding: 5px 15px;
  font-weight: 500;
}

.destination-2 .destination-btn:hover{
  background: var(--theme-color2);
  color: var(--color-white) !important;
}

.destination-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.destination-slider.owl-theme .owl-nav button{
  color: var(--theme-color);
  font-size: 20px;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.destination-slider.owl-theme .owl-nav button:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.destination-slider.owl-theme .owl-nav .owl-prev {
  left: -25px;
}

.destination-slider.owl-theme .owl-nav .owl-next {
  right: -25px;
}

.destination-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.destination-slider .owl-dots .owl-dot span {
  background: transparent;
  margin: 5px;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: var(--transition);
}

.destination-slider .owl-dots .owl-dot.active span {
  background: var(--theme-color);
}

@media all and (max-width: 1399px) {
  .destination-info h4 {
    font-size: 23px;
  }
  .destination-more-info ul li{
    font-size: 15px;
  }
}

@media all and (max-width: 767px) {
  .destination-item img {
    height: 400px;
  }
  .destination-slider.owl-theme .owl-nav {
    display: none;
  }
}



/* ===================
17. Banner css 
====================== */

.banner-area{
  position: relative;
}

.banner-item{
  position: relative;
}

.banner-item::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 35, 62, .65);
  border-radius: 15px;
  left: 0;
  top: 0;
}

.banner-img img{
  border-radius: 15px;
}

.banner-content{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px 30px;
  text-align: center;
}

.banner-content h3{
  font-size: 30px;
  color: var(--color-white);
  font-weight: 600;
}

.banner-content h3 span{
  color: var(--theme-color2);
  font-weight: 700;
}

.banner-content p{
  color: var(--color-white);
  margin: 15px 0;
}

.banner-content .theme-btn{
  margin-top: 10px;
}

@media all and (max-width: 991px) {
  .banner-item{
    margin-bottom: 25px;
  }
}

@media all and (max-width: 767px) {
  .banner-content{
    padding: 15px;
  }

  .banner-img img{
    height: 310px;
  }

  .banner-content h3{
    font-size: 25px;
  }
}




/* ===================
18. Tour css 
====================== */

.tour-area{
  position: relative;
}

.tour-item{
  background: var(--color-white);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}




/* ===================
19. About css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  margin: 0 40px 0 20px;
}

.about-img img {
  border-radius: 15px;
}

.about-img::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 8px solid var(--theme-color);
  border-radius: 0 0 0 20px;
  left: -20px;
  bottom: -20px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: -1;
}

.about-shape {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.about-experience {
  background: var(--theme-color);
  position: absolute;
  border-radius: 15px 15px 0 0;
  left: 50px;
  bottom: 0;
  padding: 20px;
}

.about-experience h2 {
  font-weight: 700;
  font-size: 45px;
  color: var(--color-white);
}

.about-experience .about-experience-text {
  color: var(--color-white);
  font-weight: 500;
}

.about-right {
  position: relative;
  display: block;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.about-list li .about-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .about-icon span {
  font-size: 20px;
  color: var(--theme-color);
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-call-icon {
  width: 55px;
  height: 55px;
  font-size: 25px;
  border-radius: 50px;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.about-call-content span {
  font-weight: 500;
  color: var(--color-dark);
}

.about-call-number {
  font-size: 22px;
}

.about-call-number a {
  color: var(--theme-color);
}

@media all and (max-width: 991px) {
  .about-left {
    margin-bottom: 60px;
  }

  .about-experience {
    bottom: -20px;
  }
}

@media all and (max-width: 768px) {
  .about-bottom {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}




/* ===================
20. Feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-item {
  padding: 10px;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  transition: var(--transition);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--theme-color);
  font-size: 40px;
  color: var(--color-white);
  margin: 0 auto 20px auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::before{
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px dashed var(--theme-color);
}

.feature-title {
  color: var(--color-dark);
  margin-bottom: 10px;
}


@media all and (max-width: 991px) {
  .feature-item {
    margin-bottom: 25px;
  }
}




/* ===================
22. Counter css 
====================== */

.counter-area {
  padding: 50px 20px;
  position: relative;
  background: rgba(113, 103, 255, .1);
  z-index: 1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 78px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 30px;
  color: var(--color-white);
}

.counter-box .icon img {
  width: 65px;
}

.counter-box .counter-number{
  display: flex;
  align-items: center;
}

.counter-box .counter-sign{
  color: var(--color-dark);
  font-size: 40px;
  line-height: 0;
  margin-left: 2px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-dark);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--color-dark);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
    justify-content: flex-start;
  }
}



/* ===================
23. Cta-area css 
====================== */

.cta-area {
  position: relative;
}

.cta-wrapper {
  position: relative;
  background-image: url(../img/cta/01.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 15px;
  z-index: 1;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(13, 35, 62, .7);
  border-radius: 15px;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-text h2 {
  color: var(--color-white);
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text span {
  color: var(--theme-color);
}

.cta-text p {
  color: var(--color-white);
}




/* ========================
24. Gallery css 
=========================== */

.gallery-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.gallery-img {
  height: 100%;
}

.gallery-img img {
  width: 100%;
  border-radius: 12px;
}

.gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gallery-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.gallery-content:hover::before {
  opacity: 0.9;
  visibility: visible
}

.gallery-link {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  color: var(--theme-color);
  margin-top: 50px;
}

.gallery-link::before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 2px dashed var(--color-white);
  border-radius: 50px;
}

.gallery-link:hover {
  color: var(--theme-color);
}

.gallery-content:hover .gallery-link {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}



/* =========================
25. Sidebar css
========================= */

.widget {
  background: var(--color-white);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 23px;
  color: var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 7px;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--theme-bg-light);
  color: var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}



/* ===================
26. Contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.contact-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: var(--theme-color);
  border-radius: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.contact-info-icon i {
  font-size: 25px;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info p {
  font-weight: 500;
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}



/* ===================
27. Faq css 
====================== */

.faq-area .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--color-white);
  color: var(--body-text-color);
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-dark);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px dashed var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-top: 50px;
  }

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



/* ===================
28. Breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 270px;
  padding-bottom: 150px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\e122';
  font-family: 'Font Awesome 6 Pro';
  right: -18px;
  top: 5px;
  text-align: center;
  font-size: 12px;
  color: var(--color-white);
  font-weight: bold;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 360px;
  }
}




/* ===================
29. Footer css 
====================== */

.footer-area {
  background: var(--footer-bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-area::before{
  content: "";
  position: absolute;
  background: #EFF1FD;
  height: 400px;
  width: 400px;
  border-radius: 50%;
  left: 5%;
  top: -120px;
  z-index: -1;
}

.footer-area::after{
  content: "";
  position: absolute;
  background: #EFF1FD;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  right: 30%;
  bottom: 100px;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 30px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(128,137,150,.1);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-dark);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 10px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 35px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-list li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
  font-size: 13px;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--footer-text-color);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: end;
  align-items: center;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: rgba(114, 103, 255, .1);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 8px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.footer-call{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-call-icon i{
  background: transparent !important;
  font-size: 45px !important;
  color: var(--theme-color) !important;
}

.footer-call-info h6{
  color: var(--color-dark);
  font-weight: 700;
}

.footer-call-info a{
  color: var(--theme-color) !important;
  font-size: 20px;
  font-weight: 700;
}

.subscribe-form .form-control {
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
}

.subscribe-form .form-group-icon{
  position: relative;
}

.subscribe-form .form-group-icon i{
  position: absolute;
  left: 20px;
  top: 20px;
}

.subscribe-form .form-group-icon .form-control{
  padding: 15px 18px 15px 45px;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
}

.subscribe-form p{
  margin-top: 5px;
  margin-bottom: 10px;
}

.footer-payment-method{
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 8px;
}

.footer-payment-method h6{
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.payment-method-img img{
  width: 35px;
  margin: 2px;
  border-radius: 4px;
}

@media all and (min-width: 1199px) and (max-width: 1399px) {
  .payment-method-img img{
    width: 33px;
  }
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

/* =====================END===================== */
