@font-face {
  font-family: "Switzer-Light";
  src: url("../fonts/Switzer/Switzer-Light.woff");
}
@font-face {
  font-family: "Canela-Light";
  src: url("../fonts/Canela/Canela-Light-Trial.otf");
}
.book-now-btn {
  margin-top: 60px;
}
.book-now-btn a {
  text-decoration: none;
  font-family: "Switzer-Light";
  font-size: 18px;
  line-height: 24px;
  color: #262424;
  display: flex;
  align-items: center;
}
.book-now-btn a::before {
  height: 2px;
  display: block;
  width: 100px;
  background: #262424;
  content: "";
  margin-right: 20px;
  animation: shake-animation 0.72s ease infinite;
}

@keyframes shake-animation {
  0% {
    transform: translate(10px, 0px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.header {
  width: 100%;
  height: 700px;
  position: relative;
}
.header video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.4);
  z-index: 1;
}
.header .hero-section-wrapper {
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  .header .header-wrapper {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header .header-wrapper .main-logo {
  position: relative;
}
@media (max-width: 991px) {
  .header .header-wrapper .main-logo img {
    width: 210px;
  }
}
.header .header-wrapper .desktop-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 30px 80px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .header .header-wrapper .desktop-main-header {
    padding: 30px 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .header .header-wrapper .desktop-main-header .desktop-logo img {
    width: 220px;
  }
}
.header .header-wrapper .desktop-main-header .menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 0;
}
.header .header-wrapper .desktop-main-header .menu li {
  margin-right: 24px;
}
.header .header-wrapper .desktop-main-header .menu li a {
  color: #fff;
  text-decoration: none;
  font-family: "Switzer-Light";
  font-size: 16px;
  font-weight: 400;
}
.header .header-wrapper .desktop-main-header .social-icons {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.header .header-wrapper .desktop-main-header .social-icons li {
  margin-right: 12px;
}
.header .header-wrapper .mobile-main-header {
  position: relative;
}
.header .header-wrapper .mobile-main-header a .fa {
  color: #fff;
  font-size: 22px;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-close-btn {
  position: fixed;
  z-index: 2000;
  right: 17px;
  top: 16px;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 10;
  padding-top: 50px;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu .mobile-menu-items {
  list-style: none;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu .mobile-menu-items li {
  margin-bottom: 20px;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu .mobile-menu-items li a {
  color: #262424;
  text-decoration: none;
  font-family: "Switzer-Light";
  font-size: 18px;
  font-weight: 400;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu .social-icons {
  list-style: none;
  display: flex;
  flex-direction: row;
}
.header .header-wrapper .mobile-main-header .mobile-menu-wrapper .mobile-list-menu .social-icons li {
  margin-right: 10px;
}
.header .hero-content-wrapper-container {
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: 35em;
}
@media (max-width: 991px) {
  .header .hero-content-wrapper-container {
    min-height: 41em;
  }
}
.header .hero-content-wrapper-container .hero-content {
  position: relative;
  text-align: center;
}
.header .hero-content-wrapper-container .hero-content h1 {
  color: #fff;
  font-family: "Canela-Light";
  font-size: 96px;
  font-weight: 300;
  line-height: 100px;
}
@media (max-width: 767px) {
  .header .hero-content-wrapper-container .hero-content h1 {
    font-size: 45px;
    line-height: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .hero-content-wrapper-container .hero-content h1 {
    font-size: 60px;
    line-height: 90px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .header .hero-content-wrapper-container .hero-content h1 {
    font-size: 50px;
  }
}
.header .hero-content-wrapper-container .hero-content p {
  color: #fff;
  font-family: "Switzer-Light";
  font-size: 64px;
  line-height: 84px;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .header .hero-content-wrapper-container .hero-content p {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .hero-content-wrapper-container .hero-content p {
    font-size: 50px;
    line-height: 60px;
  }
}

.overview-section {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .overview-section {
    padding-top: 60px;
  }
}
.overview-section .main-heading {
  font-family: "Canela-Light";
  font-size: 36px;
  color: #262424;
  line-height: 43px;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .overview-section .main-heading {
    padding-left: 0;
    font-size: 30px;
    line-height: 35px;
  }
}
.overview-section .overview-main-div {
  margin-top: 60px;
}
.overview-section .overview-main-div img {
  width: 100%;
}
.overview-section .overview-main-div .overview-heading {
  font-family: "Canela-Light";
  font-size: 44px;
  color: #262424;
  line-height: 53px;
}
@media (max-width: 991px) {
  .overview-section .overview-main-div .overview-heading {
    font-size: 36px;
  }
}
.overview-section .overview-main-div .overview-description {
  font-family: "Switzer-Light";
  font-size: 16px;
  color: #595959;
  line-height: 21px;
  margin-top: 10px;
}

.season-section {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .season-section {
    padding-top: 60px;
  }
}
.season-section .season-section-row {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .season-section .season-section-row {
    padding-left: 0;
  }
}
.season-section .season-section-row .season-heading {
  font-family: "Canela-Light";
  font-size: 44px;
  color: #262424;
  line-height: 53px;
}
@media (max-width: 991px) {
  .season-section .season-section-row .season-heading {
    font-size: 36px;
  }
}
.season-section .season-section-row .season-description {
  font-family: "Switzer-Light";
  font-size: 16px;
  line-height: 21px;
  color: #595959;
  margin-top: 20px;
  margin-bottom: 0;
}
.season-section .season-section-row .season-icons {
  display: flex;
  align-items: center;
  margin-top: 60px;
  justify-content: space-between;
  width: 70%;
}
@media (max-width: 767px) {
  .season-section .season-section-row .season-icons {
    width: unset;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .season-section .season-section-row .season-icons {
    width: unset;
  }
}
.season-section .season-section-row .season-icons .icon-content {
  border: 1px solid #262424;
  border-radius: 20px;
  padding: 18px 23px;
  text-align: center;
}
@media (max-width: 991px) {
  .season-section .season-section-row .season-icons .icon-content {
    width: 85px;
    padding: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .season-section .season-section-row .season-icons .icon-content {
    padding: 10px;
  }
}
.season-section .season-section-row .season-icons .icon-content .total {
  font-family: "Canela-Light";
  font-size: 36px;
  line-height: 43px;
  color: #262424;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1020px) {
  .season-section .season-section-row .season-icons .icon-content .total {
    font-size: 22px;
  }
}
.season-section .season-section-row .season-icons .icon-content .icon-text {
  font-family: "Switzer-Light";
  font-size: 14px;
  line-height: 18px;
  color: #262424;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .season-section .season-section-row .season-icons .icon-content .icon-text {
    font-size: 11px;
  }
}
.season-section .season-section-row .season-img {
  position: relative;
  overflow: hidden;
}
.season-section .season-section-row .season-img:hover .season-right-side-image {
  transform: scale(1.2);
  transition: all ease-in-out 1s;
}
.season-section .season-section-row .season-img .season-right-side-image {
  width: 100%;
}
.season-section .season-section-row .partners-row .association-content {
  font-family: "Canela-Light";
  font-size: 32px;
  margin: 1rem auto 2rem;
}
.season-section .season-section-row .partners-row img {
  width: 160px;
}
.season-section .season-list {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .season-section .season-list {
    display: none;
  }
}
.season-section .season-list .marquee {
  margin: 0 auto;
  width: 100%;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.season-section .season-list .marquee .marquee__content {
  width: 100%;
  display: flex;
  line-height: 30px;
}
.season-section .season-list .marquee .marquee__content ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}
@media (max-width: 991px) {
  .season-section .season-list .marquee .marquee__content ul {
    width: 100%;
  }
}
.season-section .season-list .marquee .marquee__content ul li {
  font-family: "Switzer-Light";
  font-size: 18px;
  line-height: 24px;
  color: #595959;
}

.celebrity-section {
  background-color: #F3F3F3;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .celebrity-section {
    margin-top: 60px;
  }
}
.celebrity-section .main-heading {
  margin-top: 100px;
  font-family: "Canela-Light";
  font-size: 44px;
  color: #262424;
  line-height: 53px;
  text-align: center;
}
@media (max-width: 991px) {
  .celebrity-section .main-heading {
    font-size: 36px;
    margin-top: 60px;
  }
}
.celebrity-section .celebrity-image-row {
  margin-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .celebrity-section .celebrity-image-row {
    padding-bottom: 60px;
  }
}
.celebrity-section .celebrity-image-row .celebrity-image-col {
  margin-bottom: 20px;
}
.celebrity-section .celebrity-image-row .celebrity-image-col .celebrity-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.celebrity-section .celebrity-image-row .celebrity-image-col .celebrity-image:hover img {
  transform: scale(1.2);
  transition: all ease-in-out 1s;
}
.celebrity-section .celebrity-image-row .celebrity-image-col .celebrity-image .launch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Switzer-Light";
  font-size: 20px;
  text-align: center;
}
.celebrity-section .celebrity-image-row img {
  width: 100%;
}

.registration-section {
  padding-top: 100px;
  background-image: url("../images/aeroplane.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-position-y: -410px;
  background-position-x: -235px;
}
@media (max-width: 767px) {
  .registration-section {
    padding-top: 60px;
    background-image: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .registration-section {
    padding-top: 60px;
    background-position-y: 10px;
    background-position-x: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .registration-section {
    background-position-y: 70px;
    background-position-x: -130px;
  }
}
.registration-section .register-left-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .registration-section .register-left-side {
    display: block;
  }
}
.registration-section .register-left-side p {
  position: absolute;
  top: 100px;
  left: 0;
}
@media (max-width: 767px) {
  .registration-section .register-left-side p {
    position: relative;
    top: 0;
  }
}
@media (max-width: 767px) {
  .registration-section .register-left-side img {
    width: 100%;
    height: 420px;
  }
}
@media (max-width: 767px) {
  .registration-section .register-form {
    margin-top: 30px;
  }
}
.registration-section .register-form .register-heading {
  font-family: "Canela-Light";
  font-size: 44px;
  line-height: 53px;
  color: #262424;
}
@media (max-width: 991px) {
  .registration-section .register-form .register-heading {
    font-size: 36px;
  }
}
.registration-section .register-form form {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .registration-section .register-form form {
    margin-top: 30px;
  }
}
.registration-section .register-form form .row {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .registration-section .register-form form .row {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .registration-section .register-form form .row .form-group {
    margin-bottom: 6px;
  }
}
.registration-section .register-form form .row input[type=text] {
  border-top: none;
  border-left: none;
  border-right: none;
  /*border-radius: 0;*/
}

.registration-section .register-form form .row input[type=number] {
  border-top: none;
  border-left: none;
  border-right: none;
  /*border-radius: 0;*/
}

.registration-section .register-form form .row .submit-btn {
  border: 1px solid #616161;
  border-radius: 50px;
  font-family: "Switzer-Light";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #262424;
  padding: 7px 60px;
  background-color: #fff;
}

.about-section {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .about-section {
    margin-top: 60px;
  }
}
.about-section .main-heading {
  font-family: "Canela-Light";
  font-size: 44px;
  line-height: 53px;
  color: #262424;
}
@media (max-width: 991px) {
  .about-section .main-heading {
    font-size: 36px;
  }
}
.about-section .description {
  font-family: "Switzer-Light";
  font-size: 16px;
  line-height: 21px;
  color: #595959;
  margin-top: 20px;
}
.about-section img {
  width: 100%;
}
@media (max-width: 767px) {
  .about-section img {
    margin-top: 30px;
  }
}

.contact-section {
  margin-top: 100px;
  background-image: url("../images/footer.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 991px) {
  .contact-section {
    margin-top: 60px;
  }
}
.contact-section .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #FFFFFF -10.31%, #FFFFFF -1.41%, rgba(255, 255, 255, 0) 48.49%);
  width: 100%;
  height: 100%;
}
.contact-section .contact-description {
  font-family: "Canela-Light";
  font-size: 44px;
  line-height: 53px;
  text-align: center;
  color: #000;
  position: relative;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .contact-section .contact-description {
    font-size: 36px;
  }
}
.contact-section .contact-us-detail {
  background-color: #262424;
  padding: 60px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 340px) {
  .contact-section .contact-us-detail {
    padding: 15px;
  }
}
@media (min-width: 341px) and (max-width: 460px) {
  .contact-section .contact-us-detail {
    padding: 30px;
  }
}
.contact-section .contact-us-detail .contact-heading {
  font-family: "Canela-Light";
  font-size: 44px;
  color: #fff;
  line-height: 53px;
  text-align: center;
}
@media (max-width: 991px) {
  .contact-section .contact-us-detail .contact-heading {
    font-size: 36px;
  }
}
.contact-section .contact-us-detail .contact-detail {
  display: flex;
  flex-direction: row;
  margin-top: 60px;
  list-style: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-section .contact-us-detail .contact-detail {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
}
.contact-section .contact-us-detail .contact-detail li {
  font-family: "Switzer-Light";
  font-size: 20px;
  color: #fff;
  display: flex;
}
.contact-section .contact-us-detail .contact-detail li:nth-child(1) {
  margin-right: 60px;
}
@media (max-width: 768px) {
  .contact-section .contact-us-detail .contact-detail li:nth-child(1) {
    margin-right: 0;
  }
}
.contact-section .contact-us-detail .contact-detail li img {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contact-section .contact-us-detail .contact-detail li img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 460px) {
  .contact-section .contact-us-detail .contact-detail li {
    margin-top: 20px;
    font-size: 16px;
  }
}
.contact-section .contact-us-detail .social-icons {
  display: flex;
  margin-top: 60px;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-section .contact-us-detail .social-icons {
    padding-left: 0;
  }
}
.contact-section .contact-us-detail .social-icons li:not(last-child) {
  margin-right: 12px;
}

.footer-section {
  margin-top: 60px;
  text-align: center;
}
.footer-section .footer-logo {
  position: relative;
}
.footer-section .footer-logo::after {
  position: absolute;
  top: 60px;
  border-top: 1px solid #D9D9D9;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.footer-section .watermark {
  font-family: "Switzer-Light";
  font-size: 14px;
  color: #262424;
  margin-top: 50px;
  margin-bottom: 25px;
}
.footer-section .watermark a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.success-msg {
  display: none;
  border: 1px solid green;
  padding: 10px;
  font-family: "Switzer-Light";
  font-size: 16px;
}

.fail-msg {
  display: none;
  border: 1px solid red;
  padding: 10px;
  font-family: "Switzer-Light";
  font-size: 16px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-46.6%);
  }
}/*# sourceMappingURL=index.css.map */


.story-card {
  border: none;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  }
  
  .story-card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }
  
  .story-card .card-img-top {
  max-height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  }
  
  .story-card:hover .card-img-top {
  transform: scale(1.1);
  }
  
  .story-card .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: #000;
  }
  
  .story-card .card-text {
  font-size: 16px;
  line-height: 1.5;
  display: block;
  height: 4.5em;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  color: #000;
  }
  
  .story-card:hover .card-text {
  height: auto;
  }
  
  .story-card:hover .card-img-top {
  transform: scale(1.1);
  }

  .story-header {
    height: 100px;
  }

  .story-section {
    background-color: #64626229;
  }

  .countrycode {
    max-width: 150px;
  }

  .registration-section .register-form form .row {
    margin-bottom: 10px !important;
}