@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&display=swap");
body {
  font-family: "Outfit", sans-serif;
  color: #777777;
}

header#mainNav {
  position: fixed;
  width: 100%;
  z-index: 1040;
}
header#mainNav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#mainNav .topHeader {
  background-color: #9AC93E;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.3s all ease;
}
header#mainNav .topHeader p {
  color: #1F2024;
}
header#mainNav .topHeader ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  gap: 40px;
}
header#mainNav .topHeader ul a {
  color: #1F2024;
  text-decoration: none;
}
header#mainNav .topHeader ul a i {
  margin-right: 5px;
}
header#mainNav .topHeader ul a:hover {
  color: #F9F8F7;
}
header#mainNav .bottomHeader {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
  transition: 0.3s all ease;
}
header#mainNav .bottomHeader .closeBtn,
header#mainNav .bottomHeader .navButton {
  display: none;
}
header#mainNav .bottomHeader .logo img {
  height: 80px;
  width: auto;
}
header#mainNav .bottomHeader .nutraba img {
  width: 130px;
  height: auto;
}
header#mainNav .bottomHeader .navCollapse {
  display: flex;
  align-items: center;
}
header#mainNav .bottomHeader .navCollapse ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 40px;
}
header#mainNav .bottomHeader .navCollapse ul a {
  color: #1F2024;
  text-decoration: none;
}
header#mainNav.scrolled .topHeader {
  margin-top: -44px;
}
header#mainNav.scrolled .bottomHeader {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

main {
  padding-top: 154px;
}

#home {
  scroll-margin-top: 154px;
}
#home .parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
#home .parent > div {
  background-color: #1F2024;
  border-radius: 40px;
  display: grid;
}
#home .div1 {
  grid-area: 1/1/3/2;
}
#home .div1 .imageCard .regButton {
  height: 150px;
  width: 150px;
  font-size: 2rem;
}
#home .div2 {
  grid-area: 1/2/2/3;
}
#home .div3 {
  grid-area: 2/2/3/3;
}
#home .imageCard {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px 50px;
  display: grid;
  align-content: space-between;
  transition: 0.3s all ease;
}
#home .imageCard img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  filter: saturate(0) contrast(1.5);
  mix-blend-mode: multiply;
  opacity: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s all ease;
}
#home .imageCard h1 {
  color: #F9F8F7;
  font-weight: 400;
  font-family: "Bebas Neue", serif;
  font-size: 4rem;
  text-shadow: 0 0 10px #1F2024;
  transition: 0.3s all ease;
}
#home .imageCard .regButton {
  width: 125px;
  height: 85px;
  background-color: #9AC93E;
  font-family: "Bebas Neue", serif;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  color: #1F2024;
  border: none;
  text-align: left;
  display: inline-flex;
  margin-left: auto;
  position: relative;
  border-radius: 10px;
  transition: 0.3s all ease;
}
#home .imageCard .regButton::after {
  content: "\f061";
  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: 10px;
  bottom: 10px;
  font-size: 1rem;
  transition: 0.3s all ease;
}
#home .imageCard .regButton:hover {
  background-color: #F9F8F7;
}
#home .imageCard .regButton:hover::after {
  transform: translateX(5px);
}
#home .imageCard:hover h1 {
  transform: translate(-20px, -20px);
}
#home .imageCard:hover img {
  filter: saturate(1) contrast(1);
  opacity: 0.2;
}

.sectionHead {
  margin-bottom: 35px;
  position: relative;
  color: #1F2024;
}
.sectionHead::before {
  content: "";
  background-color: #9AC93E;
  width: 50px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sectionHead h3 {
  margin-bottom: 0;
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-size: 72px;
}
.sectionHead h5 {
  margin-bottom: 0;
  font-size: 48px;
  font-family: "Bebas Neue", serif;
  font-weight: 400;
}
.sectionHead.dark h3, .sectionHead.dark h5 {
  color: #F9F8F7;
}

.btn-primary {
  --bs-btn-color: #1f2024;
  --bs-btn-bg: #9AC93E;
  --bs-btn-border-color: #9AC93E;
  --bs-btn-hover-color: #1f2024;
  --bs-btn-hover-bg: #89B633;
  --bs-btn-hover-border-color: #85B02F;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #1f2024;
  --bs-btn-active-bg: #85B02F;
  --bs-btn-active-border-color: #7CA728;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #9AC93E;
  --bs-btn-disabled-border-color: #9AC93E;
}

.modal-title {
  color: #1F2024;
}

.form-label {
  color: #1F2024;
  font-weight: 600;
}

.form-control::-moz-placeholder {
  color: #ccc;
  font-weight: 100;
  opacity: 1; /* Firefox */
}

.form-control::placeholder {
  color: #ccc;
  font-weight: 100;
  opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ccc;
  font-weight: 100;
}

.borderSec {
  border: 1px solid #eee;
  border-radius: 5px 16px 16px 16px;
  padding: 10px;
  position: relative;
}
.borderSec::before {
  content: attr(data-head);
  position: absolute;
  color: #ccc;
  background-color: #fff;
  left: 5px;
  top: 0;
  padding: 5px;
  font-size: 10px;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.pCard {
  border-radius: 25px;
  padding: 15px;
  background-color: #F9F8F7;
}
.pCard .imgWrapper {
  position: relative;
  z-index: 1;
  padding-top: 100%;
  margin-bottom: 10px;
}
.pCard .imgWrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.pCard h5 {
  margin-bottom: 0;
  font-weight: 600;
  color: #1F2024;
}
.pCard p {
  margin-bottom: 0;
  color: #9AC93E;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 2px;
}

#schedule {
  background-color: #1F2024;
}
#schedule .eventSchedule h2 {
  font-family: "Bebas Neue", serif;
  color: transparent;
  -webkit-text-stroke: 1px #9AC93E;
  font-weight: 400;
  font-size: 7rem;
}
#schedule .eventSchedule h2 span {
  color: #F9F8F7;
  -webkit-text-stroke: initial;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  transform: translateY(-15px);
}
#schedule .eventSchedule table {
  width: 100%;
}
#schedule .eventSchedule table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}
#schedule .eventSchedule table td {
  text-align: right;
  padding: 5px 10px;
  color: #F9F8F7;
}
#schedule .eventSchedule table th {
  padding: 5px 10px;
  color: #9AC93E;
  text-transform: uppercase;
  font-weight: 300;
}
#schedule .eventSchedule table th small {
  font-size: 10px;
  color: #777777;
}

#about {
  scroll-margin-top: 110px;
}
#about .col-lg-4 {
  display: grid;
}
#about .venueCard {
  scroll-margin-top: 110px;
  padding: 30px;
  border-radius: 40px;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.73), transparent);
  color: #F9F8F7;
  display: grid;
  align-content: space-between;
}
#about .venueCard img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  filter: saturate(0);
}
#about .venueCard .dirBtn {
  padding: 20px 20px 20px 30px;
  background-color: #9AC93E;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #1F2024;
  border-radius: 10px;
  align-items: center;
  transition: 0.3s all ease;
}
#about .venueCard .dirBtn i {
  transition: 0.3s all ease;
}
#about .venueCard .dirBtn:hover {
  background-color: #F9F8F7;
}
#about .venueCard .dirBtn:hover i {
  transform: translateX(5px);
}

#partners {
  background-color: #F9F8F7;
}
#partners img {
  border-radius: 20px;
}

.faqList .faqGrp {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.faqList .accordion-button:not(.collapsed) {
  background-color: rgba(154, 201, 62, 0.3);
  color: #1F2024;
}
.faqList .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 201, 62, 0.4);
}
.faqList .accordion-button::after {
  filter: brightness(0);
}
.faqList .faqItem {
  background-color: #F9F8F7;
  padding: 10px 100px 10px 20px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.faqList .faqItem::before {
  content: "";
  display: grid;
  width: 20px;
  height: 20px;
  place-content: center;
  font-size: 20px;
  color: #1F2024;
  background-color: #1F2024;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
  -webkit-clip-path: polygon(calc(50% - 1px) 2px, calc(50% + 1px) 2px, calc(50% + 1px) calc(50% - 1px), calc(100% - 2px) calc(50% - 1px), calc(100% - 2px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% + 1px) calc(100% - 2px), calc(50% - 1px) calc(100% - 2px), calc(50% - 1px) calc(50% + 1px), 2px calc(50% + 1px), 2px calc(50% - 1px), calc(50% - 1px) calc(50% - 1px));
          clip-path: polygon(calc(50% - 1px) 2px, calc(50% + 1px) 2px, calc(50% + 1px) calc(50% - 1px), calc(100% - 2px) calc(50% - 1px), calc(100% - 2px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% + 1px) calc(100% - 2px), calc(50% - 1px) calc(100% - 2px), calc(50% - 1px) calc(50% + 1px), 2px calc(50% + 1px), 2px calc(50% - 1px), calc(50% - 1px) calc(50% - 1px));
  transition: 0.3s all ease;
}
.faqList .faqItem .question {
  color: #1F2024;
  font-weight: 700;
}
.faqList .faqItem .answer {
  padding-top: 20px;
  display: none;
  color: #777777;
}
.faqList .faqItem.active::before {
  -webkit-clip-path: polygon(calc(50% - 1px) calc(50% - 1px), calc(50% + 1px) calc(50% - 1px), calc(50% + 1px) calc(50% - 1px), calc(100% - 2px) calc(50% - 1px), calc(100% - 2px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% - 1px) calc(50% + 1px), calc(50% - 1px) calc(50% + 1px), 2px calc(50% + 1px), 2px calc(50% - 1px), calc(50% - 1px) calc(50% - 1px));
          clip-path: polygon(calc(50% - 1px) calc(50% - 1px), calc(50% + 1px) calc(50% - 1px), calc(50% + 1px) calc(50% - 1px), calc(100% - 2px) calc(50% - 1px), calc(100% - 2px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% + 1px) calc(50% + 1px), calc(50% - 1px) calc(50% + 1px), calc(50% - 1px) calc(50% + 1px), 2px calc(50% + 1px), 2px calc(50% - 1px), calc(50% - 1px) calc(50% - 1px));
}

.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
  scroll-margin-top: 110px;
}

.link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #777777;
}
.link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  height: 1px;
  width: 0;
  background-color: #9AC93E;
  transition: 0.5s all ease;
}
.link:hover {
  color: #9AC93E;
  text-decoration: none;
}
.link:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.link.alt {
  color: #F9F8F7;
}
.link.alt::before {
  background-color: #9AC93E;
}
.link.alt:hover {
  color: #9AC93E;
}
.link.alt:hover::before {
  background-color: #9AC93E;
}

.socialList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: space-between;
  list-style-type: none;
}
.socialList li {
  margin-bottom: 10px;
  flex: 0 0 50px;
  width: 50px;
}
.socialList li a {
  display: inline-grid;
  transition: 0.5s background-color ease;
  width: 50px;
  height: 50px;
  place-content: center;
  background-color: #777777;
  color: #F9F8F7;
  text-decoration: none;
  border-radius: 25px;
}
.socialList li a.fb:hover {
  background-color: #1877F2;
}
.socialList li a.insta:hover {
  background-color: #E4405F;
}
.socialList li a.pin:hover {
  background-color: #BD081C;
}
.socialList li a.twtr:hover {
  background-color: #1DA1F2;
}
.socialList li a.yt:hover {
  background-color: #CD201F;
}
.socialList li a.lin:hover {
  background-color: #0A66C2;
}

.floatIcons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 2;
  transition: 0.5s all ease;
}

.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;
}
.whatsappBtn i {
  color: #fff;
}
.whatsappBtn span {
  display: none;
}
.whatsappBtn:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  bottom: 21px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}
.whatsappBtn:active {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

footer {
  background-color: #1F2024;
  color: #F9F8F7;
  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 #777777;
}
footer .otherSection {
  padding-top: 57px;
}

#partners h5 {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  color: #1F2024;
}

.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: #777777;
}
.unlist.icon li:not(:last-child) {
  margin-bottom: 18px;
}
.unlist.icon li .icon {
  flex: 0 0 16px;
  width: 16px;
  padding-top: 2px;
  color: #fff;
}

@media (max-width: 1199px) {
  header#mainNav .bottomHeader .navCollapse {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #F9F8F7;
    min-width: 300px;
    padding: 40px;
    transform: translateX(100%);
    transition: 0.3s all ease;
  }
  header#mainNav .bottomHeader .navCollapse .closeBtn {
    display: block;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #F9F8F7;
    color: #1F2024;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  header#mainNav .bottomHeader .navCollapse ul {
    display: grid;
  }
  header#mainNav .bottomHeader .navCollapse.active {
    transform: translateX(0);
  }
  header#mainNav .bottomHeader .navButton {
    display: block;
    order: 3;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #9AC93E;
    color: #1F2024;
    border-radius: 10px;
  }
  header#mainNav .bottomHeader .nutraba {
    margin-left: auto;
  }
  header#mainNav .bottomHeader .container {
    justify-content: initial;
  }
}
@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;
  }
  main {
    padding-top: 161px;
  }
}
@media (max-width: 767px) {
  #home .parent {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  #home .parent div {
    grid-area: initial;
    border-radius: 30px;
  }
  #home .div1 .imageCard .regButton {
    font-size: 1.4rem;
    height: auto;
    width: 100%;
  }
  #home .imageCard {
    padding: 20px;
  }
  #home .imageCard img {
    border-radius: 30px;
  }
  #home .imageCard h1 {
    font-size: 2.5rem;
    margin-bottom: 12vw;
  }
  #home .imageCard h1 br {
    display: none;
  }
  #home .imageCard:hover h1 {
    transform: none;
  }
  #home .imageCard .regButton {
    width: 100%;
    height: auto;
    padding: 14px 30px 10px 20px;
  }
  #home .imageCard .regButton::after {
    bottom: calc(50% - 8px);
    right: 20px;
  }
  #about .row {
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  #about .venueCard {
    border-radius: 30px;
    padding: 20px;
  }
  #about .venueCard img {
    border-radius: 30px;
  }
  #about .venueCard h5 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  #about .venueCard p {
    margin-bottom: 50px;
  }
  #about .venueCard p br {
    display: none;
  }
  .sectionHead {
    margin-bottom: 20px;
  }
  .sectionHead h3 {
    font-size: 42px;
  }
  .sectionHead::before {
    height: 5px;
    width: 40px;
  }
  #schedule .eventSchedule h2 {
    font-size: 5rem;
  }
  #schedule .eventSchedule h2 span {
    font-size: 1.2rem;
    display: inline;
    margin-left: 5px;
  }
  .sectionPad {
    padding-top: 70px;
    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: #9AC93E;
    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: 130px;
    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);
  }
  header#mainNav.scrolled .topHeader {
    margin-top: 0px;
  }
  header#mainNav.scrolled .topHeader p {
    transform: translateY(100%);
  }
  main {
    padding-top: 80px;
  }
  #home {
    padding-top: 12px;
  }
  #home .parent {
    grid-row-gap: 12px;
    grid-column-gap: 12px;
  }
  .sectionPad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #schedule .eventSchedule h2 {
    font-size: 3rem;
  }
  #schedule .eventSchedule h2 span {
    font-size: 1.2rem;
  }
  #about {
    padding-top: 12px !important;
  }
}/*# sourceMappingURL=main.css.map */