/* Media query */
/* Media */
/* MEDIA QUERY MANAGER */
html {
  font-size: 1rem;
}
@media (max-width: 30em) {
  html {
    font-size: 8px;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  html {
    font-size: 10px;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 75em) and (max-width: 112.5em) {
  html {
    font-size: 15px;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 16px;
  }
}

/* Set default font family and size */
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Jost";
}

main {
  max-width: 100% !important;
  overflow-x: hidden;
}

#theNavbar {
  background-color: rgba(0, 0, 0, 0.8509803922);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  height: 6rem;
  z-index: 10;
  font-family: "Jost";
}
@media (max-width: 30em) {
  #theNavbar {
    display: none;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  #theNavbar {
    display: none;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  #theNavbar {
    display: none;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  #theNavbar {
    display: none;
  }
}

.container {
  display: flex;
  justify-content: center; /* Added */
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  text-decoration: none;
  color: #fff;
  position: fixed;
  top: 0rem;
  left: 9rem;
  background: #000;
  width: 7rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding-right: 6rem;
  display: flex;
  right: 0;
  position: relative;
  top: 1.1rem;
  left: 12rem;
}

.nav-links li {
  margin-right: 1rem;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  /* font-size: 14px; */
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: #ffbe33;
}

.nav-links li a {
  position: relative;
  font-size: 0.7rem;
}

/* Phone Banner */
.phoneBanner {
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.phoneBanner > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  position: absolute;
}
.phoneBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 30em) {
  .phoneBanner::before {
    height: 100vh;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .phoneBanner::before {
    height: 100vh;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .phoneBanner::before {
    height: 100vh;
  }
}
@media (max-width: 30em) {
  .phoneBanner {
    display: flex;
    background-image: url("/images/background-small.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .phoneBanner {
    /* 480px to 600px */
    display: flex;
    background-image: url("/images/background-small.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .phoneBanner {
    /* 600px to 900px */
    display: flex;
    background-image: url("/images/background-small.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
}

/* Banner */
.theBannerr {
  background-image: url("/images/backgroundImage-min.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 30em) {
  .theBannerr {
    display: none;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerr {
    /* 480px to 600px */
    display: none;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerr {
    /* 600px to 900px */
    display: none;
  }
}
.theBannerr .theBannerrFonts {
  position: relative;
  z-index: 5;
  text-align: center;
}
.theBannerr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95vh;
  background-color: rgba(0, 0, 0, 0.516);
}
.theBannerrFont1, .theBannerrFont2, .theBannerrFont3 {
  color: #fff;
  padding: 0.5rem;
}
.theBannerrFont1 {
  font-size: 3.5rem;
  color: #ffbe33;
  font-weight: 600;
  font-family: "Jost";
}
@media (max-width: 30em) {
  .theBannerrFont1 {
    font-size: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    font-weight: 600;
    position: relative;
    bottom: 10rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerrFont1 {
    /* 480px to 600px */
    font-size: 5rem;
    font-weight: 600;
    padding-bottom: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
    position: relative;
    bottom: 9rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerrFont1 {
    /* 600px to 900px */
    font-size: 4rem;
    padding-bottom: 2rem;
    font-weight: 600;
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
    bottom: 7rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theBannerrFont1 {
    /* 900px to 1200px */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-weight: 600;
  }
}
.theBannerrFont2 {
  font-size: 1.5rem;
  color: #ffbe33;
}
@media (max-width: 30em) {
  .theBannerrFont2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
    position: relative;
    bottom: 10rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerrFont2 {
    /* 480px to 600px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
    position: relative;
    bottom: 9rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerrFont2 {
    /* 600px to 900px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
    position: relative;
    bottom: 7rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theBannerrFont2 {
    /* 900px to 1200px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
  }
}
.theBannerrFont3 {
  margin-top: 2.3rem;
  font-size: 2rem;
}
@media (max-width: 30em) {
  .theBannerrFont3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2.5rem;
    position: relative;
    bottom: 8rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerrFont3 {
    /* 480px to 600px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
    position: relative;
    bottom: 7rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerrFont3 {
    /* 600px to 900px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
    position: relative;
    bottom: 5rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theBannerrFont3 {
    /* 900px to 1200px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 2rem;
  }
}
.theBannerrFont4 {
  margin-top: 5rem;
  padding-bottom: 3rem;
  font-size: 4rem;
  color: #ffbe32;
  display: none;
}
@media (max-width: 30em) {
  .theBannerrFont4 {
    display: block;
    position: absolute;
    bottom: 17rem;
    font-size: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerrFont4 {
    /* 480px to 600px */
    display: block;
    position: absolute;
    bottom: 12rem;
    font-size: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerrFont4 {
    /* 600px to 900px */
    position: absolute;
    display: block;
    font-size: 3rem;
    bottom: 11rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theBannerrFont4 {
    /* 900px to 1200px */
    display: block;
  }
}
.theBannerrLowerContent {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
  width: 80%;
  margin: auto;
  background: #000;
  position: absolute;
  left: 10rem;
  color: #fff;
  height: 6rem;
  align-items: center;
  bottom: -1rem;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  margin-bottom: 2.1rem;
}
@media (max-width: 30em) {
  .theBannerrLowerContent {
    width: 100%;
    left: 0rem;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theBannerrLowerContent {
    /* 480px to 600px */
    width: 100%;
    left: 0rem;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theBannerrLowerContent {
    /* 600px to 900px */
    width: 100%;
    left: 0rem;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theBannerrLowerContent {
    /* 900px to 1200px */
    width: 100%;
    left: 0rem;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }
}
.theBannerrLowerContent .trophyLogo {
  height: 18rem;
  position: absolute;
  bottom: 0rem;
  left: 1rem;
}
.theBannerrLowerContent .theBannerrVenue {
  width: 60%;
  height: 4rem;
  position: relative;
  left: 13rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.theBannerrLowerContent .theBannerrVenue > p {
  font-size: 1rem;
}
.theBannerrLowerContent .theBannerrVenue .theBannerrVenueFont1 {
  color: #ffbe33;
}
.theBannerrLowerContent .theBannerrLocation {
  width: 40%;
  position: relative;
  left: 16rem;
  height: 4rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.theBannerrLowerContent .theBannerrLocation > p {
  font-size: 1rem;
}
.theBannerrLowerContent .theBannerrLocation .theBannerrLocationFont1 {
  color: #ffbe33;
}
.theBannerrLowerContent .theBannerrTimee {
  width: 40%;
  position: relative;
  height: 4rem;
  left: 14rem;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.theBannerrLowerContent .theBannerrTimee > p {
  font-size: 1rem;
}
.theBannerrLowerContent .theBannerrTimee .theBannerrTimeeFont1 {
  color: #ffba26;
}

.allThelinks {
  position: fixed;
  top: 13rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
@media (max-width: 30em) {
  .allThelinks {
    display: none;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .allThelinks {
    /* 480px to 600px */
    display: none;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .allThelinks {
    /* 600px to 900px */
    display: none;
  }
}
.allThelinks > a {
  font-size: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #fff;
}
.allThelinks > a:hover {
  background-color: #000;
}
.allThelinks .allThelinks__facebook {
  background-color: #3b5998;
}
.allThelinks .allThelinks__instagram {
  background-color: #e1306c;
}
.allThelinks .allThelinks__twitter {
  background-color: #1da1f2;
}
.allThelinks .allThelinks__linkedIn {
  background-color: #0077b5;
}

/* Optional: Add styling for text and other content within the header */
.header-content h1 {
  color: white;
  font-size: 3rem;
}

.header-content p {
  color: white;
  font-size: 1.5rem;
}

.dividerLine {
  height: 0.2rem;
  background-color: rgb(191, 133, 7);
}

/* Galleries Phone */
.theGalleriesPhone {
  background-color: rgb(174, 122, 8);
  min-height: 9rem;
  display: none;
  justify-content: space-around;
  align-items: center;
  border-top: 2.5rem solid #000;
}
@media (max-width: 30em) {
  .theGalleriesPhone {
    flex-direction: column;
    display: flex;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theGalleriesPhone {
    /* 480px to 600px */
    flex-direction: column;
    display: flex;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theGalleriesPhone {
    /* 600px to 900px */
    flex-direction: column;
    display: flex;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theGalleriesPhone {
    /* 900px to 1200px */
    flex-direction: column;
  }
}
.theGalleriesPhone > a {
  border: 1px solid #000;
  width: 24%;
  text-align: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  background-color: #000;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.7725490196);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 30em) {
  .theGalleriesPhone > a {
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theGalleriesPhone > a {
    /* 480px to 600px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theGalleriesPhone > a {
    /* 600px to 900px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theGalleriesPhone > a {
    /* 900px to 1200px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
.theGalleriesPhone .gallery {
  margin-left: -20rem;
  margin-right: -20rem;
}

/* Galleries section*/
.theGalleries {
  background-color: rgb(174, 122, 8);
  min-height: 9rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 2.5rem solid #000;
}
@media (max-width: 30em) {
  .theGalleries {
    flex-direction: column;
    display: none;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theGalleries {
    /* 480px to 600px */
    flex-direction: column;
    display: none;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theGalleries {
    /* 600px to 900px */
    flex-direction: column;
    display: none;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theGalleries {
    /* 900px to 1200px */
    flex-direction: column;
  }
}
.theGalleries > a {
  border: 1px solid #000;
  width: 24%;
  text-align: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  background-color: #000;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.7725490196);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 30em) {
  .theGalleries > a {
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theGalleries > a {
    /* 480px to 600px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theGalleries > a {
    /* 600px to 900px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theGalleries > a {
    /* 900px to 1200px */
    width: 70%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 5rem;
  }
}
.theGalleries .gallery {
  margin-left: -20rem;
  margin-right: -20rem;
}

/* Welcome section */
#theWelcome-section {
  background-color: #000;
  padding: 80px 0;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}
@media (max-width: 30em) {
  #theWelcome-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  #theWelcome-section {
    /* 480px to 600px */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  #theWelcome-section {
    /* 600px to 900px */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  #theWelcome-section {
    /* 900px to 1200px */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.welcomeContainer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-left: 12rem;
  padding-right: 12rem;
}
@media (max-width: 30em) {
  .welcomeContainer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .welcomeContainer {
    /* 480px to 600px */
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .welcomeContainer {
    /* 600px to 900px */
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .welcomeContainer {
    /* 900px to 1200px */
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
.welcomeContainer .welcome-heading {
  color: #ffba26;
  font-size: 3rem;
  font-family: "Jost";
}
@media (max-width: 30em) {
  .welcomeContainer .welcome-heading {
    font-size: 4rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .welcomeContainer .welcome-heading {
    /* 480px to 600px */
    font-size: 4rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .welcomeContainer .welcome-heading {
    /* 600px to 900px */
    font-size: 4rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .welcomeContainer .welcome-heading {
    /* 900px to 1200px */
    font-size: 4rem;
  }
}
.welcomeContainer .welcome-text {
  text-align: left;
  padding-bottom: 5rem;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 30em) {
  .welcomeContainer .welcome-text {
    font-size: 1.5rem;
    line-height: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .welcomeContainer .welcome-text {
    /* 480px to 600px */
    font-size: 1.5rem;
    line-height: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .welcomeContainer .welcome-text {
    /* 600px to 900px */
    font-size: 1.5rem;
    line-height: 3rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .welcomeContainer .welcome-text {
    /* 900px to 1200px */
    font-size: 1.5rem;
    line-height: 3rem;
  }
}

.welcome-heading {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.welcome-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.welcome-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffbe33;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.welcome-btn:hover {
  background-color: #ffcc66;
}

.features {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}
@media (max-width: 30em) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .features {
    /* 480px to 600px */
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .features {
    /* 600px to 900px */
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .features {
    /* 900px to 1200px */
    font-size: 4rem;
  }
}
.features .featureImg1 {
  background-image: url("../images/service-img1.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 30em) {
  .features .featureImg1 {
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .features .featureImg1 {
    /* 480px to 600px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .features .featureImg1 {
    /* 600px to 900px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
.features .featureImg2 {
  background-image: url("../images/service-img2.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 30em) {
  .features .featureImg2 {
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .features .featureImg2 {
    /* 480px to 600px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .features .featureImg2 {
    /* 600px to 900px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
.features .featureImg3 {
  background-image: url("../images/service-img3.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 30em) {
  .features .featureImg3 {
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .features .featureImg3 {
    /* 480px to 600px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .features .featureImg3 {
    /* 600px to 900px */
    width: 85%;
    height: 35rem;
    margin-bottom: 3rem;
  }
}
.features .feature-middle {
  margin-left: -6rem;
  margin-right: -6rem;
}

.feature {
  width: 28%;
  padding: 20px;
  height: 20rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: end;
  align-items: start;
}

.modal-title {
  color: #bf8507;
  font-size: 1.5rem;
  margin-bottom: -1rem;
  margin-top: -1rem;
}
@media (max-width: 30em) {
  .modal-title {
    font-size: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .modal-title {
    /* 480px to 600px */
    font-size: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .modal-title {
    /* 600px to 900px */
    font-size: 3rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .modal-title {
    /* 900px to 1200px */
    font-size: 3rem;
  }
}

/* Styling for the explaination inside */
.modal-content-paragraph {
  line-height: 2.3;
  font-size: 1rem;
  margin-top: 2rem;
  color: #fff;
  font-weight: 100;
}
@media (max-width: 30em) {
  .modal-content-paragraph {
    font-size: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .modal-content-paragraph {
    /* 480px to 600px */
    font-size: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .modal-content-paragraph {
    /* 600px to 900px */
    font-size: 3rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .modal-content-paragraph {
    /* 900px to 1200px */
    font-size: 3rem;
  }
}

/* Modal's button stying */
.openModal {
  background-color: #bf8507;
  font-weight: 400;
  color: #fff;
}

/* Three Boxes Animation */
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.803);
}

.modal-content {
  background-color: #000000;
  border: 2px solid #bf8507;
  color: #fff;
  margin: 15% auto;
  padding: 10px;
  border-radius: 10px;
  width: 25rem;
  text-align: center;
}
@media (max-width: 30em) {
  .modal-content {
    width: 37rem;
    padding: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .modal-content {
    /* 480px to 600px */
    width: 37rem;
    padding: 2rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .modal-content {
    /* 600px to 900px */
    width: 37rem;
    padding: 2rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .modal-content {
    /* 900px to 1200px */
    width: 30rem;
  }
}
.modal-content > p {
  padding: 1rem;
  padding-top: 2rem;
  line-height: 2rem;
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .modal-content > p {
    /* 900px to 1200px */
    font-size: 1rem;
    line-height: 3rem;
  }
}
@media (max-width: 30em) {
  .modal-content > p {
    line-height: 4rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .modal-content > p {
    /* 480px to 600px */
    line-height: 4rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .modal-content > p {
    /* 600px to 900px */
    line-height: 4rem;
  }
}

.theCloseButton {
  opacity: 1;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  right: -10rem;
}
@media (max-width: 30em) {
  .theCloseButton {
    right: -15rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .theCloseButton {
    /* 480px to 600px */
    right: -15rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .theCloseButton {
    /* 600px to 900px */
    right: -15rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .theCloseButton {
    /* 900px to 1200px */
    right: -13rem;
    top: -2rem;
  }
}

/* Button hover effect */
.btn-primary:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Modal animation */
.modal-content {
  animation: zoomIn 0.5s;
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
/* Unmatched section */
.unmatched {
  padding-left: 8rem;
  padding-right: 8rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  /* AN UNMATCHED OPPORTUNITY section */
  padding-bottom: 5rem;
  background-color: #be8406;
  text-align: center;
}
.unmatched .unmatchedTitle {
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 2rem;
  color: #000;
  font-family: "Jost";
}
.unmatched .unmatched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 5rem;
  margin: auto;
  text-align: center;
  width: 100%;
}
.unmatched .unmatched-grid .grid-item {
  background: rgba(0, 0, 0, 0.7411764706);
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
}
@media (max-width: 30em) {
  .unmatched .unmatched-grid .grid-item {
    height: 30rem;
    width: 30rem;
    margin-left: 3rem;
    line-height: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .unmatched .unmatched-grid .grid-item {
    /* 480px to 600px */
    height: 30rem;
    width: 30rem;
    margin-left: 3rem;
    line-height: 2rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .unmatched .unmatched-grid .grid-item {
    /* 600px to 900px */
    height: 30rem;
    width: 30rem;
    margin-left: 3rem;
    line-height: 2rem;
  }
}

.grid-item {
  background-color: #f0f0f0;
  padding: 2rem;
  border-radius: 1rem;
  color: #fff;
}
.grid-item .unmatchedFont1 {
  padding-bottom: 0.8rem;
  color: #bf8507;
}
.grid-item .unmatchedFont2 {
  font-size: 0.8rem;
  font-weight: normal;
}
@media (max-width: 30em) {
  .grid-item .unmatchedFont2 {
    font-size: 1rem;
    line-height: 1.9rem;
  }
}

.grid-item h3 {
  margin-top: 0;
}

.grid-item p {
  margin-bottom: 0;
}

/* AN IDEAL PLATFORM or awards section */
.awards {
  width: 100%;
  height: 90vh;
  padding-left: 9rem;
  padding-right: 9rem;
  padding-top: 5rem;
  background: #000;
}

.allBoxParagraphs {
  font-size: 1rem !important;
  color: #000 !important;
  font-family: "Lato";
}
@media (max-width: 30em) {
  .allBoxParagraphs {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .allBoxParagraphs {
    /* 480px to 600px */
    font-size: 1.5rem !important;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .allBoxParagraphs {
    /* 600px to 900px */
    font-size: 1.5rem !important;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .allBoxParagraphs {
    /* 900px to 1200px */
    font-size: 1.5rem !important;
  }
}

/* India shining css */
.indiaShiningBigFont {
  font-size: 3rem;
  padding-bottom: 5rem;
  padding-top: 5rem;
  text-align: center;
  color: #000;
  padding-left: 10rem;
  padding-right: 10rem;
  background-color: #bf8507;
  font-weight: 400;
  font-family: "Jost";
}
@media (max-width: 30em) {
  .indiaShiningBigFont {
    font-size: 4rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .indiaShiningBigFont {
    /* 480px to 600px */
    font-size: 4rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .indiaShiningBigFont {
    /* 600px to 900px */
    font-size: 4rem;
  }
}

.indiaShining {
  color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 10rem;
  padding-right: 10rem;
  background-color: #bf8507;
}
@media (max-width: 30em) {
  .indiaShining {
    display: flex;
    flex-direction: column;
    padding-bottom: 5rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .indiaShining {
    /* 480px to 600px */
    display: flex;
    flex-direction: column;
    padding-bottom: 5rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .indiaShining {
    /* 600px to 900px */
    display: flex;
    flex-direction: column;
    padding-bottom: 5rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .indiaShining {
    /* 900px to 1200px */
    display: flex;
    flex-direction: column;
    padding-bottom: 5rem;
  }
}

.tabcontent {
  display: none;
}
.tabcontent > img {
  height: 20rem;
  max-width: 30rem;
}
.tabcontent > h1 {
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: bold;
}
.tabcontent > h3 {
  font-size: 1.2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-weight: 600;
}
.tabcontent > p {
  font-size: 15px;
  padding-right: 7rem;
}

.tabs {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tabs .tablinks > h1 {
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  color: #be8305;
}
.tabs .tablinks > p {
  color: #fff;
  font-size: 0.9rem;
}

.tab {
  display: flex;
  justify-content: center;
  border: 1px solid #000;
  height: 11rem;
  margin-bottom: 3rem;
  width: 27rem;
  padding: 1rem;
  background-color: #000;
}

.tab button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

/* medi styling */
.theMedia {
  text-align: center;
  background: #000;
  margin-top: -2.5rem;
  padding-bottom: 5rem;
}
.theMedia .mediaBigFont {
  font-size: 3rem;
  font-family: "Jost";
  padding-bottom: 1.5rem;
  padding-top: 5rem;
  text-align: center;
  color: #000;
  color: #be8406;
}
.theMedia > h3 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.theMedia > p {
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem;
}

/* TESTIMONIALS styling */
.testimonials {
  padding-left: 10rem;
  padding-right: 10rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-size: 0.9rem;
}
@media (max-width: 30em) {
  .testimonials {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .testimonials {
    /* 480px to 600px */
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .testimonials {
    /* 600px to 900px */
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.testimonials .testimonialsBigFont {
  font-size: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  color: #000;
  font-family: "Jost";
}
.testimonials .testimonialsMainContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 30em) {
  .testimonials .testimonialsMainContainer {
    grid-template-columns: 1fr;
    font-size: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .testimonials .testimonialsMainContainer {
    /* 480px to 600px */
    grid-template-columns: 1fr;
    font-size: 2rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .testimonials .testimonialsMainContainer {
    /* 600px to 900px */
    grid-template-columns: 1fr;
    font-size: 2rem;
  }
}
.testimonials .testimonialsMainContainer > div {
  border: 1px solid rgba(128, 128, 128, 0.666);
  padding: 1rem;
}
.testimonials .testimonialsMainContainer .companyContainer {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(128, 128, 128, 0.666);
}
.testimonials .testimonialsMainContainer .companyContainer .companyContainerBox1Font1 {
  font-weight: 600;
}
.testimonials .testimonialsMainContainer .companyContainer .companyContainerBox2 > img {
  height: 2.5rem;
}
.testimonials .testimonialsMainContainer .detailsContainer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-top: 0.5rem;
}
.testimonials .testimonialsMainContainer .detailsContainerBox1 {
  text-align: center;
}
.testimonials .testimonialsMainContainer .detailsContainerBox1 > h3 {
  font-weight: 600;
  font-size: 1.1rem;
}
.testimonials .testimonialsMainContainer .detailsContainerBox1 > img {
  height: 8rem;
  width: 10rem;
}
.testimonials .testimonialsMainContainer .detailsContainerBox2 {
  padding: 1rem;
}

.companyContainer {
  display: flex;
}

/* Blog section #db9b06; */
.theBlogContainer {
  background-color: #db9b06;
}

.theBlogImage {
  width: 80%;
  height: auto;
  overflow: hidden;
  margin: auto;
}
.theBlogImage > img {
  width: 100%;
  height: auto;
  display: block;
}

/* REGISTRATION style */
.registrationGrid {
  display: flex;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 30em) {
  .registrationGrid {
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .registrationGrid {
    /* 480px to 600px */
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .registrationGrid {
    /* 600px to 900px */
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
}

#phoneNumber {
  display: none;
}
@media (max-width: 30em) {
  #phoneNumber {
    display: inline-block;
    margin-top: 3rem;
    margin-left: 3rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  #phoneNumber {
    /* 480px to 600px */
    display: block;
    display: inline-block;
    margin-top: 3rem;
    margin-left: 3rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  #phoneNumber {
    /* 600px to 900px */
    display: block;
    display: inline-block;
    margin-top: 3rem;
    margin-left: 3rem;
  }
}

#theIconBar {
  background-color: #000;
  text-align: center;
}
#theIconBar > a {
  font-size: 2.5rem;
  padding: 0.5rem;
  color: #fff;
  display: none;
}
@media (max-width: 30em) {
  #theIconBar > a {
    display: inline-block;
    font-size: 6rem;
    padding: 2rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  #theIconBar > a {
    /* 480px to 600px */
    display: inline-block;
    font-size: 6rem;
    padding: 2rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  #theIconBar > a {
    /* 600px to 900px */
    display: inline-block;
    font-size: 6rem;
    padding: 2rem;
  }
}
#theIconBar > a:hover {
  color: #be8406;
}

.hamburger-menu {
  position: fixed;
  width: 8rem;
  height: 8rem;
  top: 2rem;
  right: 2rem;
  border-radius: 10%;
  z-index: 100;
  display: none;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background-color: #ce9415;
}
@media (max-width: 30em) {
  .hamburger-menu {
    display: flex;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .hamburger-menu {
    /* 480px to 600px */
    display: flex;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .hamburger-menu {
    /* 600px to 900px */
    display: flex;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .hamburger-menu {
    /* 900px to 1200px */
    display: flex;
  }
}
.hamburger-menu > div {
  width: 80%;
  height: 1rem;
  background: #fff;
}

.mobileHeader {
  background-color: rgba(0, 0, 0, 0.8705882353);
  position: fixed;
  z-index: 20;
  width: 100%;
  text-align: center;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -130rem;
}
.mobileHeader .mobileNavLinks > li {
  padding: 0.7rem;
}
.mobileHeader .mobileNavLinks > li > a {
  color: #fff;
  font-weight: 800;
  padding: 1rem;
}
@media (max-width: 30em) {
  .mobileHeader .mobileNavLinks > li {
    padding: 2.5rem;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .mobileHeader .mobileNavLinks > li {
    /* 480px to 600px */
    padding: 2rem;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .mobileHeader .mobileNavLinks > li {
    /* 600px to 900px */
    padding: 1.8rem;
  }
}
@media (min-width: 56.25em) and (max-width: 75em) {
  .mobileHeader .mobileNavLinks > li {
    /* 900px to 1200px */
    padding: 1.6rem;
  }
}

.mobileHeader.open {
  background-color: rgba(0, 0, 0, 0.8705882353);
  position: fixed;
  z-index: 20;
  width: 100%;
  text-align: center;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  transition: ease-in-out 0.5s;
}

/* Gallery style */
/* Styles for the modal */
.galleryModal {
  display: none;
  position: fixed;
  z-index: 1000; /* Ensure it has a high z-index value */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

#myGalleryH1 {
  text-align: center;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

.galleryModal.active {
  display: block; /* Show modal when active class is added */
}

.galleryModalContent {
  background-color: rgba(0, 0, 0, 0.8117647059);
  margin: 10% auto;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(255, 190, 51, 0.5), 0 0 20px 0 rgba(255, 190, 51, 0.3), 0 0 30px 0 rgba(255, 190, 51, 0.2), 0 0 40px 0 rgba(255, 190, 51, 0.1);
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.5s; /* Add animation */
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Close button */
.galleryClose {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.galleryGridContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

#gallery2016 {
  width: 100%;
  text-align: center;
  color: #000;
}

#gallery2017 {
  width: 100%;
  text-align: center;
  color: #000;
}

#gallery2018 {
  width: 100%;
  text-align: center;
  color: #000;
}

#gallery2019 {
  width: 100%;
  text-align: center;
  color: #000;
}

/* Loader */
#loaderrr-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.733); /* semi-transparent black background */
  z-index: 9999; /* Ensure it's above other content */
}

/* Loader styles */
#loaderrr {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #ffbe33;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 48%;
  top: 45%;
  transform: translate(-50%, -50%);
}

/* Loader animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.galleryLink {
  width: 100%;
  padding: 20px;
  height: 240px; /* Adjust height as needed */
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  border: 1px solid #fff;
}

.galleryLink:hover {
  border: 5px solid #fff;
}

.gallery1 {
  background-image: url("/images/Gallery2016.png");
}

.gallery2 {
  background-image: url("/images/Gallery2017.png");
}

.gallery3 {
  background-image: url("/images/Gallery2018.png");
}

.gallery4 {
  background-image: url("/images/Gallery2019.png");
}

.gallery5 {
  background-image: url("/images/Gallery2024.png");
}

/* Blicking Animation */
@keyframes blink {
  70% {
    color: #fff;
  }
  100% {
    color: transparent;
  }
}
.blinking-text {
  animation: blink 1.5s infinite;
  font-size: 24px;
}

.smallScreenDownloadSection {
  display: none;
}
@media (max-width: 30em) {
  .smallScreenDownloadSection {
    display: block;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .smallScreenDownloadSection {
    /* 480px to 600px */
    display: block;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .smallScreenDownloadSection {
    /* 600px to 900px */
    display: block;
  }
}

.bigScreenDownloadSection {
  display: block;
}
@media (max-width: 30em) {
  .bigScreenDownloadSection {
    display: none;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .bigScreenDownloadSection {
    /* 480px to 600px */
    display: none;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .bigScreenDownloadSection {
    /* 600px to 900px */
    display: none;
  }
}

.photosss {
  width: 400px;
  height: 300px;
}
@media (max-width: 30em) {
  .photosss {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 30em) and (max-width: 37.5em) {
  .photosss {
    /* 480px to 600px */
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 37.5em) and (max-width: 56.25em) {
  .photosss {
    /* 600px to 900px */
    width: 100%;
    height: 100%;
  }
}/*# sourceMappingURL=main.css.map */

.gallery6 {
    background-image: url(/images/elements-2025/6.png);
}
#gallery2024 {
    width: 100%;
    text-align: center;
    color: #000;
}
#gallery2024 img{
    object-fit:cover;
}