@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

@font-face {
  font-family: 'Sweet Sans Pro Medium';
  src: url(../Fonts/SweetSansProMedium.otf);
}

@font-face {
  font-family: 'Sweet Sans Pro Heavy';
  src: url(../Fonts/SweetSansProHeavy.otf);
}

@font-face {
  font-family: 'Sweet Sans Pro Bold';
  src: url(../Fonts/SweetSansProBold.otf);
}

@font-face {
  font-family: 'Euclid Circular A SemiBold';
  src: url(../Fonts/Euclid_Circular_A_SemiBold.ttf);
}

@font-face {
  font-family: 'Euclid Circular A Regular';
  src: url(../Fonts/Euclid_Circular_A_Regular.ttf);
}

@font-face {
  font-family: 'Euclid Circular A Medium';
  src: url(../Fonts/Euclid_Circular_A_Medium.ttf);
}

:root {
  --themeBlack: #0f0f16;
  --themeYellow: #FFBF1F;
  --themeWhite: #FCFAF1;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.ml-2 {
  margin-left: 35px;
}

body {
  overflow: hidden;
  font-size: 18px;
  font-family: 'Euclid Circular A Regular', sans-serif;
  line-height: normal;
}

h1 {
  font-size: 72px;
  font-family: 'Sweet Sans Pro Heavy', sans-serif;
}

h2 {
  font-size: 48px;
  font-family: 'Sweet Sans Pro Medium', sans-serif;
  font-weight: 900;
}

h3 {
  font-size: 32px;
  font-family: 'Sweet Sans Pro Bold', sans-serif;
}

h4 {
  font-size: 24px;
  font-family: 'Sweet Sans Pro Medium', sans-serif;
}

h5 {
  font-size: 20px;
  font-family: 'Sweet Sans Pro Heavy', sans-serif;
}

.sub-title {
  font-size: 25px;
  font-family: 'Euclid Circular A Regular', sans-serif;
}

ol>li {
  margin-left: 25px;
  margin-top: 3px;
}

a {
  text-decoration: none !important;
  color: #629ACA;
}

.contentContainer {
  background-color: #15151C;
}

.navbar-light .navbar-brand {
  max-width: 255px
}

.customNav {
  background-color: #15151C;
  padding: 10px 0 !important;
  text-transform: capitalize !important;
  z-index: 999;
  width: 1320px;
  margin-left: auto;
  margin-right: auto;
}


.customNav .dropdown-toggle::after {
  display: none !important;
}


.active-dark {
  background-color: #15151C;
  color: #04484c !important;
}

.customNav .nav-item {
  padding: 0 10px;
}

.customNav .nav-item>a {
  color: var(--themeWhite) !important;
  font-family: 'Sweet Sans Pro Medium';
  font-size: 18px;
  letter-spacing: -0.5px;
  padding: 8px;
  opacity: unset !important;
}

.customNav .nav-item.dropdown>a {
  color: var(--themeWhite) !important;
  padding: 0.5em 0.8em;
  display: inline-block;
  line-height: 1.7;
}

.customNav .dropdown-menu {
  background-color: #e5e6e6 !important;
  padding: 0;
}

.customNav .dropdown-menu>li {
  border-top: 1px solid #000000;
  font-size: 0.8em;
  text-align: left;
}

.customNav .dropdown-menu>li a {
  font-size: 1.2em;
  padding: 0.5em !important;
  display: block;
  color: var(--themeBlack);
}

.customNav .dropdown-item:hover,
.customNav .dropdown-menu>li:nth-child(14),
.customNav .dropdown-menu>li:nth-child(14) a {
  background-color: #629ACA;
  color: var(--themeBlack);
}

.customNav .dropdown-menu[data-bs-popper] {
  min-width: unset !important;
  width: 255px !important;
  top: 97% !important;
}

.center {
  margin: auto;
}

.sub-menu:hover .race-info {
  display: block;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-top: 20px;
  padding-bottom: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (change this value to adjust the aspect ratio) */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
}

/* HERO SECTION */
.heroSection {
  background-color: #15151C;
  padding-top: 75px;
  padding-bottom: 75px;
}

.abtUsLeft {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
}

.abtUsRightBg {
  background-image: url(../img/aboutUsImg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 25px;
  border: 1px solid white;
}

.heroSection2 {
  min-height: calc(43vh);
  padding-top: 10em;
  background-image: url(../img/banner-tnc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;

}

.btn-main {
  color: #fff;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  font-family: 'Sweet Sans Pro Heavy', sans-serif;
  padding: 16px 32px;
  text-transform: uppercase;
  transition: background-image 0.3s ease;
  /* Smooth transition on hover */
  background-image: linear-gradient(to right, #017ee9 0%, #ff88f3 100%);
}

.btn-main:hover {
  background-image: linear-gradient(to left, #ff88f3 0%, #017ee9 100%);
}

.btn-sec {
  color: white;
  border-radius: 100px;
  font-size:20px;
  font-weight: 700;
  border:none;
  font-family: 'Sweet Sans Pro Heavy', sans-serif;
  padding: 16px 32px;
  max-width: 225px;
  text-transform: uppercase;
  transition: background-image 0.3s ease;
  /* Smooth transition on hover */
  background-image: linear-gradient(to right, #017ee9 0%, #ff88f3 100%);
}

.btn-sec:hover {
  background-image: linear-gradient(to left, #ff88f3 0%, #017ee9 100%);
}

.btn-menu-register {
  transition: background-image 0.3s ease;
  /* Smooth transition on hover */
  background-image: linear-gradient(to right, #017ee9 0%, #ff88f3 100%);
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-family: 'Sweet Sans Pro Medium', sans-serif;
  padding: 10px 15px;
  margin-left: 5px;
  border: none;
}

.btn-menu-register:hover {
  background-image: linear-gradient(to left, #ff88f3 0%, #017ee9 100%);
}

.brandsContainer {
  display: flex;
  justify-content: center;
  align-items: top;
  padding: 1em 0;
}

.brandsContainer>div {
  margin: 10px 50px;
}

.brandHeading,
.letterHeading {
  font-family: 'Euclid Circular A SemiBold';
  font-size: 24px;
  color: var(--themeWhite);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* WINNER SECTION */
.winnersbox {
  border: 2px solid #fae4a1;
  border-radius: 25px;
}

/* PACERS SECTION */
.pacerContainer {
  display: flex;
  justify-content: center;
  align-items: top;
  padding: 10px 0;
}

.pacerContainer>div {
  margin: 10px 10px;
}

.pacerContainer>div>button>img {
  opacity: 50%;
}

.pacerContainer>div>button>img:hover {
  opacity: 100%;
}

/* CATEGORY AND FEE SECTION */
.categorySection {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #F4F4F2;
}

.categorySectionWhite {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fff;
}

.categorySectionBlack {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #242424;
}

.categoryREPCbottomBanner {
  background-image: url(../img/2nd-repc-bottom-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.repcFAQstyle {
  background-color: white;
  border-radius: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 25px;
}

.repcFAQstyle2 {
  background-color: #639aca;
  border-radius: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 35px;
  padding-right: 35px;
  margin-top: 25px;
}

.headingContainer {
  text-align: center;
  color: var(--themeWhite);
  position: relative;
}

.headingContainer>img:nth-child(1) {
  margin-bottom: 0.5em;
}

.headingContainer>img:last-child {
  margin-top: -0.3em;
}

.sharpieHeading {
  font-family: 'Sharpie';
  font-size: 5em;
  text-transform: uppercase;
  margin-top: -10px;
  color: #9d8fb8;
}

.mainHeading {
  font-family: 'Sweet Sans Pro Medium';
  font-size: 60px;
  text-transform: uppercase;
  margin-top: -10px;
  color: #b3d2b1;
}

.eventDetails {
  background-color: #b3d2b1;
  padding: 25px 50px;
}

.eventDetails p {
  font-size: 40px;
  text-transform: uppercase;
  font-family: 'Euclid Circular A SemiBold';
}

.race-cat-heading {
  font-family: 'Sharpie';
  font-size: 35px;
  text-transform: uppercase;
  margin-top: -10px;
}

.mainHeading.odd {
  font-size: 6em;
  font-style: italic;
}

.headingContainer p {
  font-size: 2em;
}

.fee {
  color: var(--themeYellow);
  font-size: 80px;
  margin: 0.5em 0;
  font-family: 'Sharpie';
}

.itemsList>.item {
  margin-top: 0.4em;
  font-family: 'Sharpie';
}

.itemsList>.item>span {
  color: var(--themeWhite);
  font-size: 24px;
  margin-left: 0.7em;
}

.content {
  height: 100%;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.row>.col-lg-4.bordered {
  position: relative;
}

.row>.col-lg-4.bordered:not(:last-child)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  width: 5px;
  height: 100%;
  background-color: #9d8fb8;
}

/* TABLES */
.byCar {
  width: 100%;

}

.byCar td,
.byCar th {
  border: 1px solid #000;
  padding: 8px;
  text-align: center;
}

.byCar td {
  padding-top: 25px;
  padding-bottom: 25px;
}

.byCar tr:nth-child(even) {
  background-color: none;
}

.byCar tr:hover {
  background-color: none;
}

.byCar th {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #000;
  color: white;
}

.racePenSubHeading {
  font-size: 16px;
}

.waveSection {
  padding: 10em 0 5em 0;
  background-color: #ffffff;
  background-repeat: no-repeat;
}

.raceHeadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sizeHeadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainHeading.race {
  margin: 0 0.4em;
  color: var(--themeBlack);
}

.tableContainer {
  position: relative;
  padding: 2em;
  text-align: center;
}

.signImg {
  width: 39%;
  position: absolute;
  top: -23%;
  left: -1%;
}

.cycleImg {
  width: 26%;
  position: absolute;
  bottom: -5%;
  right: -12%;
}

.redflagImg {
  width: 26%;
  position: absolute;
  top: -15%;
  left: -5%;
}

.finishLineImg {
  width: 26%;
  position: absolute;
  bottom: -5%;
  right: -8%;
}

.raceContentContainer {
  padding-top: 2em;
}

.sizeContentContainer {
  padding-top: 20em;
}

.title-medium {
  font-family: 'Euclid Circular A SemiBold';
  font-size: 24px;
}

.title {
  font-family: 'Euclid Circular A SemiBold';
  font-size: 2.5em;
}

.title-VC {
  font-family: 'Euclid Circular A SemiBold';
  font-size: 30px;
  color: #02474c;
}

.title-banner {
  font-family: 'Euclid Circular A SemiBold';
  font-size: 60px;
  color: white;
  line-height: 50px;
}

.title-banner2 {
  font-family: '2XU Sharpie 02';
  font-size: 60px;
  color: white;
  line-height: 50px;
}

.title-banner2:after {
  display: block;
  content: '';
  width: 30%;
  height: 3px;
  background: white;
}

.tnc-text {
  font-size: 18px;
  font-family: 'Euclid Circular A Regular';
}

.imgContainer {
  height: 300px;
  margin-bottom: 1em;
}

.btn.customized {
  margin-top: 1em;
}

.btn.customized img {
  height: 100%;
}

.stopwatch {
  height: unset !important;
}

/* PRIZE SECTION */
.prizeSection {
  padding: 10em 0 5em 0;
  background-color: #ffba1f;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.prizeHeadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COMING SOON SECTION */
.comingSoonSection {
  padding: 10em 0;
}

.comingSoonSection>.container>.bannerContainer .banner {
  margin-top: 5em;
}

.comingSoonSection>.container>.bannerContainer:not(:first-child) {
  margin-top: 15em;
}

.mapContainer {
  margin-top: 5em !important;
  position: relative;
  max-width: 1188px;
  margin: auto;
  padding: 2em;
}

.mapContainer .row {
  position: relative;
}

.mapContainer {
  font-size: 1em;
  font-weight: 600;
}

.letterBg {
  position: absolute;
  z-index: 0;
}

.letterHeading {
  font-size: 2.5em;
  color: var(--themeBlack);
  margin-top: 1em;
}

.map {
  padding-left: 4em;
  padding-top: 2em;
}

.realMap {
  width: 100% !important;
  height: 350px !important;
}

/* ASKWD QUESTIONS SECTION */
.askedQueSection {
  margin-top: 15em;
}

.sizeChartTabs {
  background-color: #ffffff;
  border-radius: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sizeChartTabs .nav-tabs .nav-link {
  color: #1c1714;
  font-family: 'Euclid Circular A SemiBold';
  font-size: 18px;
  line-height: 0.5;
  position: relative;

  border-radius: 50px;
  margin-right: 5px;
  padding: 15px 20px;
}

.sizeChartTabs .nav-tabs .nav-link.active {
  transition: background-image 0.3s ease;
  /* Smooth transition on hover */
  background-image: linear-gradient(to right, #017ee9 0%, #ff88f3 100%);
  color: #fff;
}

.sizeChartContent {
  background-color: #ffffff;
  border-radius: 50px;
}

.repcChartContent {
  background-color: #ffffff;
  border-radius: 50px;
}

.repcAccordian .accordion-body {
  padding: 15px;
}

.questionTabs {
  margin-top: 2em;
}

.questionTabs .nav-tabs .nav-link>img {
  display: none;
  position: absolute;
  width: 80%;
}

.questionTabs .nav-tabs .nav-link>img:first-child {
  top: -3px;
}

.questionTabs .nav-tabs .nav-link>img:last-child {
  bottom: -8px !important;
}

.questionTabs .nav-tabs .nav-link.active>img {
  display: block;
}

.questionTabs .nav-tabs .nav-link {
  color: #1c1714;
  font-family: 'Euclid Circular A SemiBold';
  font-size: 20px;
  line-height: 0.5;
  position: relative;
  border: 2px solid #d0d2d3 !important;
  border-radius: 5px;
  margin-right: 5px;
  padding: 15px 20px;
}

.questionTabs .nav-tabs .nav-link.active {
  background-color: #e5e6e6 !important;
  color: #1c1714;
}

/* FAQ TABS */
.faqTabs {
  background-color: #000;
  border-radius: 50px;
  padding: 15px 20px;
  margin-top: 25px;
}

.faqTabs .nav-tabs .nav-link>img {
  display: none;
  position: absolute;
  width: 80%;
}

.faqTabs .nav-tabs .nav-link>img:first-child {
  top: -3px;
}

.faqTabs .nav-tabs .nav-link>img:last-child {
  bottom: -8px !important;
}

.faqTabs .nav-tabs .nav-link.active>img {
  display: block;
}

.faqTabs .nav-tabs .nav-link {
  color: #fff;
  font-family: 'Euclid Circular A SemiBold';
  line-height: 0.5;
  position: relative;
  padding: 15px 20px;
  font-size: 18px;
}

.faqTabs .nav-tabs .nav-link.active {
  transition: background-image 0.3s ease;
  /* Smooth transition on hover */
  background-image: linear-gradient(to right, #017ee9 0%, #ff88f3 100%);
  color: #fff;
  border-radius: 50px;
}

/* CTA */
.cta-bg {
  background-image: url(../img/cta-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ACCORDIAN */
.accordion-item {
  border: none;
}

.repcAcordian .accordion-item {
  background-color: unset !important;
  color: #000;
}

.repcAccordian .accordion-item {
  border-bottom: 2px solid #000;
}

.repcAccordian .accordion-header {
  background-color: unset !important;
}

.repcAcordian .accordion-button,
.secHeading {
  box-shadow: unset !important;
  background-color: unset !important;
  color: #000;
  font-size: 22px;
  font-family: 'Euclid Circular A SemiBold';
  border-bottom: 1px solid #000;
  padding: 20px 30px;
}

.repcAcordian .accordion-button:hover,
.repcAcordian .accordion-button:active {
  color: #5D61D8;
}

.repcAcordian .accordion-body {
  padding: 15px;
  color: #000;
  font-family: 'Euclid Circular A Regular';
  padding: 10px 30px;
}

.repcAccordian .accordion-button::after {
  display: none !important;
}

.questionAcordian {
  margin-top: 2em;
}

.questionAcordian .accordion-item {
  background-color: unset !important;
}

.questionAcordian .accordion-item {
  border-bottom: 1px solid #000;
}

.questionAcordian .accordion-header {
  background-color: unset !important;
}

.questionAcordian .accordion-button,
.secHeading {
  box-shadow: unset !important;
  background-color: unset !important;
  color: #000;
  font-size: 22px;
  font-family: 'Euclid Circular A Regular';
}

.questionAcordian .accordion-body {
  padding: 1em 0 1em 5.7em;
  color: #000;
  font-size: 18px;
  font-family: 'Euclid Circular A Regular';
}

.questionAcordian .accordion-button::after {
  display: none !important;
}

/*  CONTACT US */
.ctcLeft {
  background-color: #629ACA;
  border-radius: 50px;
  padding: 50px 25px;
  margin: 5px;
  color: white;
}

.ctcRight {
  background-color: #5D61D8;
  border-radius: 50px;
  padding: 50px 25px;
  color: white;
  margin: 5px;
}

.contactContainer {
  padding: 3em 0;
}

.contactContainer p {
  margin-top: 1em;
  font-size: 1.2em;
  color: var(--themeWhite);
}

.contactContainer p span {
  color: var(--themeYellow);
}

.vLine {
  font-weight: 900;
  font-size: 2em;
}

.customCard {
  font-size: 0.9em;
}

.customCard>p {
  font-size: 1.2em;
}

.customCard>a {
  color: var(--themeYellow) !important;
}

.aboutContainer h3 {
  color: var(--themeYellow);
  font-size: 2em;
  font-family: 'Druk Bold 2';
  margin-bottom: 0.4em;
}

.aboutContainer p {
  font-size: 26px;
}

.rec-drop-off {
  background-color: #ffffff;
  padding: 30px;
}

.text-green {
  color: #04484c !important;
}

.text-lightgreen {
  color: #b3d2b1 !important;
}

.outerglow {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.80));
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;

}

.outerglow:hover {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 231, 255, 0.8));
}

.figure {
  position: relative;
}

.figure img.image-hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s;
}

.figure:hover img.image-hover {
  opacity: 1;
}


/* SPONSER FOOTER */
.sponsorSec {
  padding: 75px 0;
}

.ctaSec {
  background-image: url(../img/cta-bg.jpg);
  border-radius: 50px;
  padding: 120px;
  background-size: cover;
  background-position: top center;

}

.subHeading {
  color: var(--themeWhite);
  font-size: 3em;
  font-family: 'Euclid Circular A Medium';
  text-transform: uppercase;
}

footer {
  background-color: #000;
  padding: 100px 50px;
}

/* MODALS */
.btn-close.customized {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
  background-image: url(../img/close-button.png);
}

/* MERCHANDISE PAGE */
.navbar.customNav.merchandiseNav {
  background-color: var(--themeBlack);
}

.navbar.customNav.merchandiseNav .nav-link {
  color: var(--themeWhite) !important;
}

.merchandiseSection {
  min-height: calc(100vh - 65px);
  background-color: #F4F4F2;
  padding: 75px 0;
}

.merchandiseItem {
  padding: 50px 37px;
  background-color: #fff;
  border-radius: 20px;
  margin: 35px 0;
}

.merchandisePrice {
  color: #82839B;
}

.merchandiseSection .subHeading {
  color: var(--themeWhite);
  font-family: 'Euclid Circular A Medium';
}

.product-color>img {
  width: 15%;
}


/** SWIPER MOBILE **/

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.m-hide {
  display: flex;
}

.web-hide {
  display: none;
}

.sticky-2xu-button {
  color: #9d8fb8;
  font-family: "Raleway";
  font-size: 16px;
  background-color: #b2d1b0;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0px 25px 28px -21px rgb(194 180 190);
  padding: 12px;
  border: 2px solid #04484c;
  z-index: 19997;
  position: fixed;
  bottom: 40px;
  right: 2%;
  width: 90px;
}

.sticky-2xu-button:hover {
  background-color: #ffffff;
  /* You can change color button on hover */
  box-shadow: none;
}

.sticky-2xu-button2 {
  color: #9d8fb8;
  font-family: "Raleway";
  font-size: 16px;
  background-color: #157ECC;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0px 25px 28px -21px rgb(194 180 190);
  padding: 12px;
  border: 2px solid #04484c;
  z-index: 9998;
  position: fixed;
  bottom: 150px;
  right: 2%;
  width: 90px;
}

.sticky-2xu-button2:hover {
  background-color: #bbb4b4;
  /* You can change color button on hover */
  box-shadow: none;
}

.sticky-2xu-button3 {

  font-family: "Raleway";
  font-size: 16px;
  background-color: #7164BF;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0px 25px 28px -21px rgb(194 180 190);
  padding: 10px;
  border: 4px solid #000;
  z-index: 9999;
  position: fixed;
  bottom: 260px;
  right: 2%;
  width: 90px;
}

.sticky-2xu-button3:hover {
  background-color: #ca46d8;
  /* You can change color button on hover */
  box-shadow: none;
}

/* MEDIA QUIRIES */
/* EXTRA LARGE */
@media only screen and (max-width: 1400px) {
  body {
    font-size: 0.9em !important;
  }

  .questionAcordian .accordion-body {
    padding: 15px;
  }
}

/* LARGE */
@media only screen and (max-width: 992px) {
  body {
    font-size: 0.8em !important;
  }

  .customNav {
    padding: 10px 25px !important;
    width: 100%;
  }

  .customNav .navbar-nav {
    text-align: center;
  }

  .customNav .dropdown-menu[data-bs-popper] {
    width: 100% !important;
  }

  .customNav .dropdown-menu>li a {
    text-align: center;
  }

  .questionAcordian .accordion-body {
    padding: 15px;
  }

  .ctaSec {
    padding: 45px 30px;
  }

  .customNav .navbar-nav {
    margin-right: 0;
  }

  .row>.col-lg-3.bordered:nth-child(2)::after {
    display: none !important;
  }

  .mapContainer {
    background-color: var(--themeWhite);
  }

  .mapContainer img {
    display: none !important;
  }

  .realMap {
    width: 100% !important;
    height: 280px !important;
  }

  .navbar-nav {
    align-items: unset !important;
  }

  .customNav .dropdown-toggle {
    height: unset !important;
  }

  .customNav .nav-item {
    margin-bottom: 0.4em;
  }

  .customNav .nav-item.dropdown {
    max-width: 100% !important;
  }

  .headingContainer {
    line-height: 3;
  }

  .headingContainer>img {
    width: 70%;
    margin: auto;
  }

  .askedQueSection {
    margin-top: 5em;
  }

  .mainHeading {
    text-align: center !important;
    font-size: 3em;
  }

  .raceHeadingContainer>img {
    width: 25%;
  }

  .sizeHeadingContainer>img {
    width: 25%;
  }

  .web-hide {
    display: block;
  }

  .m-hide {
    display: none;
  }

  .content-m-center {
    justify-content: center !important;
  }

  .letterHeading {
    font-size: 3em;
  }

  .mainHeading {
    font-size: 4em;
  }

  p {
    font-size: 1.2em;
  }

  .swiper {
    width: 70%;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1240px) and (max-width: 1320px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 0px;
  }

  .customNav .nav-item>a {
    font-size: 16px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-right: 6%;
  }

  .navbar-dark .navbar-brand {
    padding-left: 4%;
  }
}

/* MEDIUM */
@media only screen and (max-width: 768px) {
  body {
    font-size: 0.7em !important;
  }

  h6 {
    font-size: 16px !important;
  }

  .accordion-header {
    font-size: 26px !important;
  }

  .repcAcordian .accordion-button,
  .secHeading {
    padding: 15px;
  }

  .customNav {
    padding: 10px 25px !important;
    width: 100%;
  }

  .customNav .navbar-nav {
    text-align: center;
  }

  .customNav .dropdown-menu[data-bs-popper] {
    width: 100% !important;
  }

  .customNav .dropdown-menu>li a {
    text-align: center;
  }

  .heroSection {
    min-height: 468px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .questionTabs {
    font-size: 0.8em !important;
  }

  .tabHeading {
    font-size: 22px !important;
  }

  .questionTabs .nav-link.active img {
    width: 80%;
    margin: auto;
  }

  .row>.col-lg-3.bordered::after {
    display: none !important;
  }

  .map {
    padding: 0;
  }

  .brandsContainer>div {
    width: 100%;
  }

  .categorySection {
    padding: 10px;
  }

  .brandsContainer>div>.brandHeading {
    font-size: 15px;
    text-align: center;
  }

  .questionAcordian .accordion-button,
  .secHeading {
    font-size: 16px;
  }

  .me-5 {
    margin-right: 1em !important;
  }

  .questionAcordian .accordion-body {
    padding: 10px;
    font-size: 18px;
  }

  .web-hide {
    display: block;
  }

  .m-hide {
    display: none;
  }

  .content-m-center {
    justify-content: center !important;
  }

  .letterHeading {
    font-size: 3em;
  }

  .mainHeading {
    font-size: 4em;
  }

  p {
    font-size: 1.2em;
  }

  .swiper {
    width: 55%;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .merchandiseItem {
    padding: 50px 25px;
    margin: 20px 0;
  }

  .ctaSec {
    padding: 45px 30px;
  }
}

/* SMALL */
@media only screen and (max-width: 576px) {
  .navbar-light .navbar-brand {
    max-width: 125px
  }

  .customNav {
    padding: 10px !important;
    width: 100%;
  }

  .heroSection {
    padding-top: 10px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h6 {
    font-size: 16px;
  }

  .accordion-header {
    font-size: 26px !important;
  }

  .repcAcordian .accordion-button,
  .secHeading {
    padding: 15px;
  }

  .sub-title {
    font-size: 20px;
  }

  .questionTabs {
    font-size: 0.6em !important;
  }

  .heroSection {
    min-height: 363px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .heroSection2 {
    min-height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .questionTabs .nav-link.active img {
    width: 60%;
    margin: auto;
  }

  .web-hide {
    display: block;
  }

  .m-hide {
    display: none;
  }

  .racePenSubHeading {
    font-size: 11px;
  }

  .tableContainer {
    padding: 10px;
  }

  .categorySection {
    padding: 35px 10px;
  }

  .faqTabs {
    padding: 10px;
  }

  .faqTabs .nav-tabs .nav-link {
    padding: 10px;
  }

  .categorySectionBlack {
    padding: 35px 10px;
  }

  .waveSection {
    padding: 10em 0 5em 0;
    background-color: #ffffff;
    background-image: none;
  }

  .questionTabs .nav-tabs .nav-link {
    padding: 10px;
  }

  .customNav .nav-item>a {
    font-size: 20px;
  }

  .content-m-center {
    justify-content: center !important;
  }

  .letterHeading {
    font-size: 3em;
  }

  .mainHeading {
    font-size: 3.5em;
  }

  .eventDetails p {
    font-size: 19px;
  }

  .aboutContainer p {
    font-size: 20px;
  }

  p {
    font-size: 18px;
  }

  .me-5 {
    margin-right: 10px !important;
  }

  .swiper {
    width: 100%;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .brandsContainer>div {
    margin: 10px 0px;
  }

  .brandHeading,
  .letterHeading {
    font-size: 15px;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  footer {
    text-align: center;
  }

  footer>div>h4 {
    padding-top: 20px;
  }

  .repcAcordian .accordion-body {
    padding: 10px;
  }

  .btn-main {
    font-size: 18px;
  }

  .merchandiseItem {
    padding: 50px 15px;
    margin: 10px 0;
  }

  .ctaSec {
    padding: 45px 30px;
  }
}

@media only screen and (max-width: 390px) {
  .customNav {
    padding: 10px !important;
    width: 100%;
  }

  .accordion-header {
    font-size: 26px !important;
  }

  .repcAcordian .accordion-button,
  .secHeading {
    padding: 15px;
  }

  .heroSection {
    padding-top: 10px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .sub-title {
    font-size: 20px;
  }

  footer {
    text-align: center;
  }

  .ctaSec {
    padding: 45px 30px;
  }

  .heroSection {
    min-height: 275px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .heroSection2 {
    min-height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .merchandiseItem {
    padding: 50px 15px;
    margin: 10px 0;
  }

  .brandsContainer>div>.brandHeading {
    font-size: 15px;
    text-align: center;
  }

  .brandsContainer {
    padding: 10px;
  }

  .racePenSubHeading {
    font-size: 11px;
  }

  .questionTabs {
    font-size: 0.6em !important;
  }

  .questionTabs .nav-link.active img {
    width: 60%;
    margin: auto;
  }

  .web-hide {
    display: block;
  }

  .m-hide {
    display: none;
  }

  .tableContainer {
    padding: 10px;
  }

  .categorySection {
    padding: 10px;
  }

  .waveSection {
    padding: 10em 0 5em 0;
    background-color: #ffffff;
    background-image: none;
  }

  .questionTabs .nav-tabs .nav-link {
    padding: 10px;
  }

  .customNav .nav-item>a {
    font-size: 16px;
  }

  .aboutContainer p {
    font-size: 20px;
  }

  .eventDetails p {
    font-size: 16px;
  }

  .content-m-center {
    justify-content: center !important;
  }

  .letterHeading {
    font-size: 26px;
  }

  .mainHeading {
    font-size: 26px;
  }

  .title {
    font-size: 26px;
  }

  .tabHeading {
    font-size: 16px !important;
  }

  p {
    font-size: 16px;
  }

  .me-5 {
    margin-right: 10px !important;
  }

  .questionAcordian .accordion-body {
    padding: 10px;
    font-size: 15px;
  }

  .questionAcordian .accordion-button>p {
    font-size: 20px !important;
  }

  .swiper {
    width: 100%;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}