/*--------------------------------------------------------------
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat[wght].ttf") format("truetype-variations");
  font-weight: 1 999;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  /* height of sticky header */
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

/* image-rendering */
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 992px) {
  .hide {
    display: none;
  }
}

.zsiq_custommain,
.zsiq_floatmain {
  z-index: 999 !important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e50780;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e50780;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  width: 100%;
  max-width: 275px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

#header .logo img {
  max-height: 55px;
  display: block;
  margin: 0 auto;
  text-align: center;
}
#header .social-list {
	column-gap: 10px;
    width: 167px;
}
#header .get-started-btn{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  width: max-content;
}
.header .get-started-btn:hover {
  transform: scale(1.08);
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #header .social-list {
    display:none!important;
  }
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/

.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background: #e50780;
}

.main-banner .get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  width: 200px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #e50780;
}

.get-started-btn:hover {
  background: #e50780;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #690fad;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #690fad;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #690fad;
  transform: scale(1.08);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #690fad;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.getstarted,
.navbar .getstarted:focus {
  background: #690fad;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #690fad;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.ri-close-line {
  color: #fff;
}

@media (max-width: 2000px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (min-width: 2001px) {

  .mobile-nav-toggle,
  #header .getstarted {
    display: none;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(105, 15, 173, 0.4);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* left: 15px; */
  /* padding: 10px 0; */
  background: #fff;
  overflow-y: auto;
  transition: 0.9s;
  border-radius: 4px;
  max-width: 300px;
  width: 100%;
  padding: 10px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #690fad;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(105, 15, 173, 0.4) 100%);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.btn-toggle{
  color: #fff;
  font-weight: bolder;
  font-size: 32px;
  border: none !important;
  box-shadow: unset !important;
}

#header .get-started-btn {
  display: flex;
  padding: 10px 30px;
  transition: 1s;
  box-shadow: 4px 4px 0 #fff;
  transform: unset;
}

#header .get-started-btn:focus {
  outline: none; 
}

#header .get-started-btn:hover {
  transition: 0.5s;
  color: white;
  box-shadow: 8px 8px 0 orange;
}

@media (max-width: 992px) {
  #header .hide {
    display: none !important;
  }

}

/*--------------------------------------------------------------
# header-detail
--------------------------------------------------------------*/
#header-detail {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow-y: auto;
  z-index: 99;
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#header-detail .container {
  padding: 110px 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  width: 100%;
}
#header-detail .pages-nav-item {
  margin-bottom: 20px;
}
#header-detail .pages-nav-item:last-child {
  margin-bottom: 0;
}
#header-detail .pages-nav-link {
  display: block;
  position: relative;
  z-index: 9;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
  color: #F2F5EA;
  line-height: 1.5;
  max-width: 290px;
  font-size: 1rem;
}
#header-detail .pages-nav-heading {
  font-weight: 700;
  font-size: 1.5rem;
  color: #F2F5EA;
}
#header-detail .pages-nav-link::after {
  content: "";
  color: #000;
  background: white;
  mix-blend-mode: exclusion;
  width: calc(100% + 20px);
  height: 0;
  position: absolute;
  bottom: -4px;
  left: -10px;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#header-detail .pages-nav-link:hover::after {
  height: calc(100% + 8px);
}
#header-detail.active {
  height: 100%;
}
#header-detail.active::after {
  position: fixed;
}
.header-detail-outer-box {
  width: 100%;
}
@media (max-width: 767px) {
  #header .logo,
  #header .logo img {
    max-width: 175px;
  }
}
@media (min-width: 768px) {
  #header-detail .col-md-3:last-child {
    border-left: 2px solid #fff;
    padding-left: 1rem;
  }
  /* width */
  #header-detail::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100dvh;
  position: relative;
  background: url("https://cdn.coredirection.com/cdn-cgi/image/quality=auto,width=auto,format=auto/coreunity-assets/img/hero-img.png") bottom center;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 32px;
}
#hero h3 {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 400;
}
#hero p {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 300;
}

#hero .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: #e50780;
}

#hero .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero h3 {
    color: #f1f1f1;
    margin: 6px 0 0 0;
    font-size: 16px;
    font-weight: 200;
}
#hero {
  width: 100%;
  height: 100dvh;
  position: relative;
  background: url("https://cdn.coredirection.com/cdn-cgi/image/quality=auto,width=auto,format=auto/coreunity-assets/img/hero-img.png") bottom center;
  background-size: cover;
}

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 0px;
  overflow: hidden;
}

.section-bg {
  background-color: #CAA8F5;
}

.section-title {
  text-align: center;
  /* margin: 0 15vw; */
  margin: 0 auto;
  max-width: 700px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: #690fad;
}

.section-title p {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.section-title p span {
  color: #690fad;
}
@media (max-width: 768px) {
  .section-title h2 {
     font-size: 28px;
	}
  /* .section-title {
  	text-align: center;
  	margin: 0 5vw;
} */
.section-title p {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  
}

  }
/*--------------------------------------------------------------
# timeline
--------------------------------------------------------------*/
#timeline h3 {
	color: #690fad;
}

/*--------------------------------------------------------------
# Line Up
--------------------------------------------------------------*/
#lineup h3 {
  margin-bottom: 30px;
}
#lineup h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
	
}

#lineup {
  margin: 70px 0;
  padding: 60px 0;
}

#lineup img {
  padding: 15px;
  border-radius: 12px !important;
}
#lineup {
	background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}

.grad_bg_1 {
  background: rgb(92, 42, 126);
  background: linear-gradient(180deg, rgba(92, 42, 126, 1) 10%, rgba(13, 11, 14, 1) 75%);
}

.grad_bg_2 {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(13, 11, 14, 1) 0%, rgba(92, 42, 126, 1) 100%);
}

.grad_bg_3 {
  background: rgb(81, 42, 126);
  background: linear-gradient(0deg, rgba(81, 42, 126, 1) 12%, rgba(229, 7, 128, 1) 35%, rgba(245, 126, 32, 1) 63%, rgba(195, 217, 59, 1) 88%);
}
.grad_bg_4 {
  background: rgb(81, 42, 126);
  background: linear-gradient(45deg, rgba(81, 42, 126, 1) 12%, rgba(229, 7, 128, 1) 35%, rgba(245, 126, 32, 1) 63%, rgba(195, 217, 59, 1) 88%);
}
.grad_bg_5 {
  background: rgb(81, 42, 126);
  background: linear-gradient(-45deg, rgba(245, 126, 32, 1) 0%, rgba(195, 217, 59, 1) 100%);
}
.grad_bg_6 {
  background: rgb(81, 42, 126);
  background: linear-gradient(-45deg, rgba(229, 7, 128, 1) 0%, rgba(245, 126, 32, 1) 100%);
}

.shadow_1 {
  box-shadow: 1px 88px 67px -49px rgba(13, 11, 14, 1) inset, 1px -107px 67px -22px rgba(13, 11, 14, 1) inset;
  -webkit-box-shadow: 1px 88px 67px -49px rgba(13, 11, 14, 1) inset, 1px -107px 67px -22px rgba(13, 11, 14, 1) inset;
  -moz-box-shadow: 1px 88px 67px -49px rgba(13, 11, 14, 1) inset, 1px -107px 67px -22px rgba(13, 11, 14, 1) inset;
}
.shadow_2 {
  box-shadow: 1px 50px 30px -49px rgba(13, 11, 14, 1) inset;
  -webkit-box-shadow: 1px 50px 30px -49px rgba(13, 11, 14, 1) inset;
  -moz-box-shadow: 1px 50px 30px -49px rgba(13, 11, 14, 1) inset;
}
@media (max-width: 992px) {
	.shadow_2 {
		display:none;
	}
}

/*--------------------------------------------------------------
# section
--------------------------------------------------------------*/
.section .content h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 40px;
}

.section .content ul {
  list-style: none;
  padding: 0;
}

.section .content ul li {
  padding-left: 28px;
  position: relative;
}

.section .content ul li+li {
  margin-top: 10px;
}

.section .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #690fad;
  line-height: 1;
}

.section .content p:last-child {
  margin-bottom: 15px;
}

.section .content .btn-learn-more {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #690fad;
}

.section .content .btn-learn-more:hover {
  background: #690fad;
  color: #fff;
  text-decoration: none;
}

.section .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#e50780 50%, rgba(229, 7, 128, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.section .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 1;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.section .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(229, 7, 128, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.section .play-btn:hover::after {
  border-left: 15px solid #e50780;
  transform: scale(20);
}

.section .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 2;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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


/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
#about {
  padding: 60px 0;
}

#about .iframe iframe {
  padding: 0px 100px 100px 100px;
  height: 1000px;
  width: 100%;
  border: none;
  margin-bottom: -200px;
}

@media (max-width: 992px) {
  #about .iframe iframe {
    padding: 0px;
    height: 1100px;
    border: none;
  }
  #about {
  padding: 30px 0;
}
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #clients {
    display: none;
  }
}

.clients img {
  width: 100%;
  max-height: 100px;
  transition: all 0.4s ease-in-out;
  display: block;
  padding: 10px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    display: block;
    width: 100%;
    max-height: 70px;
  }
}

/*===============================================
                    post-detail
===============================================*/
#post-detail {
  padding-top: 150px;
  padding-bottom: 150px;
  -webkit-box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.1);
}

#post-detail ul {
  list-style: none
}

#post-detail .container {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

#post-detail .btn-sidebar-toggle {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 215px;
  z-index: 999999;
  background-color: #ffffff;
  width: 40px;
  height: 28px;
  border: none;
  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;
}

@media (min-width: 992px) {
  #post-detail .btn-sidebar-toggle {
    display: none;
  }
}

#post-detail .btn-sidebar-toggle p {
  line-height: 0;
  font-weight: 700;
  margin-top: -6px;
}

#post-detail #aside {
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0;
  width: 100%;
  max-width: 25%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  #post-detail #aside {
    display: block !important;
    padding-left: 0rem;
  }
}

@media (max-width: 991px) {
  #post-detail #aside {
    display: none;
    width: 100%;
    max-width: 332px;
    padding-left: 0rem;
    padding-right: 2rem;
  }
}

#post-detail .aside-outer-box {
  position: fixed;
  padding-right: 0px;
}

#post-detail .aside-inner-box {
  max-width: 290px;
  padding-right: 17px;
  padding-bottom: 100px;
  height: calc(100dvh - 25dvh);
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
}

#post-detail .aside-inner-box::-webkit-scrollbar {
  width: 7px;
}

#post-detail .aside-inner-box::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.45);
}

#post-detail .aside-inner-box::-webkit-scrollbar-thumb {
  background: #737373;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#post-detail .brand-img {
  max-width: 107px;
  margin-bottom: 41px;
}

#post-detail .aside-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-bottom: 41px;
  padding-left: 16px;
  padding-right: 16px;
}

#post-detail .aside-subnav-list {
  margin-left: 15px;
}

#post-detail .aside-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: left;
  color: #272727;
  margin-bottom: 15px;
  margin-top: 5px;
  display: inline-block;
}

#post-detail .aside-link:hover {
  color: #690fad;
}

#post-detail .aside-link.active {
  color: #690fad;
}

#post-detail .aside-subnav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: #272727;
  margin-bottom: 15px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;

}

#post-detail .aside-subnav-link:hover {
  color: #690fad;
  text-decoration: underline;
}

#post-detail .aside-subnav-link.active {
  color: #690fad;
  text-decoration: underline;
}

#post-detail #content {
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
}

@media screen and (min-width: 992px) {
  #post-detail #content {
    width: 68%;
  }
}

#post-detail .btn-back {
  display: block;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

#post-detail .title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
  text-align: left;
  margin-bottom: 36px;
}

#post-detail .sub-section {
  margin-bottom: 50px;
}

#post-detail .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  margin-bottom: 24px;
}

#post-detail .subsection-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-align: left;
  margin-bottom: 18px;
}

#post-detail .subsection-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-bottom: 24px;
}

#post-detail .section-img {
  width: 100%;
  margin-bottom: 18px;
}

#post-detail .subsection-desc-list {
  list-style: none;
  margin-bottom: 24px;
}

#post-detail .subsection-desc-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

#post-detail .section-list {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}

#post-detail .section-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

#post-detail .dashboard-overview-list {
  list-style: none;
  margin-left: 24px;
  margin-bottom: 24px;
}

#post-detail .dashboard-overview-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

#post-detail .dashboard-overview-item::before {
  content: counter(li);
  counter-increment: li;
  color: #ff9d0b;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.scroll-padding-top {
  scroll-padding-top: 4rem;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #690fad;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #690fad;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #690fad;
}

.contact .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  height: 100%;
}

.contact .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #690fad;
}

.contact .box h4 {
  font-size: 42px;
  color: #690fad;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.contact .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.contact .box h4 span {
  color: #690fad;
  font-size: 16px;
  font-weight: 300;
}

.contact .box ul {
  padding: 0;
  list-style: none;
  color: #000;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.contact .box ul li {
  padding-bottom: 16px;
}

.contact .box ul li span {
  font-weight: 700;
}

.contact .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2487ce;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}

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

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

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

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


/*--------------------------------------------------------------
#page-not-found
--------------------------------------------------------------*/
#page-not-found {
  padding-top: 0px;
  padding-bottom: 0px;
}

#page-not-found .container {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}

#page-not-found .page-not-found-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 226px;
  font-weight: 700;
  line-height: 323px;
  color: #690FAD;
  margin: 0;
}

@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-title {
    font-size: 96px;
    line-height: 169px;
  }
}

#page-not-found .page-not-found-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 0px;
  color: #690FAD;
  margin: 0;
}

@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-subtitle {
    font-size: 18px;
  }
}

#page-not-found .page-not-found-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 45px;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-desc {
    font-size: 14px;
    line-height: 16px;
    margin-top: 25px;
    margin-bottom: 32px;
  }
}

#page-not-found .btn-page-not-found {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  color: #FFFFFF;
  background-color: #690FAD;
  padding: 9px 42px 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#page-not-found .btn-book-activity {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  color: #FFFFFF;
  background-color: #690FAD;
  padding: 9px 42px 10px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

@media screen and (max-width: 991px) {

  #page-not-found .btn-page-not-found,
  #page-not-found .btn-book-activity {
    font-size: 14px;
    line-height: 16px;
    padding: 8px 30px 9px;
  }
}

#page-not-found .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  row-gap: 10px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 991px) {
  #page-not-found .btn-box {
    column-gap: 10px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding-top: 70px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
#footer-coreunity {
  padding-top: 70px;
  background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  z-index: 1;
  position: relative;
  overflow: hidden;
}
#footer::after{
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: 0;
  bottom: -22px;
  background-image: url("https://cdn.coredirection.com/cdn-cgi/image/quality=auto,width=auto,format=auto/coreunity-assets/img/coreicon_colored.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"],
ul[role="group"],
ol[role="group"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer img {
  display: inline-block;
}

#footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  row-gap: 50px;
  padding-bottom: 30px;
}

#footer .footer-mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  row-gap: 50px;
  border-top: 1px solid #eee;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  #footer .footer-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #footer .footer-mid {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #footer::after{
    width: 220px;
    height: 220px;
  }
  #footer .container .mid-links{
    margin-top: 0 !important;
  }
  #footer .container .mid-links:first-child{
    margin-top: 30px !important;
  }
  #footer .footer-mid {
    row-gap: 0;
  }
  #footer .mid-links p {
    font-size: 16px !important;
  }
  #footer .mid-links li {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 500px) {
  #footer .footer-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#footer .container .info {
  width: 100%;
  max-width: 373px;
  margin-right: 60px;
  margin-top: -5px;
}

@media screen and (max-width: 500px) {
  #footer .container .info {
    margin-right: 0;
  }
}

#foote .container .info img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
}

#footer .container .info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 11px;
  color: #000;
  text-align: justify;
}

@media screen and (max-width: 991px) {
  #footer .container .info p {
    line-height: 22px;
  }
}

#footer .container .links {
  width: 100%;
  max-width: 200px;
  margin-right: auto;
  color: #000;
}

#footer .container .mid-links {
  width: 100%;
  max-width: 200px;
  color: #000;
  margin: 30px 0;
}

#footer .mid-links p {
  color: #444;
  font-weight: 600;
  font-size: 14px;
}

#footer .mid-links li {
  color: #777;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
}

#footer .mid-links a {
  color: #777;
}

#footer .mid-links a:hover {
  color: #690fad;
}

@media screen and (max-width: 991px) {
  #footer .container .links {
    margin-right: 0;
  }
}

#footer .links p {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 34px;
  color: #000;
}

#footer .container .links button,
#footer .container .links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  color: #000;
}

#footer .container .links button:hover,
#footer .container .links a:hover {
  color: #690fad;
	  font-weight: 500;
}

#footer .container .links:nth-last-child(1) {
  margin-right: 0;
}

#footer .social-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
}

#footer .footer-bottom {
  border-top: 1px solid #222;
}

#footer .copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #000;
  margin-bottom: 0;
}
#footer-coreunity .footer-bottom {
  border-top: 1px solid #f2f2f2;
}

#footer-coreunity .copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  margin-bottom: 0;
}
#footer-coreunity .copyright a {
  color: #fff;
}
#footer .container .info img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 25px;
}

/*--------------------------------------------------------------
# sm-fixed-bar
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .sm-fixed-bar {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .back-to-top {
    display: none !important;
  }

  .sm-fixed-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sm-fixed-bar .title {
    font-weight: 600;
    font-size: 26px;
    margin: 0;
    line-height: 40px;
  }

  .sm-fixed-bar .desc {
    font-size: 1.1rem;
    text-align: left;
    font-weight: 400;
    margin: 0;
    line-height: 1;
  }

  .sm-fixed-bar .btn-book {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    display: block;
    padding: 9px 30px 10px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 0;
    color: #fff;
    background: #e50780;
    margin-left: auto;
    width: fit-content;
  }
}

/*--------------------------------------------------------------
# Partner with us landing page 
--------------------------------------------------------------*/

.hero-area-l-16 {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media (min-width: 480px) {
  .hero-area-l-16 {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-16 {
    padding-top: 78px;
    padding-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .hero-area-l-16 .content .hero-btns btn {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-area-l-16 {
    padding-top: 160px;
    padding-bottom: 110px;
  }
}

.hero-area-l-16 .content {
  position: relative;
  z-index: 5;
  padding-top: 25px;
}

@media (min-width: 992px) {
  .hero-area-l-16 .content {
    padding-right: 5px;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-16 .content {
    padding-right: 0;
  }
}

@media (min-width: 1600px) {
  .hero-area-l-16 .content {
    padding-right: 82px;
  }
}

.hero-area-l-16 .content h6 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 2.8125px;
  text-transform: uppercase;
  color: #666666;
}

.hero-area-l-16 .content h1 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: -0.3px;
  color: #000;
  margin: 27px 0px 10px 0px;
}

@media (max-width: 768px) {
  .hero-area-l-16 .content h1 {
    margin: 50px 0px 10px 0px;
  }
}

@media (min-width: 576px) {
  .hero-area-l-16 .content h1 {
    font-size: 40px;
    line-height: 52px;
    margin: 50px 0px 10px 0px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-16 .content h1 {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-16 .content h1 {
    font-size: 56px;
    line-height: 68px;
  }
}

.hero-area-l-16 .content p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 34px;
  color: #000000;
  margin: 15px 0px 30px 0px;
}

.hero-area-l-16 .content .hero-btns {
  margin: 0px -7px -15px -7px;
  text-align: left;
}

.hero-area-l-16 .content .hero-btns a {
  margin: 0px 7px 15px 7px;
}

.hero-area-l-16 .content .hero-btns i {
  margin-right: 15px;
  font-size: x-large;
}

.hero-area-l-16 .content .hero-btns .btn {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  width: 200px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
}

.hero-area-l-16 .content .hero-btns .btn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

.hero-area-l-16 .content .hero-btns .btn1 {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
}

.hero-area-l-16 .content .hero-btns .btn1:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

.hero-area-l-16 .star-ratings {
  margin-top: 20px;
}

.hero-area-l-16 .star-ratings .star-dif-color {
  color: #E5E5E5;
}

.hero-area-l-16 .star-ratings i {
  color: #CAA8F5;
}

.hero-area-l-16 .star-ratings .rating-text {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.32381px;
  color: #535659;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .hero-area-l-16 .star-ratings .rating-text {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .hero-area-l-16 .star-ratings .rating-text {
    display: block;
    margin: 0;
  }
}

.hero-area-l-16 .hero-shape-1 {
  position: absolute;
  bottom: 0;
  left: 7%;
}

.hero-area-l-16 .hero-img {
  margin-top: 45px;
}

@media (min-width: 992px) {
  .hero-area-l-16 .hero-img {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-area-l-16 .hero-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
  }
}

.hero-area-l-16 .hero-img .hero-shape-2 {
  position: absolute;
  top: 0;
  left: -45px;
  z-index: -1;
  width: 87%;
}

@media (min-width: 1200px) {
  .hero-area-l-16 .hero-img .hero-shape-2 {
    width: initial;
  }
}

.header-btn-l-16 .download-btn {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -1px;
  color: #fff;
  min-width: 152px;
  height: 40px;
  background: #258AFF;
  box-sizing: border-box;
  border-radius: 3px;
  margin-left: 15px;
}

/*--------------------------------------------------------------
# White labelled booking solution landing page 
--------------------------------------------------------------*/

.hero-area-l-17 {
  background: #ffffff;
}

@media (min-width: 480px) {
  .hero-area-l-17 {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-17 {
    padding-top: 78px;
    padding-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .hero-area-l-17 .content .hero-btns btn {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-area-l-17 {
    padding-top: 160px;
    padding-bottom: 110px;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-17 {
    padding-top: 100px;
    padding-bottom: 0px;
  }
}

.hero-area-l-17 .content {
  z-index: 5;
  margin: 0;
  position: absolute;
  margin-top: 100px;

}

.hero-area-l-16 .hero-shape-1 {
  position: absolute;
  bottom: 0;
  left: 7%;
}

@media (min-width: 992px) {
  .hero-area-l-17 .content {
    padding-right: 5px;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-17 .content {
    padding-right: 0;
  }
}

.hero-area-l-16 .hero-img .hero-shape-2 {
  position: absolute;
  top: 0;
  left: -45px;
  z-index: -1;
  width: 87%;
}

@media (min-width: 1200px) {
  .hero-area-l-16 .hero-img .hero-shape-2 {
    width: initial;
  }
}

@media (min-width: 1600px) {
  .hero-area-l-17 .content {
    padding-right: 82px;
  }
}

.hero-area-l-17 .content h6 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 2.8125px;
  text-transform: uppercase;
  color: #666666;
}

.hero-area-l-17 .content h1 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: -0.3px;
  color: #000;
  margin: 27px 0px 20px 0px;
}

@media (min-width: 576px) {
  .hero-area-l-17 .content h1 {
    font-size: 40px;
    line-height: 52px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-17 .content h1 {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-17 .content h1 {
    font-size: 56px;
    line-height: 68px;
  }
}

.hero-area-l-17 .content p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 34px;
  color: #000000;
  margin: 30px 0px 30px 0px;
}

.hero-area-l-17 .content .hero-btns {
  margin: 0px -7px -15px -7px;
  text-align: left;
}

.hero-area-l-17 .content .hero-btns a {
  margin: 0px 7px 15px 7px;
}

.hero-area-l-16 .content .hero-btns i {
  margin-right: 15px;
  font-size: x-large;
}

.hero-area-l-17 .content .hero-btns .btn {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  width: 200px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
}

.hero-area-l-17 .content .hero-btns .btn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

.hero-area-l-17 .star-ratings {
  margin-top: 20px;
}

.hero-area-l-17 .star-ratings .star-dif-color {
  color: #E5E5E5;
}

.hero-area-l-17 .star-ratings i {
  color: #CAA8F5;
}

.hero-area-l-17 .star-ratings .rating-text {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.32381px;
  color: #535659;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .hero-area-l-17 .star-ratings .rating-text {
    font-size: 17px;
  }

  .hero-area-l-17 .hero-img {
    margin-top: 0px;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .hero-area-l-17 .star-ratings .rating-text {
    display: block;
    margin: 0;
  }
}

.hero-area-l-17 .hero-img {
  margin-top: 0px;
  max-width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .hero-area-l-17 .hero-img {
    margin-top: 0;
    width: 100%;
  }
}


.header-btn-l-17 .download-btn {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -1px;
  color: #fff;
  min-width: 152px;
  height: 40px;
  background: #258AFF;
  box-sizing: border-box;
  border-radius: 3px;
  margin-left: 15px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Feature Area-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.feature-area-l6 {
  padding-top: 60px;
  padding-bottom: 60px;
}



@media (min-width: 768px) {
  .feature-area-l6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .feature-area-l6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.feature-area-l6 .feature-area-l6-items {
  margin-bottom: -30px;
}

.feature-area-l6 .feature-area-l6-items .col-lg-4 {
  margin-bottom: 30px;
  text-align: center;
}

/* @media (min-width: 992px) {
  .feature-area-l6 .content-area {
    padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .feature-area-l6 .content-area {
    padding-right: 96px;
  }
} */

.feature-area-l6 .content-area h1 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  color: #690fad;
  mix-blend-mode: normal;
  margin-bottom: 40px;
}

.feature-area-l6 .content-area h6 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 34px;
  color: #000000;
  margin-bottom: 25px;
}

.feature-area-l6 .content-area p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 34px;
  color: #323232;
  margin-bottom: 0;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Content Area 1-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.content-area-1-l-16 .content {
  padding-top: 45px;

}

.content-area-1-l-1 {
  padding-top: 150px;
  min-height: 75dvh;
}

.content-area-1-l-16 .image-area-right {
  height: 75dvh;
}

.content-area-1-l-16 .image-area-right img {
  margin-right: 0;
}

.content-area-1-l-16 .image-area-left {
  height: 75dvh;
}

.content-area-1-l-16 .image-area-left img {
  margin-left: 0;
}


@media (max-width: 992px) {
  .content-area-1-l-16 .image-area-right img {
    display: none;
  }

  .content-area-1-l-16 .image-area-left img {
    display: none;
  }
}

.content-area-1-l-16 .ctabtn {
  margin-left: 0;
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background: #690fad;
  margin-top: 15px;
  margin-bottom: 100px;

}

.content-area-1-l-16 .ctabtn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .content-area-1-l-16 .content {
    padding-top: 45px;
  }
}

.content-area-1-l-16 .content span {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  background: #CAA8F5;
  border-radius: 15px;
  padding: 8px 20px;
  margin-bottom: 30px;
  align-items: center;
}

.content-area-1-l-16 .content span i {
  margin-right: 10px;
}

@media (min-width: 992px) {
  .content-area-1-l-16 .image-area {
    margin-bottom: -155px;
  }
}

.content-area-1-l-16 .image-area img {
  border-radius: 55px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Content Area 2-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.content-area-2-l-16 {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .content-area-2-l-16 {
    padding-top: 30px;
  }
}

@media (min-width: 992px) {
  .content-area-2-l-16 {
    padding-top: 30px;
  }
}

.content-area-2-l-16 .content {
  padding-top: 45px;
}

@media (min-width: 992px) {
  .content-area-2-l-16 .content {
    padding-top: 0px;
  }
}

.content-area-2-l-16 .content h2 {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .content-area-2-l-16 .content h2 {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .content-area-2-l-16 .img img {
    width: 50px;
    display: block;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .content-area-2-l-16 .content h2 {
    margin-bottom: 70px;
  }
}

.content-area-2-l-16 .content .single-item {
  margin-bottom: 40px;
}

.content-area-2-l-16 .content .single-item i {
  margin-right: 25px;
  color: #690fad;
  line-height: 55px;
  text-align: center;
  font-size: 34px;
}

.content-area-2-l-16 .content .content-body {
  margin-top: -8px;
}

.content-area-2-l-16 .content .content-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 34px;
  color: #000000;
}

.content-area-2-l-16 .content .content-body p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 34px;
  color: #323232;
}

.content-area-2-l-16 .content .content-body li {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 34px;
  color: #323232;
}

@media (min-width: 992px) {
  .content-area-2-l-16 .image-area {
    margin-bottom: -155px;
  }
}

.content-area-2-l-16 .image-area img {
  border-radius: 55px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Content Area 3-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.content-area-3-l-16 {
  margin-top: 0px;
  margin-bottom: 60px;
}

.content-area-3-l-16 .margin-top {
  margin: 60px 0px;
}

@media (max-width: 767px) {
  .content-area-3-l-16 {
    margin-top: 0px;
  }

  /* .content-area-3-l-16 .col-xl-6{
    padding: 0;
  } */
  .content-area-3-l-16 .image-area-right img {
    width: 100%;
    display: block;
    /* max-width: 380px; */
    /* max-height: 272px; */
    margin-bottom: 34px;
  }

  .content-area-3-l-16 .image-area-left img {
    width: 100%;
    display: block;
    /* max-width: 380px; */
    /* max-height: 272px; */
    margin-bottom: 34px;
  }
}

.content-area-3-l-16 .content h2 {
  line-height: 42px;
  margin-bottom: 8px;
}

.content-area-3-l-16 .content p {
  line-height: 32px;
  margin-bottom: 16px;
}

.content-area-3-l-16 .content ul {
  list-style: none;
  line-height: 30px;
}

.content-area-3-l-16 .content i {
  color: #690fad;
}

@media (min-width: 992px) {
  .content-area-3-l-16 .content {
    padding-top: 0px;
  }
}

.content-area-3-l-16 .content span {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  background: #CAA8F5;
  border-radius: 15px;
  padding: 8px 20px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
}

.content-area-3-l-16 .content span i {
  margin-right: 10px;
}

@media (min-width: 992px) {
  .content-area-3-l-16 .image-area {
    margin-bottom: -155px;
  }
}

.content-area-3-l-16 .image-area img {
  border-radius: 55px;
}

.content-area-3-l-16 .ctabtn {
  margin-left: 0;
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
  margin-top: 15px;
  margin-bottom: 50px;
  text-align: center;
}

.content-area-3-l-16 .ctabtn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
      ScreenShot Area-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.screenshot-area-l-16 {
  background: #CAA8F5;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .screenshot-area-l-16 {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .screenshot-area-l-16 {
    padding-top: 100px;
    padding-bottom: 110px;
  }
}

.screenshot-area-l-16 .section-heading-10 h2 {
  color: #fff;

}

.screenshot-area-l-16 .section-heading-10 p {
  color: #fff;

}

.screenshot-slider-wrapper-l-16 {
  position: relative;
  margin-top: 20px;
}

.screenshot-slider-wrapper-l-16 .screenshot-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  min-height: 720px !important;
  max-height: 720px !important;
}

@media (min-width: 690px) {
  .screenshot-slider-wrapper-l-16 .screenshot-image {
    width: 274px;
    min-height: 720px !important;
    max-height: 720px !important;
    margin-bottom: 0;
  }
}


@media (min-width: 690px) {
  .screenshot-slider-wrapper-l-16 .screenshot-image img {
    width: 100%;
    border-radius: 20px;
  }
}

.screenshot-slider-wrapper-l-16 .screenshot-image-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 690px) {
  .screenshot-slider-wrapper-l-16 .screenshot-image-1 {
    width: 325px;
    min-height: 720px !important;
    max-height: 720px !important;
    margin-bottom: 0;
  }
}


@media (min-width: 690px) {
  .screenshot-slider-wrapper-l-16 .screenshot-image-1 img {
    width: 100%;
  }
}

.screenshot-slider-wrapper-l-16 .phone-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 11;
  display: none;
}

@media (min-width: 690px) {
  .screenshot-slider-wrapper-l-16 .phone-bg-img {
    display: block;
    transform: translate(-50%, -50%);
  }
}

.screenshot-slider-wrapper-l-16 .screenshot-slider .slick-list {
  margin: 0 -23.5px;
}

.screenshot-slider-wrapper-l-16 .screenshot-slider .slick-slide {
  opacity: .5;
  transition: 0.4s;
}

.screenshot-slider-wrapper-l-16 .screenshot-slider .slick-center {
  opacity: 1;
  border-radius: 40px;
  max-height: 720px !important;
  transform: scale(1.1);
  min-height: 690px;
}

.screenshot-slider-wrapper-l-16 .screenshot-slider .slick-center img {
  border-radius: 40px;
}

.screenshot-slider-wrapper-l-16 .l-16-slide-btn {
  position: absolute;
  right: 31%;
  top: 49%;
  height: 56px;
  width: 56px;
  line-height: 56px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #fff;
  transition: .4s;
  z-index: 1;
}

@media (min-width: 576px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn {
    left: 12%;
  }
}

@media (min-width: 768px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn {
    left: 12%;
  }
}

@media (min-width: 992px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn {
    left: 23%;
  }
}

.screenshot-slider-wrapper-l-16 .l-16-slide-btn.active {
  background: #690fad;
  color: #fff !important;
  border: 1px solid #690fad;
}

.screenshot-slider-wrapper-l-16 .l-16-slide-btn:hover {
  background: #690fad;
  color: #fff !important;
  border: 1px solid #690fad;
}

.screenshot-slider-wrapper-l-16 .l-16-slide-btn.slick-next {
  left: 31%;
}

@media (min-width: 576px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn.slick-next {
    left: auto;
    right: 12%;
  }
}

@media (min-width: 768px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn.slick-next {
    left: auto;
    right: 12%;
  }
}

@media (min-width: 992px) {
  .screenshot-slider-wrapper-l-16 .l-16-slide-btn.slick-next {
    left: auto;
    right: 23%;
  }
}

.screenshots-dots-l-16 ul.slick-dots {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.screenshots-dots-l-16 ul.slick-dots li {
  cursor: pointer;
  display: inline-block;
  width: 6px;
  height: 6px;
  font-size: 0;
  background: #fff;
  margin: 0 7px;
}

.screenshots-dots-l-16 ul.slick-dots li button {
  display: none;
}

.screenshots-dots-l-16 .slick-dots {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 4.5px;
}

.screenshots-dots-l-16 .slick-dots li {
  border: none;
  list-style: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  color: transparent;
  opacity: 0.3;
}

.screenshots-dots-l-16 .slick-dots li:focus {
  outline: none;
  box-shadow: none;
}

.screenshots-dots-l-16 .slick-dots li.slick-active {
  background-color: #fff !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Testimonial Area-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.testimonial-area-l-16 {
  background: #CAA8F5;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .testimonial-area-l-16 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .testimonial-area-l-16 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.partners {
  margin-top: 60px;
  padding: 0px 0;
  text-align: center;
}

.partners img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 110px;
  transition: all 0.4s ease-in-out;
  display: block;
  padding: 5px 0px;
}

.partners img:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .partners img {
    max-width: 75%;
    margin: 25px 0;
  }
}

@media (max-width: 991px) {
  .mob-hide {
    display: none;
  }
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Newsletter Area-L-16
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.newsletter-area-l-16 {
  background: url("https://cdn.coredirection.com/cdn-cgi/image/quality=auto,width=auto,format=auto/landing-page/assets/img/hero-bg.jpg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 60px;

}

.newsletter-area-l-16:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.newsletter-area-l-16 .container {
  position: relative;
}

.newsletter-area-l-16 .newsletter-btns .btn {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
  margin-left: 7px;
  margin-right: 7px;
}

.newsletter-area-l-16 .newsletter-btns .btn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .newsletter-area-l-16 {
    padding-top: 80px;
    padding-bottom: 75px;
  }
}

@media (min-width: 992px) {
  .newsletter-area-l-16 {
    padding-top: 110px;
    padding-bottom: 105px;
  }
}

.newsletter-area-l-16 .newsletter-area-shape {
  position: absolute;
  bottom: 0;
  left: 5%;
}

.newsletter-area-l-16 .content .icon-box i {
  height: 84px;
  width: 84px;
  line-height: 84px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: #690fad;
  font-size: xxx-large;
  margin-bottom: 28px;
}

@media (max-width: 480px) {
  .newsletter-area-l-16 .content .icon-box i {
    font-size: xxx-large;
  }
}

.newsletter-area-l-16 .content h2 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: -0.345px;
  color: #000000;
  margin-bottom: 40px;
}

.newsletter-area-l-16 .content p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 0;
  margin-top: 35px;
}


.newsletter-area-l-16 .newsletter-btns .btn {
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px 15px 25px;
  width: 200px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
  margin-bottom: 15px;
}

.newsletter-area-l-16 .newsletter-btns .btn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# info Section
--------------------------------------------------------------*/
#info {
  background: linear-gradient(0deg, rgba(81, 42, 126, 1) 12%, rgba(229, 7, 128, 1) 35%, rgba(245, 126, 32, 1) 63%, rgba(195, 217, 59, 1) 88%);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#info h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 50px;
}

#info h3 {
	color: #DEDEDE;
	margin-bottom: 150px;
}
#info i {
	/* color: rgba(255,255,255,0.6); */
	color: #fff;
	font-size: 50px;
	padding: 10px;
}
#info .img-box {
	margin: 0;	
	transition: 0.5s;
    position: relative;
}
#info .img-box h2 {
	z-index: 2;
}
#info .img-cont .img-box img{
	width: 100%;
  height: 100%;
  aspect-ratio: 1/1;	
  object-fit: cover;
  object-position: center;
  max-height: 336px;
}
#info .img-cont:hover .img-box {
	transform: scale(1.1);	
}
#info .img-cont .img-box:before {
	content:"";
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.2) 100%);
	z-index:1;
}
#info .img-cont:hover .img-box:before {
	content:"";
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
    background: linear-gradient(90deg, rgba(229, 7, 128, 0.2) 0%, rgba(158, 24, 127, 0.2) 36%, rgba(81, 42, 126, 0.2) 100%);
	z-index:1;
}


#info .inner-box{
  display: block;
	overflow:hidden;
	color: #fff;
}
#info .img-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#info .img-cont {
	padding: 10px 5px 10px 5px;
	margin: 0;
	position: relative;
    text-align: center;
    color: #fff;
	transition: 0.5s;
	overflow: hidden;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Legal 
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
#legal {
  padding-top: 150px;
  padding-bottom: 50px;
}

#legal .custom-container {
  min-height: 799px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 22px 40px rgb(0 0 0 / 10%);
  box-shadow: 0px 22px 40px rgb(0 0 0 / 10%);
  position: relative;
  padding-top: 57px;
  padding-bottom: 72px;
  margin-top: 10px;
  margin-bottom: 50px;
  overflow: hidden;
  width: 100%;
  max-width: calc(1173px + 2rem);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  #legal .custom-container {
    margin-top: 11px;
    border-radius: 11px;
  }
}

#legal .legal-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
  border-radius: 11px 0px 0px 11px;
  overflow: hidden;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#legal .legal-sidebar .legal-sidebar-outer-box {
  width: 299px;
  padding: 55px 41px 25px;
}

#legal .legal-sidebar .legal-sidebar-outer-box .btn-sidebar-toggle {
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
}

@media screen and (max-width: 991px) {
  #legal .legal-sidebar .legal-sidebar-outer-box {
    padding: 55px 25px 25px;
  }
}

#legal .legal-sidebar .sidebar-menu-list {
  margin-top: 52px;
  list-style: none;
  overflow-y: auto;
  max-height: 487px;
  padding-right: 5px;
  /* width */
  /* Track */
  /* Handle */
}

#legal .legal-sidebar .sidebar-menu-list::-webkit-scrollbar {
  width: 3px;
}

#legal .legal-sidebar .sidebar-menu-list::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#legal .legal-sidebar .sidebar-menu-list::-webkit-scrollbar-thumb {
  background: #690FAD;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-item,
#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  margin-bottom: 17px;
  color: #000000;
  cursor: pointer;
}

#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-item:hover,
#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-link:hover {
  color: #690FAD;
}

#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-item:hover::before,
#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-link:hover::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 8px;
  width: 10px;
  height: 1px;
  background-color: #690FAD;
}

#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-item.active {
  color: #690FAD;
}

#legal .legal-sidebar .sidebar-menu-list .sidebar-menu-item.active::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 8px;
  width: 10px;
  height: 1px;
  background-color: #690FAD;
}

#legal .legal-sidebar .sidebar-submenu-list {
  padding-left: 10px;
  list-style: none;
  margin-top: -10px;
  margin-bottom: 10px;
}

#legal .legal-sidebar .sidebar-submenu-list .sidebar-submenu-item,
#legal .legal-sidebar .sidebar-submenu-list .sidebar-submenu-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-align: left;
  color: #000000;
  margin-top: 7px;
  margin-bottom: 7px;
  cursor: pointer;
}

#legal .legal-sidebar .sidebar-submenu-list .sidebar-submenu-list {
  padding-left: 16px;
  padding-top: 7px;
}

#legal .legal-content-header {
  margin-bottom: 67px;
}

#legal .legal-content-header .legal-content-header-outer-box {
  max-width: calc(1076px - 2rem);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

#legal .legal-content-header .btn-sidebar-toggle {
  width: 42px;
  float: left;
  background: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
}

#legal .legal-content-header .btn-search-bar-toggle {
  width: 32px;
  float: right;
}

#legal .legal-content-header .legal-content-header-inner-box {
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

#legal .legal-content-header .legal-content-header-inner-box .legal-content-header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  text-align: center;
  color: #690FAD;
}

#legal .legal-content-header .legal-content-header-inner-box .legal-content-header-search-field {
  display: none;
  width: 100%;
  height: 42px;
  background-color: #F1F1F1;
  padding: 12px 20px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

#legal .legal-content-body .legal-content-body-outer-box {
  max-width: calc(850px - 3rem);
  padding-left: 1rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
  height: 100%;
  max-height: 70dvh;
  /* width */
  /* Track */
  /* Handle */
}

#legal .legal-content-body .legal-content-body-outer-box::-webkit-scrollbar {
  width: 9px;
}

#legal .legal-content-body .legal-content-body-outer-box::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#legal .legal-content-body .legal-content-body-outer-box::-webkit-scrollbar-thumb {
  background: #690FAD;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#legal .legal-content-body .sidebar-item-content-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  color: #000000;
  margin-bottom: 5px;
}

#legal .legal-content-body .sidebar-item-content-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  color: #000000;
  margin-bottom: 16px;
  font-style: italic;
}

#legal .legal-content-body .sidebar-item-content-title.active {
  color: #690FAD;
}

#legal .legal-content-body .sidebar-item-content-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  color: #000000;
  margin-bottom: 10px;
}

#legal .legal-content-body .sidebar-item-content-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 17px;
  color: #000000;
}

#legal .legal-content-body .section-title-list {
  list-style: disc;
  margin-bottom: 20px;
  padding-left: 17px;
}

#legal .legal-content-body .external-link {
  color: #690FAD;
  text-decoration: underline;
  word-break: break-all;
}

#legal .legal-content-body .section-title-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
  color: #000000;
}

#legal .legal-content-body .subsection-list {
  list-style-type: circle;
  padding-left: 20px;
  margin-bottom: 16px;
}

#legal .legal-content-body .subsection-list .subsection-list {
  list-style-type: square;
}

#legal .legal-content-body .subsection-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
  color: #000000;
}

#legal .legal-content-body .certified-privacy {
  width: 100%;
  max-width: 150px;
  margin-bottom: 17px;
}

#legal .legal-content-body table {
  width: 100%;
}

#legal .legal-content-body th {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 17px;
  color: #000000;
}

#legal .legal-content-body td {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
  color: #000000;
}

#legal .legal-content-footer {
  margin-top: 37px;
}

#legal .legal-content-footer .rounded-full {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  -webkit-filter: drop-shadow(0px 7px 11px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 7px 11px rgba(0, 0, 0, 0.1));
}

#legal .legal-content-footer .btn-cancel {
  padding: 14px 53px;
  color: #000000;
  background-color: #FFFFFF;
  margin-right: 6px;
}

#legal .legal-content-footer .btn-accept {
  padding: 14px 43px;
  color: #FFFFFF;
  background-color: #690FAD;
  margin-left: 6px;
}

/*--------------------------------------------------------------
# RunRide
--------------------------------------------------------------*/

#runride  {
	color: #fff;
}
#runride .row {
  --bs-gutter-x: 0rem!important;
}

#runride h3 {
	font-weight: 500;
	line-height: 1.2;
	text-align: right;
}
#runride ul {
	text-align: right;
	list-style: none;
	line-height: 1.8;
	font-size: 18px;
}
#runride a {
	float: right;
}


#runride img:hover {
	transform: scale(1.05);
	transition: ease-in-out 0.3s;
	
}

#runride .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 5px 30px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 5px;
  color: #fff;
  border: solid 3px #fff;
}

#runride .btn-get-started:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {

#runride h3 {
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
}
#runride ul {
	text-align: left;
	list-style: none;
	line-height: 1.8;
	font-size: 18px;
}
#runride a {
	float: left;
}





}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Contact 
  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

#customer-support {
  position: relative;
  z-index: 99;
  overflow: unset;
  padding: unset;
}

#customer-support .customer-support-box-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  #customer-support .customer-support-box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -180px;
    -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
  }
}

#customer-support .customer-support-form {
  width: 100%;
  background-color: #FFFFFF;
}

@media screen and (min-width: 992px) {
  #customer-support .customer-support-form {
    padding: 0px 0px 50px;
  }
}

@media screen and (max-width: 991px) {
  #customer-support .customer-support-form {
    padding: 0px 0px 25px;
    -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
  }
}

@media screen and (max-width: 768px) {
  #customer-support .customer-support-form {
    padding: 0px 0px 25px;
    -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.25);
  }
}

@media screen and (min-width: 992px) {
  #customer-support .customer-support-form .flexgroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 21px;
    column-gap: 21px;
  }
}

#customer-support .customer-support-form .form-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #690fad;
  line-height: 22px;
  text-align: center;
  margin: 50px 0 20px 0;

}

#customer-support .customer-support-form .form-title p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  text-align: center;
  margin: 20px 50px;
}

#customer-support .customer-support-form .group {
  position: relative;
  margin-bottom: 31px;
}

#customer-support .customer-support-form .group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  position: absolute;
  top: 20px;
  padding: 0;
  color: #000000 !important;
  -webkit-transition: top .2s ease-in-out, font-size .2s ease-in-out;
  transition: top .2s ease-in-out, font-size .2s ease-in-out;
}

#customer-support .customer-support-form .group .active {
  font-weight: 300;
  top: 0px;
  left: 0;
  color: #000000 !important;
}

#customer-support .customer-support-form .group input,
#customer-support .customer-support-form .group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  width: 100%;
  color: #000000;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

#customer-support .customer-support-form .group input {
  height: 53px;
}

#customer-support .customer-support-form .group textarea {
  margin-top: 20px;
}

#customer-support .customer-support-form .group input:focus,
#customer-support .customer-support-form .group textarea:focus {
  outline: none;
  background-color: transparent !important;
}

#customer-support .customer-support-form .service-group {
  margin-bottom: 31px;
}

#customer-support .customer-support-form .service-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  padding: 0;
  color: #000000 !important;
  -webkit-transition: top .2s ease-in-out, font-size .2s ease-in-out;
  transition: top .2s ease-in-out, font-size .2s ease-in-out;
}

#customer-support .customer-support-form .service-group select {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  width: 100%;
  color: #000000;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  height: 43px;
}

#customer-support .customer-support-form .btn-send-form {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  background-color: #690FAD;
  padding: 10px 61px 11px;
  margin: auto;
  display: block;
  border: none;
  border-radius: 30px;
}

.contact-information-inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 19px;
  row-gap: 19px;
}

.contact-information-inner-box .contact-info-card {
  width: 100%;
  max-width: 372px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 22px 40px rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  padding: 37px 35px 12px;
}

.contact-us-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 30px;
  margin-top: 120px;
  text-align: center;
}

#contact-information .social {
  font-size: 36px;
  color: #690fad;
  display: block;
  list-style: none;
  text-align: center;
  margin-bottom: 50px;
}

#contact-information .social ul {
  list-style: none;
}

#contact-information .social li {
  display: inline-block;
}

#contact-information .social a {
  color: #690fad;
}

#contact-information .social i {
  padding: 10px;
  margin-bottom: 30px;

}

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

@media screen and (max-width: 991px) {
  .contact-us-title {
    font-size: 26px;
    line-height: 22px;
  }
}

.contact-info-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #690FAD;
  margin-bottom: 24px;
}

.contact-info-card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  margin-bottom: 11px;
}

.contact-info-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 29px;
}

.contact-info-card-sub-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.contact-info-card-address-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.contact-info-card-address-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-bottom: 41px;
}

.contact-info-card-social-address-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

#contact-us-banner .banner img {
  position: relative;
}

#contact-us-banner .banner img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  min-height: 340px;
}

#contact-us-banne :before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(105, 15, 173, 0.45);
}

@media screen and (min-width: 992px) {
  #contact-us-banner {
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  #contact-us-banner {
    background-position: right center;
  }
}

@media screen and (min-width: 992px) {
  #contact-us-banner .custom-container {
    padding-top: 112px;
    padding-bottom: 250px;
  }
}

@media screen and (max-width: 991px) {
  #contact-us-banner .custom-container {
    padding-top: 221px;
    padding-bottom: 69px;
  }
}

#contact-us-banner .custom-container .contact-us-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 78px;
  color: #FFFFFF;
  max-width: 550px;
  position: relative;
}

@media screen and (max-width: 991px) {
  #contact-us-banner .custom-container .contact-us-hero-title {
    font-size: 36px;
    line-height: 44px;
  }
}

#contact-us-banner .custom-container .contact-us-hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  max-width: 550px;
  position: relative;
}

@media screen and (max-width: 991px) {
  #contact-us-banner .custom-container .contact-us-hero-desc {
    font-size: 12px;
  }
}

/* 
---------------------------------------------
Events page banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
}

#bg-video {
  min-width: 100%;
  min-height: 100dvh;
  max-width: 100%;
  max-height: 100dvh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 84px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #CAA8F5;
  font-weight: 900;
}

@media (min-width: 769px) {
  .main-banner .mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-banner .caption h2 {
    font-size: 60px;
  }

  .main-banner .caption h6 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .main-banner .caption h2 {
    font-size: 40px;
  }

  .main-banner .caption h6 {
    font-size: 14px;
  }

  .main-banner .desktop {
    display: none;
  }

  .main-banner img {
    height: 100dvh;
  }

  .main-banner .mobile {
    overflow: hidden;
    max-height: 100dvh
  }

  .video-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Coreunity
--------------------------------------------------------------*/
#camping {
	background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url("../img/stars.jpg");
	background-attachment: fixed;
	background-size: cover;
	padding: 75px 0;
	color: #fffffa;
}
#camping a {
	color: #fffffa;
}
.gradientone {
	background: rgb(241,132,34);
    background: linear-gradient(0deg, rgba(241,132,34,1) 0%, rgba(231,150,39,1) 21%, rgba(221,168,44,1) 40%, rgba(214,182,48,1) 55%, rgba(206,197,52,1) 81%, rgba(199,210,56,1) 100%);
}
.gradienttwo {
	background: rgb(241,132,34);
background: linear-gradient(180deg, rgba(241,132,34,1) 0%, rgba(238,103,56,1) 25%, rgba(236,77,75,1) 50%, rgba(233,49,96,1) 75%, rgba(230,15,121,1) 100%);
}
.gradientthree {
	background: rgb(230,15,121);
    background: linear-gradient(180deg, rgba(230,15,121,1) 0%, rgba(197,22,122,1) 24%, rgba(161,29,124,1) 50%, rgba(129,35,125,1) 73%, rgba(92,42,126,1) 100%);
}

.unity-section {
	min-height: 75dvh;	
}
.unity-section {
	color: #fffffa;
	font-size: 1.1rem;
	text-align: left;
	font-weight: 100;
}
.unity-section .svg {
	color: #fffffa;
}
.unity-section .title h2 {
	color: #fffffa;
	font-size: 3rem;
	text-align: left;
	margin-top: 40px;
	font-weight: 100;
}.unity-section .img-fluid{
  object-fit: cover;
  object-position: center;
}
.unity-section .svg{
  filter: invert(1);
}
.unity-sectio  {
  filter: blur(150px);
  transform: rotate(8.6deg);
}
.unity-section .btn-get-started{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  width: max-content;
}
.unity-section .btn-get-started:hover {
  transform: scale(1.08);
}
.coreunity h2 {
  background: -webkit-linear-gradient(90deg, rgba(195,217,59,1) 0%, rgba(245,126,32,1) 33%, rgba(229,7,128,1) 66%, rgba(92,42,126,1) 100%);;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*--------------------------------------------------------------
# Events Header
--------------------------------------------------------------*/
#events-header {
  transition: all 0.5s;
  background-color: rgba(105, 15, 173, 0.2);
  z-index: 997;
  padding: 15px 0;
}

#events-header.header-scrolled {
  background-color: #690fad;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#events-header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

#events-header .logo img {
  max-height: 44px;
  display: block;
}

#events-header i {
  color: #fff;
}

@media (min-width: 992px) {
  #navbar ul li .getstarted {
    display: none;
  }
}

.points-section {
  margin: 50px 0;
}

.points-section .ctabtn {
  margin: auto;
  margin-top: 15px;
  color: #fff;
  width: 175px;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  text-align: center;
  display: block;
  background: #690fad;
}

.points-section .ctabtn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

.score-point-list ul {
  padding-left: 0px !important;
}

.score-point-list img {
  width: 60px;
  height: 60px;
  padding: 6px;
  margin-bottom: 30px;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;

}

.score-point-list img:hover {
  opacity: 1;
  transform: scale(1.2);
}

.activity-score-box {
  -webkit-column-gap: 20px;
  column-gap: 20px;
  row-gap: 17px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .activity-score-box {
    margin-bottom: 30px;
  }
}

.activity-stats-item {
  margin: 35px;
}

.activity-stats {
  margin-left: 16px;
}

.activity-stats p {
  text-align: center;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .activity-stats-item {
    padding: 0 12px;
  }

  .activity-stats-item svg {
    max-height: 32px;
  }
}

.activity-stats-item.active::after {
  position: absolute;
  content: "*";
  right: 0;
  top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: right;
  color: #690FAD;
}

.pricing h2 {
  margin: 30px 0 40px 0;
}

.card {
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all ease-in-out 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card span {
  color: #690fad;
}

.card-body {
  padding: 15px 25px;
}

.card li {
  font-size: 14px;

}

.card p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;

}

.card::after {
  position: absolute;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all ease-in-out 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
  backface-visibility: hidden;
  will-change: transform;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .75) !important;
}

.card:hover::after {
  opacity: 1;
}

.card:hover .btn-outline-primary {
  color: white;
  background: #690fad;
  border-color: #690fad;
}

.btn-lg {
  border-color: #690fad;
  color: #690fad;
}

.btn-lg:hover {
  background-color: #690fad;
  color: #fff;
}

@media (min-width: 992px) {
  .pricing_section .card{
    padding-bottom: 2rem;
  }
  .pricing_section .pricing_section_header{
    min-height: 300px;
    max-height: 300px;
  }
  .pricing_section .pricing_section_footer{
    max-height: 78px;
    margin-top: auto;
  }
}

.points-section{
  text-align: center;
}

.points-section .ctabtn.scrollto{
  margin-left: 0;
    color: #fff;
    border-radius: 4px;
    padding: 15px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #690fad;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.slick-slider .slick-arrow{
  font-size: 8vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  color: #fff;
}
.slick-slider .slick-arrow:hover{
  color: #690fad;
}

.slick-slider .ri-arrow-left-s-line{
  left: -7vw;
}

.slick-slider .ri-arrow-right-s-line{
  right: -7vw;
}

.slick-slider .slick-disabled{
  opacity: .3;
}
.slick-slider .slick-disabled:hover{
  color: #fff;
  cursor: not-allowed;
}
@media (min-width:1400px) {
  .slick-slider .slick-arrow{
    font-size: 64px;
  }
  .slick-slider .ri-arrow-left-s-line{
    left: -3vw;
  }
  .slick-slider .ri-arrow-right-s-line{
    right: -3vw;
  }
}

@media (max-width:500px) {
  .slick-slider .slick-arrow{
    font-size: 30px;
  }
  .slick-slider .ri-arrow-left-s-line{
    left: -3vw;
  }
  .slick-slider .ri-arrow-right-s-line{
    right: -3vw;
  }
}

.slick-slider .img-box{
  width: 325px;
  max-width: 325px;
  text-align: center;
  margin: 0 2rem;
}

.slick-slider .img-box img{
  width: 325px;
  max-width: 325px;
  height: 325px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.landing-page-slider .slick-slider .img-box{
  padding: 15px;
  width: 400px !important;
  max-width: 400px !important;
  margin: 0;
}

.landing-page-slider .slick-slider .rounded-0{
  width: 100% !important;
  max-width: 400px !important;
  height: 247px !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

#lineup .slider-title{
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

#accom .slider-title{
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
#accom {
background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
.section-heading-10{
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}

#timeline img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

#portfolio .portfolio-item{
  padding-bottom: 24px;
}

#portfolio .portfolio-wrap img{
  display: block;
  width: 100%;
}

.user-name{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  margin-bottom: 7px;
}

.camp-price{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
}
.user-handle{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}

@media (min-width:992px) {
  #timeline .row .col-lg-6{
    padding: 30px;
  }
  #timeline .row.content .col-lg-6:first-child{
    padding: 0;
  }
  #timeline .row.media-row .col-lg-6:last-child{
    padding: 0;
  }
}
@media (max-width:991px) {
  #timeline .row{
    padding-bottom: 50px;
  }
  #timeline .row img{
    padding-bottom: 20px;
  }
  .sm-camping-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sm-camping-grid img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/*--------------------------------------------------------------
# location
--------------------------------------------------------------*/
#location{
  margin: 60px 0;
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
#location i {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
}

#location .location-title{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 8px;
}
#location .location-desc{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
}

#location .location-list li {
    margin-top: 20px;
}
#location .location-list-title,
#location .location-link{
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  margin: 0;
  width: fit-content;
}
#location .location-link:hover{
  color: #fff;
  font-weight: 800;
  width: fit-content !important;
  transition: 0.3s all;
}
#location .location-link:hover::after{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: #e50780;
  animation: widthGrow .3s ease-in-out;
}
#location .location-list-desc{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
  border: none;
  background: transparent;
  padding: 0;
}
#location p {
  color: #fffffa;
}
@keyframes widthGrow {
  0%{
    width: 0;
  }
  100%{
    width: 100%;
  }
}
#location .location-link{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}

#location iframe,
#location img{
  width: 100%;
  padding: 0;
}
#location .glightbox{
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 412px;
}
@media (max-width:991px) {
  #location{
    margin: 40px 0 0;
  }
  #location iframe{
    padding: 0;
  }
}

/*--------------------------------------------------------------
# unity-section
--------------------------------------------------------------*/
.unity-section {
  min-height: 75dvh;
}

.unity-section {
  color: #fffffa;
  font-size: 1.1rem;
  text-align: left;
  font-weight: 100;
}

.unity-section .svg {
  color: #fffffa;
}

.unity-section .title h2 {
  color: #fffffa;
  font-size: 3rem;
  text-align: left;
  margin-top: 40px;
  font-weight: 100;
}

.unity-section .svg {
  filter: invert(1);
}

.unity-section .img-fluid {
  object-fit: cover;
  object-position: center;
  z-index: 2;
  position: relative;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.unity-section .card-img-box {
  position: relative;
}

.unity-section .card-img-box .card-img-bg {
  position: absolute;
  left: 4px;
  top: 25px;
  right: 4px;
  filter: blur(5px);
  -webkit-filter: blur(12.5px);
  z-index: 1;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 7px;
  opacity: .45;
}


.grad_bg_1 {
  background: linear-gradient(180deg, rgba(92, 42, 126, 1) 10%, rgba(13, 11, 14, 1) 75%);
}

.grad_bg_2 {
  background: linear-gradient(180deg, rgba(13, 11, 14, 1) 0%, rgba(92, 42, 126, 1) 100%);
}

.grad_bg_3 {
  background: linear-gradient(0deg, rgba(81, 42, 126, 1) 12%, rgba(229, 7, 128, 1) 35%, rgba(245, 126, 32, 1) 63%, rgba(195, 217, 59, 1) 88%);
}

.grad_bg_4 {
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}


/*--------------------------------------------------------------
# Sponsor Section
--------------------------------------------------------------*/
#sponsor {
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
#sponsor .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: #e50780;
}

#sponsor .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}
#sponsor .bg-cont {
  padding: 5px 10px 10px 10px;
}
#sponsor .overlay-bg {
  background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  
}
#sponsor h2 {
  text-transform:uppercase;  
  font-weight: 600;
}

#sponsor h4 {
  margin-top: 20px;
  font-weight: 400!important;
}
#sponsor h5 {
  margin-top: 20px;
}
#content-a .ctabtn {
  margin-left: 0;
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background: #690fad;
  margin-top: 15px;
  text-align: center;
}
#content-a .ctabtn:hover {
  background: #690fad;
  color: #fff;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# page-not-found
--------------------------------------------------------------*/
#page-not-found {
  padding-top: 50px;
  padding-bottom: 50px;
}
#page-not-found .container {
  min-height: 100dvh;
  height: 100%;
}
.page-not-found-content-box{
  text-align: center;
}
#page-not-found .page-not-found-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 276px;
  font-weight: 700;
  line-height: 323px;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  margin: 0;
}
@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-title {
    font-size: 144px;
    line-height: 169px;
  }
}
#page-not-found .page-not-found-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0px;
  color: #690FAD;
  margin: 0;
  display: initial;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-subtitle {
    font-size: 24px;
  }
}
#page-not-found .page-not-found-desc a{
  color: #690fad;
}
#page-not-found .page-not-found-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 35px;
  margin-bottom: 56px;
}
@media screen and (max-width: 991px) {
  #page-not-found .page-not-found-desc {
    font-size: 14px;
    line-height: 16px;
    margin-top: 12px;
    margin-bottom: 32px;
  }
}
#page-not-found .btn-page-not-found {
  display: block;
  width: 134px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
  padding: 9px 42px 10px;
  margin: 0 auto 40px;
}



/*--------------------------------------------------------------
# coreunity-confirmation-modal
--------------------------------------------------------------*/
#camp{
  padding-top: 150px;
  padding-bottom: 0;
}
#camp .form-control:focus{
  box-shadow: 0 0 0 0.25rem rgba(158, 24, 137, .30);
}
#camp .form-control{
  border-bottom: 3px solid !important;
  border-color: rgba(158, 24, 127, 1) !important;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
#coreunity-confirmation-modal .modal-outer-box {
  /* max-width: calc(650px + 2rem); */
  background: #FFFFFF;
  padding-bottom: 40px;
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .modal-body.px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
#coreunity-confirmation-modal .form-container {
  width: 100%;
  /* max-width: 450px; */
  max-width: 100%;
}
#coreunity-confirmation-modal .form-container .modal-title {
  font-size: 36px;
  line-height: 42.19px;
  margin-top: 8px;
  margin-bottom: 20px;
  /* max-width: 450px;
  margin-left: auto;
  margin-right: auto; */
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .form-container .modal-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) {
  .btn-next-section{
    display: none !important;
  }
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .form-container .modal-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
#coreunity-confirmation-modal .modal-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.94px;
  margin-top: 39px;
  margin-bottom: 13px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .modal-subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .modal-subtitle {
    margin-top: 30px;
    font-weight: 700;
  }
}
#coreunity-confirmation-modal .booking-confirmation-modal-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  margin-bottom: 41px;
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .booking-confirmation-modal-desc {
    font-size: 12px;
  }
}
#coreunity-confirmation-modal .inputGroup {
  display: block;
  margin: 11px 0;
  position: relative;
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 4px 0px #0000001A;
          box-shadow: 0px 2px 4px 0px #0000001A;
}
#coreunity-confirmation-modal .inputGroup label {
  padding: 52px 80px 45px 38px;
  width: 100%;
  display: block;
  text-align: left;
  color: #000000;
  cursor: pointer;
  position: relative;
  z-index: 2;
  -webkit-transition: color 200ms ease-in;
  transition: color 200ms ease-in;
  overflow: hidden;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  border: 1px solid transparent;
  margin: 0;
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .inputGroup label {
    font-size: 12px;
    line-height: 14.63px;
  }
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .inputGroup label {
    padding: 34px;
    padding-right: 60px;
    height: 130px;
    align-items: center;
  }
}
#coreunity-confirmation-modal .inputGroup label:after {
  width: 24px;
  height: 24px;
  content: '';
  border: 6px solid #CAA8F5;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .inputGroup label:after {
    right: 34px;
  }
}
#coreunity-confirmation-modal .inputGroup input:checked ~ label {
  border: 1px solid #690FAD;
}
#coreunity-confirmation-modal .inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
          transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
#coreunity-confirmation-modal .inputGroup input:checked ~ label:after {
  border: 6px solid #690FAD;
  background-color: #CAA8F5;
}
#coreunity-confirmation-modal .inputGroup input {
  width: 24px;
  height: 24px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 2;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}
#coreunity-confirmation-modal .btn-booking-confirmation {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  max-width: 303px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17.07px;
  height: 50px;
  color: #FFFFFF;
  background-color: #690FAD;
  margin-top: 67px;
  margin-bottom: 25px;
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .btn-booking-confirmation {
    height: 43px;
  }
}
#coreunity-confirmation-modal .btn-cancel {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.41px;
  color: #690FAD;
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .btn-cancel {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .btn-cancel {
    margin-bottom: 20px;
  }
}
#coreunity-confirmation-modal .booking-confirmed-success-icon {
  margin: 46px 0;
}
@media screen and (max-width: 389px) {
  #coreunity-confirmation-modal .booking-confirmed-success-icon {
    margin: 34px;
  }
}
@media screen and (max-width: 991px) {
  #coreunity-confirmation-modal .booking-confirmed-success-icon svg,
  #coreunity-confirmation-modal .booking-confirmed-success-icon img {
    max-width: 80px;
  }
}

#coreunity-confirmation-modal .form-container .modal-title {
  margin-bottom: 45px;
}
#coreunity-confirmation-modal .inputGroup label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  padding: 40px 70px 40px 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  #coreunity-confirmation-modal .inputGroup label {
    padding: 30px 50px 30px 15px;
  }
}
#coreunity-confirmation-modal .inputGroup label::after {
  right: 25px;
}
@media (max-width: 767px) {
  #coreunity-confirmation-modal .inputGroup label::after {
    right: 15px;
  }
}
#coreunity-confirmation-modal .coreunity-img {
  max-width: 70px;
}
@media (max-width: 767px) {
  #coreunity-confirmation-modal .coreunity-img {
    max-width: 42px;
  }
}
#coreunity-confirmation-modal .coreunity-title {
  font-weight: 700;
  margin-bottom: 3px;
}
#coreunity-confirmation-modal .coreunity-desc {
  font-size: 12px;
  line-height: 1.4;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
  background: #fffffa;
  min-height: 100dvh;
  margin-top: 125px !important;
}

.faq .faq-list {
  padding: 0px 100px 50px 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 25px;
}

.faq .faq-list li {
  padding: 20px;
  background: rgb(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;

  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px 0 #00000040;
  box-shadow: 0 4px 4px 0 #00000040;
  border-radius: 10px;
  margin-top: 10px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 50px;
  outline: none;
  cursor: pointer;
  color: #e50780;
}

.faq .faq-list .icon-help {
  font-size: 2rem;
  position: absolute;
  left: 20px;
  top: 7px;
  color: #e50780;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #0D0D0D;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #111;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #e50780;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     tickets 
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
#tickets{
  min-height: 100dvh;
  margin-top: auto;
  padding: 120px 0;
  background:  linear-gradient(-45deg, rgba(81, 42, 126, 1) 12%, rgba(229, 7, 128, 1) 35%, rgba(245, 126, 32, 1) 63%, rgba(195, 217, 59, 1) 88%);
}

#tickets .coreunity-logo{
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 50px;
}
#tickets .btn-box{
  column-gap: 20px;
  row-gap: 20px;
}
#tickets .btn-buy-ticket,
#tickets .btn-coreunity-home {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: #512a7e;
}
#tickets .btn-buy-ticket:hover,
#tickets .btn-coreunity-home:hover{
  transform: scale(1.08);
}
#tickets .btn-label{
  padding-top: 9px;
  padding-bottom: 9px;
}
#tickets .subtext{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: block;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
/*--------------------------------------------------------------
# Camping Options Section
--------------------------------------------------------------*/
#camping-options img {
	border-radius: 10px;
  width: 100%;
  height: 100%;
  max-height: 355px;
  object-fit: cover;
  object-position: center;
}
#camping-options img:hover {
	transform: scale(1.05);
	transition: 0.3s all;
}
#camping-options {
	color: #f1f1f1;
	background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
#camping-options .Camping-card-header{
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
#camping-options .btn-book{
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 20px;
}
#camping-options .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  margin: 0;
}
#camping-options .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}
#camping-options .media-row .content p{
  min-height: 72px;
}
#camping-options .media-row .content .btn-book p{
  min-height: unset;
}

/*--------------------------------------------------------------
# Hero Pitch Section
--------------------------------------------------------------*/
#hero-pitch {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  background: url("../img/camping-hero-2.jpg") center center;
  background-size: cover;
  padding: 2rem 0;
}

#hero-pitch:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-pitch .container {
  padding-top: 80px;
}

#hero-pitch h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

#hero-pitch h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 28px;
}
#hero-pitch h3 {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 400;
}
#hero-pitch p {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 300;
}
#hero-pitch small {
	font-size: 10px;
}

#hero-pitch .btn-box {
  column-gap: 20px;
  row-gap: 20px;
  margin-left: 3rem;
  margin-top: 20px;
}
#hero-pitch .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  margin: 0;
}

#hero-pitch .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}

@media (min-width: 1024px) {
  #hero-pitch {
    background-attachment: fixed;
  }
}

img.tag-img {
  max-height: 16px;
  margin-right: 10px !important;
}

.tag-content {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 992px) {
  #hero-pitch h1 {
    font-size: 28px;
    line-height: 40px;
  }

  #hero-pitch h2 {
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0 0 0;
  }
  #hero-pitch h3 {
    color: #f1f1f1;
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: 200;
  }
  #hero-pitch {
    width: 100%;
    height: 100dvh;
    position: relative;
  }
}

/*--------------------------------------------------------------
# Hero Pitch Section
--------------------------------------------------------------*/
#hero-pitch-a {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 0;
}
@media (min-width:768px) {
  #hero-pitch-a{
    background-image: url("https://cdn.coredirection.com/cdn-cgi/image/quality=80,width=1200,format=auto/coreunity-assets/img/camping-hero-2.jpg");
  }
}
@media (max-width:767px) {
  #hero-pitch-a{
    background-image: url("https://cdn.coredirection.com/cdn-cgi/image/quality=80,width=600,format=auto/coreunity-assets/img/camping-hero-2.jpg");
  }
}

#hero-pitch-a:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-pitch-a h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

#hero-pitch-a h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 28px;
}
#hero-pitch-a h3 {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 400;
}
#hero-pitch-a p {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 300;
}
#hero-pitch-a small {
	font-size: 10px;
}

#hero-pitch-a .btn-box {
  column-gap: 20px;
  row-gap: 20px;
  margin-left: 3rem;
  margin-top: 20px;
}
#hero-pitch-a .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  margin: 0;
}

#hero-pitch-a .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}

@media (min-width: 1024px) {
  #hero-pitch-a {
    background-attachment: fixed;
  }
}

img.tag-img {
  max-height: 16px;
  margin-right: 10px !important;
}

@media (max-width: 992px) {
  #hero-pitch-a h1 {
    font-size: 28px;
    line-height: 40px;
  }

  #hero-pitch-a h2 {
    font-size: 22px;
    line-height: 32px;
    margin: 10px 0 0 0;
  }
  #hero-pitch-a h3 {
    color: #f1f1f1;
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: 200;
  }
  #hero-pitch-a {
    width: 100%;
    height: 100dvh;
    position: relative;
  }
}


/*--------------------------------------------------------------
# Video Section background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
--------------------------------------------------------------*/
#video {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-top: 110px;
}
@media (min-width:768px) {
  #video{
    background-attachment: fixed;
    background-image: url("https://cdn.coredirection.com/cdn-cgi/image/quality=80,width=1200,format=auto/coreunity-assets/img/img44.png");
  }
}
@media (max-width:767px) {
  #video{
    background-image: url("https://cdn.coredirection.com/cdn-cgi/image/quality=80,width=600,format=auto/coreunity-assets/img/img44.png");
  }
}

#video .btn-get-started {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  margin: 0;
}

#video .btn-get-started:hover {
  background: #e50780;
  transform: scale(1.08);
}
.radius {
  border-radius: 12px !important;
  -webkit-box-shadow: 2px 2px 12px -1px rgba(0,0,0,0.5) !important;
  -moz-box-shadow: 2px 2px 12px -1px rgba(0,0,0,0.5) !important;
  box-shadow: 2px 2px 12px -1px rgba(0,0,0,0.5) !important;
  overflow: hidden;
}
#video .bg-cont {
  padding: 5px 10px 10px 10px;
}
#video .overlay-bg {
  background: rgb(229, 7, 128);
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
#video h4 {
  margin-top: 20px;
}
.youtube-video {
  aspect-ratio: 16/9;
  width: 100%;
}
.glightbox-container .ginner-container {
  padding: 0 !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  margin: 0 !important;
}

/*--------------------------------------------------------------
# hattaexpress
--------------------------------------------------------------*/
#hattaexpress .modal-content{
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(229, 7, 128, 1) 0%, rgba(158, 24, 127, 1) 36%, rgba(81, 42, 126, 1) 100%);
}
#hattaexpress .btn-close{
  position: absolute;
  top: 25px;
  right: 25px;
}
#hattaexpress .modal-body{
  padding: 50px;
}
#hattaexpress .logo{
  max-width: 200px;
}
#hattaexpress .title{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  padding: 0;
  margin-bottom: 15px;
}
#hattaexpress .desc{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 30px;
}
#hattaexpress .btn-box{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}
#hattaexpress .btn-ticket{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
  background: rgba(81, 42, 126, 1);
  text-align: center;
  margin: auto;
}
#hattaexpress .btn-ticket:hover{
  transform: scale(1.05);
  box-shadow: 0 0 44px 22px rgb(81, 42, 126, .1);
  transition: 0.3s all;
}

/*--------------------------------------------------------------
# event
--------------------------------------------------------------*/
#event .content-box {
  max-width: 550px;
}
#event .content-box .title{
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 1rem;
}
#event .content-box .desc{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1.3rem;
}
#event .content-box .btn-more{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #e50780;
  margin: 0;
}
#event .content-box .btn-more:hover{
  background: #e50780;
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# F&B
--------------------------------------------------------------*/
.f_b-card{
  height: calc(157px + 20.3125vw);
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 30px;
  border-radius: 5px;
}
.f_b-card .f_b-img{
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  padding: 0;
}
.f_b-card:hover img {
  transform: scale(1.1);
}
.f_b-title{
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 40px;
  margin-bottom: 15px;
  padding: 10px 0;
  text-transform: capitalize;
  text-align: left;
}
.f_b-btn{
  border: 2px solid rgb(255, 255, 255);
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-align-self: flex-start;
  align-self: flex-start;
  -ms-align-self: start;
  align-self: start;
  border-right: 0!important;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem!important;
  font-style: normal;
  font-style: italic;
  font-weight: 700;
  font-weight: 700!important;
  height: 42px;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  line-height: 22px;
  max-width: 100%;
  min-width: 145px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  transition: all .5s ease-in-out;
  z-index: 9;
  width: min-content;
}
.f_b-btn::after{
  background-color: inherit;
  border-bottom: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  border-top: 2px solid rgb(255, 255, 255);
  background-color: inherit;
  content: " ";
  display: block;
  height: 42px;
  left: 0;
  position: absolute;
  -webkit-transform: skew(-11deg,0deg);
  transform: skew(-11deg,0deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  transition: all .5s ease-in-out;
  width: 100%;
  z-index: -4;
}
.f_b-btn:hover,
.f_b-btn:hover::after{
  color: #e50780;
  border-color: #e50780;
}

/*--------------------------------------------------------------
# music-lineup
--------------------------------------------------------------*/
#music-lineup .music-lineup-slider{
  background-color: #fff;
  padding: 20px 0;
}
#music-lineup .music-lineup-slider .slick-track{
  display: flex;
  align-items: center;
}
#music-lineup .music-lineup-slider-item{
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  margin: 0;
  min-width: max-content;
  padding: 0 20px;
}
#music-lineup .music-lineup-title{
  color: #fffffa;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin: 0;
}
#music-lineup .music-lineup-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 60px;
}
#music-lineup .artist-name{
  position: relative;
  color: #F2F5EA;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  margin: 0;
}
#music-lineup .artist-name::after {
  content: "";
  color: #000;
  background: #fff;
  mix-blend-mode: overlay;
  width: calc(100% + 10px);
  height: 0;
  position: absolute;
  bottom: -4px;
  left: -5px;
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#music-lineup .artist-name:hover::after {
  height: calc(100% + 8px);
}
#music-lineup h1.artist-name{
  font-size: 54px;
}
#music-lineup h2.artist-name{
  font-size: 40px;
}
@media (max-width:991px) {
  #music-lineup .artist-name{
    font-size: 18px;
  }
  #music-lineup h1.artist-name{
    font-size: 44px;
  }
  #music-lineup h2.artist-name{
    font-size: 30px;
  }
}
@media (max-width:767px) {
  #music-lineup .artist-name{
    font-size: 14px;
  }
  #music-lineup h1.artist-name{
    font-size: 21px;
  }
  #music-lineup h2.artist-name,
  #music-lineup .music-lineup-item{
    font-size: 17px;
  }
}