* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: "Anek Latin", sans-serif;
  scroll-behavior: smooth;
}

body.fixed {
  position: fixed;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  padding: 0 20px;
}

.span-line,
.span-line-inner {
  display: inline-block;
}

@-webkit-keyframes animateGrain {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  20% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  30% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  40% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  50% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  60% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  70% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  80% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  90% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  100% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
}

@keyframes animateGrain {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  20% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  30% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  40% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  50% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  60% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  70% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  80% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
  90% {
    -webkit-transform: translate(-5%, -10%);
            transform: translate(-5%, -10%);
  }
  100% {
    -webkit-transform: translate(-15%, -20%);
            transform: translate(-15%, -20%);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  0% {
    -webkit-transform: translateX(-50%) rotate(-360deg);
            transform: translateX(-50%) rotate(-360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  0% {
    -webkit-transform: translateX(-50%) rotate(-360deg);
            transform: translateX(-50%) rotate(-360deg);
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 30px 55px;
  z-index: 2000;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 20px;
  }
}

.header .mobile-nav-button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  border: 0;
  position: absolute;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

@media screen and (max-width: 768px) {
  .header .mobile-nav-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .mobile-nav-button.hide {
  opacity: 0;
  visibility: hidden;
}

.header .mobile-nav-button span {
  width: 50px;
  height: 10px;
  border: 2px solid #000;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px #fedf5b;
          box-shadow: 4px 4px 0px 0px #fedf5b;
}

.header .mobile-nav-button span:not(:last-child) {
  margin-bottom: 5px;
}

.header__nav {
  position: absolute;
  left: 0;
  top: 230px;
  width: 100%;
  height: calc(100vh - 230px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  background: #00a769;
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header__nav.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 769px) {
  .header__nav {
    position: relative;
    top: unset;
    height: unset;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: transparent;
  }
}

@media screen and (min-width: 769px) {
  .header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .header__nav ul {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header__nav ul li {
    padding: 2.5vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header__nav ul li:not(:last-child) {
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin: 0;
  }
}

.header__nav ul li a {
  position: relative;
  color: #ffffff;
  text-align: center;
  text-shadow: -2px -2px 0 #000,
 2px -2px 0 #000,
 -2px 2px 0 #000,
 2px 2px 0 #000;
  font-size: 45px;
  font-weight: 800;
}

.header__nav ul li a:hover {
  color: #fedf5b;
}

.header__nav ul li a span {
  position: relative;
  z-index: 1;
}

.header__nav ul li a::before {
  position: absolute;
  content: attr(data-text);
  font-size: 45px;
  font-weight: 800;
  color: #fedf5b;
  top: 6px;
  left: 6px;
  text-shadow: none;
}

.header__nav ul li .mobile-nav-close {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__nav ul li .mobile-nav-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 72px;
    height: 72px;
    background-color: transparent;
    border: 0;
  }
  .header__nav ul li .mobile-nav-close svg {
    position: absolute;
  }
  .header__nav ul li .mobile-nav-close span {
    position: absolute;
    width: 40.95px;
    height: 8.19px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border: 3px solid #000;
    background: #fff;
  }
  .header__nav ul li .mobile-nav-close span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2000;
  background: #ffffff;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader__content {
  --badge-size: 220px;
  --badge-color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--badge-size);
  height: var(--badge-size);
  background: #fedf5b;
  border-radius: 100%;
  -webkit-animation: identifier 20s linear infinite;
          animation: identifier 20s linear infinite;
}

.loader__content::before {
  position: absolute;
  content: "";
  width: 112%;
  height: 112%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 8px solid #00a769;
  border-radius: 100%;
  background: #fedf5b;
}

.loader__content--char {
  --char-font-weight: 800;
  --char-font-size: 3em;
  --char-width: 10px;
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - var(--char-width) / 2);
  height: calc(var(--badge-size) / 2);
  width: var(--char-width);
  background-repeat: round;
  text-align: center;
  text-transform: uppercase;
  line-height: 1rem;
  font-weight: var(--char-font-weight);
  font-size: var(--char-font-size);
  color: #f63000;
  font-family: var(--char-font-family);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotate(var(--char-rotate));
          transform: rotate(var(--char-rotate));
  z-index: 2;
}

.loader__content--img {
  display: block;
  margin: 0;
  -webkit-animation: identifier 20s linear infinite;
          animation: identifier 20s linear infinite;
  animation-direction: reverse;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
}

@media screen and (max-width: 1030px) {
  .hero {
    min-height: auto;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg::after {
  position: absolute;
  content: "";
  height: 300%;
  width: 300%;
  left: 0;
  top: 0;
  opacity: 0.2;
  background-image: url("../img/noise.png");
  background-size: cover;
  background-position: center;
  -webkit-animation: animateGrain 8s steps(10) infinite;
          animation: animateGrain 8s steps(10) infinite;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

@media screen and (max-width: 1030px) {
  .hero__content {
    padding-top: 50px;
  }
}

.hero__content--img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 638px;
  height: 638px;
  margin: 0 auto;
}

@media screen and (max-width: 1030px) {
  .hero__content--img {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .hero__content--img {
    width: 300px;
    height: 300px;
  }
}

.hero__content--img--avatar {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__content--img--avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__content--img--text {
  position: absolute;
  width: 638px;
  height: 638px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: spin 20s linear infinite;
          animation: spin 20s linear infinite;
}

@media screen and (max-width: 1030px) {
  .hero__content--img--text {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .hero__content--img--text {
    width: 300px;
    height: 300px;
  }
}

.hero__content--img--text img {
  width: 100%;
  height: 100%;
}

.hero__content--heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -140px;
}

@media screen and (max-width: 768px) {
  .hero__content--heading {
    margin-top: -40px;
  }
}

.hero__content--heading--wrapper {
  position: relative;
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f63000;
  border: 12px solid #ffffff;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .hero__content--heading--wrapper {
    padding: 5px 20px;
    border-width: 8px;
  }
}

.hero__content--heading--wrapper:nth-child(1) {
  margin-left: -200px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .hero__content--heading--wrapper:nth-child(1) {
    margin: 0;
  }
}

.hero__content--heading--wrapper:nth-child(2) {
  margin-left: 230px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .hero__content--heading--wrapper:nth-child(2) {
    margin: 0;
  }
}

.hero__content--heading--wrapper:nth-child(3) {
  margin-left: 20px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .hero__content--heading--wrapper:nth-child(3) {
    margin: 0;
  }
}

.hero__content--heading--wrapper h2 {
  color: #ffffff;
  text-align: center;
  font-size: 85px;
  font-weight: 800;
  line-height: 73px;
}

@media screen and (max-width: 768px) {
  .hero__content--heading--wrapper h2 {
    font-size: 42px;
    line-height: 42px;
  }
}

.simpleParallax {
  height: 100%;
}

.trail {
  /* className for the trail elements */
  position: fixed;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #f5ee30;
  z-index: 1000;
  pointer-events: none;
  left: 30%;
  top: 30%;
  margin-left: -20px;
  margin-top: -20px;
  pointer-events: none;
}

@media screen and (max-width: 1030px) {
  .trail {
    display: none;
  }
}

.trail:nth-child(2) {
  background: #f63000;
}

.trail:nth-child(3) {
  background: #ee4a99;
}

.trail:nth-child(4) {
  background: #00a769;
}

.trail:nth-child(5) {
  background: #ffffff;
}

.trail:nth-child(6) {
  background: #000000;
}

.textblock {
  position: relative;
  padding: 115px 0 70px;
}

.textblock__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.textblock__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.textblock__wrapper {
  position: relative;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.textblock__wrapper h2 {
  color: #fedf5b;
  text-align: center;
  font-family: "Anek Gujarati", sans-serif;
  font-size: 84px;
  font-style: normal;
  font-weight: 800;
  line-height: 84px;
  text-shadow: -2px -2px 0 #000,
 2px -2px 0 #000,
 -2px 2px 0 #000,
 2px 2px 0 #000;
}

@media screen and (max-width: 1030px) {
  .textblock__wrapper h2 {
    font-size: 54px;
    line-height: 54px;
  }
}

@media screen and (max-width: 575px) {
  .textblock__wrapper h2 {
    font-size: 36px;
    line-height: 39px;
  }
}

.where {
  position: relative;
  z-index: 3;
}

.where__map {
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 1030px) {
  .where__map {
    height: auto;
    aspect-ratio: 1/0.6;
  }
}

@media screen and (max-width: 768px) {
  .where__map {
    height: 80vh;
    aspect-ratio: unset;
  }
}

.where__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -150px;
}

@media screen and (max-width: 1030px) {
  .where__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.where__info--right {
  position: relative;
}

@media screen and (max-width: 1030px) {
  .where__info--right {
    z-index: 2;
    margin-top: -20px;
  }
}

@media screen and (max-width: 575px) {
  .where__info--right img {
    max-width: 220px;
  }
}

.where__info--when {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .where__info--when {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.where__info--when--date, .where__info--when--time {
  color: #f63000;
  padding: 15px 50px;
  text-align: center;
  background: #fedf5b;
  border: 10px solid #ffffff;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .where__info--when--date, .where__info--when--time {
    padding: 5px 20px;
  }
}

.where__info--when--date h4, .where__info--when--time h4 {
  font-size: 55px;
  font-weight: 400;
  line-height: 50px;
}

@media screen and (max-width: 768px) {
  .where__info--when--date h4, .where__info--when--time h4 {
    font-size: 36px;
    line-height: 30px;
  }
}

.where__info--when--date h4.date, .where__info--when--date h4.hour, .where__info--when--time h4.date, .where__info--when--time h4.hour {
  font-weight: 800;
}

.where__info--when--time {
  margin-top: 30px;
  margin-left: -35px;
  z-index: 2;
}

.where__info--place {
  position: relative;
  padding: 15px 30px;
  text-align: center;
  background: #f63000;
  color: #ffffff;
  border: 10px solid #ffffff;
  margin-left: 200px;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .where__info--place {
    padding: 5px 20px;
    margin-left: 0;
  }
}

.where__info--place h4 {
  font-size: 55px;
  font-weight: 800;
  line-height: 50px;
}

@media screen and (max-width: 768px) {
  .where__info--place h4 {
    font-size: 36px;
    line-height: 30px;
  }
}

.where__info--place h4 span {
  font-weight: 400;
}

.menu {
  position: relative;
  padding: 340px 0 50px;
  margin-top: -230px;
  z-index: 2;
}

@media screen and (max-width: 1030px) {
  .menu {
    padding: 200px 0 50px;
  }
}

.menu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 350px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c0ff00), color-stop(92%, white), to(white));
  background: linear-gradient(180deg, #c0ff00 0%, white 92%, white 100%);
  bottom: -160px;
  left: 0;
  opacity: 0.7;
}

.menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu__bg img {
  width: 100%;
  height: 100%;
}

.menu__heading {
  position: relative;
  max-width: 1070px;
  width: 100%;
  color: #000000;
  z-index: 2;
}

.menu__heading h2 {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 67px;
  font-weight: 800;
  line-height: 63px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .menu__heading h2 {
    font-size: 33px;
    line-height: 36px;
  }
  .menu__heading h2 br {
    display: none;
  }
}

.menu__wrapper {
  position: relative;
  margin-top: -120px;
  padding-bottom: 150px;
}

.menu__wrapper--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: hard-light;
}

.menu__wrapper--bg img {
  width: 100%;
  height: 100%;
}

.menu__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 180px;
}

@media screen and (max-width: 1030px) {
  .menu__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 130px;
  }
}

.menu__starter {
  position: static;
  z-index: 2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-right: 50px;
}

@media screen and (max-width: 1030px) {
  .menu__starter {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    width: 100%;
  }
}

.menu__starter--bg {
  position: absolute;
  top: 10px;
  right: -20px;
  max-width: 100%;
  width: auto;
}

@media screen and (max-width: 1030px) {
  .menu__starter--bg {
    position: relative;
    right: unset;
    top: unset;
    margin-bottom: -100px;
  }
}

@media screen and (max-width: 768px) {
  .menu__starter--bg {
    margin-bottom: -50px;
  }
}

.menu__starter--bg img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 1030px) {
  .menu__starter--bg img {
    width: 100%;
  }
}

.menu__starter h3 {
  position: relative;
  padding: 15px 60px;
  background: #f63000;
  font-size: 63px;
  font-weight: 800;
  line-height: 52px;
  border: 8px solid #ffffff;
  text-align: center;
  color: #ffffff;
  opacity: 0;
}

@media screen and (max-width: 1030px) {
  .menu__starter h3 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .menu__starter h3 {
    font-size: 45px;
    line-height: 52px;
    padding: 10px 20px;
  }
}

.menu__starter h3 span {
  font-size: 35px;
  font-weight: 400;
  line-height: 52px;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu__starter h3 span {
    font-size: 28px;
    line-height: 20px;
  }
}

.menu__starter--list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1030px) {
  .menu__starter--list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu__starter--list--item {
  position: relative;
  padding: 15px 50px;
  text-align: center;
  width: auto;
  border: 8px solid rgba(246, 48, 0, 0.6);
  background: #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.menu__starter--list--item.starter2 {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .menu__starter--list--item.starter2 {
    margin: 0;
  }
}

.menu__starter--list--item.starter5 {
  margin-left: 10px;
}

.menu__starter--list--item.starter5 {
  margin-left: 30px;
}

.menu__starter--list--item.starter7 {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .menu__starter--list--item {
    padding: 20px 35px;
    width: 100%;
    margin: 0 !important;
    min-height: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu__starter--list--item span {
  text-shadow: 4px 4px 0px #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  color: rgba(246, 48, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .menu__starter--list--item span {
    font-size: 25px;
    line-height: 22px;
  }
}

.menu__main {
  position: static;
  padding-left: 60px;
}

@media screen and (max-width: 1030px) {
  .menu__main {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    width: 100%;
  }
}

.menu__main h3 {
  position: relative;
  padding: 15px 60px;
  background: #00a769;
  font-size: 63px;
  font-weight: 800;
  line-height: 52px;
  border: 8px solid #ffffff;
  text-align: center;
  color: #ffffff;
  opacity: 0;
}

@media screen and (max-width: 1030px) {
  .menu__main h3 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .menu__main h3 {
    font-size: 45px;
    line-height: 52px;
    padding: 10px 20px;
  }
}

.menu__main h3 span {
  font-size: 35px;
  font-weight: 400;
  line-height: 52px;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu__main h3 span {
    font-size: 28px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1030px) {
  .menu__main--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu__main--list--item {
  position: relative;
  padding: 15px 50px;
  text-align: center;
  width: auto;
  border: 8px solid rgba(0, 167, 105, 0.6);
  background: #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.menu__main--list--item.phir2 {
  margin-left: 20px;
}

.menu__main--list--item.phir3 {
  margin-left: -50px;
  z-index: 2;
  position: relative;
}

.menu__main--list--item.phir3::before {
  position: absolute;
  content: "OR";
  left: 100px;
  top: -70px;
  color: #00a769;
  text-align: center;
  text-shadow: 4px 5px 0px #00a769;
  font-size: 45px;
  font-weight: 800;
  line-height: 121px;
  -webkit-text-stroke: 1px #ffffff;
}

.menu__main--list--item.phir3::after {
  position: absolute;
  content: "OR";
  right: 60px;
  bottom: -60px;
  color: #00a769;
  text-align: center;
  text-shadow: 4px 5px 0px #00a769;
  font-size: 45px;
  font-weight: 800;
  line-height: 121px;
  -webkit-text-stroke: 1px #ffffff;
}

.menu__main--list--item.phir4 {
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  .menu__main--list--item {
    padding: 20px 35px;
    width: 100%;
    margin: 0 !important;
    min-height: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu__main--list--item span {
  text-shadow: 4px 4px 0px #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  color: rgba(0, 167, 105, 0.6);
}

@media screen and (max-width: 768px) {
  .menu__main--list--item span {
    font-size: 25px;
    line-height: 22px;
  }
}

.menu__main--bg {
  position: absolute;
  left: -20px;
  top: 50%;
  max-width: 100%;
  width: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 70px;
}

@media screen and (max-width: 1030px) {
  .menu__main--bg {
    position: relative;
    left: unset;
    top: unset;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0;
    margin-bottom: -200px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .menu__main--bg {
    margin-bottom: -100px;
  }
}

.menu__main--bg img {
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 1030px) {
  .menu__main--bg img {
    width: 100%;
  }
}

.menu__desert {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__desert--bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
}

@media screen and (max-width: 1030px) {
  .menu__desert--bg {
    position: relative;
    left: unset;
    top: unset;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-bottom: -100px;
  }
}

.menu__desert--bg img {
  width: auto;
}

@media screen and (max-width: 1030px) {
  .menu__desert--bg img {
    width: 100%;
  }
}

.menu__desert h3 {
  position: relative;
  padding: 15px 60px;
  background: #0038ff;
  font-size: 63px;
  font-weight: 800;
  line-height: 52px;
  border: 8px solid #ffffff;
  text-align: center;
  color: #ffffff;
  margin-right: 350px;
  opacity: 0;
}

@media screen and (max-width: 1030px) {
  .menu__desert h3 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .menu__desert h3 {
    font-size: 45px;
    line-height: 52px;
    padding: 10px 20px;
    width: 100%;
  }
}

.menu__desert h3 span {
  font-size: 35px;
  font-weight: 400;
  line-height: 52px;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu__desert h3 span {
    font-size: 28px;
    line-height: 20px;
  }
}

@media screen and (max-width: 1030px) {
  .menu__desert--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu__desert--item {
  position: relative;
  padding: 15px 50px;
  text-align: center;
  width: auto;
  border: 8px solid #0085ff;
  background: #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.menu__desert--item.then2 {
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .menu__desert--item {
    padding: 20px 35px;
    width: 100%;
    margin: 0 !important;
    min-height: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu__desert--item span {
  text-shadow: 4px 4px 0px #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  color: #0085ff;
}

@media screen and (max-width: 768px) {
  .menu__desert--item span {
    font-size: 25px;
    line-height: 22px;
  }
}

.scrollableHeading {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  margin-top: -95px;
  z-index: 1;
}

.scrollableHeading__top {
  position: relative;
  padding: 15px 0;
  background: #fedf5b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
  -webkit-transform: rotate(4.041deg);
          transform: rotate(4.041deg);
  margin-left: -50px;
  overflow: hidden;
}

.scrollableHeading__top h2 {
  color: #000000;
  font-size: 55px;
  font-weight: 800;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .scrollableHeading__top h2 {
    font-size: 35px;
  }
}

.scrollableHeading__bottom {
  position: relative;
  padding: 15px 0;
  background: #ee4a99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  -webkit-transform: rotate(-3.651deg) translateY(-185px);
          transform: rotate(-3.651deg) translateY(-185px);
  overflow: hidden;
}

.scrollableHeading__bottom h2 {
  color: #ffffff;
  font-size: 55px;
  font-weight: 800;
  line-height: normal;
  margin-left: -30%;
}

@media screen and (max-width: 768px) {
  .scrollableHeading__bottom h2 {
    font-size: 35px;
  }
}

.who {
  position: relative;
  padding: 80px 0 25px;
  margin-top: -190px;
  z-index: 3;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .who {
    overflow: unset;
  }
}

.who__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.who__bg img {
  width: 100%;
  height: 100%;
}

.who__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.who__heading--left {
  position: absolute;
  left: 20px;
  top: -60px;
}

@media screen and (max-width: 768px) {
  .who__heading--left {
    z-index: -1;
  }
}

@media screen and (max-width: 768px) {
  .who__heading--left img {
    width: 150px;
  }
}

.who__heading--title {
  position: relative;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 575px) {
  .who__heading--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px;
  }
}

.who__heading--title img {
  width: 100%;
}

@media screen and (max-width: 575px) {
  .who__heading--title img {
    max-width: 370px;
    width: 100%;
  }
}

.who__heading--right {
  position: absolute;
  right: 0;
  top: -50px;
}

@media screen and (max-width: 768px) {
  .who__heading--right {
    z-index: -1;
  }
}

@media screen and (max-width: 768px) {
  .who__heading--right img {
    width: 150px;
  }
}

.who__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}

@media screen and (max-width: 768px) {
  .who__search {
    padding: 0 20px;
  }
}

.who__search input {
  max-width: 570px;
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  color: #086ed1;
  font-size: 29px;
  font-weight: 800;
  line-height: 121px;
  border-radius: 11px;
  border: 3px solid #0038ff;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: rgba(255, 255, 255, 0.9);
}

.who__search input::-webkit-input-placeholder {
  color: #0038ff;
}

.who__search input:-ms-input-placeholder {
  color: #0038ff;
}

.who__search input::-ms-input-placeholder {
  color: #0038ff;
}

.who__search input::placeholder {
  color: #0038ff;
}

.who__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ee4a99;
  -webkit-transform: rotate(3.133deg);
          transform: rotate(3.133deg);
}

.who__card.hidden {
  display: none;
}

.who__card--img {
  width: 25%;
}

.who__card--img img {
  width: 100%;
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.who__card--details {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.who__card--details .inmate__name {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  text-shadow: -1px -1px 0 #000,
 1px -1px 0 #000,
 -1px 1px 0 #000,
 1px 1px 0 #000;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.who__card--pos {
  color: #fedf5b;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
  margin: 10px 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-width: 60%;
}

.who__card--com {
  color: #fedf5b;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 22px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.who__card:nth-child(2n) {
  background: #fedf5b;
  z-index: 2;
  -webkit-transform: rotate(-3.133deg);
          transform: rotate(-3.133deg);
}

.who__card:nth-child(2n) .who__card--com,
.who__card:nth-child(2n) .who__card--pos {
  color: #ee4a99;
}

.who__sliderwrapper {
  position: relative;
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .who__sliderwrapper {
    padding: 0 10px;
  }
}

.who .swiper {
  width: 100%;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .who .swiper {
    height: 580px;
  }
}

.who .swiper-slide {
  height: calc(100% / 3 - 20px) !important;
}

.who__sliderprev, .who__slidernext {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .who__sliderprev, .who__slidernext {
    display: block !important;
    position: absolute;
    pointer-events: auto;
  }
}

.who__sliderprev::before, .who__slidernext::before {
  position: absolute;
  content: "";
  width: 78px;
  height: 78px;
  border: 6px solid #ee4a99;
  background: #fff7eb;
  border-radius: 50%;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.who__sliderprev svg, .who__slidernext svg {
  position: relative;
  z-index: 2;
}

.who__slidernext {
  left: -50px;
  top: -20px;
}

@media screen and (max-width: 768px) {
  .who__slidernext {
    right: 20px;
    top: 50%;
    left: unset;
  }
  .who__slidernext svg {
    width: 60px;
  }
  .who__slidernext::before {
    width: 50px;
    height: 50px;
    right: -10px;
  }
}

.who__sliderprev {
  left: -20px;
  top: -20px;
}

.who__sliderprev::before {
  left: -20px;
  right: unset;
}

.who__sliderprev svg {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

@media screen and (max-width: 768px) {
  .who__sliderprev {
    left: 20px;
    top: 50%;
  }
  .who__sliderprev svg {
    width: 60px;
  }
  .who__sliderprev::before {
    width: 50px;
    height: 50px;
    left: -10px;
  }
}

@media screen and (max-width: 768px) {
  .bottomTextBanner {
    position: relative;
    z-index: 3;
  }
}

.bottomTextBanner__wrapper {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 15px;
  background: #f63000;
  border-radius: 70px;
  border: 6px solid #fedf5b;
  color: #fedf5b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 120px auto 0;
}

@media screen and (max-width: 768px) {
  .bottomTextBanner__wrapper {
    border-radius: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bottomTextBanner__wrapper h2 {
  text-align: center;
  font-size: 31px;
  font-weight: 800;
  line-height: 52px;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .bottomTextBanner__wrapper h2 {
    line-height: 35px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .bottomTextBanner__wrapper h2 {
    text-transform: full-width;
    -webkit-transform: scale(1.25, 1);
    transform: scale(1.25, 1);
  }
}

.bottomTextBanner__wrapper h3 {
  color: #f5ee30;
  text-align: center;
  font-size: 31px;
  font-weight: 700;
  line-height: 52px;
}

@media screen and (max-width: 768px) {
  .bottomTextBanner__wrapper h3 {
    font-size: 32px;
    line-height: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .bottomTextBanner__wrapper h3 {
    text-transform: full-width;
    -webkit-transform: scale(0.85, 1);
    transform: scale(0.85, 1);
  }
}

@media screen and (min-width: 1030px) {
  .bottomTextBanner__img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .bottomTextBanner__img.img-left {
    left: -100px;
  }
  .bottomTextBanner__img.img-right {
    right: -100px;
  }
}

@media screen and (max-width: 768px) {
  .bottomTextBanner__img.img-left {
    margin-top: -100px;
  }
}

@media screen and (max-width: 768px) {
  .bottomTextBanner__img.img-right {
    margin-bottom: -100px;
  }
}

.sponsors {
  position: relative;
  padding: 120px 0;
  background: #00a769;
  margin-top: -65px;
}

@media screen and (max-width: 768px) {
  .sponsors {
    padding-top: 140px;
  }
}

.sponsors__texure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sponsors__texure img {
  width: 100%;
  height: 100%;
}

.sponsors__wrapper {
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.sponsors__heading {
  max-width: 690px;
  width: 100%;
  margin: 0 auto 90px;
}

@media screen and (max-width: 768px) {
  .sponsors__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sponsors__heading h2 {
  position: relative;
  text-align: center;
  font-size: 75px;
  font-weight: 800;
  line-height: 65px;
  color: #f5ee30;
  text-shadow: -2px -2px 0 #000,
 2px -2px 0 #000,
 -2px 2px 0 #000,
 2px 2px 0 #000;
}

@media screen and (max-width: 768px) {
  .sponsors__heading h2 {
    font-size: 55px;
    line-height: 45px;
    width: 80%;
    margin: 0 auto;
  }
}

.sponsors__heading h2 span {
  position: relative;
  z-index: 2;
}

.sponsors__heading h2::before {
  position: absolute;
  content: "OUR FABULOUS PARTNERS";
  font-size: 75px;
  font-weight: 800;
  line-height: 65px;
  color: #ffffff;
  top: 10px;
  left: 12px;
  text-shadow: none;
}

@media screen and (max-width: 768px) {
  .sponsors__heading h2::before {
    font-size: 55px;
    line-height: 45px;
    top: 6px;
    left: 6px;
    text-shadow: none;
    width: 100%;
  }
}

.sponsors__heading img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sponsors__heading img {
    width: 80%;
  }
}

.sponsors__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cradit {
  position: relative;
  padding: 25px 0;
  background: #ee4a99;
}

.cradit__wrapper {
  position: relative;
}

.cradit__wrapper h2 {
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 4px 0px #0085ff;
  font-size: 55px;
  font-weight: 800;
  line-height: 65px;
}

@media screen and (max-width: 768px) {
  .cradit__wrapper h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

.cradit__wrapper h2 span {
  color: #fedf5b;
}
/*# sourceMappingURL=app.css.map */