:root {
  --theme-color: #2B6DB7;
  --box-shadow: 5px 5px 6px rgba(0,0,0,0.4);
}

* {
  margin: 0;
  padding: 0;
}

body,
html {
  color: #767676;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0 !important;
  font-family: "Manrope", sans-serif;
}

.ff-montez {
  font-family: "Montez", cursive !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #161920;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.67;
  color: #767676;
  text-align: justify;
}
.accordion-body{
  text-align: justify;
}
a,
a:hover,
a:focus {
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #161920;
}

ul,
ol {
  margin-bottom: 0;
}

ul li,
ol li {
  line-height: 1.75;
}

.border,
.border-end,
.border-start,
.border-top,
.border-bottom {
  border-color: rgba(38, 38, 41, 0.3) !important;
}

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

input:required,
textarea:required,
input:invalid,
textarea:invalid {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

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

.bg-fixed {
  background-attachment: fixed;
}

/* Shortcode CSS */
@font-face {
  font-family: "Glyphter";
  src: url("../fonts/Glyphter.eot");
  src: url("../fonts/Glyphter.eot?#iefix") format("embedded-opentype"), url("../fonts/Glyphter.woff") format("woff"), url("../fonts/Glyphter.ttf") format("truetype"), url("../fonts/Glyphter.svg#Glyphter") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*=icon-] {
  line-height: 0.6 !important;
}

[class*=icon-]:before {
  display: inline-block;
  font-family: "Glyphter";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up:before {
  content: "A";
}

.icon-arrow-down:before {
  content: "B";
}

.icon-arrow-left:before {
  content: "C";
}

.icon-arrow-right:before {
  content: "D";
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(47, 91, 234, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(47, 91, 234, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(47, 91, 234, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(47, 91, 234, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(47, 91, 234, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(47, 91, 234, 0.175) !important;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  padding: 12px 24px;
  gap: 6px;
  border-radius: 5rem;
  border: 0;
  font-weight: 700;
  position: relative;
  height: 48px;
  min-width: auto;
  text-transform: capitalize;
  overflow: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

@media only screen and (min-width:1200px) {
  .btn {
    height: 60px;
    padding: 16px 32px;
    font-size: 16px;
  }
}

.btn i {
  font-size: 140%;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.btn:active,
.btn:hover,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  gap: 12px;
}

.btn-primary {
  background-color: #601FEB;
  color: #FFFFFF;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
  background-color: #2d1feb;
  color: #FFFFFF;
}

.btn-success {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-success:active,
.btn-success:hover,
.btn-success:focus {
  background-color: #161922;
  color: #FFFFFF;
}

.btn-info {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-info:active,
.btn-info:hover,
.btn-info:focus {
  background-color: #113d48;
  color: #FFFFFF;
}

.btn-warning {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-warning:active,
.btn-warning:hover,
.btn-warning:focus {
  background-color: #141414;
  color: #FFFFFF;
}

.btn-danger {
  background-color: #DC3545;
  color: #FFFFFF;
}

.btn-danger:active,
.btn-danger:hover,
.btn-danger:focus {
  background-color: #2d1feb;
  color: #FFFFFF;
}

.btn-light {
  background-color: #FFFFFF;
  color: #161920;
}

.btn-light:active,
.btn-light:hover,
.btn-light:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-dark {
  background-color: #161920;
  color: #FFFFFF !important;
}

.btn-dark:active,
.btn-dark:hover,
.btn-dark:focus {
  background-color: #FFFFFF;
  color: #161920 !important;
}

.btn-link {
  position: relative;
  z-index: 1;
  color: var(--theme-color);
  gap: 6px;
  padding: 0 !important;
  min-width: 0;
  height: auto;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  border-radius: 0 !important;
}

.btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-color: var(--theme-color);
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.btn-link i {
  font-size: 20px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.btn-link:active,
.btn-link:hover,
.btn-link:focus {
  color: #161922;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link:active::after,
.btn-link:hover::after,
.btn-link:focus::after {
  background-color: #161920;
  width: 50%;
}

.btn-group-sm>.btn,
.btn-sm {
  padding: 0.375rem 1.25rem;
  font-size: 12px;
  height: 37px;
  min-width: 100px;
}
.d-flex .btn-group-sm>.btn,
.d-flex  .btn-sm{
  width: 100%;
  padding: 0.375rem 0;
}

.btn-outline-primary {
  border: 1px solid #601FEB;
  color: #601FEB;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #601FEB;
  color: #FFFFFF;
}

.btn-outline-success {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-outline-warning {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-outline-info {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.btn-outline-info:hover,
.btn-outline-info:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.btn-outline-danger {
  border: 1px solid #DC3545;
  color: #DC3545;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: #DC3545;
  color: #FFFFFF;
}

.btn-outline-light {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: #FFFFFF;
  color: #601FEB;
}

.btn-outline-dark {
  border: 1px solid #161920;
  color: #161920;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: #161920;
  color: #FFFFFF;
}

.bg-primary {
  background-color: #601FEB !important;
}

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

.bg-success {
  background-color: var(--theme-color) !important;
}

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

.bg-warning {
  background-color: var(--theme-color) !important;
}

.bg-info {
  background-color: var(--theme-color) !important;
}

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

.bg-gray {
  background-color: #F7F5F2 !important;
}

.text-primary {
  color: #601FEB !important;
}

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

.text-heading {
  color: #161920 !important;
}

.text-success {
  color: var(--theme-color) !important;
}

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

.text-warning {
  color: var(--theme-color) !important;
}

.text-info {
  color: var(--theme-color) !important;
}

.touria-scrolltop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  z-index: 9999;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0.25rem;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  border-radius: 50%;
  border: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--theme-color);
}

.touria-scrolltop span {
  font-size: 1.75rem;
}

.touria-scrolltop.scrolltop-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.touria-scrolltop.scrolltop-hide {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media only screen and (min-width:992px) {
  .touria-scrolltop {
    width: 3rem;
    height: 3rem;
    bottom: 2rem;
    right: 2rem;
  }
}

.touria-scrolltop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(var(--theme-color) var(--scroll-progress), #161922 0);
  z-index: -1;
}

.touria-scrolltop.theme-two::before {
  background: conic-gradient(var(--theme-color) var(--scroll-progress), #141414 0);
}

.touria-scrolltop.theme-three::before {
  background: conic-gradient(var(--theme-color) var(--scroll-progress), #113d48 0);
}

.divider {
  width: 100%;
  display: block;
  height: 35px;
}

@media only screen and (min-width:576px) {
  .divider {
    height: 30px;
  }
}

@media only screen and (min-width:768px) {
  .divider {
    height: 35px;
  }
}

@media only screen and (min-width:992px) {
  .divider {
    height: 35px;
  }
}

@media only screen and (min-width:1200px) {
  .divider {
    height: 35px;
  }
}

@media only screen and (min-width:1400px) {
  .divider {
    height: 35px;
  }
}

.divider-sm {
  width: 100%;
  display: block;
  height: 25px;
}

@media only screen and (min-width:768px) {
  .divider-sm {
    height: 50px;
  }
}

.section-heading .sub-title {
  font-size: 24px;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
  font-family: "Montez", cursive !important;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media only screen and (min-width:1200px) {
  .section-heading .sub-title {
    font-size: 28px;
  }
}

@media only screen and (min-width:1400px) {
  .section-heading .sub-title {
    font-size: 32px;
  }
}

.section-heading .h2,
.section-heading h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  text-transform: capitalize;
  color: #161920;
}

@media only screen and (min-width:1200px) {
  .section-heading p {
    font-size: 18px;
  }
}

.section-heading .h2 span,
.section-heading h2 span {
  font-weight: 900;
  color: inherit;
  position: relative;
  z-index: 1;
}


.bg-info .section-heading h2 span:after {
  background-image: linear-gradient(to right, #767676 0%, #3CB371 100%);
}

.rotatingImage {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}

.search-bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #161920;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 100000;
  visibility: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.search-bg-overlay.open {
  opacity: 0.95;
  visibility: visible;
}

.search-form-popup {
  position: fixed;
  z-index: 100000;
  padding: 40px 32px;
  background-color: transparent;
  left: 50%;
  top: 50%;
  min-width: 280px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
  text-align: center;
}

@media only screen and (min-width:480px) {
  .search-form-popup {
    min-width: 360px;
  }
}

@media only screen and (min-width:768px) {
  .search-form-popup {
    min-width: 500px;
  }
}

@media only screen and (min-width:992px) {
  .search-form-popup {
    min-width: 600px;
  }
}

.search-form-popup .close-btn {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.search-form-popup .close-btn:hover,
.search-form-popup .close-btn:focus {
  background-color: #FFFFFF;
  color: #161920;
}

@media only screen and (min-width:768px) {
  .search-form-popup .close-btn {
    width: 50px;
    height: 50px;
    top: -2rem;
    right: -2rem;
  }
}

.search-form-popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.search-form-popup form .form-control {
  width: 100%;
  height: 48px;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 16px;
  padding: 17px 24px;
  font-weight: 700;
}

@media only screen and (min-width:1200px) {
  .search-form-popup form .form-control {
    font-size: 18px;
    height: 64px;
  }
}

.search-form-popup form .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}

.search-form-popup form .form-control::-moz-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}

.search-form-popup form .form-control:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}

.search-form-popup form .form-control::-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}

.search-form-popup form .form-control::placeholder {
  color: #FFFFFF;
  opacity: 0.85;
}

.search-form-popup form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-form-popup form .btn {
  border-radius: 8px;
  height: 48px;
}

@media only screen and (min-width:1200px) {
  .search-form-popup form .btn {
    height: 64px;
  }
}

.search-form-popup.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
}

.vbox-container {
  overflow-x: hidden;
  overflow-y: hidden;
}

.vbox-container .vbox-child {
  border-radius: 18px;
}

.vbox-container .vbox-child img {
  border-radius: 18px;
}

.vbox-close {
  top: 1rem;
  right: 1rem;
}

/* Preloader CSS */
/* Preloader CSS */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

/* Jarallax CSS */
.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax>.jarallax-img,
picture.jarallax-img img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header CSS */
.offcanvas-icon {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #161920;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
}

@media only screen and (min-width:1200px) {
  .offcanvas-icon {
    width: 52px;
    height: 52px;
  }
}

.offcanvas-icon svg path {
  fill: #161920;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.offcanvas-icon:hover,
.offcanvas-icon:focus {
  border-color: var(--theme-color);
}

.offcanvas-icon:hover svg path,
.offcanvas-icon:focus svg path {
  fill: var(--theme-color);
}

.header-search-btn .btn {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #161920;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

@media only screen and (min-width:1200px) {
  .header-search-btn .btn {
    width: 52px;
    height: 52px;
  }
}

.header-search-btn .btn svg path {
  stroke: #161920;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.header-search-btn .btn:hover,
.header-search-btn .btn:focus {
  border-color: var(--theme-color);
}

.header-search-btn .btn:hover svg path,
.header-search-btn .btn:focus svg path {
  stroke: var(--theme-color);
}

.header-area {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

@media only screen and (min-width:1200px) {
  .header-area {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.header-area.mobile-menu-open {
  background-color: #FFFFFF;
}

.header-area .navbar-toggler {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  color: #161920;
  border: 1px solid #767676;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.header-area .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-area .navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar {
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.header-area .navbar .navbar-brand {
  margin-right: 2rem;
  line-height: 1 !important;
}

.header-area .navbar-nav {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media only screen and (min-width:992px) {
  .header-area .navbar-nav {
    gap: 16px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
  }
}

@media only screen and (min-width:1400px) {
  .header-area .navbar-nav {
    gap: 22px;
  }
}

.header-area .navbar-nav li>a {
  display: inline-block;
  color: #0E0E0E;
  font-weight: 700;
  font-size: 1rem;
  text-transform: capitalize;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.header-area .navbar-nav li>a i {
  margin-top: 3px;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li>a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.header-area .navbar-nav li>a:hover,
.header-area .navbar-nav li>a:focus {
  color: var(--theme-color);
}

.header-area .navbar-nav li .touria-dd-menu {
  list-style: none;
  background-color: transparent;
  position: relative;
  z-index: 100;
  top: 100%;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  display: none;
  max-height: 440px;
  overflow: auto;
  padding-left: 0;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li .touria-dd-menu {
    padding: 1rem 0;
    -webkit-transition: all 350ms;
    transition: all 350ms;
    position: absolute;
    top: calc(100% + 8px);
    width: 17rem;
    background-color: #F7F5F2;
    visibility: hidden;
    opacity: 0;
    display: block;
    left: -1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.header-area .navbar-nav li .touria-dd-menu li>a {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  position: relative;
  font-size: 1rem;
  padding: 0.375rem 1rem;
  color: #0E0E0E;
  text-transform: capitalize;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li .touria-dd-menu li>a {
    padding: 0.375rem 1.5rem;
  }
}

.header-area .navbar-nav li .touria-dd-menu li>a:hover,
.header-area .navbar-nav li .touria-dd-menu li>a:focus {
  background-color: transparent;
  color: var(--theme-color);
}

@media only screen and (min-width:1200px) {

  .header-area .navbar-nav li .touria-dd-menu li>a:hover,
  .header-area .navbar-nav li .touria-dd-menu li>a:focus {
    color: var(--theme-color);
  }
}

.header-area .navbar-nav li.touria-dd {
  position: relative;
  z-index: 1;
}

.header-area .navbar-nav li.touria-dd .dropdown-toggler {
  position: absolute;
  width: 100%;
  height: 36px;
  z-index: 100;
  background-color: transparent;
  color: var(--theme-color);
  top: 2px;
  cursor: pointer;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 14px;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.touria-dd .dropdown-toggler {
    display: none;
  }
}

.header-area .navbar-nav li.touria-dd>a {
  position: relative;
}

.header-area .navbar-nav li.touria-dd:hover>a,
.header-area .navbar-nav li.touria-dd:focus>a {
  color: var(--theme-color);
}

@media only screen and (min-width:1200px) {

  .header-area .navbar-nav li.touria-dd:hover .touria-dd-menu,
  .header-area .navbar-nav li.touria-dd:focus .touria-dd-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}

.header-area .navbar-nav li.touria-dd .touria-dd .dropdown-toggler {
  right: 1rem;
}

.header-area .navbar-nav li.touria-dd .touria-dd>a {
  position: relative;
  width: 100%;
}

.header-area .navbar-nav li.touria-dd .touria-dd .touria-dd-menu {
  display: none;
  padding-left: 1rem;
}

@media only screen and (min-width:1200px) {
  .header-area .navbar-nav li.touria-dd .touria-dd .touria-dd-menu {
    margin-left: 0.25rem;
    top: -8px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    padding-left: 0;
  }
}

@media only screen and (min-width:1200px) {

  .header-area .navbar-nav li.touria-dd .touria-dd:hover .touria-dd-menu,
  .header-area .navbar-nav li.touria-dd .touria-dd:focus .touria-dd-menu {
    visibility: visible;
    opacity: 1;
  }
}

.header-area.sticky-on {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
  box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
}

@media only screen and (min-width:1200px) {
  .header-area.sticky-on .navbar {
    height: 85px;
  }
}

.header-area.style-two {
  background-color: #FFFFFF;
}

.header-area.style-two .header-top {
  width: 100%;
  height: 48px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  border-bottom: 1px solid rgba(28, 54, 55, 0.25);
}

.header-area.style-two .header-top .left-side .vr-line {
  width: 1px;
  height: 18px;
  background-color: #141414;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-area.style-two .header-top .left-side i {
  color: #1C3637;
  font-size: 20px;
}

.header-area.style-two .header-top .left-side span {
  color: #1C3637;
  font-weight: 500;
}

.header-area.style-two .navbar {
  background-color: #FFFFFF;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

@media only screen and (min-width:1200px) {
  .header-area.style-two .navbar {
    height: 100px;
  }
}

@media only screen and (min-width:1200px) {
  .header-area.style-two .navbar .navbar-brand {
    margin-right: 50px;
  }
}

@media only screen and (min-width:1400px) {
  .header-area.style-two .navbar .navbar-brand {
    margin-right: 225px;
  }
}

.header-area.style-two .navbar-toggler {
  color: #161920;
}

.header-area.style-two .social-nav a {
  color: #1C3637;
  font-size: 16px;
  -webkit-transform: all 350ms;
  transform: all 350ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.header-area.style-two .social-nav a i {
  font-size: 18px;
}

.header-area.style-two .social-nav a:hover,
.header-area.style-two .social-nav a:focus {
  color: var(--theme-color);
}

.header-area.style-two .social-nav.style-two a {
  border: 1.258px solid #535B5F;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #535B5F;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.header-area.style-two .social-nav.style-two a:hover,
.header-area.style-two .social-nav.style-two a:focus {
  color: #FFFFFF;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.header-area.style-two .offcanvas-icon {
  border: 1px solid #1C3637;
}

.header-area.style-two .offcanvas-icon svg path {
  fill: #1C3637;
}

.header-area.style-two .offcanvas-icon:hover,
.header-area.style-two .offcanvas-icon:focus {
  border-color: var(--theme-color);
}

.header-area.style-two .offcanvas-icon:hover svg path,
.header-area.style-two .offcanvas-icon:focus svg path {
  fill: var(--theme-color);
}

.header-area.style-two .header-search-btn .btn {
  border: 1px solid #1C3637;
}

.header-area.style-two .header-search-btn .btn svg path {
  stroke: #1C3637;
}

.header-area.style-two .header-search-btn .btn:hover,
.header-area.style-two .header-search-btn .btn:focus {
  border-color: var(--theme-color);
}

.header-area.style-two .header-search-btn .btn:hover svg path,
.header-area.style-two .header-search-btn .btn:focus svg path {
  stroke: var(--theme-color);
}

.header-area.style-two.sticky-on {
  background-color: #FFFFFF;
}

.header-area.style-two.sticky-on .header-top {
  height: 40px;
  background-color: transparent;
}

@media only screen and (min-width:1200px) {
  .header-area.style-two.sticky-on .navbar {
    height: 90px;
  }
}

.header-area.style-three {
  top: 28px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 2%;
  padding-right: 2%;
}

.header-area.style-three::after {
  display: none;
}

.header-area.style-three.mobile-menu-open {
  background-color: transparent;
}

.header-area.style-three .navbar {
  background-color: #F7F7F7;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(247, 247, 247, 0.1);
}

@media only screen and (min-width:1200px) {
  .header-area.style-three .navbar {
    height: 100px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5rem;
  }
}

.header-area.style-three .navbar-nav li>a {
  color: #0E0E0E;
}

.header-area.style-three .navbar-nav li>a:hover,
.header-area.style-three .navbar-nav li>a:focus {
  color: var(--theme-color);
}

.header-area.style-three .navbar-nav li .touria-dd-menu {
  background-color: transparent;
}

@media only screen and (min-width:1200px) {
  .header-area.style-three .navbar-nav li .touria-dd-menu {
    background-color: #F7F5F2;
    border: 0;
  }
}

.header-area.style-three .navbar-nav li .touria-dd-menu li>a {
  color: #0E0E0E;
  line-height: 1.2;
}

.header-area.style-three .navbar-nav li .touria-dd-menu li>a:hover,
.header-area.style-three .navbar-nav li .touria-dd-menu li>a:focus {
  background-color: transparent;
  color: var(--theme-color);
}

.header-area.style-three .navbar-nav li.touria-dd:hover>a,
.header-area.style-three .navbar-nav li.touria-dd:focus>a {
  color: var(--theme-color);
}

.header-area.style-three .navbar-nav li.touria-dd .dropdown-toggler {
  background-color: transparent;
  color: var(--theme-color);
}

.header-area.style-three.sticky-on {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.header-area.style-three.sticky-on .navbar {
  -webkit-box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
  box-shadow: 0px 30px 42px 0px rgba(33, 39, 37, 0.1);
  border: 1px solid rgba(96, 31, 235, 0.1);
}

@media only screen and (min-width:1200px) {
  .header-area.style-three.sticky-on .navbar {
    height: 80px;
  }
}

.header-area.style-four .header-top {
  padding-left: 2%;
  padding-right: 2%;
}

.header-area.style-four .navbar {
  position: relative;
  z-index: 1;
  padding-left: 2%;
  padding-right: 2%;
}

.header-area.style-four .navbar::after {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 320px;
  height: 74px;
  background-image: url("../images/shapes/brand-shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  filter: invert(1) brightness(0.80) hue-rotate(-10deg);
}

@media only screen and (min-width:1200px) {
  .header-area.style-four .navbar::after {
    width: 384px;
    height: 100px;
  }
}

.header-area.style-four .navbar-nav li>a {
  color: #0E0E0E;
}

.header-area.style-four .navbar-nav li>a:hover,
.header-area.style-four .navbar-nav li>a:focus {
  color: var(--theme-color);
}

.header-area.style-four .navbar-nav li .touria-dd-menu {
  background-color: transparent;
}

@media only screen and (min-width:1200px) {
  .header-area.style-four .navbar-nav li .touria-dd-menu {
    background-color: #F7F5F2;
    border: 0;
  }
}

.header-area.style-four .navbar-nav li .touria-dd-menu li>a {
  color: #0E0E0E;
}

.header-area.style-four .navbar-nav li .touria-dd-menu li>a:hover,
.header-area.style-four .navbar-nav li .touria-dd-menu li>a:focus {
  background-color: transparent;
  color: var(--theme-color);
}

.header-area.style-four .navbar-nav li.touria-dd:hover>a,
.header-area.style-four .navbar-nav li.touria-dd:focus>a {
  color: var(--theme-color);
}

.header-area.style-four .navbar-nav li.touria-dd .dropdown-toggler {
  background-color: transparent;
  color: var(--theme-color);
}

.header-area.style-four .offcanvas-icon {
  border: 1px solid rgba(20, 20, 20, 0.2);
  background-color: #F7F7F7;
}

.header-area.style-four .offcanvas-icon svg path {
  fill: #141414;
}

.header-area.style-four .offcanvas-icon:hover,
.header-area.style-four .offcanvas-icon:focus {
  border-color: var(--theme-color);
}

.header-area.style-four .offcanvas-icon:hover svg path,
.header-area.style-four .offcanvas-icon:focus svg path {
  fill: var(--theme-color);
}

.header-area.style-four .header-search-btn .btn {
  border: 1px solid rgba(20, 20, 20, 0.2);
  background-color: #F7F7F7;
}

.header-area.style-four .header-search-btn .btn svg path {
  stroke: #141414;
}

.header-area.style-four .header-search-btn .btn:hover,
.header-area.style-four .header-search-btn .btn:focus {
  border-color: var(--theme-color);
}

.header-area.style-four .header-search-btn .btn:hover svg path,
.header-area.style-four .header-search-btn .btn:focus svg path {
  stroke: var(--theme-color);
}

.header-area.style-four.sticky-on .navbar::after {
  top: 0;
  left: -50px;
  width: 320px;
  height: 74px;
}

@media only screen and (min-width:1200px) {
  .header-area.style-four.sticky-on .navbar::after {
    width: 384px;
    height: 90px;
  }
}

@media only screen and (min-width:1200px) {
  .header-navigation {
    margin-left: 1rem;
  }
}

@media only screen and (min-width:1400px) {
  .header-navigation {
    margin-left: 4rem;
  }
}

.sideMenuButton {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  min-width: 50px;
  padding: 0;
  background-color: #601FEB;
}

.sideMenuButton:hover svg path,
.sideMenuButton:focus svg path {
  stroke: #FFFFFF;
}

.right-side-touria-offcanvas {
  width: 320px !important;
  background-color: #FFFFFF;
}

@media only screen and (min-width:576px) {
  .right-side-touria-offcanvas {
    width: 450px !important;
  }
}

@media only screen and (min-width:1200px) {
  .right-side-touria-offcanvas {
    width: 500px !important;
  }
}

.right-side-touria-offcanvas .offcanvas-header {
  height: 110px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #F7F5F2;
}

@media only screen and (min-width:576px) {
  .right-side-touria-offcanvas .offcanvas-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.right-side-touria-offcanvas .offcanvas-header .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  border: 1px solid rgba(96, 31, 235, 0.1);
}

.right-side-touria-offcanvas .offcanvas-body {
  padding: 40px 20px;
  scrollbar-width: thin;
}

@media only screen and (min-width:576px) {
  .right-side-touria-offcanvas .offcanvas-body {
    padding: 60px 40px;
  }
}

@media only screen and (min-width:992px) {
  .touria-dd-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  }

  .touria-dd-menu li {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, -webkit-transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease;
    transition: opacity 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  }

  .touria-dd:hover .touria-dd-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .touria-dd:hover .touria-dd-menu li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(1) {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(2) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(3) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(4) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(5) {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(6) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(7) {
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(8) {
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(9) {
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(10) {
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(11) {
    -webkit-transition-delay: 1100ms;
    transition-delay: 1100ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(12) {
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(13) {
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(14) {
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(15) {
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(16) {
    -webkit-transition-delay: 1600ms;
    transition-delay: 1600ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(17) {
    -webkit-transition-delay: 1700ms;
    transition-delay: 1700ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(18) {
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(19) {
    -webkit-transition-delay: 1900ms;
    transition-delay: 1900ms;
  }

  .touria-dd:hover .touria-dd-menu li:nth-child(20) {
    -webkit-transition-delay: 2000ms;
    transition-delay: 2000ms;
  }
}

.navbar-nav-scroll {
  max-height: 50vh;
}

/* Hero CSS */
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  max-width: 700px;
}

.hero-content h3 {
  font-size: 24px;
  font-weight: 400;
}

@media only screen and (min-width:992px) {
  .hero-content h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width:1400px) {
  .hero-content h3 {
    font-size: 32px;
  }
}

.hero-content h2,
.hero-content h1,
  .hero-content .h2  {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

@media only screen and (min-width:576px) {
  .hero-content h2,
  .hero-content h1,
  .hero-content .h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width:768px) {
  .hero-content h2,
  .hero-content h1,
  .hero-content .h2 {
    font-size: 48px;
  }
}

@media only screen and (min-width:992px) {
  .hero-content h2,
  .hero-content h1,
  .hero-content .h2 {
    font-size: 56px;
  }
}

@media only screen and (min-width:1400px) {
  .hero-content h2,
  .hero-content h1,
  .hero-content .h2 {
    font-size: 60px;
  }
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 32px;
}

@media only screen and (min-width:1200px) {
  .hero-content p {
    font-size: 18px;
    margin-bottom: 44px;
  }
}

@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-content.home-one {
    padding-left: 5%;
  }
}

.hero-section {
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 125px;
}

@media only screen and (min-width:1200px) {
  .hero-section {
    padding-top: 200px;
    padding-bottom: 125px;
  }
}

@media only screen and (min-width:1400px) {
  .hero-section {
    padding-top: 200px;
    padding-bottom: 125px;
  }
}

.hero-section .cloud-img {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background-image: url("../images/slider/cloud.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-section .social-icons {
  position: absolute;
  left: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 100;
}

.hero-section .social-icons::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 160px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(60, 179, 113, 0)), to(var(--theme-color)));
  background: linear-gradient(90deg, rgba(60, 179, 113, 0) 0%, var(--theme-color) 100%);
  z-index: 10;
}

.hero-section .social-icons::after {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 160px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(60, 179, 113, 0)), to(var(--theme-color)));
  background: linear-gradient(90deg, rgba(60, 179, 113, 0) 0%, var(--theme-color) 100%);
  z-index: 10;
}

.hero-section .social-icons a {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.hero-section .social-icons a:hover,
.hero-section .social-icons a:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.hero-section .background-slider-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 3%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-section .background-slider-nav .background-button-prev,
.hero-section .background-slider-nav .background-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F7F7F7;
  color: #161920;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
}

@media only screen and (min-width:1200px) {

  .hero-section .background-slider-nav .background-button-prev,
  .hero-section .background-slider-nav .background-button-next {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.hero-section .background-slider-nav .background-button-prev:hover,
.hero-section .background-slider-nav .background-button-prev:focus,
.hero-section .background-slider-nav .background-button-next:hover,
.hero-section .background-slider-nav .background-button-next:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.hero-section .hero-navigation {
  position: absolute;
  width: 75px;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 14px;
  border-radius: 100rem;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

@media only screen and (min-width:768px) {
  .hero-section .hero-navigation {
    right: 60px;
  }
}

@media only screen and (min-width:1200px) {
  .hero-section .hero-navigation {
    padding: 50px 24px;
    width: 100px;
    right: 90px;
  }
}

@media only screen and (min-width:1400px) {
  .hero-section .hero-navigation {
    right: 148px;
  }
}

.hero-section .hero-navigation .hero-button-prev,
.hero-section .hero-navigation .hero-button-next {
  width: auto;
  height: auto;
  text-align: center;
  border: 0;
  background-color: transparent;
  font-size: 24px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #FFFFFF;
}

.hero-section .hero-navigation .hero-button-prev:hover,
.hero-section .hero-navigation .hero-button-prev:focus,
.hero-section .hero-navigation .hero-button-next:hover,
.hero-section .hero-navigation .hero-button-next:focus {
  color: var(--theme-color);
}

.hero-section .hero-navigation .swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-section .hero-navigation .swiper-pagination-bullet {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  opacity: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

@media only screen and (min-width:1200px) {
  .hero-section .hero-navigation .swiper-pagination-bullet {
    width: 64px;
    height: 64px;
  }
}

.hero-section .hero-navigation .swiper-pagination-bullet.swiper-pagination-bullet-active,
.hero-section .hero-navigation .swiper-pagination-bullet:hover,
.hero-section .hero-navigation .swiper-pagination-bullet:focus {
  border-color: var(--theme-color);
}

main {
  margin-top: 142px;
}

.hero-section.style-two {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (min-width:1200px) {
  main {
    margin-top: 148px;
  }
}

.hero-section.style-two .hero-swiper {
  border-radius: 0;
}

.hero-section.style-two .hero-swiper-slide {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

@media only screen and (min-width:576px) {
  .hero-section.style-two .hero-swiper-slide {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width:1200px) {
  .hero-section.style-two .hero-swiper-slide {
    padding-top: 100px;
    padding-bottom: 100px;
    height: 80vh;
  }
}

.hero-section.style-two .hero-swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  border-radius: 0;
  background: rgba(28, 54, 55, 0.6);
}

.hero-section.style-three {
  margin-top: 122px;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width:1400px) {
  .hero-section.style-three {
    margin-top: 148px;
    padding-top: 140px;
    padding-bottom: 280px;
  }
}

.hero-section.style-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: rgba(20, 20, 20, 0.7);
}

@media only screen and (min-width:1400px) {
  .hero-section.style-three .bg-curve-shape {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    width: 1320px;
    height: 118px;
    z-index: 10;
    background-color: #FFFFFF;
  }

  .hero-section.style-three .bg-curve-shape::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -100px;
    width: 0;
    height: 0;
    border-top: 119px solid transparent;
    border-right: 101px solid #FFFFFF;
  }

  .hero-section.style-three .bg-curve-shape::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -100px;
    width: 0;
    height: 0;
    border-top: 119px solid transparent;
    border-left: 101px solid #FFFFFF;
  }
}

.touria-select,
.touria-select2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #FFFFFF;
  border-radius: 0;
  border: 0;
  float: none !important;
  font-size: 16px;
  height: auto;
  line-height: 1;
  padding-left: 0;
  padding-right: 30px;
  width: auto;
  font-weight: 700;
  color: #161920;
}

.touria-select::after,
.touria-select2::after {
  border-bottom: 2px solid #161920;
  border-right: 2px solid #161920;
  height: 8px;
  right: 0px;
  width: 8px;
}

.touria-select .list,
.touria-select2 .list {
  border-radius: 8px;
  padding: 0;
  max-height: 130px;
  width: 200px;
  scrollbar-width: thin;
}

.touria-select .nice-select-dropdown,
.touria-select2 .nice-select-dropdown {
  padding: 8px;
  margin-top: 12px;
  background-color: #F7F5F2;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 100%;
}

.touria-select .option,
.touria-select2 .option {
  padding-left: 8px;
  padding-right: 24px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #161920;
}

.touria-select .option.selected,
.touria-select2 .option.selected {
  color: var(--theme-color);
}

.touria-select .nice-select-search,
.touria-select2 .nice-select-search {
  border-radius: 8px;
}

.time-range-picker {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #161920;
  outline: none;
  width: 140px;
}

.time-range-picker:active,
.time-range-picker:focus,
.time-range-picker:focus-visible {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.flatpickr-calendar {
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  position: absolute;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.flatpickr-months {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F7F5F2;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  position: relative;
  z-index: 1;
  height: 34px;
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.flatpickr-months .flatpickr-current-month {
  position: relative;
  z-index: 1;
  font-size: 110%;
  font-weight: 700;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  left: 0;
  gap: 1rem;
}

.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-months .flatpickr-current-month input.cur-year {
  font-weight: 700;
  color: #161920;
  padding: 0;
}

.flatpickr-months .flatpickr-monthDropdown-months,
.flatpickr-months .numInputWrapper {
  width: calc(50% - 0.5rem);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 0.5rem);
  flex: 0 0 calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.hero-search-form {
  padding: 20px;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 2px solid var(--theme-color);
  box-shadow: 0 0 18px #492c0c36;
}

@media only screen and (min-width:1400px) {
  .hero-search-form {
    padding: 28px;
  }
}

.hero-search-form .search-item .icon {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #767676;
  font-size: 18px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  position: absolute;
  left: 15px;
}

.hero-search-form .search-item.textarea_icon .icon {
  top: 17px;
}

.hero-search-form .search-item i {
  color: #161920;
  font-size: 20px;
  font-size: 16px;
  color: var(--theme-color);
}

.hero-search-form .search-item label {
  font-size: 16px;
}

.hero-search-form .search-item:hover .icon,
.hero-search-form .search-item:focus .icon {
  color: var(--theme-color);
}

.background-swiper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
}

.background-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.background-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(8.81%, #161920), color-stop(99.92%, rgba(22, 25, 32, 0.06)));
  background: linear-gradient(90deg, #161920 8.81%, rgba(22, 25, 32, 0.06) 99.92%);
  z-index: 10;
}

.search-form-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

@media only screen and (min-width:1200px) {
  .search-form-container {
    height: 78px;
  }
}

.hero-two-search-form {
  position: relative;
  z-index: 100;
  border-radius: 18px;
  background: #F3F6FD;
  padding: 28px;
  margin-top: 50px;
}

@media only screen and (min-width:1200px) {
  .hero-two-search-form {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 200;
    margin-top: 0;
    padding: 40px;
  }
}

.hero-two-search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width:1200px) {
  .hero-two-search-form form {
    gap: 30px;
  }
}

.hero-two-search-form form .form-group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 50%;
}

@media only screen and (min-width:576px) {
  .hero-two-search-form form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

@media only screen and (min-width:992px) {
  .hero-two-search-form form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 145px;
    flex: 0 0 145px;
    width: 145px;
  }
}

@media only screen and (min-width:1200px) {
  .hero-two-search-form form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    width: 165px;
  }
}

@media only screen and (min-width:1400px) {
  .hero-two-search-form form .form-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    width: 200px;
  }
}

.hero-two-search-form .vr-line {
  width: 1px;
  height: 76px;
  background: rgba(118, 118, 118, 0.3);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hero-two-search-form label {
  font-size: 16px;
  color: #1C3637;
  font-weight: 700;
}

.hero-two-search-form label i {
  font-size: 20px;
  margin-left: 16px;
}

.hero-two-search-form .touria-select,
.hero-two-search-form .touria-select2 {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 0;
  float: none !important;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  padding-left: 16px;
  padding-right: 30px;
  width: 100%;
  font-weight: 400;
  color: #767676;
}

.hero-two-search-form .touria-select::after,
.hero-two-search-form .touria-select2::after {
  display: none;
}

.hero-two-search-form .touria-select .nice-select-dropdown,
.hero-two-search-form .touria-select2 .nice-select-dropdown {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero-two-search-form .form-control {
  border-radius: 8px;
  border: 0;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  font-weight: 400;
  color: #767676;
  width: 100%;
}

.hero-two-search-form.style-two {
  background: #F7F5F2;
}

.hero-two-search-form.style-three {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

@media only screen and (min-width:1400px) {
  .hero-two-search-form.style-three {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

.hero-two-search-form.style-three .touria-select::after,
.hero-two-search-form.style-three .touria-select2::after {
  display: block;
  border-bottom: 2px solid #535B5F;
  border-right: 2px solid #535B5F;
  height: 8px;
  right: 16px;
  width: 8px;
}

/* About CSS */
.about-company-section {
  position: relative;
  z-index: 1;
}

.about-company-section::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10%;
  width: 170px;
  height: 280px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 280px;
  background: var(--theme-color);
  -webkit-filter: blur(200px);
  filter: blur(200px);
  z-index: -1;
  opacity: 0.5;
}

.about-card-sm .icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #161920;
  background-color: #F7F7F7;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-size: 2rem;
}

.about-card-sm .icon img {
  width: 60px;
}

.about-card-sm .icon svg {
  width: 40px;
  height: 40px;
}

.about-card-sm .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F7F7F7;
  z-index: -5;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.about-card-sm .icon::before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--theme-color);
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -100;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.about-card-sm .line {
  width: 1px;
  height: 60px;
  background: #767676;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.about-card-sm:hover .icon::before,
.about-card-sm:focus .icon::before {
  top: -9px;
  left: -9px;
}

.about-card-sm.theme-info .icon::before {
  background-color: var(--theme-color);
}

.about-card-sm.theme-warning .icon::before {
  background-color: var(--theme-color);
}

.why-choose-thumbnail {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.why-choose-thumbnail img {
  border-radius: 18px;
}

.why-choose-thumbnail .second-img {
  width: 55%;
}

.why-choose-thumbnail .second-img img {
  width: 100%;
}

.why-choose-thumbnail .third-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 45%;
  border-radius: 30px;
  border-top: 10px solid #F7F7F7;
  border-right: 10px solid #F7F7F7;
}

.why-choose-thumbnail .third-img img {
  width: 100%;
}

.why-choose-section {
  border-radius: 18px;
  position: relative;
  z-index: 1;
  background-image: url("../images/shapes/shape8.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.why-choose-section img {
  border-radius: 18px;
  width: 100%;
  max-height: 553px;
  object-fit: cover;
}

.why-choose-section.style-two {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 0)), to(#F7F7F7));
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #F7F7F7 100%);
  background-image: none;
}

.years-of-experience {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #161920;
  font-size: 42px;
  font-weight: 700;
  margin-left: 26px;
  margin-bottom: 10px;
  margin-top: 0;
}

@-webkit-keyframes experience-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes experience-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.why-choose-card {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.why-choose-card .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #161920;
}

@media only screen and (min-width:768px) {
  .why-choose-card .overflow-img {
    width: 70%;
  }
}

@media only screen and (min-width:992px) {
  .why-choose-card .overflow-img {
    display: none;
  }
}

@media only screen and (min-width:1200px) {
  .why-choose-card .overflow-img {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
  }
}

.about-list .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #141414;
  line-height: 1;
}

.about-list .icon i {
  font-size: 28px;
}

.about-list p {
  font-size: 16px;
}

.about-list ul {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width:576px) {
  .about-list ul {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
  }
}

@media only screen and (min-width:992px) {
  .about-list ul {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
  }
}

@media only screen and (min-width:1200px) {
  .about-list ul {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
  }
}

.about-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.about-list ul li i {
  font-size: 24px;
  color: var(--theme-color);
}

.about-video-content {
  position: relative;
  border-radius: 300px;
}

.about-video-content img {
  border-radius: 300px;
  width: 100%;
}

.about-video-content .play-video-btn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--theme-color);
  color: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media only screen and (min-width:1200px) {
  .about-video-content .play-video-btn .icon {
    width: 74px;
    height: 74px;
  }
}

.about-video-content .play-video-btn .icon i {
  font-size: 32px;
}

.about-video-content .play-video-btn .icon:hover,
.about-video-content .play-video-btn .icon:focus {
  background-color: #222222;
}

.about-thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-thumbnail img {
  border-radius: 20px;
}

.about-thumbnail .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.about-thumbnail .first-img {
  width: 70%;
  height: 450px;
}

.about-thumbnail .first-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-thumbnail .second-img {
  position: absolute;
  top: 100px;
  right: 0;
  width: 55%;
  height: 500px;
}

@media only screen and (min-width:576px) {
  .about-thumbnail .second-img {
    top: 140px;
  }
}

@media only screen and (min-width:768px) {
  .about-thumbnail .second-img {
    top: 100px;
  }
}

@media only screen and (min-width:992px) {
  .about-thumbnail .second-img {
    top: 190px;
  }
}

@media only screen and (min-width:1200px) {
  .about-thumbnail .second-img {
    top: 160px;
  }
}

@media only screen and (min-width:1400px) {
  .about-thumbnail .second-img {
    top: 100px;
  }
}

.about-thumbnail .second-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thumbnail .third-img {
  position: relative;
  z-index: 10;
  left: 160px;
  margin-top: 24px;
  width: 45%;
}

@media only screen and (min-width:992px) {
  .about-thumbnail .third-img {
    left: 60px;
    width: 70%;
  }
}

@media only screen and (min-width:1200px) {
  .about-thumbnail .third-img {
    left: 100px;
    width: 55%;
  }
}

@media only screen and (min-width:1400px) {
  .about-thumbnail .third-img {
    left: 160px;
    width: 45%;
  }
}

.about-thumbnail .third-img img {
  width: 100%;
}

.about-thumbnail .play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.about-thumbnail .play-video-btn .icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme-color);
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width:992px) {
  .about-thumbnail .play-video-btn .icon {
    width: 80px;
    height: 80px;
  }
}

.about-thumbnail .play-video-btn .icon i {
  font-size: 20px;
}

.about-thumbnail .play-video-btn .icon:hover,
.about-thumbnail .play-video-btn .icon:focus {
  background-color: #161922;
  color: #FFFFFF;
}

.about-thumbnail .about-img-sm {
  border-radius: 100rem;
  width: 45%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  right: 0;
  border: 10px solid #FFFFFF;
  box-shadow: var(--box-shadow);
}

.about-thumbnail .about-img-lg {
  width: 75%;
  box-shadow: var(--box-shadow);
  border-radius: 100rem;
}

.top-catagory-card a {
  display: block;
  text-align: center;
  margin-top: 2px;
}

.top-catagory-card a img {
  border-radius: 200rem;
  width: 100%;
}

.top-catagory-card a h4,
.top-catagory-card a p {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-catagory-card a:hover h4,
.top-catagory-card a:focus h4 {
  color: var(--theme-color);
}

.top-catagory-card a:hover p,
.top-catagory-card a:focus p {
  color: #161920;
}

.top-catagory-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.top-catagory-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  opacity: 1;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.top-catagory-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  width: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26px;
  flex: 0 0 26px;
  border-radius: 26px;
}

.accommodation-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid rgba(83, 91, 95, 0.3);
  padding-top: 40px;
  padding-bottom: 40px;
  cursor: pointer;
}

.accommodation-card:first-child {
  padding-top: 0;
}

.accommodation-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.accommodation-card .accommodation-content>* {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.accommodation-card .accommodation-hidden-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 5%;
  padding-right: 5%;
}

.accommodation-card .accommodation-name span {
  display: block;
  color: #535B5F;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(83, 91, 95, 0.3);
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (min-width:992px) {
  .accommodation-card .accommodation-name span {
    font-size: 18px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-name span {
    font-size: 20px;
  }
}

.accommodation-card .accommodation-name h2 {
  color: #141414;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(83, 91, 95, 0.3);
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (min-width:576px) {
  .accommodation-card .accommodation-name h2 {
    font-size: 24px;
  }
}

@media only screen and (min-width:768px) {
  .accommodation-card .accommodation-name h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width:992px) {
  .accommodation-card .accommodation-name h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width:1200px) {
  .accommodation-card .accommodation-name h2 {
    font-size: 42px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-name h2 {
    font-size: 50px;
  }
}

.accommodation-card .accommodation-price h3 {
  color: #141414;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(83, 91, 95, 0.3);
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (min-width:576px) {
  .accommodation-card .accommodation-price h3 {
    font-size: 24px;
  }
}

@media only screen and (min-width:768px) {
  .accommodation-card .accommodation-price h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width:1200px) {
  .accommodation-card .accommodation-price h3 {
    font-size: 32px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-price h3 {
    font-size: 36px;
  }
}

.accommodation-card .accommodation-price h3 span {
  color: #535B5F;
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (min-width:768px) {
  .accommodation-card .accommodation-price h3 span {
    font-size: 14px;
  }
}

@media only screen and (min-width:1200px) {
  .accommodation-card .accommodation-price h3 span {
    font-size: 16px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-price h3 span {
    font-size: 18px;
  }
}

.accommodation-card .accommodation-thumb {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-align: center;
}

.accommodation-card .accommodation-thumb img {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

@media only screen and (min-width:768px) {
  .accommodation-card .accommodation-thumb img {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (min-width:992px) {
  .accommodation-card .accommodation-thumb img {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (min-width:1200px) {
  .accommodation-card .accommodation-thumb img {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-thumb img {
    width: 200px;
    height: 200px;
  }
}

.accommodation-card .accommodation-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 36px;
}

.accommodation-card .accommodation-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(83, 91, 95, 0.3);
  padding: 0 16px;
  border-radius: 5rem;
  height: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 240px;
  flex: 0 0 240px;
  width: 240px;
}

@media only screen and (min-width:1400px) {
  .accommodation-card .accommodation-info li {
    height: 60px;
    padding: 0 24px;
  }
}

.accommodation-card .accommodation-info li i {
  color: #161920;
  font-size: 24px;
}

.accommodation-card.open .accommodation-hidden-content {
  opacity: 1;
}

.accommodation-card.open .accommodation-thumb img {
  width: 80px;
  height: 80px;
}

@media only screen and (min-width:768px) {
  .accommodation-card.open .accommodation-thumb img {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (min-width:992px) {
  .accommodation-card.open .accommodation-thumb img {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width:1200px) {
  .accommodation-card.open .accommodation-thumb img {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (min-width:1400px) {
  .accommodation-card.open .accommodation-thumb img {
    width: 400px;
    height: 400px;
  }
}

.about-section.theme-two {
  background-image: url("../images/shapes/shape7.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
}

.featured-destination {
  position: relative;
  z-index: 1;
}

.featured-destination::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/shapes/shape2.png");
  background-size: 800px;
  background-position: center;
  background-repeat: repeat;
}

.featured-destination-card {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 18px;
}

.featured-destination-card img {
  border-radius: 18px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 385px;
  object-fit: cover;
}

.featured-destination-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 25, 32, 0)), to(#161920));
  background: linear-gradient(180deg, rgba(22, 25, 32, 0) 0%, #161920 100%);
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.featured-destination-card .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px;
}

.featured-destination-card .overlay-content .badge {
  padding: 8px 14px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: 500;
  border-radius: 20rem;
}

.featured-destination-card:hover img,
.featured-destination-card:focus img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (min-width:992px) {
  .featured-destination-cards .col-12:nth-child(2) .featured-destination-card {
    margin-top: 60px;
  }

  .featured-destination-cards .col-12:nth-child(3) .featured-destination-card {
    margin-top: 120px;
  }

  .featured-destination-cards .col-12:nth-child(4) .featured-destination-card {
    margin-top: -120px;
  }

  .featured-destination-cards .col-12:nth-child(5) .featured-destination-card {
    margin-top: -60px;
  }
}

.service_bottom_img {
  position: absolute;
  bottom: 20px;
  animation: moveLeftRight 3s ease-in-out infinite;
  left: 20px;

  img {
    width: 370px;
    opacity: 0.8;
  }
}

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

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

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

.premier-destination-card {
  padding: 30px;
  border-radius: 18px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 400px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
  box-shadow: var(--box-shadow);
}

.premier-destination-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 54, 55, 0)), to(#1C3637));
  background: linear-gradient(180deg, rgba(28, 54, 55, 0) 0%, #1C3637 100%);
  z-index: -10;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.premier-destination-card .premier-destination-content {
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: calc(100% - 30px);
  height: auto;
  max-height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premier-destination-card .premier-destination-content .destination-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  width: calc(100% - 64px);
}

.premier-destination-card .btn {
  /* position: absolute; */
  /* bottom: 30px;
  right: 30px; */
  z-index: 100;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}

.premier-destination-card .btn i {
  font-size: 30px;
}

.premier-destination-card .btn:hover,
.premier-destination-card .btn:focus {
  border-color: var(--theme-color);
  color: #FFFFFF;
  background-color: var(--theme-color);
}

/* .premier-destination-card.slide-expand {
  width: 450px !important;
}
@media only screen and (min-width:1200px) {
  .premier-destination-card.slide-expand {
    width: 500px !important;
  }
}
@media only screen and (min-width:1400px) {
  .premier-destination-card.slide-expand {
    width: 620px !important;
  }
} */
.premier-destination-card.slide-expand::after,
.premier-destination-card.slide-expand .premier-destination-content,
.premier-destination-card.slide-expand .btn {
  visibility: visible;
  opacity: 1;
}

.premier-destination-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.premier-destination-navigation .premier-destination-button-prev,
.premier-destination-navigation .premier-destination-button-next {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
}

@media only screen and (min-width:1200px) {

  .premier-destination-navigation .premier-destination-button-prev,
  .premier-destination-navigation .premier-destination-button-next {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.premier-destination-navigation .premier-destination-button-prev:hover,
.premier-destination-navigation .premier-destination-button-prev:focus,
.premier-destination-navigation .premier-destination-button-next:hover,
.premier-destination-navigation .premier-destination-button-next:focus {
  border-color: var(--theme-color);
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.destination-details-wrapper {
  position: relative;
}

.destination-details-wrapper .destination-details-button-prev,
.destination-details-wrapper .destination-details-button-next {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
  left: 30px;
  background-color: var(--theme-color);
}

@media only screen and (min-width:1200px) {

  .destination-details-wrapper .destination-details-button-prev,
  .destination-details-wrapper .destination-details-button-next {
    width: 64px;
    height: 64px;
    font-size: 24px;
    left: 60px;
  }
}

.destination-details-wrapper .destination-details-button-prev:hover,
.destination-details-wrapper .destination-details-button-prev:focus,
.destination-details-wrapper .destination-details-button-next:hover,
.destination-details-wrapper .destination-details-button-next:focus {
  color: #FFFFFF;
  background-color: #161922;
}

.destination-details-wrapper .destination-details-button-next {
  right: 30px;
  left: auto;
}

@media only screen and (min-width:1200px) {
  .destination-details-wrapper .destination-details-button-next {
    right: 60px;
  }
}

.destination-details-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.destination-details-content img {
  border-radius: 18px;
  width: 100%;
}

.destination-details-content h1,
.destination-details-content .h1,
.destination-details-content h2,
.destination-details-content .h2,
.destination-details-content h3,
.destination-details-content .h3,
.destination-details-content h4,
.destination-details-content .h4,
.destination-details-content h5,
.destination-details-content .h5,
.destination-details-content h6,
.destination-details-content .h6 {
  margin-bottom: 0 !important;
}

.destination-details-content p {
  font-size: 16px;
  margin-bottom: 0 !important;
}

@media only screen and (min-width:992px) {
  .destination-details-content p {
    font-size: 18px;
  }
}

.destination-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.destination-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(118, 118, 118, 0.3);
}

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

.destination-info-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.destination-info-list li span {
  font-size: 18px;
  color: #161920;
  font-weight: 500;
}

.destination-info-list li span:last-child {
  color: #767676;
  font-weight: 400;
  font-size: 16px;
}

.map-widget iframe {
  width: 100%;
  height: 390px;
  border: 0;
  border-radius: 18px;
}

.tour-list-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  padding: 30px;
  border-radius: 18px;
  background: #F7F7F7;
}

.sidebar-widget .noUi-target {
  background: #FFFFFF;
  border-radius: 30px;
  border: 1px solid var(--theme-color);
}

.sidebar-widget .noUi-horizontal {
  height: 10px;
}

.sidebar-widget .noUi-connect {
  background: var(--theme-color);
}

.sidebar-widget .noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -17px;
  top: -6px;
  border-radius: 50%;
  background-color: var(--theme-color);
  border: 2px solid #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sidebar-widget .noUi-horizontal .noUi-handle::after,
.sidebar-widget .noUi-horizontal .noUi-handle::before {
  display: none;
}

.sidebar-widget .noUi-tooltip {
  border: 0;
  border-radius: 5rem;
  color: #FFFFFF;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--theme-color);
}

.sidebar-checkbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.sidebar-checkbox-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #FFFFFF;
}

.sidebar-checkbox-list .form-check {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sidebar-checkbox-list .form-check .form-check-input {
  margin-top: 0;
  border-radius: 2px;
  border: 1px solid #767676;
}

.sidebar-checkbox-list .form-check .form-check-input:checked[type=checkbox] {
  background-color: transparent;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.sidebar-checkbox-list .form-check .form-check-label {
  color: #767676;
}

.sidebar-checkbox-list .form-check span {
  color: #767676;
}

.tour-details-header h2 {
  font-size: 24px;
}

@media only screen and (min-width:576px) {
  .tour-details-header h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width:768px) {
  .tour-details-header h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width:1200px) {
  .tour-details-header h2 {
    font-size: 36px;
  }
}

.tour-details-header .btn-share {
  border-radius: 30px;
  border: 1px solid var(--theme-color) !important;
  background: #FFFFFF;
  color: var(--theme-color);
  height: 50px;
  padding: 8px 20px;
}

.tour-details-header .btn-share:hover,
.tour-details-header .btn-share:focus {
  color: #FFFFFF;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.tour-single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.tour-single-meta .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (min-width:1200px) {
  .tour-single-meta .icon {
    width: 80px;
    height: 80px;
  }
}

.tour-details-meta {
  border-top: 1px solid rgba(118, 118, 118, 0.3);
  border-bottom: 1px solid rgba(118, 118, 118, 0.3);
}

.tour-details-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.tour-details-content img {
  border-radius: 18px;
  width: 100%;
}

.tour-details-content h1,
.tour-details-content .h1,
.tour-details-content h2,
.tour-details-content .h2,
.tour-details-content h3,
.tour-details-content .h3,
.tour-details-content h4,
.tour-details-content .h4,
.tour-details-content h5,
.tour-details-content .h5,
.tour-details-content h6,
.tour-details-content .h6,
.tour-details-content p {
  margin-bottom: 0 !important;
}

.tour-details-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.tour-details-content ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #161920;
  font-weight: 500;
}

@media only screen and (min-width:576px) {
  .tour-details-content ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    width: calc(50% - 6px);
  }
}

.tour-details-content ul li i {
  font-size: 120%;
  color: var(--theme-color);
}

.tour-details-content ul.style-two li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 6px);
  flex: 0 0 calc(50% - 6px);
  width: calc(50% - 6px);
}

@media only screen and (min-width:768px) {
  .tour-details-content ul.style-two li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 12px);
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
  }
}

.tour-details-content ul.style-two li i {
  font-size: 120%;
  color: var(--theme-color);
}

.customer-review-card {
  background-color: #0E0E0E;
  padding: 30px;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media only screen and (min-width:576px) {
  .customer-review-card {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width:1200px) {
  .customer-review-card {
    padding: 40px;
    gap: 40px;
  }
}

.customer-review-card .average-rating {
  width: 200px;
  height: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 12px;
  background: #26211F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media only screen and (min-width:992px) {
  .customer-review-card .average-rating {
    width: 240px;
    height: 240px;
  }
}

.customer-review-card .average-rating h2 {
  font-size: 80px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 0;
}

.customer-review-card .average-rating .rating {
  font-size: 20px;
  color: var(--theme-color);
}

.customer-review-card .rating-bars {
  width: 100%;
}

.customer-review-card .rating-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.customer-review-card .rating-bar p {
  font-size: 18px;
  color: #FFFFFF;
}

.customer-review-card .rating-bar .progress {
  width: 150px;
  border-radius: 1rem;
  background: rgba(60, 179, 113, 0.5);
  height: 8px;
  overflow: hidden;
}

@media only screen and (min-width:576px) {
  .customer-review-card .rating-bar .progress {
    width: 80px;
  }
}

@media only screen and (min-width:768px) {
  .customer-review-card .rating-bar .progress {
    width: 200px;
  }
}

@media only screen and (min-width:992px) {
  .customer-review-card .rating-bar .progress {
    width: 100px;
  }
}

@media only screen and (min-width:1200px) {
  .customer-review-card .rating-bar .progress {
    width: 200px;
  }
}

@media only screen and (min-width:1400px) {
  .customer-review-card .rating-bar .progress {
    width: 300px;
  }
}

.customer-review-card .rating-bar .progress .progress-bar {
  border-radius: 1rem;
  background: var(--theme-color);
}

.customer-review-card .rating-bar .rating {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.customer-review-card .rating-bar .rating .ti-star-filled {
  color: var(--theme-color);
}

.customer-review-card .rating-bar .rating .ti-star {
  color: rgba(255, 183, 0, 0.5);
}

.tour-booking-summary ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  color: #161920;
}

.tour-booking-summary ul li:last-child {
  font-weight: 700;
}

.hotel-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7e8ef;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  box-shadow: var(--box-shadow);
  position: relative;
}

.hotel-card .hotel-img {
  position: relative;
  border-radius: 18px 18px 0 0;
}

.hotel-card .hotel-img img {
  border-radius: 18px 18px 0 0;
  width: 100%;
}

.hotel-card .hotel-img .hotel-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--theme-color);
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.hotel-card .hotel-img .hotel-badge:hover {
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.hotel-card .hotel-body {
  padding: 8px 20px 20px;
}

.hotel-card .hotel-body h4,
.hotel-card .hotel-body .h4 {

  color: #161920;
  font-weight: 700;
  line-height: 1.3;
  /* height: 50px; */
  display: flex;
  align-items: center;
}

.hotel-card img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.hotel-card .hotel-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.hotel-card .hotel-ratings .ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: var(--theme-color);
}

.hotel-card .hotel-ratings span {
  font-size: 18px;
  color: #767676;
}

.hotel-card .hotel-location {
  font-size: 16px;
  color: #161920;
  margin-bottom: 0;
  position: absolute;
  top: 19px;
  background: #f9f9f9;
  border-radius: 30px;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hotel-card .hotel-location i {
  font-size: 120%;
}

.hotel-card .hotel-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.hotel-card .hotel-meta li i {
  font-size: 120%;
  color: #161920;
}

.hotel-card .hotel-meta .line {
  width: 1px;
  height: 24px;
  background-color: #767676;
}

.hotel-card .border-top {
  border-top: 1px solid rgba(118, 118, 118, 0.3);
}

.hotel-card .hotel-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hotel-card .hotel-price span {
  font-size: 16px;
  color: #767676;
  font-weight: 400;
}

.hotel-card:hover,
.hotel-card:focus {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.hotel-details-header h2 {
  font-size: 24px;
}

@media only screen and (min-width:576px) {
  .hotel-details-header h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width:768px) {
  .hotel-details-header h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width:1200px) {
  .hotel-details-header h2 {
    font-size: 36px;
  }
}

.hotel-details-header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: #767676;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.hotel-details-header a .icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.hotel-details-header a .icon:hover {
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.hotel-details-header a:hover,
.hotel-details-header a:focus {
  color: var(--theme-color);
}

.hotel-details-header a:hover .icon,
.hotel-details-header a:focus .icon {
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.view-in-map iframe {
  width: 100%;
  height: 458px;
  border-radius: 20px;
  border: 0 !important;
}

.hotel-meta-info-card {
  padding: 30px;
  border-radius: 18px;
  background-color: #F7F7F7;
}

.hotel-meta-info-card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.hotel-meta-info-card-item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  padding: 13px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.hotel-meta-info-card-item p {
  margin-bottom: 0;
}

.hotel-owner {
  text-align: center;
}

.hotel-owner img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.hotel-follow-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.hotel-follow-nav a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  background-color: #161920;
  color: #FFFFFF;
}

.hotel-follow-nav a:hover {
  color: #FFFFFF;
  background-color: var(--theme-color);
}

/* Trip CSS */
.trip-section {
  position: relative;
  z-index: 1;
}

.trip-section .trolley-img {
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -2;
}

.trip-section .plane-img {
  position: absolute;
  top: 50%;
  right: 2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -2;
}

.trip-card {
  border-radius: 18px;
  background: #F7F7F7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.trip-card img {
  border-radius: 18px 18px 0 0;
  width: 100%;
}

.trip-card .trip-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.trip-card .trip-body {
  padding: 28px 24px;
}

.trip-card .trip-meta {
  margin-bottom: 30px;
}

@media only screen and (min-width:1400px) {
  .trip-card .trip-meta {
    margin-bottom: 40px;
  }
}

.trip-card .trip-meta .badge {
  padding: 8px 14px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: 500;
  border-radius: 20rem;
}

.trip-card .trip-meta ul li {
  color: #161920;
}

.trip-card .trip-meta .line {
  width: 1px;
  height: 85px;
  background: rgba(118, 118, 118, 0.5);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.trip-card .trip-meta .trip-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 28px;
  color: #161920;
}

@media only screen and (min-width:1400px) {
  .trip-card .trip-meta .trip-price {
    font-size: 36px;
  }
}

.trip-card .trip-meta .trip-price span {
  font-size: 16px;
  color: #767676;
  text-decoration: line-through;
}

.trip-card:hover,
.trip-card:focus {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.trip-card:hover .trip-title,
.trip-card:focus .trip-title {
  color: var(--theme-color);
}

.deals-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-image: url("../images/shapes/shape3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.countdown-timer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 60px;
}

@media only screen and (min-width:768px) {
  .countdown-timer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 340px;
    flex: 0 0 340px;
    width: 340px;
  }
}

@media only screen and (min-width:1200px) {
  .countdown-timer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 380px;
    flex: 0 0 380px;
    width: 380px;
  }
}

@media only screen and (min-width:1400px) {
  .countdown-timer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 580px;
    flex: 0 0 580px;
    width: 580px;
  }
}

.countdown-timer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.countdown-timer ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 8px;
  border: 0.5px solid #FFFFFF;
  background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (min-width:992px) {
  .countdown-timer ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 94px;
    flex: 0 0 94px;
    width: 94px;
  }
}

.countdown-timer ul li span {
  display: block;
  text-align: center;
  line-height: 1;
}

.countdown-timer ul li span:first-child {
  padding: 20px 10px 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
}

@media only screen and (min-width:1400px) {
  .countdown-timer ul li span:first-child {
    font-size: 36px;
  }
}

.countdown-timer ul li span:last-child {
  padding: 8px 14px;
  font-size: 14px;
  color: #FFFFFF;
}

@media only screen and (min-width:1400px) {
  .countdown-timer ul li span:last-child {
    font-size: 16px;
  }
}

.deals-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  padding-left: 1.5rem;
}

@media only screen and (min-width:768px) {
  .deals-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 340px);
    flex: 0 0 calc(100% - 340px);
    width: calc(100% - 340px);
    padding-left: 2rem;
  }
}

@media only screen and (min-width:1200px) {
  .deals-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 380px);
    flex: 0 0 calc(100% - 380px);
    width: calc(100% - 380px);
    padding-left: 3rem;
  }
}

@media only screen and (min-width:1400px) {
  .deals-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 580px);
    flex: 0 0 calc(100% - 580px);
    width: calc(100% - 580px);
    padding-left: 60px;
  }
}

.deals-swiper {
  width: 113%;
}

.deals-navigation-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-right: 10%;
}

@media only screen and (min-width:992px) {
  .deals-navigation-container {
    margin-right: 23%;
  }
}

.deals-navigation-container .deals-button-prev,
.deals-navigation-container .deals-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
}

@media only screen and (min-width:1200px) {

  .deals-navigation-container .deals-button-prev,
  .deals-navigation-container .deals-button-next {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.deals-navigation-container .deals-button-prev:hover,
.deals-navigation-container .deals-button-prev:focus,
.deals-navigation-container .deals-button-prev.active,
.deals-navigation-container .deals-button-next:hover,
.deals-navigation-container .deals-button-next:focus,
.deals-navigation-container .deals-button-next.active {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.deals-slide {
  padding: 20px;
  border-radius: 18px;
  background-color: #FFFFFF;
}

.deals-slide img {
  width: 100%;
  border-radius: 18px;
}

.deals-slide .badge {
  padding: 8px 14px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20rem;
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-title span {
  font-size: 22px;
  font-weight: 700;
  color: #161920;
  background-color: #FFFFFF;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width:576px) {
  .section-title span {
    font-size: 26px;
  }
}

@media only screen and (min-width:768px) {
  .section-title span {
    font-size: 30px;
  }
}

@media only screen and (min-width:992px) {
  .section-title span {
    font-size: 36px;
  }
}

.section-title::after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  content: "";
  position: absolute;
  z-index: -5;
  background: rgba(118, 118, 118, 0.3);
}

.follow-instagram-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
}

.follow-instagram-card::after {
  border-radius: 18px;
  background: rgba(22, 25, 32, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.follow-instagram-card img {
  border-radius: 18px;
  width: 100%;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.follow-instagram-card .instagram-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -150%);
  transform: translate(-50%, -150%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 30px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  opacity: 0;
  visibility: hidden;
}

.follow-instagram-card .instagram-btn:hover,
.follow-instagram-card .instagram-btn:focus {
  background-color: #161920;
  color: #FFFFFF;
}

.follow-instagram-card.theme-two .instagram-btn {
  background-color: var(--theme-color);
}

.follow-instagram-card.theme-two .instagram-btn:hover,
.follow-instagram-card.theme-two .instagram-btn:focus {
  background-color: #161920;
  color: #FFFFFF;
}

.follow-instagram-card:hover img,
.follow-instagram-card:focus img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}

.follow-instagram-card:hover::after,
.follow-instagram-card:hover .instagram-btn,
.follow-instagram-card:focus::after,
.follow-instagram-card:focus .instagram-btn {
  opacity: 1;
  visibility: visible;
}

.follow-instagram-card:hover .instagram-btn,
.follow-instagram-card:focus .instagram-btn {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (min-width:992px) {
  .follow-instagram-section .row .col-12:nth-child(odd) .follow-instagram-card {
    margin-top: 60px;
  }
}

.follow-instagram-section {
  width: 120%;
  position: relative;
  left: -10%;
}

/* Flight CSS */
.flight-card {
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.flight-card .flight-img {
  position: relative;
  border-radius: 18px;
  margin-bottom: 20px;
}

.flight-card .flight-img img {
  width: 100%;
  border-radius: 18px;
}

.flight-card .flight-img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 20rem;
  z-index: 10;
  font-size: 14px;
  font-weight: 400;
}

.flight-card .flight-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flight-card .flight-price span {
  font-size: 16px;
  font-weight: 400;
  color: #767676;
}

.flight-card a {
  display: block;
  border-radius: 5px;
  border: 1px solid rgba(28, 54, 55, 0.25);
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 18px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.flight-card a:hover,
.flight-card a:focus {
  color: #FFFFFF;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.flight-card:hover,
.flight-card:focus {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.travel-deals-card {
  border-radius: 18px;
  overflow: hidden;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  position: relative;
  z-index: 2;
}

.travel-deals-card img {
  width: 100%;
  border-radius: 18px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.travel-deals-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 54, 55, 0)), to(#1C3637));
  background: linear-gradient(180deg, rgba(28, 54, 55, 0) 0%, #1C3637 100%);
  z-index: 1;
}

.travel-deals-card .travel-deals-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  z-index: 10;
}

.travel-deals-card:hover img,
.travel-deals-card:focus img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* CSS */
.single-gallery-img {
  border-radius: 18px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  position: relative;
  z-index: 1;
}

.single-gallery-img .gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  background: rgba(22, 25, 32, 0.5);
  opacity: 0;
  visibility: hidden;
}

.single-gallery-img .gallery-hover a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--theme-color);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.single-gallery-img .gallery-hover a:hover,
.single-gallery-img .gallery-hover a:focus {
  background-color: #141414;
}

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

.single-gallery-img:hover,
.single-gallery-img:focus {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.single-gallery-img:hover .gallery-hover,
.single-gallery-img:focus .gallery-hover {
  opacity: 1;
  visibility: visible;
}

.single-gallery-img.theme-success .gallery-hover a {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.single-gallery-img.theme-success .gallery-hover a:hover,
.single-gallery-img.theme-success .gallery-hover a:focus {
  background-color: #161922;
}

.video-gallery-section {
  position: relative;
  z-index: 1;
}

.video-gallery-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

@media only screen and (min-width:992px) {
  .video-gallery-card {
    height: 550px;
  }
}

@media only screen and (min-width:1200px) {
  .video-gallery-card {
    height: 650px;
  }
}

@media only screen and (min-width:1400px) {
  .video-gallery-card {
    height: 770px;
  }
}

.video-gallery-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.6);
  z-index: -1;
}

.video-gallery-card .play-video-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--theme-color);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width:1400px) {
  .video-gallery-card .play-video-btn {
    font-size: 32px;
    width: 120px;
    height: 120px;
  }
}

.video-gallery-pagination-container {
  position: absolute;
  width: 80px;
  height: 100%;
  left: 15%;
  top: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width:576px) {
  .video-gallery-pagination-container {
    width: 100px;
  }
}

@media only screen and (min-width:768px) {
  .video-gallery-pagination-container {
    width: 150px;
  }
}

@media only screen and (min-width:1200px) {
  .video-gallery-pagination-container {
    width: 200px;
  }
}

@media only screen and (min-width:1400px) {
  .video-gallery-pagination-container {
    width: 300px;
  }
}

.video-gallery-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.video-gallery-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 60px;
  border-radius: 12px;
  opacity: 1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (min-width:576px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 80px;
  }
}

@media only screen and (min-width:768px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 100px;
  }
}

@media only screen and (min-width:1200px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 120px;
  }
}

@media only screen and (min-width:1400px) {
  .video-gallery-pagination .swiper-pagination-bullet {
    height: 160px;
    border-radius: 18px;
  }
}

.video-gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid #FFFFFF;
}

/* Team CSS */

.team-card {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  border-radius: 20px;
  border: 1px solid;
}

.team-card img {
  width: 100%;
  border-radius: 18px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  height: 230px;
  object-fit: cover;
}

.team-card span {
  display: block;
  margin-bottom: 10px;
}

.team-card h4 {
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.team-card .team-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
}

.team-card .text-center {
  position: relative;
}

.team-card .text-center .btn {
  position: absolute;
  top: 0;
  transform: translateY(-90%);
  right: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  z-index: 1;
}

.team-card .team-thumb .team-social {
  position: absolute;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.swiper-dot3 {
  text-align: center;
}

.swiper-dot3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #222;
  border: 1px solid #767676;
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 0;
}

.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.team-card .team-thumb .team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #141414;
  border: 1px solid var(--theme-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-card .team-thumb .team-social a:hover,
.team-card .team-thumb .team-social a:focus {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF;
}

.team-card:hover,
.team-card:focus {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.team-card:hover .team-social,
.team-card:focus .team-social {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.team-card:hover h4,
.team-card:focus h4 {
  color: var(--theme-color);
}

.guider-details-section img {
  width: 100%;
  border-radius: 18px;
}

.guider-details-section p {
  font-size: 18px;
}

.guider-details-section ul li {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.guider-details-section .social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.guider-details-section .social-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #F7F7F7;
  border-radius: 6px;
  font-size: 20px;
  color: #161920;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.guider-details-section .social-nav a:hover,
.guider-details-section .social-nav a:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.experience-info p {
  font-size: 16px;
  opacity: 0.9;
}

@media only screen and (min-width:992px) {
  .experience-info p {
    font-size: 18px;
  }
}

.experience-info .progress-item .progress-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #161920;
}

@media only screen and (min-width:992px) {
  .experience-info .progress-item .progress-info {
    font-size: 18px;
  }
}

.experience-info .progress-item .progress {
  width: 100%;
  height: 10px;
  border-radius: 2px;
  background: rgba(60, 179, 113, 0.5);
}

.experience-info .progress-item .progress-bar {
  border-radius: 2px;
  background: var(--theme-color);
}

/* Testimonial CSS */
.testimonial-card {
  border-radius: 18px;
  position: relative;
  z-index: 1;
  height: 420px;
  width: 195px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.testimonial-card .testimonial-content {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  width: 65%;
  max-width: 65%;
  padding: 30px 40px;
  border-radius: 18px 0 0 18px;
  opacity: 0;
  visibility: hidden;
}

.testimonial-card .testimonial-content .testimonial-text {
  margin-top: 16px;
  font-size: 16px;
  color: #161920;
}

@media only screen and (min-width:1400px) {
  .testimonial-card .testimonial-content .testimonial-text {
    font-size: 18px;
  }
}

.testimonial-card .testimonial-content .border-top {
  margin: 30px 0;
}

.testimonial-card .testimonial-content span {
  color: #767676;
  opacity: 0.9;
}

.testimonial-card .testimonial-thumbnail {
  -webkit-transition: all 350ms;
  transition: all 350ms;
  position: absolute;
  right: 0;
  top: -1px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  width: 35%;
  max-width: 35%;
  height: calc(100% + 2px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  border-radius: 0 18px 18px 0;
  opacity: 0;
  visibility: hidden;
}

.testimonial-card.slide-expand {
  width: 620px !important;
  background-image: none !important;
  background-color: #FFFFFF;
  border: 1px solid rgba(118, 118, 118, 0.2);
  pointer-events: none;
}

@media only screen and (min-width:1400px) {
  .testimonial-card.slide-expand {
    width: 845px !important;
  }
}

.testimonial-card.slide-expand .testimonial-content,
.testimonial-card.slide-expand .testimonial-thumbnail {
  visibility: visible;
  opacity: 1;
}

.testimonial-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-navigation-container .testimonial-button-prev,
.testimonial-navigation-container .testimonial-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(118, 118, 118, 0.2);
  color: #161920;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
}

@media only screen and (min-width:1200px) {

  .testimonial-navigation-container .testimonial-button-prev,
  .testimonial-navigation-container .testimonial-button-next {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.testimonial-navigation-container .testimonial-button-prev:hover,
.testimonial-navigation-container .testimonial-button-prev:focus,
.testimonial-navigation-container .testimonial-button-next:hover,
.testimonial-navigation-container .testimonial-button-next:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
  border-color: var(--theme-color);
}

.testimonial-card-two {
  margin-top: 40px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(83, 91, 95, 0.3);
  background: #F7F5F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media only screen and (min-width:768px) {
  .testimonial-card-two {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-card-two {
    padding: 40px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-card-two {
    padding: 50px;
  }
}

.testimonial-card-two .quote-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50px;
  z-index: 10;
}

.testimonial-card-two .testimonial-text {
  font-size: 16px;
  color: #141414;
}

@media only screen and (min-width:576px) {
  .testimonial-card-two .testimonial-text {
    font-size: 20px;
  }
}

@media only screen and (min-width:768px) {
  .testimonial-card-two .testimonial-text {
    font-size: 22px;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-card-two .testimonial-text {
    font-size: 24px;
  }
}

.testimonial-card-two .testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (min-width:576px) {
  .testimonial-card-two .testimonial-image {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (min-width:768px) {
  .testimonial-card-two .testimonial-image {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-card-two .testimonial-image {
    width: 160px;
    height: 160px;
  }
}

@media only screen and (min-width:1200px) {
  .testimonial-card-two .testimonial-image {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-card-two .testimonial-image {
    width: 200px;
    height: 200px;
  }
}

.testimonial-card-two .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-button-prev-two,
.testimonial-button-next-two {
  margin-top: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(118, 118, 118, 0.2);
  color: #161920;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  cursor: pointer;
  font-size: 17px;
}

@media only screen and (min-width:1200px) {

  .testimonial-button-prev-two,
  .testimonial-button-next-two {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.testimonial-button-prev-two:hover,
.testimonial-button-prev-two:focus,
.testimonial-button-next-two:hover,
.testimonial-button-next-two:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.testimonial-section .jarallax-container {
  border-radius: 18px;
}

.testimonial-section.theme-two {
  border-radius: 18px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.testimonial-section.theme-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 54, 55, 0.95);
  z-index: -1;
  border-radius: 18px;
}

.testimonial-section.theme-two .testimonial-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 60px;
  padding-right: 20px;
  padding-bottom: 40px;
}

@media only screen and (min-width:576px) {
  .testimonial-section.theme-two .testimonial-navigation-container {
    padding-right: 40px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-section.theme-two .testimonial-navigation-container {
    padding-top: 124px;
    padding-right: 70px;
    padding-bottom: 60px;
  }
}

.testimonial-section.theme-two .testimonial-navigation-container>div {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-transition: all 350ms;
  transition: all 350ms;
  background-color: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #FFFFFF;
}

@media only screen and (min-width:1400px) {
  .testimonial-section.theme-two .testimonial-navigation-container>div {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.testimonial-section.theme-two .testimonial-navigation-container>div:hover,
.testimonial-section.theme-two .testimonial-navigation-container>div:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.testimonial-title {
  padding-top: 60px;
  padding-left: 40px;
  padding-bottom: 40px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width:576px) {
  .testimonial-title {
    font-size: 24px;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-title {
    font-size: 32px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-title {
    font-size: 50px;
    padding-top: 124px;
    padding-left: 70px;
    padding-bottom: 60px;
  }
}

.testimonial-card-three {
  margin-bottom: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-three .testimonial-thumbnail {
  padding-top: 60px;
  padding-right: 40px;
  border-radius: 18px;
  text-align: right;
}

@media only screen and (min-width:1400px) {
  .testimonial-card-three .testimonial-thumbnail {
    padding-top: 70px;
    padding-right: 60px;
  }
}

.testimonial-card-three .testimonial-thumbnail img {
  max-width: 50px;
  border-radius: 18px;
}

@media only screen and (min-width:576px) {
  .testimonial-card-three .testimonial-thumbnail img {
    max-width: 70px;
  }
}

@media only screen and (min-width:768px) {
  .testimonial-card-three .testimonial-thumbnail img {
    max-width: 100px;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-card-three .testimonial-thumbnail img {
    max-width: 150px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-card-three .testimonial-thumbnail img {
    max-width: 195px;
  }
}

.testimonial-card-three h3 {
  font-size: 16px;
}

@media only screen and (min-width:576px) {
  .testimonial-card-three h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width:768px) {
  .testimonial-card-three h3 {
    font-size: 24px;
  }
}

@media only screen and (min-width:992px) {
  .testimonial-card-three h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width:1400px) {
  .testimonial-card-three h3 {
    font-size: 32px;
  }
}

.testimonial-card-three .testimonial-content {
  padding-top: 60px;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width:1400px) {
  .testimonial-card-three .testimonial-content {
    padding-left: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.testimonial-card-three .testimonial-rating {
  font-size: 20px;
}

@media only screen and (min-width:1400px) {
  .testimonial-card-three .testimonial-rating {
    font-size: 24px;
  }
}

.trusted-partners {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

@media only screen and (min-width:1400px) {
  .trusted-partners {
    padding-top: 100px;
    padding-bottom: 124px;
  }
}

.trusted-partners h4 {
  color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.trusted-partners .trusted-partners-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (min-width:1200px) {
  .trusted-partners .trusted-partners-logo {
    gap: 40px;
  }
}

@media only screen and (min-width:1400px) {
  .trusted-partners .trusted-partners-logo {
    gap: 80px;
  }
}

.trusted-partners .trusted-partners-logo a {
  display: block;
  -webkit-transition: all 350ms;
  transition: all 350ms;
}

.trusted-partners .trusted-partners-logo a img {
  max-height: 30px;
  max-width: 100px;
  -webkit-transition: -webkit-filter 0.35s ease;
  transition: -webkit-filter 0.35s ease;
  transition: filter 0.35s ease;
  transition: filter 0.35s ease, -webkit-filter 0.35s ease;
}

@media only screen and (min-width:1200px) {
  .trusted-partners .trusted-partners-logo a img {
    max-width: 120px;
  }
}

@media only screen and (min-width:1400px) {
  .trusted-partners .trusted-partners-logo a img {
    max-width: 140px;
  }
}

.trusted-partners .trusted-partners-logo a:hover,
.trusted-partners .trusted-partners-logo a:focus {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.trusted-partners .trusted-partners-logo a:hover img,
.trusted-partners .trusted-partners-logo a:focus img {
  -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(100%) saturate(621%) hue-rotate(163deg) brightness(94%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(52%) sepia(100%) saturate(621%) hue-rotate(163deg) brightness(94%) contrast(93%);
}

/* Video CSS */
.popup-video {
  position: relative;
  z-index: 1;
}

.popup-video .video-btn {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #601FEB;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 12px;
  cursor: pointer;
}

.popup-video .video-btn .video-sonar {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: #601FEB;
  -webkit-animation: video-sonar 2s linear infinite;
  animation: video-sonar 2s linear infinite;
}

.popup-video .video-btn .video-sonar::before {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(96, 31, 235, 0.7);
  content: "";
  top: -30px;
  left: -30px;
  z-index: -100;
}

.popup-video .video-btn .video-sonar::after {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #601FEB;
  content: "";
  top: -15px;
  left: -15px;
  z-index: -50;
}

.video-section {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 700px;
}

.video-section::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  content: "";
  top: 0;
  left: 0;
  z-index: -10;
  background-color: rgba(34, 34, 34, 0.4);
}

.video-section.style-two {
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
  border-radius: 18px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

@media only screen and (min-width:992px) {
  .video-section.style-two {
    height: 600px;
  }
}

.video-section.style-two .popup-video .video-btn {
  background-color: #FFFFFF;
  color: #161920;
}

.video-section.style-two .popup-video .video-btn .video-sonar {
  background-color: #FFFFFF;
  -webkit-animation: video-sonar 2s linear infinite;
  animation: video-sonar 2s linear infinite;
}

.video-section.style-two .popup-video .video-btn .video-sonar::before {
  background-color: rgba(255, 255, 255, 0.7);
}

.video-section.style-two .popup-video .video-btn .video-sonar::after {
  background-color: #FFFFFF;
}

.video-section.style-two .video-text {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -3.2px;
  font-style: normal;
  color: transparent;
  line-height: 1;
}

@media only screen and (min-width:992px) {
  .video-section.style-two .video-text {
    font-size: 120px;
  }
}

@media only screen and (min-width:1200px) {
  .video-section.style-two .video-text {
    font-size: 160px;
  }
}

.video-section.style-two:hover,
.video-section.style-two:focus {
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
}

@-webkit-keyframes video-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes video-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

.video-popup-iframe {
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-popup-iframe .video-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  padding: 0;
  z-index: 1;
}

.video-popup-iframe .video-content .close-btn {
  position: absolute;
  top: -3rem;
  right: 0;
  z-index: 1000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFFFFF;
  cursor: pointer;
  color: #161920;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.video-popup-iframe .video-content .close-btn:hover,
.video-popup-iframe .video-content .close-btn:focus {
  background-color: #161920;
  color: #FFFFFF;
}

@media only screen and (min-width:992px) {
  .video-popup-iframe .video-content .close-btn {
    top: -1.75rem;
    right: -1.75rem;
  }
}


.widget-blog-post .blog-thumbnail {
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 10px;
}

@media only screen and (min-width:1200px) {
  .widget-blog-post .blog-thumbnail {
    width: 90px;
  }
}

@media only screen and (min-width:1400px) {
  .widget-blog-post .blog-thumbnail {
    width: 110px;
  }
}

.widget-blog-post .blog-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.widget-blog-post .blog-content a {
  margin-bottom: 0.25rem;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media only screen and (min-width:1200px) {
  .widget-blog-post .blog-content a {
    font-size: 20px;
  }
}

.widget-blog-post .blog-content a:hover,
.widget-blog-post .blog-content a:focus {
  color: var(--theme-color);
}

.widget-blog-post .blog-content p {
  font-size: 14px;
}

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag-list a {
  padding: 6px 20px;
  height: 40px;
  color: #161920;
  font-size: 16px;
  font-weight: 400;
  display: block;
  border-radius: 6px;
  background-color: #FFFFFF;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.tag-list a:hover,
.tag-list a:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.follow-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.follow-nav a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #141414;
  border: 1px solid var(--theme-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.follow-nav a:hover,
.follow-nav a:focus {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF;
}

.touria-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.touria-pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  background-color: #F7F7F7;
  color: #161920;
}

.touria-pagination li a i {
  font-size: 18px;
}

@media only screen and (min-width:576px) {
  .touria-pagination li a {
    width: 42px;
    height: 42px;
  }
}

@media only screen and (min-width:768px) {
  .touria-pagination li a {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}

@media only screen and (min-width:1200px) {
  .touria-pagination li a {
    width: 60px;
    height: 60px;
  }

  .touria-pagination li a i {
    font-size: 18px;
  }
}

.touria-pagination li a:hover,
.touria-pagination li a:focus {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.touria-pagination li.active a {
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.blog-quote {
  border-radius: 18px;
  background: #F7F7F7;
  padding: 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.blog-quote p {
  color: #767676;
  font-size: 18px;
}

.blog-quote h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #601FEB;
  gap: 4px;
}

.blog-quote h5 span {
  width: 55px;
  height: 1px;
  background-color: #601FEB;
}

.blog-comments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.blog-comments-list ul {
  list-style: none;
  padding-left: 24px;
}

@media only screen and (min-width:576px) {
  .blog-comments-list ul {
    padding-left: 48px;
  }
}

@media only screen and (min-width:768px) {
  .blog-comments-list ul {
    padding-left: 64px;
  }
}

@media only screen and (min-width:992px) {
  .blog-comments-list ul {
    padding-left: 80px;
  }
}

@media only screen and (min-width:1200px) {
  .blog-comments-list ul {
    padding-left: 124px;
  }
}

.blog-comments-list .single-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.blog-comments-list .single-comment .comment-img img {
  width: 70px;
  max-width: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  border-radius: 18px;
}

@media only screen and (min-width:1200px) {
  .blog-comments-list .single-comment .comment-img img {
    width: 110px;
    max-width: 110px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 110px;
    flex: 0 0 110px;
  }
}

.comment-form .form-control {
  background-color: #F7F7F7;
}

.tag-share-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(31, 30, 33, 0.2);
  border-bottom: 1px solid rgba(31, 30, 33, 0.2);
}

.tag-share-wrapper .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.tag-share-wrapper .tag-list li {
  font-size: 16px;
  font-weight: 700;
}

.tag-share-wrapper .tag-list li a {
  border-radius: 4px;
  border: 1px solid rgba(31, 30, 33, 0.2);
  padding: 0px 12px !important;
  color: #767676;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tag-share-wrapper .tag-list li a:hover,
.tag-share-wrapper .tag-list li a:focus {
  background-color: #601FEB;
  color: #FFFFFF;
}

.tag-share-wrapper .share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.tag-share-wrapper .share-list li {
  font-size: 16px;
  font-weight: 700;
}

.tag-share-wrapper .share-list li a {
  padding: 0px 6px !important;
  color: #767676;
  font-size: 18px;
}

.tag-share-wrapper .share-list li a:hover,
.tag-share-wrapper .share-list li a:focus {
  color: #601FEB;
}

.blog-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

@media only screen and (min-width:992px) {
  .blog-list-wrapper {
    gap: 80px;
  }
}

.single-blog-content img {
  border-radius: 18px;
  width: 100%;
}

.single-blog-content h1,
.single-blog-content .h1,
.single-blog-content h2,
.single-blog-content .h2,
.single-blog-content h3,
.single-blog-content .h3,
.single-blog-content h4,
.single-blog-content .h4,
.single-blog-content h5,
.single-blog-content .h5,
.single-blog-content h6,
.single-blog-content .h6 {
  margin-bottom: 0;
}

.single-blog-content p {
  font-size: 16px;
  margin-bottom: 0;
}

@media only screen and (min-width:992px) {
  .single-blog-content p {
    font-size: 18px;
  }
}

.single-blog-content .post-title {
  position: relative;
  z-index: 1;
  color: #161920;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  background-image: none;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  font-size: 30px;
}

@media only screen and (min-width:1200px) {
  .single-blog-content .post-title {
    font-size: 36px;
  }
}

.single-blog-content .post-title:hover,
.single-blog-content .post-title:focus {
  background-size: 100% 2px;
}

/* Footer CSS */
.footer-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-card p {
  font-size: 18px;
}

.footer-card .footer-logo {
  margin-bottom: 32px;
}

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

.footer-card .card-title::before {
  width: 60px;
  height: 2px;
  bottom: -15px;
  left: 0;
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 2px;
  background: var(--theme-color);
}

.footer-card .card-title::after {
  width: 10px;
  height: 2px;
  bottom: -15px;
  left: 65px;
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 2px;
  background: var(--theme-color);
}

.footer-card .social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.footer-card .social-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.footer-card .social-nav a:hover,
.footer-card .social-nav a:focus {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF;
}

.footer-card .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.footer-card .footer-nav li a {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

.footer-card .footer-nav li a:hover,
.footer-card .footer-nav li a:focus {
  color: var(--theme-color);
  padding-left: 0.5rem;
}

.footer-card .gallery-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-card .gallery-post li {
  width: calc(33.333333% - 8px);
  border-radius: 8px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.footer-card .gallery-post li a {
  display: block;
}

.footer-card .gallery-post li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  height: 70px;
  object-fit: cover;
}

.footer-card .gallery-post li:hover,
.footer-card .gallery-post li:focus {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.footer-card .subscribe-form {
  position: relative;
  z-index: 1;
}

.footer-card .subscribe-form .form-control {
  border-radius: 5rem;
  background-color: #FFFFFF;
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 1;
  color: #161920;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding-left: 20px;
  padding-right: 80px;
}

.footer-card .subscribe-form .form-control::-webkit-input-placeholder {
  color: #767676;
  opacity: 1;
}

.footer-card .subscribe-form .form-control::-moz-placeholder {
  color: #767676;
  opacity: 1;
}

.footer-card .subscribe-form .form-control:-ms-input-placeholder {
  color: #767676;
  opacity: 1;
}

.footer-card .subscribe-form .form-control::-ms-input-placeholder {
  color: #767676;
  opacity: 1;
}

.footer-card .subscribe-form .form-control::placeholder {
  color: #767676;
  opacity: 1;
}

.footer-card .subscribe-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 0;
}

.footer-card .subscribe-form .btn {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 100;
  padding: 0;
  height: 38px;
  width: 70px;
  border-radius: 5rem;
  background-color: var(--theme-color);
}

.footer-card .subscribe-form .btn:hover,
.footer-card .subscribe-form .btn:focus {
  background-color: #113d48;
  color: #FFFFFF;
}

.footer-card .footer-contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.footer-card .footer-contact-card .icon {
  border-radius: 5px;
  background: var(--theme-color);
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
}

.footer-card .footer-contact-card p {
  font-size: 16px;
}

.copyright-wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
}

.copyright-wrapper .copyright {
  font-size: 16px;
  color: #F9F7F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (min-width:1200px) {
  .copyright-wrapper .copyright {
    font-size: 18px;
  }
}

.copyright-wrapper .copyright a {
  font-size: 16px;
  color: #F9F7F3;
}

@media only screen and (min-width:1200px) {
  .copyright-wrapper .copyright a {
    font-size: 18px;
  }
}

.copyright-wrapper .copyright a:hover,
.copyright-wrapper .copyright a:focus {
  color: var(--theme-color);
}

.footer-bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (min-width:768px) {
  .footer-bottom-nav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media only screen and (min-width:1200px) {
  .footer-bottom-nav {
    gap: 2rem;
  }
}

.footer-bottom-nav a {
  color: #F9F7F3;
  font-size: 16px;
  line-height: 1.4;
  text-transform: capitalize;
}

@media only screen and (min-width:1200px) {
  .footer-bottom-nav a {
    font-size: 18px;
  }
}

.footer-bottom-nav a:hover,
.footer-bottom-nav a:focus {
  color: var(--theme-color);
}

.footer-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-top-content .ft-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  max-width: 30%;
}

.footer-top-content .ft-item .icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.footer-top-content .ft-item:hover .icon,
.footer-top-content .ft-item:focus .icon {
  background-color: var(--theme-color);
}

.footer-top-content .vr-line {
  width: 1px;
  height: 75px;
  background: rgba(255, 255, 255, 0.3);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-wrapper {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-wrapper .plane-img {
  position: absolute;
  top: 50%;
  left: 1%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-wrapper .tree-img {
  position: absolute;
  top: 50%;
  right: 1%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(22, 25, 32, 0.9);
}

.footer-wrapper .border-top {
  border-top-color: rgba(249, 247, 243, 0.2) !important;
}

.footer-wrapper.theme-two .footer-card .card-title::before {
  background: var(--theme-color);
}

.footer-wrapper.theme-two .footer-card .card-title::after {
  background: var(--theme-color);
}

.footer-wrapper.theme-two .footer-card .social-nav a {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrapper.theme-two .footer-card .social-nav a:hover,
.footer-wrapper.theme-two .footer-card .social-nav a:focus {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF;
}

.footer-wrapper.theme-two .footer-card .footer-nav li a {
  color: #FFFFFF;
}

.footer-wrapper.theme-two .footer-card .footer-nav li a:hover,
.footer-wrapper.theme-two .footer-card .footer-nav li a:focus {
  color: var(--theme-color);
}

.footer-wrapper.theme-two .copyright-wrapper .copyright {
  color: #F9F7F3;
}

.footer-wrapper.theme-two .copyright-wrapper .copyright a {
  color: #F9F7F3;
}

.footer-wrapper.theme-two .copyright-wrapper .copyright a:hover,
.footer-wrapper.theme-two .copyright-wrapper .copyright a:focus {
  color: var(--theme-color);
}

.footer-wrapper.theme-two .footer-bottom-nav a {
  color: #F9F7F3;
}

.footer-wrapper.theme-two .footer-bottom-nav a:hover,
.footer-wrapper.theme-two .footer-bottom-nav a:focus {
  color: var(--theme-color);
}

.footer-wrapper.theme-two .footer-top-content .ft-item:hover .icon,
.footer-wrapper.theme-two .footer-top-content .ft-item:focus .icon {
  background-color: var(--theme-color);
}

.footer-wrapper .jarallax-container {
  border-radius: 18px;
}

.footer-wrapper.style-two {
  border-radius: 18px;
}

.footer-wrapper.style-two::after {
  border-radius: 18px;
  background: rgba(28, 54, 55, 0.95);
}

/* CTA CSS */
.cta-wrapper {
  background-color: var(--theme-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cta-wrapper .airplane-img {
  position: absolute;
  top: 30%;
  right: 2%;
  z-index: -1;
}

.download-btn {
  padding: 12px 26px 14px;
  border-radius: 8rem;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.download-btn i {
  font-size: 35px;
  color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.download-btn span {
  font-size: 15px;
  font-weight: 700;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  display: block;
  margin-bottom: 4px;
}

.download-btn h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.download-btn:hover,
.download-btn:focus {
  background-color: #161920;
  color: #FFFFFF;
  border-color: #161920;
}

.download-btn:hover h5,
.download-btn:focus h5 {
  color: #FFFFFF;
}

/* Cookie CSS */
.cookiealert {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1000;
  max-width: 280px;
  padding: 30px 22px;
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

@media only screen and (min-width:576px) {
  .cookiealert {
    max-width: 360px;
  }
}

@media only screen and (min-width:768px) {
  .cookiealert {
    max-width: 420px;
  }
}

@media only screen and (min-width:992px) {
  .cookiealert {
    max-width: 500px;
    left: 2rem;
    bottom: 2rem;
    padding: 40px 32px;
  }
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cookiealert p {
  font-size: 12px;
  color: #767676;
}

@media only screen and (min-width:768px) {
  .cookiealert p {
    font-size: 14px;
  }
}

@media only screen and (min-width:1200px) {
  .cookiealert p {
    font-size: 16px;
  }
}

.cookiealert a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 700;
}

/* Contact CSS */
.have-question-card {
  border-radius: 18px;
  background: #F7F7F7;
  padding: 40px 30px;
}

.form-control {

  border-radius: 10px;
  background: #FFFFFF;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 10px 1px;
  color: #767676;
  border: 1px solid rgb(0 0 0 / 30%);
  width: 100%;
  transition: 0.4s;
  padding-left: 43px;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--theme-color);
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-moz-placeholder {
  color: #999;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-ms-input-placeholder {
  color: #999;
}

.form-control::placeholder {
  color: #999;
}

.form-select {
  border-radius: 8px;
  background: #FFFFFF;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 0 20px;
  color: #767676;
  cursor: pointer;
}

.form-select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  min-height: 130px;
}

.contact-card-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 18px;
  background-color: #F7F7F7;
  -webkit-transition: all 350ms;
  border: 1px solid #d1d1d1;
  transition: all 350ms;
}

@media only screen and (min-width:992px) {
  .contact-card-sm {
    padding: 40px;
  }
}

.contact-card-sm .icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #FFFFFF;
}

.contact-card-sm div>div {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

@media only screen and (min-width:1200px) {
  .contact-card-sm div>div {
    font-size: 24px;
  }
}

.contact-card-sm div>p {
  font-size: 16px;
  opacity: 0.7;
}

.maps-section {
  background-color: #F7F7F7;
}

.maps-section iframe {
  border: 0 !important;
  width: 100%;
  height: 400px;
}

@media only screen and (min-width:768px) {
  .maps-section iframe {
    height: 600px;
  }
}

@media only screen and (min-width:992px) {
  .maps-section iframe {
    height: 700px;
  }
}

@media only screen and (min-width:1200px) {
  .maps-section iframe {
    height: 800px;
  }
}

.contact-section {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: rgba(22, 25, 32, 0.6);
}

@media only screen and (min-width:1200px) {
  .contact-section::after {
    height: calc(100% - 92px);
  }
}

.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
}

@media only screen and (min-width:1200px) {
  .contact-section::before {
    height: 92px;
  }
}

.contact-section .contact-form {
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 18px 18px 0 0;
}

.contact-section .contact-form .form-group {
  position: relative;
  z-index: 1;
}

.contact-section .contact-form .form-group label {
  position: absolute;
  top: 11px;
  right: 13px;
  z-index: 2;
  color: #767676;
}

.contact-section .contact-form .touria-select2 {
  width: 100%;
  border-radius: 8px;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 0 20px;
  line-height: 50px;
  color: #767676;
  font-weight: 400;
}

.contact-section .contact-form .touria-select2::after {
  border-bottom: 2px solid #767676;
  border-right: 2px solid #767676;
  right: 20px;
}

.contact-section .contact-form .touria-select2 .list {
  width: auto;
}

.contact-section .contact-form .touria-select2:nth-child(1) {
  display: none;
}

.contact-section .submit-btn {
  padding: 16px 40px;
  background-color: var(--theme-color);
  border-radius: 0 0 18px 18px;
}

.contact-section .submit-btn .btn:hover,
.contact-section .submit-btn .btn:focus {
  background-color: #161920;
  color: #FFFFFF;
}

.contact-page-section {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width:768px) {
  .contact-page-section {
    margin-bottom: 300px;
  }
}

.contact-form-wrapper {
  padding: 30px;
  border-radius: 18px;
  margin-top: 50px;
}

@media only screen and (min-width:768px) {
  .contact-form-wrapper {
    position: absolute;
    padding: 50px;
    bottom: -300px;
    z-index: 100;
  }
}

/* FAQ CSS */
.faq-title {
  font-size: 24px;
}

@media only screen and (min-width:576px) {
  .faq-title {
    font-size: 28px;
  }
}

@media only screen and (min-width:1200px) {
  .faq-title {
    font-size: 32px;
  }
}

@media only screen and (min-width:1400px) {
  .faq-title {
    font-size: 36px;
  }
}

.faq-accordion .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq-accordion .accordion-item {
  position: relative;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--theme-color);
  margin-right: 85px;
  box-shadow: var(--box-shadow);
}

.faq-accordion .accordion-item .accordion-button {
  border-radius: 10px;
  background: transparent;
  color: #1C3637;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 12px 14px;
}

@media only screen and (min-width:576px) {
  .faq-accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}

@media only screen and (min-width:1200px) {
  .faq-accordion .accordion-item .accordion-button {
    font-size: 20px;
  }
}

.faq-accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.faq-accordion .accordion-item .accordion-button::after {
  width: 70px;
  height: 70px;
  position: absolute;
  right: -85px;
  top: 0;
  z-index: 10;
  border-radius: 50%;
  background-color: #1C3637;
  background-position: center;
  color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2236%22%20height=%2236%22%20viewBox=%220%200%2024%2024%22%20fill=%22none%22%20stroke=%22white%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M12%205l0%2014%22/%3E%3Cpath%20d=%22M5%2012l14%200%22/%3E%3C/svg%3E");
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--theme-color);
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: var(--theme-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-accordion .accordion-item .accordion-body {
  padding: 0 24px 30px;
  color: #767676;
  font-size: 16px;
  border-radius: 0 0 10px 10px;
}

@media only screen and (min-width:1200px) {
  .faq-accordion .accordion-item .accordion-body {
    font-size: 18px;
  }
}

.faq-accordion.style-two .accordion-item {
  background-color: #F7F7F7;
  margin-right: 0;
}

.faq-accordion.style-two .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
}

@media only screen and (min-width:1200px) {
  .faq-accordion.style-two .accordion-item .accordion-button {
    font-size: 20px;
  }
}

.faq-accordion.style-two .accordion-item .accordion-button::after {
  position: relative;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--theme-color);
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%209l6%206l6%20-6%22%20/%3E%3C/svg%3E");
}

.faq-accordion.style-two .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 10px 10px 0 0;
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.faq-accordion.style-two .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: #FFFFFF;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-up%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%2015l6%20-6l6%206%22%20/%3E%3C/svg%3E");
}

.faq-accordion.style-two .accordion-item .accordion-body {
  background-color: var(--theme-color);
  font-size: 16px;
  color: #FFFFFF;
  padding: 0 24px 16px 24px;
}

.faq-accordion.style-three .accordion-item {
  background-color: #F7F7F7;
  margin-right: 0;
}

.faq-accordion.style-three .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 24px;
}

@media only screen and (min-width:1200px) {
  .faq-accordion.style-three .accordion-item .accordion-button {
    font-size: 20px;
  }
}

.faq-accordion.style-three .accordion-item .accordion-button::after {
  position: relative;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevrons-right%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M7%207l5%205l-5%205%22%20/%3E%3Cpath%20d=%22M13%207l5%205l-5%205%22%20/%3E%3C/svg%3E");
}

.faq-accordion.style-three .accordion-item .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 10px 10px 0 0;
  color: #FFFFFF;
  background-color: var(--theme-color);
}

.faq-accordion.style-three .accordion-item .accordion-button:not(.collapsed)::after {
  background-color: #FFFFFF;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevrons-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M7%207l5%205l5%20-5%22%20/%3E%3Cpath%20d=%22M7%2013l5%205l5%20-5%22%20/%3E%3C/svg%3E");
}

.faq-accordion.style-three .accordion-item .accordion-body {
  background-color: #F7F7F7;
  font-size: 16px;
  color: #161920;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.faq-accordion.style-three .accordion-item .accordion-body .faq-image {
  width: 160px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (min-width:576px) {
  .faq-accordion.style-three .accordion-item .accordion-body {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* Happy Counts */
.happy-counts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width:992px) {
  .happy-counts {
    width: 200px;
    height: 200px;
    gap: 10px;
  }
}

@media only screen and (min-width:1200px) {
  .happy-counts {
    width: 250px;
    height: 250px;
    gap: 15px;
  }
}

@media only screen and (min-width:1400px) {
  .happy-counts {
    width: 280px;
    height: 280px;
  }
}

.happy-counts::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 50%;
  background-color: var(--theme-color);
  z-index: -10;
}

.happy-counts .counter {
  font-size: 42px;
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (min-width:1200px) {
  .happy-counts .counter {
    font-size: 48px;
  }
}

@media only screen and (min-width:1400px) {
  .happy-counts .counter {
    font-size: 60px;
  }
}

.happy-counts h5 {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (min-width:1200px) {
  .happy-counts h5 {
    font-size: 20px;
  }
}

/* Breadcrumb CSS */
.breadcrumb-section {
  position: relative;
  z-index: 1;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 25, 32, 0.76);
  z-index: -10;
}

.breadcrumb-section .breadcrumb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 112px;
}

.breadcrumb-section .breadcrumb-content h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 42px;
  }
}

@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 48px;
  }
}

@media only screen and (min-width:992px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 56px;
    margin-bottom: 1.25rem;
  }
}

@media only screen and (min-width:1200px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 64px;
  }
}

@media only screen and (min-width:1400px) {
  .breadcrumb-section .breadcrumb-content h2 {
    font-size: 80px;
  }
}

.breadcrumb-section .breadcrumb-content ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul {
    padding: 6px 20px;
  }
}

.breadcrumb-section .breadcrumb-content ul li {
  color: #FFFFFF;
  font-size: 13px;
}

@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content ul li {
    font-size: 14px;
  }
}

@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul li {
    font-size: 16px;
  }
}

.breadcrumb-section .breadcrumb-content ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  position: relative;
  z-index: 1;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width:576px) {
  .breadcrumb-section .breadcrumb-content ul li a {
    font-size: 14px;
  }
}

@media only screen and (min-width:768px) {
  .breadcrumb-section .breadcrumb-content ul li a {
    font-size: 16px;
  }
}

.breadcrumb-section .breadcrumb-content ul li a:hover,
.breadcrumb-section .breadcrumb-content ul li a:focus {
  color: #FFFFFF;
}

.breadcrumb-section .breadcrumb-content ul li a::after {
  content: "\ea61";
  position: absolute;
  right: -5px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
}



.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  z-index: 10000;
}

/* Keep this part */
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--color-primary);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  z-index: 10000;
}

/* WhatsApp Button */
.buy-now-btn.btn-2 {
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
  padding: 10px;
  font-size: 50px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

/* Call Button */
.buy-now-btn.btn-3 {
  top: auto;
  bottom: 20px;
  right: auto;
  left: 20px;
  padding: 10px;
  font-size: 35px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

.buy-now-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}

/* Updated Animation */
@keyframes rubberBand2 {
  0% {
    transform: translateY(-50%) scale(1);
  }

  30% {
    transform: translateY(-50%) scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: translateY(-50%) scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: translateY(-50%) scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: translateY(-50%) scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: translateY(-50%) scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: translateY(-50%) scale(1);
  }
}

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

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

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

/* Animation trigger */
.buy-now-btn.animate {
  animation: rubberBand2 1s ease-in-out;
}

.buy-now-btn.animate.btn-3,
.buy-now-btn.animate.btn-2 {
  animation: rubberBand3 1s ease-in-out;
}

@media(max-width:768px) {

  .buy-now-btn {
    padding: 6px 8px;
    font-size: 11px;
    right: 7px;
  }

  .buy-now-btn.btn-3 {
    width: 55px;
    height: 55px;
    font-size: 27px;
  }

  .buy-now-btn.btn-2 {
    width: 55px;
    height: 55px;
    font-size: 40px;
  }
}


/************Form_section************/
.form-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #000;
}

.form-group {
  width: 100%;
}

.form_section .search-item {
  margin-bottom: 8px;
  position: relative;
}

@media(max-width:768px) {
  .form-title {
    font-size: 25px;
  }

  .hero-search-form {
    padding: 20px 15px 20px 15px;
    margin-block: 20px;
  }

  .about-thumbnail .first-img {
    height: auto;
  }

  .about-thumbnail .second-img {
    height: auto;
    top: 50px;
    right: 0;
    width: 55%;
  }

  .about-thumbnail .third-img {
    left: 34px;
    margin-top: -32px;
    width: 62%;
  }

  .about-card-sm {
    flex-direction: column;
  }

  .about-card-sm .line {
    height: 1px;
    width: 60px;
  }

  .footer-top-content {

    gap: 10px;
    flex-direction: column;
  }

  .footer-top-content .ft-item {

    max-width: 100%;
    width: 100%;
  }

  .copyright-wrapper {
    padding-bottom: 70px;
  }

}

.single-section {
  position: relative;

  img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }
}

.single-section .image_section {
  position: relative;
}

.single-section .image_section .view-all {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
  margin-bottom: 0;
  padding: 10px;
  text-transform: capitalize;
  color: white;
  font-weight: 800;
  line-height: 1;
}

.single-section .image_section .slider-thumbnail {
  margin-top: 5px;
  overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide>div {
  margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.single-section .facility_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  margin-top: 20px;
}

.single-section .facility_sec .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.single-section .facility_sec .icon-box svg {
  width: 30px;
  height: auto;
  fill: var(--theme-color);
}

.single-section .facility_sec .icon-box .content {
  margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: var(--theme-color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
  display: none;
}

.single-section .description-section .menu-top {
  margin-top: 30px;
  padding: 12px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
  display: none;
}

.single-section .description-section .menu-top.sticky {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 16px 0;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
  padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
  margin-top: 0;
  margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
  text-transform: uppercase;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
  margin-top: 20px;
  padding: 30px;
  background-color: white;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .list-view {
  margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
  width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
  padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
  position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
  text-transform: capitalize;
  font-weight: 700;
  color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
  margin-right: 5px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
  margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
  display: block;
  text-transform: capitalize;
  line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
  font-size: 8px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.map iframe {
  width: 100%;
  height: 420px;
  margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-left: 10px;
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
  border-top: 1px solid #f9f9f9;
  padding-top: 12px;
  margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
  color: #212121;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.single-section .description-section .description-details.full-slider .menu-part {
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
  margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
  padding: 0;
  background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
  margin-bottom: 15px;
  background-color: white;
  border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
  border: none;
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.single-section .description-section.tab-section .menu-top.sticky {
  background-color: white;
  margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
  margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
  margin-top: 0;
}

.single-section .single-sidebar {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

.single-section .single-sidebar p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
  font-size: 13px;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.59);
}


.single-section .single-sidebar .newsletter-sec {
  padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
  margin-top: 15px;
  text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
  padding: 6px 14px;
  font-size: 14px;
  text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
  position: relative;
  margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
  height: 100px;
  width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--theme-color);
  text-transform: capitalize;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  z-index: 0;
  font-weight: 600;
  margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
  font-size: 10px;
  margin-right: 5px;
  color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
  color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
  margin-left: auto;
  text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--theme-color);
}

.single-section .single-sidebar .book-btn-section .btn-rounded {
  padding: 6px 14px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0;
}

.single-section .single-sidebar .contact-title {
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
  text-transform: capitalize;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
  width: 40px;
  margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
  margin-left: 20px;
}

.single-section .single-sidebar .social-box {
  margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: white;
  padding: 9px;
  background-color: var(--theme-color);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 3px;
}

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

.single-section .single-sidebar .order-cart .cart-items {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--theme-color);
  font-weight: 500;
  margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
  width: 120px;
  margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
  padding: 2px;
  width: 50px;
  text-align: center;
  border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid green;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: green;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid red;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: red;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
  float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
  max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
  text-align: center;
  margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
  margin-bottom: 20px;
  opacity: 0.5;
}

.single-section .single-sidebar .order-cart .empty-cart p {
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.64);
}

.single-section ul {
  display: block;
  margin-bottom: 20px;
  padding-left: 0;
}

.single-section ul li {
  display: block;
  padding: 5px;
  font-size: 16px;
  color: #000;
}

.single-section .h2,
.single-section .h3 {
  color: #000;
  font-weight: 600;
}

/*service pages*/

.single-section .detail {
  margin-bottom: 40px;
  padding: 20px 0;
  align-items: center;
  --bs-gutter-y: 1.5rem;
}

.single-section .detail:nth-child(even) {
  background-color: #f4f8fb;
}

.single-section .detail img {
  border-radius: 10px;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.single-section .detail .h3,
.single-section .detail h3 {
  color: #000;
  font-weight: 600;
}

/*sidelist*/

.single-section .sidebar-item {
  margin-bottom: 30px;
  position: relative;
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 20px;
}

/*book now*/

.booking-page .card {
  border: none;
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
}

.booking-page .card-header {
  background-color: var(--theme-color);
  text-align: center;
  border: 0;
}

.booking-page .card-header .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 15px 0;
  color: #fff;
}

.booking-page .row>* {
  margin-top: 12px;
}

.booking-page label {
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
}

.booking-page label span {
  color: var(--theme-color);
  padding-left: 5px;
}

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

.single-service-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.single-service-wrap .destination {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  line-height: 157.143%;
  letter-spacing: 0.42px;
  margin-top: -7px;

  i {
    font-size: 18px;
    color: var(--theme-color);
  }
}

.single-service-wrap:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
  background: #fff;
  color: #fa4318;
  color: var(--theme-color);
}

.single-service-wrap .thumb {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 350px;
  border-radius: 15px;
  transition: 0.3s;
  margin-inline: auto;
}

.single-service-wrap:hover .thumb {
  border-color: var(--theme-color);
}

.single-service-wrap:hover .thumb img {
  transition: 0.3s;
}

.single-service-wrap .thumb:after {
  left: -30px;
}

.single-service-wrap .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service-wrap .details .icon {
  background: #fff;
  height: 39px;
  line-height: 50px;
  margin-left: auto;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  width: 40px;
  top: 0px;
  right: 15px;
  font-size: 20px;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0px;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
}

.single-service-wrap .details {
  position: relative;
  margin-left: 136px;
  padding: 35px 25px;
  margin-top: -120px;
  z-index: 1;
}

@media(max-width:768px) {
  .single-service-wrap .details {
    margin-left: 20px;
  }
}

.single-service-wrap .details:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
  background-color: #ffffff;
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
  z-index: -1;
}

.single-service-wrap .detailes_top {
  margin-bottom: 12px;
}

.single-service-wrap .border-layer {
  position: absolute;
  left: -12px;
  top: -30px;
  z-index: -2;
  width: 32px;
  bottom: -10px;
  border: 4px solid var(--theme-color);
  -ms-transform: skewY(20deg);
  transform: skewY(20deg);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.single-service-wrap:hover .border-layer {
  -ms-transform: skewY(-20deg);
  transform: skewY(-20deg);
}

.single-service-wrap h5 {
  transition: all 0.3s ease-in;
  position: relative;
  color: #222;
  font-size: 24px;
  margin-top: -10px;
  line-height: 0.9;
  text-align: left;
  margin-top: -10px;
  margin-bottom: 00;
  font-weight: 600;
}

.single-service-wrap .details p {
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: left;
}

.single-service-wrap .details .btn-wrap .read-more-text {
  color: #080c24;
  color: #222;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
  display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
  color: #fff;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  transition: all 0.3s ease-in;
  width: 26px;
}

.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
  background: #fa4318;
  background: var(--theme-color);
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
}

.service-details-wrap .thumb .icon {
  height: 70px;
  line-height: 68px;
  margin-bottom: -70px;
  position: relative;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
}

.service-details-wrap .thumb .icon img {
  width: auto;
}

.single-service-details {
  padding: 10px;
  background-color: #eeeeee;
  border-radius: 10px;
}

.single-service-details img {
  width: 100%;
  margin-bottom: 20px;
}

.single-service-details h3,
.single-service-details .h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.single-section {
  position: relative;
  padding: 35px 0;
}

.single-service-details {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}

.single-service-details img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  min-height: 450px;
  object-fit: cover;
}

.single-service-details .title {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.333;
  font-weight: 700;
}

.single-service-details strong,
.single-service-details b {
  font-size: 17px;
  font-weight: 700;
}

.single-service-details a {
  color: var(--theme-color);
  transition: 0.2s;
}

.single-service-details a:hover {
  color: var(--theme-color);
}

.single-service-details .content-box {
  margin: 0 0 0 0;
  padding: 15px 30px;
  position: relative;
}

.single-service-details .content-box ul {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.single-service-details .content-box ul li {
  display: block;
  position: relative;
}

.single-service-details .content-box ul li:before {
  position: relative;
  content: '\f0a4';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--theme-color);
  margin-right: 5px;
}


.single-section .sidebar-weight .inner-box {
  position: relative;
  display: block;
  background: #e4eef3;
  padding: 100px 30px 40px 30px;
}

.single-section .sidebar-weight .inner-box .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.single-section .sidebar-weight .inner-box .bg-layer:before {
  position: absolute;
  content: '';
  background-color: #222;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.single-section .sidebar-weight .inner-box .logo {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 26px;
}

.single-section .sidebar-weight .inner-box .mini-title {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: var(--theme-color);
}

.single-section .sidebar-weight .inner-box h2 {
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 8px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box p {
  margin-bottom: 22px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box .theme-btn {
  padding: 13px 30px;
}

.single-section .ripped-shape {
  position: absolute;
  transform: scaleY(-1);
  width: 100%;
  height: 488px;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
  border-radius: 0;
}

.single-section .content-box {
  z-index: 2;
}

.sidebar-weight {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.single-section .text-box {
  margin-bottom: 32px;
}

.single-section .content {
  padding-bottom: 20px;
}

.single-section .image_row img {
  border-radius: 12px;
}

.single-section .content .single-item .icon-box {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.single-section .common-booking-form .hero-search-form {

  padding: 20px;
  border-radius: 25px;
  border: 3px solid var(--theme-color);
  border-left: 10px solid var(--theme-color);
  border-bottom: 10px solid var(--theme-color);
  margin-bottom: 20px;
  margin-top: 0;
}

@media(min-width:992px) {
  .single-section .common-booking-form .form_section {
    margin-bottom: 20px;
  }

}

@media(max-width:992px) {
  .single-service-details {
    margin-bottom: 20px;
  }
}

@media(max-width:768px) {
  .single-service-details .content-box {
    padding: 10px;
  }

  .single-service-details .title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
  }

  .single-service-details .content-box ul li {
    margin-bottom: 5px;
  }

  .single-service-details img {
    max-height: 300px;
    min-height: 300px;
  }
}

@media(max-width:900px) {
  .single-section .sidebar-item {
    display: none;
  }
}

.sidebar-category {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.sidebar-category li {
  list-style: none;
  margin-bottom: 1px;
  width: 100%;
}

.sidebar-category li .active {
  background: var(--theme-color);
  color: #FFF;
}

.sidebar-category li a {
  background: #ffffff none repeat scroll 0 0;
  color: #000;
  display: block;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  text-transform: capitalize;
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
  border-radius: 6px;
}

.sidebar-category li a:hover {
  background: var(--theme-color);
  color: #fff;
}

.sidebar-category li a:after {
  content: "\f061";
  font-family: FontAwesome;
  float: right;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.breadcrumb__text {
  text-align: center;
}

.breadcrumb__links {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
}

.breadcrumb__links a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a::after {
  position: absolute;
  right: -18px;
  top: 0px;
  font-family: FontAwesome;
  content: "\f105";
  font-size: 20px;
  font-weight: 400;
}

.breadcrumb__links span:last-child {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 0;
  display: inline-block;
  position: relative;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-right: 26px;
  position: relative;
}

.breadcrumb__text h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}

@media(max-width:768px) {
  .spad {
    padding: 80px 0 80px;
  }

  .breadcrumb__links a {
    font-size: 15px;
  }

  .breadcrumb__links a::after {
    font-size: 15px;
  }

  .breadcrumb__links span:last-child {
    font-size: 15px;
  }

  .breadcrumb__text h2 {
    font-size: 35px;
    line-height: 1.2;
  }
}

.contact_form .form-control {
  border-radius: 8px;
  background: #FFFFFF;
  height: 50px;
  font-size: 16px;
  border: 0;
  padding: 20px;
  color: #767676;
  border: 0;
  border: 1px solid #d1d1d1;
}

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

@media(min-width:768px) {
  .home_form {
    position: absolute;
    width: 30%;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    right: 10%;
    max-width: 450px;
  }
}

@media(max-width:768px) {
  .header-area.style-four .navbar {
    padding-block: 0;
  }

  .header-area .navbar .navbar-brand {
    padding-block: 4px;
  }

  .hero-section.style-two .hero-swiper-slide {
    padding-inline: 0;
  }

  .premier-destination-card.slide-expand {
    width: 333px !important;
  }

  .premier-destination-card .btn {
    bottom: 150px;
  }

  .why-choose-section img {
    max-height: 400px;
  }

  .testimonial-card-two {
    padding: 40px 15px 15px;
  }

  .header-navigation {
    margin-bottom: 12px;
  }

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

  .header-area.style-four .navbar::after {
    width: 354px;
    height: 94px;
  }

  .hero-content p {
    opacity: 0 !important;
    visibility: hidden;
    line-height: 1;
  }

  .section-heading h2 span:after {
    bottom: 8px;
  }

  .hero-section.style-two .hero-swiper-slide {
    height: 376px;
  }

  .hero-content h2,
  .hero-content h1,
  .hero-content .h2 {
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .header-area.style-four.sticky-on .navbar::after {

    width: 355px;
    height: 94px;
  }

  .hero-section .hero-navigation {
    width: 45px;
    padding: 15px 5px;
  }

  .hero-section .hero-navigation .swiper-pagination-bullet {
    width: 35px;
    height: 35px;
  }

  .hero-section .hero-navigation .swiper-pagination-bullets {
    gap: 9px;
  }
}

.activity-card {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  border-radius: 12px;
  border: 3px solid var(--theme-color);
}

.activity-card img {
  width: 100%;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  height: 230px;
  object-fit: cover;
}

.activity-card span {
  display: block;
  margin-bottom: 10px;
}

.activity-card h5 {
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  margin-block: 10px;
}

.activity-card .activity-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid var(--theme-color);
}

.activity-card .text-center {
  position: relative;
}

.activity-card .text-center .btn {
  position: absolute;
  top: 0;
  transform: translateY(-90%);
  right: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  z-index: 1;
}

.activity-card .activity-thumb .activity-social {
  position: absolute;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
}

.activity_navs {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  gap: 10px;
}

.activity_navs .swiper-button-prev,
.activity_navs .swiper-button-next {

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  font-size: 17px;
  width: 56px;
  height: 56px;
  font-size: 24px;
  position: relative;
  transform: none;
  left: auto;
  right: auto;
}

.activity_navs .swiper-button-prev:after,
.activity_navs .swiper-button-next:after {
  display: none;
}

@media(max-width:768px) {
  .faq-accordion .accordion-item .accordion-button {
    line-height: 1;
  }
}

.bixol-services {
  position: relative;
}

.bixol-services_bg {
  background-color: #d7e8ef;

  .hotel-card {
    background-color: #fff;
  }
}

.tour_navs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  height: 0px;
  justify-content: space-between;
  z-index: 10;
}

.tour_navs div {
  position: relative;
  display: block;
  background-color: var(--theme-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
}

.tour_navs div:before,
.tour_navs div:after {
  display: none;
}

/* =========partners=========== */
.partner-swiper .partner-logo {
  height: 125px;
  /* width: 100px; */
  border-radius: 10px;
  margin: 0 auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-swiper .partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-swiper .swiper-slide {
  text-align: center;
  background: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.partner-swiper .swiper-slide:hover {
  transform: translateY(-5px);
}

.partner-swiper .partner-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.package-services .card {
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  border: 2px solid var(--theme-color);
  box-shadow: var(--box-shadow);
}

.package-services .card img {
  width: 100%;
  height: 425px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
}

.blog-card {
  position: relative;
  box-shadow: var(--box-shadow);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  background-color:#122f2a;
  height: 250px;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  mix-blend-mode: luminosity;
  height: 100%;
  object-fit: cover;
}
.blog-card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba( 18, 47, 42, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover .blog-card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__content {
  position: relative;
  transition: all 500ms ease;
  border: 1px solid #dddddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 0 0 30px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  border-bottom: 1px solid #dddddd;
}
.blog-card__meta li {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  padding: 12px 15px;
  margin: -2px 0;
}
.blog-card__meta li:not(:first-of-type) {
  border-left: 1px solid #dddddd;
}
.blog-card__meta li i {
  color: var(--theme-color);
  font-size: 20px;
  margin-right: 10px;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__meta li a:hover {
  color: var(--theme-color);
  text-shadow: 0 0 1px currentColor;
}
.blog-card__meta img {
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-card__date {
  height: 32px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  color: #636363;
  padding: 0 20px 0 18px;
  line-height: 1.2em;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 10;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 30px;
  transition: all 300ms ease;
}
.blog-card__date i {
  display: inline-block;
  color: var(--theme-color);
  transition: all 300ms ease;
}
.blog-card:hover .blog-card__date {
  background-color: var(--theme-color);
  color: #fff;
}
.blog-card:hover .blog-card__date i {
  color: #fff;
}
.blog-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  margin: 0 10px 7px;
  font-weight: 800;
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--theme-color);
}
.blog-card__text {
  margin: 0 10px 25px;
}
.blog-card__link {
  display: inline-block;
  font-size: 16px;
  color:#122f2a;
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 145px;
  margin: 0 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.blog-card__link__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--theme-color);
  color: #fff;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card__link__back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}
.blog-card__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--theme-color);
  color: #fff;
  margin-right: 11px;
  transition: all 500ms ease;
}
.blog-card__link:hover {
  color: var(--theme-color);
}
.blog-card:hover .blog-card__link__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.blog-card:hover .blog-card__link__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card--reverse {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-card--reverse {
    display: block;
  }
}
.blog-card--reverse .blog-card__content {
  border-top: 1px solid #dddddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 767px) {
  .blog-card--reverse .blog-card__content {
    border-right: 1px solid #dddddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
}
.blog-card--reverse .blog-card__image {
  min-width: 290px;
  flex-shrink: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card--reverse .blog-card__image {
    min-width: 216px;
  }
  .blog-card--reverse .blog-card__image img {
    height: 100%;
    object-fit: cover;
  }
}


.blog-one {
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0 50px;
  }
}
.blog-one--page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0;
  }
}
.blog-one--home .sec-title {
  text-align: center;
}
@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}

.blog-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0;
  }
}
.blog-two--home-three {
  position: relative;
}
.blog-two--home-three .blog-card__title {
  text-align: center;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 450px) {
  .blog-two--home-three .blog-card__title {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.blog-two--home-three .blog-card__text {
  text-align: center;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 450px) {
  .blog-two--home-three .blog-card__text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.blog-two--home-three .blog-card__link {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.blog-two--home-three .text-end {
  margin-top: 68px;
}
@media (max-width: 767px) {
  .blog-two--home-three .text-end {
    margin: -15px 0 45px;
    text-align: left !important;
  }
}

.blog-card-two .blog-card__image {
  margin-bottom: 27px;
}
.blog-card-two .blog-card__meta {
  margin-bottom: 6px;
}
.blog-card-two .blog-card__title {
  font-size: 25px;
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .blog-card-two .blog-card__title {
    font-size: 30px;
  }
}
.blog-card-two .blog-card__date {
  bottom: 0;
}
.blog-card-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  margin-top: 12px;
}

.blog-card-list {
  position: relative;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  background-color:  #122f2a;
  margin-bottom: 30px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  max-width: 100%;
  mix-blend-mode: luminosity;
}
.blog-card-list__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-list__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba( 18, 47, 42, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-list__image__link::before, .blog-card-list__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-list__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-list:hover .blog-card-list__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__content {
  position: relative;
}
.blog-card-list__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
}
.blog-card-list__meta li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0;
}
.blog-card-list__meta li img {
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-card-list__meta li i {
  color: var(--theme-color);
  font-size: 20px;
  margin-right: 10px;
}
.blog-card-list__meta li a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-list__meta li a:hover {
  color: var(--theme-color);
}
.blog-card-list__meta li.blog-card-list__meta__cats {
  position: relative;
}
.blog-card-list__meta li.blog-card-list__meta__cats a {
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 0px 30px;
}
.blog-card-list__meta li.blog-card-list__meta__cats a:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.blog-card-list__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 11px;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__title a:hover {
  color: var(--theme-color);
}
.blog-card-list__text {
  line-height: 26px;
  margin: 0 0 32px;
}
@media (min-width: 1200px) {
  .blog-card-list__text {
    padding-right: 50px;
  }
}
.blog-card-list__link {
  display: inline-block;
  font-size: 16px;
  color:  #122f2a;
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 145px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.blog-card-list__link__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--theme-color);
  color: #fff;
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card-list__link__back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}
.blog-card-list__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--theme-color);
  color: #fff;
  margin-right: 11px;
  transition: all 500ms ease;
}
.blog-card-list__link:hover {
  color: var(--theme-color);
}
.blog-card-list:hover .blog-card-list__link__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.blog-card-list:hover .blog-card-list__link__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-one--page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0;
  }
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}
.sidebar__single {
  background-color: #f1f6f7;
  border-radius: 20px;
  padding: 40px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding-left: 22px;
    padding-right: 20px;
  }
}
.sidebar__single--tags .sidebar__title::after {
  width: 100%;
}
.sidebar__single--search {
  padding: 0;
  border: none;
  border-radius: 50px;
}
.sidebar__single + .sidebar__single {
  margin-top: 50px;
}
.sidebar__title {
  text-transform: capitalize;
  margin: 0 0 36px;
  line-height: 1em;
  font-size: 20px;
  letter-spacing: 0.33px;
  font-weight: 700;
  position: relative;
  top: -3px;
  display: inline-block;
}
@media (min-width: 768px) {
  .sidebar__title {
    font-size: 22px;
  }
}
.sidebar__title::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 77px;
  height: 3px;
  content: "";
  background-color: var(--theme-color);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 55px;
  background-color: transparent;
  font-size: 16px;
  color: #636363;
  border-radius: 50px;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: var(--theme-color);
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  line-height: 47px;
  color: #FFF;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  transition: all 500ms ease;
}
.sidebar__search button[type=submit]:hover {
  background-color: #122f2a;
  color: #FFF;
}
.sidebar__categories {
  margin-bottom: -16px;
  margin-top: -9px;
}
.sidebar__categories li {
  position: relative;
  font-size: 16px;
  color: #636363;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 0 0 0 26px;
  margin: 0 0 10px;
}
.sidebar__categories li::before {
  position: absolute;
  left: -3px;
  content: "\ea94";
  font-family: IcoFont !important;
  transition: all 500ms ease;
  font-weight: normal;
  font-size: 25px;
}
.sidebar__categories li a {
  color: inherit;
}
.sidebar__categories li:hover {
  padding: 0 5px 0 31px;
  color: var(--theme-color);
}
.sidebar__categories li:hover::before {
  left: 2px;
  color: var(--theme-color);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sidebar__tags a {
  background-color: transparent;
  text-transform: capitalize;
  border: 1px solid #dddddd;
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  color: #636363;
  transition: all 500ms ease;
  display: inline-flex;
  line-height: 28px;
  padding: 5px 21px;
}
.sidebar__tags a:hover {
  color: #FFF;
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 15px;
}
.sidebar__posts__image img {
  max-width: 100%;
    width: 97px;
    height: 78px;
    object-fit: cover;
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #636363;
  font-size: 14px;
  margin-bottom: 7px;
}
.sidebar__posts__meta i {
  font-size: 13px;
}
.sidebar__posts__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--theme-color);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__content {
  position: relative;
}
.blog-details__image {
  position: relative;
  margin-bottom: 30px;
}
.blog-details__image img {
  max-width: 100%;
  height: auto;
}
.blog-details__top-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
}
.blog-details__top-meta li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0;
}
.blog-details__top-meta li img {
  border: 2px solid #ffa415;
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-details__top-meta li i {
  color: #ffa415;
  font-size: 20px;
  margin-right: 10px;
}
.blog-details__top-meta li a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-details__top-meta li a:hover {
  color: #ffa415;
}
.blog-details__top-meta li.blog-details__top-meta__cats {
  position: relative;
}
.blog-details__top-meta li.blog-details__top-meta__cats a {
  background-color: var(--theme-color);
  color: #FFF;
  border-radius: 30px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 0px 30px;
}
.blog-details__top-meta li.blog-details__top-meta__cats a:hover {
  background-color: #ffa415;
  color: #FFF;
}
.blog-details__title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 22px;
}
.blog-details__text {
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .blog-details__text {
    padding-right: 50px;
  }
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 46px;
  margin-bottom: 55px;
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title {
  text-transform: capitalize;
  margin: 0;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 768px) {
  .blog-details__tags__title {
    font-size: 22px;
  }
}
.blog-details__tags .sidebar__tags a {
  border: none;
  background-color: #f1f6f7;
}
.blog-details__tags .sidebar__tags a:hover {
  background-color: var(--theme-color);
}
.blog-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f6f7;
  font-size: 14px;
  color: #122f2a;
  transition: all 500ms ease;
  border-radius: 50%;
}
.blog-details__social a:hover {
  background-color: var(--theme-color);
  color: #FFF;
}
.packages_slider{
  padding: 0 10px 10px ;
}
@media(max-width: 768px){
  .partner-swiper .partner-logo{
    height: 100px;
  }
  .partner-swiper .partner-name{
    font-size: 16px;
  }
}