@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Racing+Sans+One&display=swap");
.preBg {
  position: fixed;
  z-index: 1050;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  left: 0;
  top: 0;
  background-color: #232228;
}
.preBg img {
  width: 300px;
  height: auto;
}

body {
  background-color: #232228;
  font-family: "Outfit", serif;
  color: #8a8a8a;
  overflow: hidden;
}
body.active {
  overflow: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Racing Sans One", serif;
  font-weight: 400;
  color: "Outfit", serif;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1040;
  transition: 0.5s all ease;
}
header .topHeader {
  background-color: #0db39d;
  color: #232228;
  padding-top: 5px;
  padding-bottom: 5px;
}
header .bottomHeader {
  background-color: #232228;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .bottomHeader .logo img {
  height: 100px;
  width: auto;
}
header .bottomHeader .container {
  display: flex;
  align-items: center;
}
header .bottomHeader .closeBtn, header .bottomHeader .navBtn {
  display: none;
}
header .bottomHeader .navCollapse {
  margin-left: auto;
}
header .bottomHeader .navCollapse ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  gap: 40px;
}
header .bottomHeader .navCollapse ul a {
  color: #8a8a8a;
  text-decoration: none;
  transition: 0.3s all ease;
}
header .bottomHeader .navCollapse ul a:hover {
  color: #ffffff;
}
header.scrolled {
  top: -34px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.kart2,
.kart, .road {
  position: absolute;
  width: 50%;
  height: 70%;
  right: 0;
  top: 15%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}

#home {
  position: relative;
  overflow: hidden;
}
#home .row .col-lg-6 {
  min-height: calc(100svh - 154px);
  display: grid;
  align-items: center;
  align-content: center;
}
#home .row .col-lg-6 h1 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 4rem;
}
#home .row .col-lg-6 h1 span {
  color: #0db39d;
}
#home .row .col-lg-6 h1 strong {
  display: block;
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: -14px;
}
#home .row .col-lg-6 p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
#home .row .col-lg-6 .road {
  width: 40%;
  z-index: 1;
  border-radius: 400px 0 0 400px;
}
#home .row .col-lg-6 .kart {
  z-index: 2;
  animation: kart 5s linear infinite;
}
#home .row .col-lg-6 .kart2 {
  z-index: 2;
  animation: kart 5s linear infinite;
  animation-delay: -13s;
}

#about .aboutImage {
  position: absolute;
  width: calc(50% - 50px);
  height: 100%;
  border-radius: 0 400px 400px 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
}
#about .steering {
  position: absolute;
  width: 400px;
  height: auto;
  right: -200px;
  z-index: -1;
}

.sectionTitle {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.sectionTitle::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 10px;
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background-color: #0db39d;
}
.sectionTitle h3 {
  color: #ffffff;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.sectionTitle.text-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.sectionTitle.alt h3 {
  color: #232228;
}
.sectionTitle.alt::before {
  background-color: #ffffff;
}

.price::before {
  content: "₹";
}

.venueCard {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  display: grid;
  align-content: space-between;
  padding: 20px;
  color: #8a8a8a;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 35px;
  transform: rotate(-5deg);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.venueCard::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 30px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/pattern.png);
}
.venueCard img {
  position: absolute;
  border-radius: 35px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  z-index: -1;
  -webkit-mask-image: linear-gradient(0deg, #000, transparent);
          mask-image: linear-gradient(0deg, #000, transparent);
}
.venueCard h4 {
  color: #232228;
}
.venueCard a.venueBtn {
  display: block;
  background-color: #0db39d;
  color: #232228;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 15px;
  position: relative;
}
.venueCard a.venueBtn::after {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: 0.3s all ease;
}
.venueCard a.venueBtn:hover::after {
  right: 10px;
}
.venueCard .date {
  margin-bottom: 0;
}
.venueCard .location {
  margin-bottom: 5px;
  color: #232228;
}

#partners .owl-carousel .owl-stage-outer {
  overflow: visible;
}
#partners img {
  border-radius: 50%;
}
#partners .owl-item {
  filter: blur(8px) grayscale(1);
  opacity: 0.5;
}
#partners .owl-item img {
  background-color: #ffffff;
}
#partners .owl-item.active {
  filter: blur(0) grayscale(0);
  opacity: 1;
}

#categories {
  position: relative;
}
#categories .wheel {
  position: absolute;
  width: 300px;
  height: auto;
  left: -150px;
  bottom: 0;
  z-index: -1;
}

#eventRibbon {
  overflow: hidden;
}

#eventDate {
  background-color: #0db39d;
  overflow: hidden;
  transform: rotate(-5deg) translateX(-20px);
  width: calc(100% + 40px);
}
#eventDate h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 5vw;
  white-space: nowrap;
  color: #232228;
}

.categCard {
  background-color: #292a2f;
  padding: 20px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s all ease;
  position: relative;
}
.categCard::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: url(../img/corner.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.categCard h4 {
  font-family: "Outfit", serif;
  font-weight: 300;
  color: #0db39d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.categCard h5 {
  font-family: "Outfit", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.categCard h5 span {
  display: block;
  font-size: 1rem;
}
.categCard p {
  font-family: "Racing Sans One", serif;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.categCard:hover {
  transform: translateY(-5px);
}
.categCard .mainBtn {
  padding: 10px;
  width: 70px;
  height: 70px;
  border-radius: 35px;
  display: grid;
  place-content: center;
  font-size: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.categCard .mainBtn span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
}

p.para {
  line-height: 2;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.mainBtn {
  background-color: #0db39d;
  color: #232228;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  transition: 0.3s all ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: none;
}
.mainBtn::before {
  content: "";
  background-color: #00a15e;
  width: 100%;
  padding-top: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: 0.3s all ease;
}
.mainBtn:active {
  transform: scale(0.9);
}
.mainBtn.icon {
  padding: 15px;
  width: 54px;
}
.mainBtn:hover {
  background-color: #00a15e;
}
.mainBtn:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}
.mainBtn.dark {
  background-color: #232228;
  color: #ffffff;
}
.mainBtn.dark::before {
  background-color: #36383f;
}
.mainBtn.dark:hover {
  background-color: #292a2f;
}
.mainBtn.light {
  background-color: #2a292f;
  color: #0db39d;
}
.mainBtn.light::before {
  background-color: #ffffff;
}
.mainBtn.light:hover {
  background-color: #ffffff;
  color: #0db39d;
}
.mainBtn.sm {
  padding: 5px 10px;
  font-size: 12px;
}
.mainBtn.sm.icon {
  padding: 5px;
  width: 28px;
}

@keyframes kart {
  0% {
    transform: translateX(100%) translateY(-7%) scale(0.7);
  }
  25% {
    transform: translateX(50%) translateY(-5%) scale(0.8);
  }
  50% {
    transform: translateX(0) translateY(0) scale(1);
  }
  75% {
    transform: translateX(40%) translateY(5%) scale(1.2);
    z-index: 3;
  }
  100% {
    transform: translateX(100%) translateY(7%) scale(1.3);
    z-index: 3;
  }
}
.imgSq {
  position: relative;
  padding-top: 100%;
}
.imgSq img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
}

.link {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  position: relative;
}
.link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: auto;
  right: 0;
  background-color: #ffffff;
  transition: 0.3s width ease-in-out;
}
.link:hover {
  text-decoration: none;
  color: #ffffff;
}
.link:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.unlist {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.unlist li:not(:last-child) {
  margin-bottom: 10px;
}
.unlist.icon li {
  display: flex;
  gap: 10px;
  color: #8a8a8a;
}
.unlist.icon li:not(:last-child) {
  margin-bottom: 18px;
}
.unlist.icon li .icon {
  flex: 0 0 16px;
  width: 16px;
  padding-top: 2px;
  color: #fff;
}

main > section {
  scroll-margin-top: 100px;
}

footer {
  background-color: #292a2f;
  color: #ffffff;
  overflow: hidden;
}
footer .topFooter {
  padding-top: 60px;
  padding-bottom: 40px;
}
footer .topFooter .socialList {
  justify-content: unset;
}
footer .topFooter .socialList li {
  margin-right: 10px;
}
footer .topFooter .socialList img {
  filter: invert(1);
}
footer .footerLogo {
  height: 75px;
  width: auto;
}
footer .copy {
  padding: 15px;
  border-top: 1px solid #8a8a8a;
}
footer .otherSection {
  padding-top: 57px;
}

.modal-content {
  background-color: #232228;
}
.modal-content h1 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2rem;
}
.modal-content .btn-close {
  filter: invert(1);
}
.modal-content .modal-header {
  border-bottom-color: #36383f;
}
.modal-content .modal-footer {
  border-top-color: #36383f;
}
.modal-content .form-label {
  color: #ffffff;
}
.modal-content .form-control {
  background-color: #292a2f;
  border-color: #36383f;
  color: #ffffff;
}
.modal-content .form-control::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1; /* Firefox */
}
.modal-content .form-control::placeholder {
  color: #8a8a8a;
  opacity: 1; /* Firefox */
}
.modal-content .form-control::-ms-input-placeholder { /* Edge 12 -18 */
  color: #8a8a8a;
}

.expList {
  list-style-type: none;
  padding-left: 0%;
  margin-bottom: 0;
}
.expList h5 {
  color: #ffffff;
  font-family: "Outfit", serif;
  font-weight: 600;
}
.expList h5.end {
  color: #0db39d;
  font-weight: 700;
}
.expList h5.end span {
  background-color: #0db39d;
  color: #232228;
  padding-left: 8px;
  padding-right: 10px;
  border-radius: 15px;
  font-style: italic;
}
.expList > li {
  position: relative;
  padding-left: 40px;
}
.expList > li .time {
  color: #0db39d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 6px;
  font-size: 14px;
  line-height: 1;
  border-radius: 3px;
}
.expList > li:not(:last-child) {
  padding-bottom: 30px;
}
.expList > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 4px;
  height: 100%;
  background-color: #0db39d;
  z-index: 0;
}
.expList > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: #232228;
  border: 4px solid #0db39d;
  border-radius: 12px;
  z-index: 2;
  margin: 5px;
}

#newsletter {
  background-color: #0db39d;
  color: #232228;
  position: relative;
  overflow: hidden;
}
#newsletter .form-label {
  font-weight: 600;
}
#newsletter .tyres {
  position: absolute;
  width: 100%;
  transform-origin: center;
  transform: translate(50%, 50%) rotate(-45deg);
  right: 20%;
  bottom: 25%;
}
#newsletter .tyre-1 {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  left: 28%;
}
#newsletter .tyre-2 {
  width: 100%;
  height: auto;
  position: relative;
  left: -20%;
}
#newsletter .container {
  position: relative;
  z-index: 2;
}

.floatIcons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 10;
  transition: 0.5s all ease;
}
.floatIcons .whatsappBtn {
  background: linear-gradient(#34b77d, #5bbd7c);
  display: inline-grid;
  place-content: center;
  z-index: 20;
  width: 60px;
  height: 60px;
  padding: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
  border-radius: 30px;
  transition: 0.5s all ease;
}
.floatIcons .whatsappBtn i {
  color: #fff;
}
.floatIcons .whatsappBtn:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  bottom: 21px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}
.floatIcons .whatsappBtn:active {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

@media (min-width: 992px) {
  .col-lg-2_4 {
    flex: 0 0 auto;
    width: 20%;
  }
}
@media (max-width: 991px) {
  header#mainNav .topHeader ul li a {
    text-align: center;
  }
  header#mainNav .topHeader ul li a i {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  header#mainNav .topHeader ul li a span {
    display: block;
    font-size: 10px;
  }
  header#mainNav.scrolled .topHeader {
    margin-top: -51px;
  }
  #home .row {
    flex-direction: column-reverse;
    gap: 40px;
  }
  #home .row .col-lg-6 {
    min-height: auto;
    position: relative;
    overflow: hidden;
  }
  #home .row .col-lg-6:last-child {
    padding: 0;
  }
  #home .row .col-lg-6 h1 {
    font-size: 2.5rem;
  }
  #home .row .col-lg-6 .road {
    position: unset;
    height: 100%;
    width: 100%;
    border-radius: 50px;
  }
  #home .row .col-lg-6 .kart2, #home .row .col-lg-6 .kart {
    width: 70%;
  }
  #home .align-items-center {
    align-items: initial !important;
  }
  #about .col-lg-6.d-grid {
    height: 360px;
    margin-bottom: 40px;
  }
  #about .aboutImage {
    width: calc(100% - 100px);
    height: 480px;
  }
  #about .venueCard {
    margin-right: 0;
  }
  #experience {
    padding-top: 0;
  }
  #experience .row {
    flex-direction: column-reverse;
    gap: 40px;
  }
  #newsletter .tyre-1, #newsletter .tyre-2 {
    width: 200%;
  }
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1000;
}

.popup-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #28a745;
}

@media (max-width: 767px) {
  header#mainNav .bottomHeader .logo img {
    height: 75px;
  }
  header#mainNav .bottomHeader .navCollapse {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #232228;
    min-width: 300px;
    padding: 40px;
    transform: translateX(100%);
    transition: 0.3s all ease;
    display: grid;
    align-items: center;
  }
  header#mainNav .bottomHeader .navCollapse .closeBtn {
    display: block;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #292a2f;
    color: #0db39d;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  header#mainNav .bottomHeader .navCollapse ul {
    display: grid;
  }
  header#mainNav .bottomHeader .navCollapse.active {
    transform: translateX(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  header#mainNav .bottomHeader .navBtn {
    display: block;
    order: 3;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #0db39d;
    color: #232228;
    border-radius: 10px;
    margin-left: auto;
  }
  header#mainNav .bottomHeader .nutraba {
    margin-left: auto;
  }
  header#mainNav .bottomHeader .container {
    justify-content: initial;
  }
  .pt100 {
    padding-top: 70px;
  }
  .pb100 {
    padding-bottom: 70px;
  }
}
@media (max-width: 576px) {
  header#mainNav .topHeader {
    padding: 0;
    background-color: transparent;
  }
  header#mainNav .topHeader p {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #0db39d;
    padding: 5px 30px 5px 10px;
    font-size: 0.875rem;
    transition: 0.3s all ease;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
  }
  header#mainNav .topHeader ul {
    gap: 30px;
  }
  header#mainNav .topHeader ul li a i {
    font-size: 14px;
  }
  header#mainNav .topHeader ul li a span {
    display: none;
  }
  header#mainNav .bottomHeader .logo img {
    max-width: 40vw;
    width: 90px;
    height: auto;
  }
  header#mainNav .bottomHeader .nutraba img {
    width: 80px;
    height: auto;
    max-width: 40vw;
  }
  header#mainNav.scrolled {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    top: 0;
  }
  header#mainNav.scrolled .topHeader {
    margin-top: 0px;
  }
  header#mainNav.scrolled .topHeader p {
    transform: translateY(100%);
  }
  .pt100 {
    padding-top: 50px;
  }
  .pb100 {
    padding-bottom: 50px;
  }
}/*# sourceMappingURL=main.css.map */