/************************************/
/*** 	 Global Variables	  ***/
/************************************/

:root {
  --primary-color: #0e0d1b;
  --secondary-color: #eff7ec;
  --text-color: #737577;
  --accent-color: #63ab45;
  --white-color: #ffffff;
  --divider-color: #e8e8e8;
  --dark-divider-color: #ffffff20;
  --error-color: rgb(230, 87, 87);
  --default-font: "Rubik", sans-serif;
}

/************************************/
/*** 	  General css		  ***/
/************************************/

/************************************/
/*** 	  General css		  ***/
/************************************/
.custom-pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 0 3px;
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--divider-color);
}

.custom-pagination .page-item.disabled .page-link {
    color: var();
}


body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--text-color);
  background-color: var(--white-color);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.1em;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-wrapper {
  display: inline-block;
  position: relative;
  border-radius: 16px;
  padding: 5px;
}

.btn-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed var(--accent-color);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to right,
    var(--accent-color) 0%,
    var(--accent-color) 5px,
    transparent 5px,
    transparent 10px
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: dashBorder 1s linear infinite;
}

@keyframes dashBorder {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 0;
  }
}

.btn-default {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: var(--accent-color);
  text-transform: uppercase;
  padding: 18px 35px;
  border: none;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--primary-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

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

.main-body {
  padding: 0 40px;
}

section {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  overflow: hidden;
  padding: 50px 0;
}

.section-row {
  margin-bottom: 60px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-btn .btn-default.btn-highlighted {
  margin: 0;
}

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

.section-title h3 {
  display: inline-block;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  padding: 10px;
  margin-bottom: 10px;
}

.section-title h1,
.section-title h2 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.section-title-content {
  margin-left: 100px;
  text-align: right;
}

.section-title-content p {
  margin: 0;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   Header css		 ****/
/************************************/

.topbar {
  background-color: var(--accent-color);
}

.topbar-contact-info {
  padding: 10px 0;
  text-align: left;
}

.topbar-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-contact-info ul li {
  display: inline-block;
  font-size: 14px;
  margin-right: 15px;
}

.topbar-contact-info ul li:last-child {
  margin-right: 0;
}

.topbar-contact-info ul li a {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
}

.topbar-contact-info ul li i {
  font-size: 16px;
  color: var(--white-color);
  margin-right: 5px;
}

.topbar-offer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
  text-align: center;
}

.topbar-social-links {
  padding: 10px 0;
}

.topbar-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: end;
}

.topbar-social-links ul li {
  display: inline-block;
  margin-right: 12px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
  color: var(--accent-color);
}

.topbar-social-links ul li:last-child {
  margin-right: 0;
}

.topbar-social-links ul li a i {
  font-size: 18px;
  color: inherit;
}

.logo a img {
  width: 180px;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

header.main-header {
  background-color: var(--white-color);
  position: relative;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border-bottom: 1px solid var(--divider-color);
  backdrop-filter: blur(30px);
}

.navbar {
  padding: 20px 0;
  align-items: center;
}

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

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 15px !important;
  color: var(--primary-color);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 210px;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover {
  color: var(--accent-color);
  background-color: transparent;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 6px 0 0;
  width: 38px;
  height: 38px;
  margin: 0;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--primary-color);
}

/************************************/
/***        Hero css	      ***/
/************************************/

.hero {
  position: relative;
  padding: 160px 0 180px;
  background-image: url("../images/hero/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(14, 13, 27, 0) 0%,
    rgba(14, 13, 27, 0.55) 40.5%
  );
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.hero.hero-slider {
  text-align: center;
  background: none;
  padding: 0;
}

.hero-slider-layout .hero-slide {
  position: relative;
  padding: 160px 0 180px;
}

.hero.hero-slider:before {
  display: none;
}

.hero.hero-slider .hero-slider-layout {
  position: relative;
  z-index: 2;
}

.hero-slider-layout .hero-slide::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(14, 13, 27, 0) 0%,
    rgba(14, 13, 27, 0.55) 40.5%
  );
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
  bottom: 100px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--accent-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--white-color);
}

.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-title {
  margin-bottom: 30px;
}

.hero-content-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero-content-title h1,
.hero-content-title h2 {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white-color);
}

.hero-content-body {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.hero-content-body p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  margin: 0;
}

.hero-content-footer .btn-default.btn-highlighted {
  margin-left: 20px;
}

/************************************/
/***        About Us css	      ***/
/************************************/
.about-us-page {
  background-color: var(--secondary-color);
}

.about-image img {
  width: 100%;
}

.about-content-body ul {
  padding-left: 0;
  list-style-type: none;
}

.about-content-body ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.about-content-body ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 3px;
  left: 0;
}

/************************************/
/***    Popular Destination css	  ***/
/************************************/
.popular-destination {
  background-color: var(--secondary-color);
}

.popular-destination-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.popular-destination-item-image {
  position: relative;
}

.popular-destination-item-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.popular-destination-item-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white-color);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.popular-destination-item:hover .overlay {
  opacity: 1;
}

.popular-destination-item:hover img {
  transform: scale(1.05);
}

.overlay h4 {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.overlay p {
  margin: 4px 0 0;
  color: var(--accent-color);
}

/************************************/
/***     Travel Packges css	   ***/
/************************************/
.travel-packges-item {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  overflow: hidden;
  background-color: var(--secondary-color);
  padding: 15px;
}
.travel-packges-img-price {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.travel-packges-img img {
  width: 100%;
  aspect-ratio: 1/0.7;
}

.travel-packges-price {
  position: absolute;
  top: 0;
  right: 0;
}
.travel-packges-price h5 {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 8px 12px;
}

.travel-packges-content {
  padding: 20px 0 0 0;
}

.travel-packges-content h4 {
  font-weight: 500;
}

.travel-packges-content h4 a{
 color: var(--primary-color);
}

.travel-packges-content ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  padding: 15px 0;
}

.travel-packges-content ul li {
  display: flex;
  align-items: center;
  padding: 5px;
}

.travel-packges-content ul li i {
  padding-right: 10px;
  color: var(--accent-color);
}

/************************************/
/***        Testimonial css	      ***/
/************************************/
.testimonial {
  background-color: var(--secondary-color);
  position: relative;
}

.testimonial::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 77%;
    top: 341px;
    background-repeat: no-repeat;
    background-image: url(../images/auther/bg-img.png);
    width: 400px;
}

.testimonial-item ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-item ul li i {
  color: #ffd700;
}

.testimonial-auther {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-auther-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial-auther-content h5 {
  font-weight: 500;
}

.testimonial-auther-content p {
  margin: 0;
}

.testimonial-slider .swiper-pagination {
  position: relative;
  text-align: center;
  bottom: 0px;
  margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: var(--divider-color);
  opacity: 1;
  margin: 0px 6px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/************************************/
/***   Mission and Vision css	***/
/************************************/
.mission-vision-image img {
  width: 100%;
  aspect-ratio: 1/.5;
}

/************************************/
/***        Footer css	      ***/
/************************************/
.main-footer {
  position: relative;
  padding: 60px 0 0;
  background-color: var(--accent-color);
  margin-top: 40px;
}

.about-footer {
  margin-right: 30px;
}

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

.footer-logo figure img {
  width: 180px;
  border-radius: 0 !important;
}

.footer-content {
  margin-bottom: 30px;
}

.footer-content p {
  color: var(--secondary-color);
  font-size: 16px;
  margin: 0;
}

.footer-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-links ul li {
  display: inline-block;
  margin-right: 25px;
}

.footer-social-links ul li:last-child {
  margin-right: 0px;
}

.footer-social-links ul li a {
  color: var(--secondary-color);
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
  color: var(--white-color);
}

.footer-quick-links h2,
.footer-contact-details h2,
.footer-newsletter h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer-quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-links ul li {
  margin-bottom: 15px;
}

.footer-quick-links ul li:last-child {
  margin-bottom: 0px;
}

.footer-quick-links ul li a {
  display: block;
  color: var(--secondary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

/* .footer-quick-links ul li a:hover {
  color: var(--accent-color);
} */

.footer-contact-box .footer-info-box {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
}

.footer-contact-box {
  padding-right: 25px;
}

.footer-contact-box .footer-info-box:last-child {
  margin-bottom: 0;
}

.footer-info-box .icon-box {
  position: absolute;
  top: 2px;
  left: 0;
}

.footer-info-box .icon-box i {
  color: var(--secondary-color);
  font-size: 20px;
}

.footer-info-box p, .footer-info-box a {
  font-size: 16px;
  color: var(--secondary-color);
  margin: 0;
}

.subscribe-content {
  width: 100%;
  max-width: 240px;
  margin-bottom: 15px;
}

.subscribe-content p {
  color: var(--secondary-color);
  text-transform: capitalize;
  font-size: 16px;
}

.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
}

.footer-copyright-text p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***    Contact Us css	  ***/
/************************************/
.contact-details-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-details-item-icon i{
  color: var(--accent-color);
  font-size: 30px;
}

.contact-details-item-content h5{
  font-weight: 500;
}
.contact-details-item-content p, .contact-details-item-content a{
  margin: 0;
  color: var(--text-color);
}
.contact-form {
  padding: 0;
}
.contact-us-form {
  background-color: var(--secondary-color);
  padding: 40px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.form-control {
  background-color: var(--white-color);
  padding: 18px;
  border: none;
}
/************************************/
/***    Page Header css	  ***/
/************************************/
.page-header {
  position: relative;
  padding: 150px 0px;
  background: linear-gradient(180deg, transparent 0%, #0e0d1b8c 40.5%),    url("../images/page-header/page-header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  margin-bottom: 40px;
}

.page-header::after {
  content: "";
  position: absolute;
  background-image: url(../images/white-squre-bg-img.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  z-index: 1;
}

.page-header-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-box h1 {
  color: var(--white-color);
  font-size: 80px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-header-box ol {
  display: inline-flex;
  margin-bottom: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1em;
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

/************************************/
/***    Packages Details css    ***/
/************************************/
.packages-details-content img {
  width: 100%;
  aspect-ratio: 1/.6;
}

.packages-details-content ul {
  padding-left: 1rem;
}

.packages-form {
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.form-control-sp {
  width: 60px;
  height: 30px;
}

/************************************/
/***      Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  #magic-cursor {
    display: none !important;
  }

  section {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

  .main-body {
    padding: 0 15px;
  }

  img {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }

  .topbar {
    display: none;
  }
  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 36px;
  }

  .section-title-content {
    text-align: left;
    margin-left: 0;
    margin-top: 15px;
  }

  .hero {
    padding: 100px 0 120px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

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

  .hero-content-title h1,
  .hero-content-title h2 {
    font-size: 60px;
  }

  .hero-content-body p {
    font-size: 16px;
  }

  .hero-slider-layout .hero-slide {
    padding: 100px 0 120px;
  }

  .hero-slider-layout .swiper-pagination {
    bottom: 50px;
  }

  .page-header{
    padding: 100px 0px;
    border-radius:20px ;
    -webkit-border-radius:20px ;
    -moz-border-radius:20px ;
    -ms-border-radius:20px ;
    -o-border-radius:20px ;
}

	.page-header-box h1{
		font-size: 60px;
		margin-bottom: 20px;
	}

	.page-header-box ol{
		padding: 10px 20px;
	}
}

@media only screen and (max-width: 767px) {
  .topbar-contact-info {
    text-align: center;
  }

  .topbar-social-links {
    display: none;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 30px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-content-title h3 {
    font-size: 16px;
  }

  .hero-content-title h1,
  .hero-content-title h2 {
    font-size: 40px;
  }

  .hero-content-footer .btn-default.btn-highlighted {
    margin-left: 0px;
    margin-top: 10px;
  }

  .hero-slider-layout .hero-slide {
    padding: 80px 0 80px;
  }

  .hero-slider-layout .swiper-pagination {
    bottom: 20px;
  }

  .page-header{
		padding: 60px 0px;
	}

	.page-header-box h1{
		font-size: 36px;
	}
}

@media only screen and (max-width: 576px) {
}
