@font-face {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  src: url(../fonts/ITCBold.woff2) format('woff2');
}

@font-face {
  font-family: 'ITC Avant Garde Gothic Pro-Book';
  src: url(../fonts/ITCBook.woff2) format('woff2');
}

@font-face {
  font-family: 'AlteHaasGroteskBold';
  src: url(../fonts/AlteHaasGroteskBold.woff2) format('woff2');
}

@font-face {
  font-family: 'AlteHaasGroteskRegular';
  src: url(../fonts/AlteHaasGroteskRegular.woff2) format('woff2');
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  color: #000;
  font-family: 'ITC Avant Garde Gothic Pro-Book';
  font-size: 1.528vw;
  background-color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  font-weight: normal;
  text-transform: uppercase;
}

h1 {
  font-size: 3.611vw;
}

h2, h3 {
  font-size: 2.917vw;
}

header {
  background: #000;
}

.sticky-top {
  position: fixed;
  width: 100%;
}

.navbar-brand img {
  width: 5.208vw;
  height: auto;
}

#navMenu {
  font-size: 1.111vw;
  text-transform: uppercase;
  position: relative;

  /* add gap between items */
  display: flex;

  list-style: none;
  margin: 0 20px;
  padding: 0;
}

#navMenu ul {
  gap: 15px;
  /* adjust spacing as needed */
}

#navMenu li a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover and Active share same color */
#navMenu li a:hover,
#navMenu li a.active {
  color: #1a7a45;
  text-decoration: none;
}

#navToggler {
  position: absolute;
  top: 20px;
  right: 5.208vw;
  display: inline-block;
  cursor: pointer;
  z-index: 10;
}

#navToggler svg {
  width: 2.604vw;
  height: auto;
}

#navToggler.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

#floatingMenu {
  display: block;
  position: absolute;
  top: 0px;
  right: 3.508vw;
  z-index: 2;
  text-align: right;
  line-height: 90%;
  text-transform: uppercase;
  font-size: 1.111vw;
  background: black;
  padding: 5vw 20px 20px 20px;
}

#floatingMenu ul, #floatingMenu li {
  margin: 0px 0px;
  list-style-type: none;
  display: block;
  width: 100%;
}

#floatingMenu ul {
  padding-top: 20px;
}

#floatingMenu li {
  margin-bottom: 20px;
}

#floatingMenu li a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

#floatingMenu li a:hover,
#floatingMenu li a.active {
  color: #1a7a45;
  text-decoration: none;
}

#navMenu {
  transition: opacity 0.3s ease-in-out;
  /* ✅ correct property */
}

#navMenu.hide {
  opacity: 0;
}

#navMenu.show {
  opacity: 1;
}

#featured {
  display: flex;
  position: relative;
  margin-top: 3.5vw;
}

#hero {
  display: flex;
  width: 100%;
  padding: 3.208vw 0 7.208vw;
  min-height: 29.042vw;
  background: #000;
  color: white;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 97.04%, 0% 83.29%);
  text-transform: uppercase;
}

#hero h1, #hero p {
  margin: 0;
  padding: 0;
}

#hero p:nth-child(2) {
  font-size: 2.5vw;
}

#hero p:last-child {
  color: #1a7a45;
}

#videoPlayer {
  clip-path: polygon(100% 4.54%, 11.42% 0%, 10.72% 38.16%, 17.79% 38.57%, 17.31% 57.4%, 0% 57.49%, 2.37% 100%, 100% 93.1%);
  display: inline-block;
  width: 50vw;
  height: 32vw;
  background: transparent;
  position: absolute;
  right: -2px;
  bottom: -17.15vw;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

#marqueText {
  display: block;
  width: 150%;
  position: relative;
  left: -10%;
  background: #1a7a45;
  color: #FFF;
  padding: 30px 0 20px;
  margin: 1.108vw 0 13vw;
  transform: rotate(-10deg);
  overflow: hidden;
  white-space: nowrap;
}

#marqueText .marquee {
  display: inline-flex;
  animation: marquee 1000s linear infinite;
}

#marqueText h2 {
  display: inline-block;
  margin: 0;
  padding: 0 0;
  line-height: normal;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* only shift half, because we duplicate */
}

#main {
  text-align: center;
  text-transform: uppercase;
  color: #e9381d;
}

#main h2 {
  color: #000;
}

#main a {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  color: #e9381d;
  text-decoration: none;
  padding: 12px 28px 6px;
  border: 2px solid #0e733b;
  border-radius: 9999px;
  display: inline-block;
  background-color: #fff;
  transition: all 0.3s ease;
}

#main a:hover {
  background-color: #0e733b;
  color: #fff;
}

@keyframes marquee {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(30%);
  }
}

#prevWinners {
  padding: 50px 0;
  margin: 150px 0 450px;
  position: relative;
}

#prevWinners h2 {
  z-index: 2;
  margin-bottom: 100px;
}

.carousel {
  z-index: 2;
}

.side-image {
  width: 15%;
  min-width: 20vw;
  height: 26.25vw;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
  position: absolute;
  opacity: 0.5;
  top: -50px;
}

.side-image:hover {
  border-color: #0d6efd;
}

.side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-image.left {
  left: 0;
}

.side-image.right {
  right: 0;
}

.carousel-inner {
  width: 100%;
  max-width: 1320px;
  overflow: visible;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

.carousel-indicators {
  bottom: 50px;
}

.carousel-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  min-height: 60vw;
  position: relative;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-prev img,
.carousel-control-next img {
  width: 80px;
  height: auto;
}

.carousel-control-prev {
  left: -87px;
}

.carousel-control-next {
  right: -87px;
}

.carousel-indicators [data-bs-target] {
  border: #f40202 solid 1px;
  min-height: 12px;
  background: transparent;
  width: 60px;
}

.carousel-indicators .active {
  background: #f40202;
}

.carousel-item h3,
.carousel-item .tag-label {
  position: absolute;
  z-index: 2;
}

.carousel-item h3 {
  top: 30%;
  left: 10%;
}

.carousel-item h3,
.carousel-item h4 {
  font-family: 'ITC Avant Garde Gothic Pro-Book';
}

.tag-label {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.1s ease;
  margin-left: 10%;
  margin-top: 2vw;
  width: 80%;
}

.carousel-item h3 {
  color: #FFF;
}

.director {
  width: 30%;
}

.cast {
  width: 70%;
}

.director p,
.cast p {
  color: #1a7a45;
}

.director,
.cast,
.director p,
.cast p {
  text-transform: uppercase;
}

.synopsis {
  margin-top: 5%;
}

.synopsis p {
  color: #606060;
}

.tag-label> :last-child {
  flex: 0 0 100%;
}

.carousel-item.active .tag-label {
  opacity: 1;
}

.carousel-item.carousel-item-start .tag-label,
.carousel-item.carousel-item-end .tag-label {
  opacity: 0;
}

#zebra {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.zeb {
  display: block;
  width: 120%;
  left: -5%;
  min-height: 40px;
  background: #d3d2d2;
  transform: rotate(5deg);
  position: relative;
  z-index: -1;
}

.zeb.var2 {
  top: 50px;
}

.zeb.var3 {
  top: 120px;
}

#faqs {
  margin-bottom: 10vw;
  position: relative;
}

.page-template-home #faqs {
  margin-top: 30vw;
}

#faqs h4, #faqs h1, #partners h4 {
  font-size: 2.917vw;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

#faqs h1::after, #faqs h4::after, #partners h4::after {
  content: "";
  display: block;
  width: 55%;
  height: 12px;
  background-color: #000;
  margin: 0 auto;
}

#faqs h5,
#faqs h5 button {
  font-size: 1.528vw;
  color: #000;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-item {
  border: none !important;
  background: transparent !important;
}

.accordion-body {
  border: none !important;
  background: transparent !important;
  padding-left: 0;
}

#faqAccordion {
  margin-bottom: 3vw;
}

.down-caret {
  width: 25px;
  height: auto;
}

.readmore {
  float: right;
  font-family: 'ITC Avant Garde Gothic Pro-Book';
  color: #e9381d;
  text-decoration: none;
  padding: 10px 22px 4px;
  border: 2px solid #0e733b;
  border-radius: 9999px;
  display: inline-block;
  background-color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.readmore:hover {
  background-color: #0e733b;
  color: #fff;
}

.bottom,
.bottom a {
  color: #7f7f7f;
  text-decoration: none;
}

footer {
  font-size: 0.833vw;
  color: #FFF;
}

footer h5 {
  font-size: 1.458vw;
  margin-bottom: 5%;
}

footer a {
  text-decoration: none;
  color: #FFF;
}

footer a:hover,
footer ul li a:hover {
  color: #1a7a45;
}

.footer-menu {
  text-transform: uppercase;
}


@media (min-width: 1400px) {
  #navMenu {
    width: 85%
  }
}

@media (max-width: 1200px) {
  max-width: 1140px;
}

@media (max-width: 992px) {
  max-width: 960px;
}

@media (max-width: 768px) {
  max-width: 720px;
}

@media (max-width: 576px) {
  max-width: 540px;
}

@media (max-width: 768px) {
  .carousel-container {
    flex-direction: column;
  }

  .side-image {
    width: 20%;
    margin: 5px 0;
  }

  .carousel-inner {
    width: 90%;
  }
}

@media (min-width: 576px) {
  .carousel-inner {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .carousel-inner {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .carousel-inner {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .carousel-inner {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .carousel-inner {
    max-width: 1320px;
  }
}

@media (min-width: 2000px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .container {
    width: 80%;
    max-width: 100%;
  }

  .carousel-inner {
    max-width: 2000px;
  }
}

#videoPlayer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Content */
.main-content {
  display: flex;
  width: 100%;
  margin: 350px 0px 250px 0px;
  flex-direction: column;
}

.page-template-default .main-content, .page-template-faq .main-content {
  margin: 150px 0px 250px 0px;
}

.page-template-entry {
  background: black;
  color: white;
}

.main-content.entry {
  margin: 200px 0px 250px 0px;
}

.main-content h2 {
  display: block;
  margin-bottom: 30px;
}

.page-template-default #hero img {
  width: 380px;
  height: auto;
}

.page-template-default #hero h1 {
  font-size: 2.811vw;
}

.page-template-default #hero p:nth-child(2) {
  font-size: 1.58vw;
}

footer img {
  width: 250px;
  height: auto;
  align-self: flex-end;
  float: right;
}

.main-content.entry {
  font-size: 1.7vw;
}

.main-content.entry h1, .main-content.entry h2, .main-content.entry p {
  text-transform: none;
  text-align: center;
}

.main-content.entry h1 {
  font-size: 3.5vw
}

.main-content.entry h2 {
  margin: 80px 0px;
  position: relative;
  text-transform: uppercase;
}

.main-content.entry h2::before {
  content: '';
  position: absolute;
  top: 50%;
  /* vertically center */
  left: 50%;
  /* horizontally center */
  transform: translate(-50%, -50%);
  /* offset by half width & height */
  z-index: -1;
  width: 300px;
  height: 180px;
  background: url(../images/redlogo.png) no-repeat;
  background-size: contain;
}

.main-content.entry h2 small {
  display: block;
  font-size: 1.5vw
}

.page-template-entry #faqs h4::after {
  background-color: #FFF;
}

.page-template-entry #faqs h5, .page-template-entry #faqs h5 button, .page-template-entry .accordion-body {
  color: #FFF;
}

.page-template-entry form h2 {
  text-transform: uppercase !important;
  text-align: left !important;
}

.page-template-entry form h2:before {
  display: none;
}

.page-template-entry form h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  margin: 0 auto;
}

.page-template-entry form input[type=submit] {
  text-transform: uppercase;
  padding: 10px 30px;
  background: #fe1b26;
  color: #FFF;
  border: none;
  /* optional for cleaner button */
  cursor: pointer;
  /* optional for hover effect */
  border-radius: 10px;
}

.page-template-entry form a {
  color: #fe1b26;
  text-decoration: none;
}

.page-template-entry form a:hover {
  color: #fe1b26;
  text-decoration: underline;
}

/*Overrides*/
body.user-registration-membership_page_user-registration-login-forms .user-registration.ur-frontend-form:has(.ur-grid-2), body.user-registration-membership_page_user-registration-login-forms .user-registration.ur-frontend-form:has(.ur-grid-3), body.user-registration-page .user-registration.ur-frontend-form:has(.ur-grid-2), body.user-registration-page .user-registration.ur-frontend-form:has(.ur-grid-3) {
  max-width: 100% !important;
  margin: 0px 0px !important;
  padding: 0px 0px !important;
  box-shadow: none !important;
  text-transform: uppercase;
  font-size: 1.528vw;
}

body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-form-row .ur-form-grid .ur-field-item label:not(.user-registration-error) {
  margin-bottom: 0px !important;
}

.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item .ur-frontend-field {
  font-size: 16px !important;
}

body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-form-row .ur-form-grid .ur-field-item .input-wrapper input, .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item .ur-frontend-field {
  padding: 5px 20px !important;
  border-radius: 50px !important;
  /* Makes it pill-shaped */
  border: 2px solid #1a7a45;
  /* Light gray border */
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* .ur-field-item{
  margin-top: 50px;
} */
#check_box_1758460301_field .ur-label {
  display: none !important;
}

.ur-label {
  margin-left: 5px;
}

.ur-field-item ul {
  display: flex;
  flex-direction: row;
  width: 75%;
  align-self: center;
  justify-content: center;
  margin: 0px auto !important;
  text-align: center;
}

.ur-field-item ul li {
  width: 35%;
}

.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item.field-checkbox ul li input[type=checkbox] {
  border: solid 2px #000;
}

#ur-membership-registration {
  text-align: center;
  justify-content: center;
  display: flex;
}

.ur-button-container {
  margin: 0px auto;
}

body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container .ur-submit-button {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  color: #e9381d !important;
  text-decoration: none;
  padding: 15px 35px 15px !important;
  border: 2px solid #0e733b !important;
  border-radius: 9999px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #fff !important;
  font-size: 1.5vw !important;
}

body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container .ur-submit-button:hover {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  color: #FFF !important;
  text-decoration: none;
  padding: 15px 35px 15px !important;
  border: 2px solid #0e733b !important;
  border-radius: 9999px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #e9381d !important;
  font-size: 1.5vw !important;
}

.fvu-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.fvu-form-row input[type="text"],
.fvu-form-row input[type="email"],
.fvu-form-row input[type="file"],
.fvu-form-row textarea {
  width: 100%;
  border-radius: 10px;
}

.fvu-form-row textarea {
  width: 100%;
}

.register-as, .category {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-btn {
  position: relative;
  padding: 5px 30px;
  border: 2px solid #FFF;
  border-radius: 50px;
  cursor: pointer;
  background-color: black;
  color: #FFF;
  transition: all 0.3s;
  margin-top: -10px;
  font-size: 1.2vw;
  text-transform: uppercase;
}

.checkbox-btn input {
  display: none;
  /* hide the actual checkbox */
}

/* When input inside label is checked, style the label */
.checkbox-btn input:checked {
  /* not needed here */
}

/* Use this to style the label when its input is checked */
.checkbox-btn input:checked+span,
.checkbox-btn input:checked~.checkbox-btn {
  /* alternative, but easiest: just wrap text in span or use :has() */
}

/* Modern solution using :has() */
.checkbox-btn:has(input:checked) {
  background-color: #FFF;
  color: #000;
  border-color: #FFF;
}

.checkbox-btn:hover {
  background-color: #333;
}

.page-id-14 .main-content h2:first-child {
  display: none
}

.trp-shortcode-overlay {
  left: 5vw !important;
}

.falang-dropdown {
  position: relative;
  display: inline-block;
}

.falang-toggle {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1vw;
  text-transform: uppercase;
}

.falang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
  z-index: 999;
}

.falang-menu.open {
  display: block;
}

.falang-menu li a {
  display: block;
  padding: 8px 16px;
  margin-top: 4px;
  background: #1a7a45;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 1vw;
  text-transform: uppercase;
}

.falang-menu li a:hover {
  background: #145c34;
}

.header-widgets {
  display: none;
  position: relative;
  right: -25px;
  top: 0px;
}

/*Adjustments*/
vid .urm-d-none {
  display: flex !important
}

#ur-membership-registration {
  flex-direction: column;
}

#urm-total_container {
  display: none !important;
}

.user-registration-page .ur_membership_registration_container .ur_membership_frontend_input_container {
  width: 50%
}

.user-registration-page .ur_membership_registration_container .ur_membership_frontend_input_container .ur_membership_input_label {
  font-weight: normal !important
}

.page-template #featured .container img {
  width: 35% !important
}

.page-template-default h1 {
  font-size: 2.111vw
}

.page-template-default h2, .page-template-default h3 {
  font-size: 1.317vw;
}

.page-template-default .main-content {
  font-size: 1.15vw;
}

.carousel-container {
  display: flex;
  align-items: flex-start;
  /* align items to top so height grows naturally */
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  /* remove fixed min-height */
  height: auto;
  /* let it grow based on content */
  position: relative;
}

.carousel-container {
  position: relative;
  /* you already have this */
}

.carousel-item {
  position: relative;
  /* instead of absolute */
}

.synopsis p {
  font-size: 1vw;
}

.carousel.slide {
  width: 60vw
}

.page-template-faq #faqs {
  margin-top: -10vw;
}

.page-template-faq #faqs h1 {
  margin-bottom: 4vw
}

#urm-membership-list {
  display: flex;
  flex-direction: column;
}

#urm-membership-list label[for="ur-membership-select-membership-131"] {
  order: 1;
  /* Make Early Bird the 2nd item */
}

#urm-membership-list label[for="ur-membership-select-membership-132"] {
  order: 2;
  /* Regular Submission after Early Bird */
}

#urm-membership-list label[for="ur-membership-select-membership-133"] {
  order: 3;
  /* Late Submission first */
}

/* Hide Bank Transfer option in checkout/membership form */
input[value="bank"],
label[for*="bank"] {
  display: none !important;
}

.ur-field-item.field-checkbox ul {
  display: flex;
  gap: 20px;
  width: 100%;
}

/*Additional*/
.page-template-submission #hero {
  clip-path: polygon(0% 0%, 100% 0%, 100% 90.25%, 0% 100%);
}

.page-template-submission #hero h1 small {
  font-size: 1.5vw;
  display: block;
  font-weight: normal
}

.page-template-submission #hero {
  padding: 5.208vw 0;
  min-height: 36.042vw;
}

.page-template-submission #videoPlayer {
  bottom: 1.75vw;
  clip-path: polygon(100% 4.54%, 11.42% 0%, 10.72% 38.16%, 17.79% 38.57%, 17.31% 57.4%, 0% 57.49%, 2.37% 100%, 100% 94.5%);
}

.page-template-submission #hero p:last-child {
  color: #1a7a45;
}

.page-template-submission #featured {
  margin-bottom: 3vw;
}

.page-template-submission .main-content {
  margin: 3.5vw 0;
}

/*.page-template-submission #videoPlayer img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}*/

.ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item .ur-frontend-field {
  border-radius: 30px !important;
}

footer img {
  margin-top: -30px;
  width: 180px !important;
}

footer {
  border: none !important;
}

#subFooter {
  background: #1a7a45;
  color: #FFF;
}

#subFooter div:last-child {
  text-transform: none !important;
  font-size: 1vw;
}

/*FORM STYLE*/
#fvu-upload-form {
  font-family: 'ITC Avant Garde Gothic Pro-Book';
}

#fvu-upload-form label.inline {
  margin-right: 0px;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  font-size: 16px;
}

#fvu-upload-form h2 {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

.fvu-col {
  display: block;
}

.inline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  margin: 6px 6px 0 0;
  border: 2px solid #0f7a3a;
  border-radius: 30px;
  font-weight: 800;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: transparent;
  transition: all .2s ease;
  text-transform: uppercase;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

.inline span:hover {
  background: #1a7a45;
  color: #FFF;
}

.inline input[type="radio"] {
  display: none;
}

.inline input[type="radio"]:checked+span {
  background: #1a7a45;
  border-color: #1a7a45;
  color: #fff;
}

.cdetails label.inline {
  font-weight: 800;
}

.cdetails .fvu-label {
  text-transform: none
}

.graytext {
  color: gray
}

.fvu-input, .fvu-select, .fvu-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #000;
  box-sizing: border-box;
  background: white;
  font-size: 18px;
  line-height: 18px;
}

#directors-wrap, #producers-wrap, #writers-wrap, #cast-wrap {
  display: inline-block;
  width: 94%;
}

#directors-wrap+p, #producers-wrap+p, #writers-wrap+p, #cast-wrap+p {
  display: inline-block;
  width: 5%;
}

.inner-pages {
  margin-top: 10vw;
  margin-bottom: 10vw;
}

.inner-pages strong {
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

.in-page-col2 h2 {
  color: #1a7a45;
  font-size: 2vw;
}

.in-page-col2 h2:after {
  content: "";
  width: 85%;
  height: 2px;
  background: #1a7a45;
  display: block;
}

.in-page-social svg {
  width: 50px;
  height: auto;
  margin-right: 5px;
}

#partners {
  margin-top: 15vw;
  margin-bottom: 10vw;
}

/*MY ACCOUNT*/
.user-registration-account h1 {
  display: none;
}

.user-registration-account h2 {
  font-size: 3vw;
}

.submission-pill-buttons {
  justify-content: center;
}

.emf-tab {
  border-radius: 0px !important;
  border: solid 2px #000;
  margin-right: 0px !important;
  text-transform: uppercase;
  font-size: 1vw;
  font-weight: bold;
  background: #FFF !important;
  border-bottom: 0px !important;
}

.emf-tab.active {
  background: #000 !important;
  color: #fff;
}

.emf-tab:nth-child(2) {
  border-right: 0px;
  border-left: 0px;
}

.emf-tabs {
  border-bottom: 2px solid #000 !important;
  margin-bottom: 0px !important;
}

.emf-tab-content {
  border: 2px solid #000 !important;
  padding: 30px 30px !important;
  margin-top: 5px;
}

.submission-pill-buttons .flex-column {
  margin: 20px !important;
  padding: 40px 40px;
  background: #cecece;
  width: 28.5%;
  font-size: 0.9vw;
  white-space: normal;
}

.submission-pill-buttons .flex-column div {
  white-space: normal !important;
}

.submission-pill-buttons .flex-column h2 {
  font-size: 2vw;
  margin-bottom: 20px !important;
}

.submission-pill-buttons .flex-column.active {
  background: #000;
}

.submission-pill-buttons .flex-column h2, .submission-pill-buttons .flex-column {
  color: #969696 !important;
}

.submission-pill-buttons .flex-column.active h2, .submission-pill-buttons .flex-column.active {
  color: #FFF !important;
}

.submission-pill-buttons .flex-column button {
  background: #939393;
  color: #FFF;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1vw;
  border: 0px !important;
  margin-top: 40px !important;
  width: 100%;
}

.submission-pill-buttons .flex-column.active button {
  background: #347140;
  color: #FFF;
}

.submission-pill-buttons .flex-column h3 {
  font-size: 1.5vw;
  margin-top: 15px;
}

/* SUBMISSIONS */
.emf-tab-content#submissions, .emf-tab-content#details {
  border: 0px !important;
  padding: 30px 0px !important;
  margin-top: 5px;
}

#submissions h2 {
  font-size: 2vw;
}

#submissions .card.p-3 {
  padding: 0px 0px !important;
  border: 0px !important;
}

#submissions .card.h-100.p-3 {
  padding: 1rem !important;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color) !important;
}

#submissions .row:nth-child(2) .card.rounded-3 {
  background: #e2e2e2 !important;
  border: 0px !important;
  padding: 20px 20px !important;
  text-align: center;
}

#submissions .row:nth-child(2) .card.rounded-3 .text-warning {
  background: #d6d6d6;
  color: #000 !important;
  padding: 10px 10px;
}

/* User Details */
/* Heading */
#details h3 {
  font-size: 2vw;
  margin-bottom: 1rem;
}

/* Form container */
#details form {
  max-width: 100%;
  /* slightly wider to accommodate selects */
  margin-top: 1rem;
}

/* Form rows */
#details .form-row {
  margin-bottom: 1rem;
}

/* Labels */
#details label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* Text, email, password, number inputs */
#details input[type="text"],
#details input[type="email"],
#details input[type="password"],
#details input[type="number"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

/* Select dropdowns */
#details select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

/* Textarea */
#details textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

/* Focus states */
#details input:focus,
#details select:focus,
#details textarea:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Submit button */
#details button[type="submit"] {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 0.375rem;
  color: #fff;
  background: #347140 !important;
  border: 0 !important;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

/* Hover */
#details button[type="submit"]:hover {
  background-color: #0b5ed7 !important;
}

/* Optional: style abbr required fields */
#details abbr.required {
  color: red;
  text-decoration: none;
  margin-left: 2px;
}

/* Optional: add small word count for textarea */
#details .ur-input-count {
  font-size: 0.875rem;
  color: #737373;
  float: right;
}


/*FORM SUBMISSION - ENTRY*/
.main-content.entry {
  text-align: center;
}

.main-content.entry h1 {
  text-transform: uppercase !important;
  position: relative;
}

.main-content.entry h1:after {
  display: block;
  /* position: absolute; */
  content: "";
  height: 20px;
  width: 60%;
  margin: 20px auto 45px;
  background: #3b794a;
}

.fvu-wrap {
  text-align: left;
}

red {
  color: #ea3323;
}

.main-content.entry strong {
  font-weight: bold;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

.main-content.entry .member {
  font-size: 1.2vw;
}

/* Form Fields */
.cdetails {
  margin-bottom: 40px;
}

.main-content.entry .fvu-wrap h2 {
  margin: 30px 0px;
}

.fvu-small-btn {
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;

  border-radius: 50%;
  border: 1px solid #c62828;
  background: #000;
  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  line-height: 1;
  /* 🔑 critical */
  font-size: 16px;
  /* control glyph size */
  box-sizing: border-box;
  /* avoid border distortion */
}

.fvu-add-btn {
  width: 36px;
  height: 36px;
  aspect-ratio: 1 / 1;

  border-radius: 50%;
  border: 1px solid #0b6b3b;
  background: #000;
  color: #0b6b3b;
  cursor: pointer;
  margin-right: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  line-height: 1;
  /* 🔑 prevents vertical stretch */
  font-size: 16px;
  /* adjust for + icon */
  box-sizing: border-box;
  /* border included in size */
}

.upload-media .fvu-heading {
  font-weight: bold;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
  font-size: 2.2vw !important;
  padding-bottom: 0px;
  margin-bottom: 30px !important;
  border-bottom: solid 5px #FFF;
}

.upload-media .fvu-file-label {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 22px;
  border: 2px solid #FFF !important;
  cursor: pointer;
  color: #fff;
  width: 100%;
  text-align: center;
}

.social-media-links {
  border: 2px solid #FFF !important;
  border-radius: 20px !important;
  padding: 30px 30px !important;
}

.fvu-btn-primary {
  margin: 40px auto 0 !important;
  display: block !important;
  padding: 15px 40px 10px !important;

  text-transform: uppercase;
  font-weight: bold;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';

  background: transparent !important;
  border: 2px solid #0b6b3b !important;

  border-radius: 9999px !important;
  /* 🔑 pill shape */
  line-height: 1;
}

.fvu-btn-primary:hover {
  background: #0b6b3b !important;
  border: solid 2px #0b6b3b !important;
}

.upload-media .fvu-label {
  color: #0b6b3b;
  font-weight: bold;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

/* Registration Page */
.page-id-14 #heroText h1 {
  display: none;
}

.page-id-14 .user-registration-registration-title {
  font-weight: bold;
  font-family: 'ITC Avant Garde Gothic Pro-Bold';
}

/*RESPONSIVE*/
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #navMenu{
        margin-right:5vw;
    }
}
@media only screen and (min-width: 993px) and (max-width: 1080px) {
  #navMenu {
    margin: 0px 60px;
  }
}

@media only screen and (max-width: 992px) {
  #navMenu {
    display: none;
  }

  .navbar-brand img {
    width: 90px;
  }

  #navToggler svg {
    width: 40px;
  }
  
  #navMenu ul li a svg{
      width:15px;
      height:15px;
  }

  #featured {
    margin-top: -1px;
  }

  .sticky-top {
    position: relative;
  }

  #floatingMenu {
    font-size: 12px;
    padding: 5vw 20px 0px 20px;
  }

  .emf-tab {
    font-size: 12px;
  }

  .submission-pill-buttons .flex-column h2 {
    font-size: 24px;
  }

  .submission-pill-buttons .flex-column {
    width: 100%;
    font-size: 14px;
  }

  #details label {
    font-size: 14px;
  }

  .submission-pill-buttons .flex-column button {
    font-size: 16px;
  }

  #details h3, #submissions h2 {
    font-size: 24px;
  }

  .emf-tab-content#submissions, .emf-tab-content#details {
    font-size: 14px;
  }

  .in-page-col2 h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  #navToggler svg {
    width: 30px;
  }

  #floatingMenu {
    top: 20px;
    font-size: 12px;
    padding: 20px 20px 0px 20px;
  }

  #featured {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 30px;
  }

  #heroText {
    text-align: center;
    margin-bottom: 50px;
  }

  #featured p, #hero p:nth-child(2) {
    font-size: 16px;
  }

  #main {
    margin-top: 90px;
  }

  #videoPlayer {
    display: inline-block;
    width: 100%;
    height: auto;
    background: transparent;
    position: relative;
    right: 0px;
    bottom: 0px;
    clip-path: none;
    top: -60px;
    z-index: -1;
  }

  #faqs h5, #faqs h5 button {
    font-size: 18px;
  }

  h2, h3 {
    font-size: 24px;
  }

  #heroText h2 {
    font-size: 28px;
  }

  #heroText p {
    font-size: 16px;
  }

  #main a {
    font-size: 16px;
  }

  #subFooter {
    text-align: center;
  }

  body, #subFooter div:last-child, .accordion-body, .readmore {
    font-size: 14px;
  }

  footer {
    font-size: 14px;
  }

  footer h5 {
    font-size: 28px;
  }

  footer img {
    float: none !important;
    width: 90px !important;
  }

  footer li {
    margin: 3px 0px;
  }

  .readmore {
    float: none;
    margin: 0px auto;
    display: block;
    width: 130px;
  }

  #faqs h4, #faqs h1, #partners h4 {
    font-size: 24px;
  }

  #prevWinners {
    margin-top: 50px;
    margin-bottom: 600px;
  }

  #prevWinners h2 {
    text-align: center;
  }

  .carousel-item, .carousel-item p {
    font-size: 14px;
  }

  .carousel-control-prev img, .carousel-control-next img {
    width: 30px;
    height: auto;
  }

  .carousel.slide {
    width: 100%;
    top: -50px;
  }

  .carousel-inner {
    width: 100%;
  }

  .carousel-control-prev {
    left: 3px;
  }

  .carousel-control-next {
    right: -8px;
  }

  .side-image.left, .side-image.right {
    display: none;
  }

  .carousel-item .tag-label {
    flex-direction: column;
    margin-top: 20px;
  }

  .main-content h1 {
    font-size: 32px;
  }

  .main-content, .main-content p {
    font-size: 14px;
  }

  .main-content h2, .main-content h3, .main-content h4 {
    font-size: 26px;
  }

  .page-template-submission #hero h1 small {
    font-size: 14px;
  }

  .page-template-submission #videoPlayer {
    clip-path: none;
  }

  .page-template-faq .main-content, .main-content.entry {
    margin: 50px 0px;
  }

  .cdetails .col-3, .cdetails .col-9 {
    width: 100%;
  }

  .entry .fvu-col {
    width: 100%;
  }

  .main-content.entry .member {
    font-size: 14px;
  }

  .fvu-btn-primary {
    font-size: 18px;
  }

  .user-registration-account .main-content {
    margin: 30px 0px;
  }

  .emf-tab {
    font-size: 12px;
  }

  .carousel-inner {
    max-width: 100% !important;
  }
  #floatingMenu ul{
      top:30px;
      position: relative
  }
#floatingMenu ul li:hover > ul {
      left:-98px !important;
  }
  #floatingMenu ul ul li{
      margin:0px 0px;
  }
}


/* Profile parent */
.menu-profile-parent {
  position: relative;
}

/* Parent link: HI, JANE */
.menu-profile-parent > a {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Hide dropdown by default */
.menu-profile-parent .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: #000;
  padding: 8px 0;
  z-index: 9999;
}

/* Show on hover */
.menu-profile-parent:hover > .sub-menu {
  display: block;
}

/* Dropdown items */
.menu-profile-child a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover effect */
.menu-profile-child a:hover {
  background: rgba(255, 255, 255, 0.1);
}

footer h5 a {
    border: 1px solid #f40202;
    padding: 20px 20px;
    display: inline-block;
    border-radius: 20px;
	text-align: center
}
#partners .img-fluid {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-height: 100% !important;
}
#partners .d-flex .img-fluid{
	width:30% !important;
}
#partners .img-fluid{
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}
#partners .img-fluid:hover{
	filter: grayscale(0%);
}
.page-template-submission h1{
	font-family: 'AlteHaasGroteskBold';
	font-size: 4.811vw;
}
.page-template-submission h1 small{
	font-family: 'AlteHaasGroteskRegular';
}
.fvu-select-country {
    border-radius: 999px;
    padding: 12px;
    border: transparent;
    position: absolute;
    background: transparent;
    margin-top: 2px;
    font-size: 16px;
}
.fvu-phone-input {
    padding-left: 130px;
}
.choices__inner{
    border-radius: 26px !important;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item{
    color:#000;
}
.choices__list--multiple .choices__item{
    background: #0f7a3a !important;
    border:#0f7a3a solid 1px !important;
}
.fvu-note.film{
    text-transform: none;
    font-size:10px !important;
    font-family: 'ITC Avant Garde Gothic Pro-Book';
}
.fvu-note.cast {
    text-transform: none;
    margin-top: 0px !important;
    display: inline-block;
    width: 100%;
    line-height: 15px;
}
.fvu-file-label i {
    background: white;
    display: inline-block;
    color: black;
    padding: 4px 10px 2px;
    border-radius: 26px;
    font-size: 13px;
    margin-left: 10px;
}

/*LOGIN PAGE*/
.page-id-15 h1{
    display: none;
}
.ur-frontend-form.login{
    padding: 0px 0px !important;
    box-shadow: none !important;
}
.ur-frontend-form .ur-form-row .ur-form-grid{
    padding: 0px 0px !important;
}
body.user-registration-page #user-registration:not(.user-registration-MyAccount), body.user-registration-page .user-registration:not(.user-registration-MyAccount) {
 max-width: 100% !important;   
 margin:0px 0px !important;
}
.login_box h2, .log_create_account h2{
    text-align: center;
    font-size:26px;
}
.log_create_account h2{
    margin-bottom:60px;
}
.login_box{
    width: 75%;
    display: flex;
    margin:0px auto;
    padding: 50px 50px;
    border: solid 1px #000;
    flex-direction: column;
}
.login_box .inline span{
    padding: 0px 0px !important;
    border: 0px !important;
    background: transparent !important;
    color:#000 !important;
    font-weight: normal !important;
    font-size: 14px !important;
    text-transform: none !important;
    font-family: 'ITC Avant Garde Gothic Pro-Book' !important;
}
.log_create_account{
    width: 75%;
    display: flex;
    margin:0px auto;
    padding: 50px 50px;
    border: solid 1px #000;
    flex-direction: column;
    background: #000;
    color: #FFF;
}
.page-id-15 .main-content {
    margin: 200px 0px 150px 0px;
}
.log_create_account span{
    display: inline-block;
    width: 100%;
    margin-bottom:55px;
}
.log_create_account span:nth-child(1){
    margin-top:55px;
}
.log_create_account svg{
    width:50px;
    height: auto;
    display: block;
    margin-right: 20px;
    float: left;
}
.log_create_account a{
    border-radius: 26px;
    background: #0e733b;
    color:#FFF;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    padding:15px 50px 10px;
    font-family: 'ITC Avant Garde Gothic Pro-Bold';
    text-align:center;
    text-decoration: none;
}
body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button, body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button{
    border-radius: 26px !important;
    background: #0e733b !important;
    color:#FFF !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    display: inline-block !important;
    padding:15px 50px 10px !important;
    font-family: 'ITC Avant Garde Gothic Pro-Bold' !important;
    text-align:center !important;
    text-decoration: none !important;
}
body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid .user-registration-form-row .input-wrapper input, body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid .user-registration-form-row .input-wrapper input{
    border-radius: 26px !important;
}
body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid .user-registration-before-login-btn .user-registration-LostPassword a, body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid .user-registration-before-login-btn .user-registration-LostPassword a{
    color:#0e733b !important;
}
.user-registration-register a{
    display: none !important;
}

.user-details-view{
    position:relative;
}
.user-details-view .edit-icon{
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
}
.user-details-view .edit-icon svg{
    width:25px;
}
.user-details-view p{
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom: solid 1px #347140;
    color:#8d8d8d;
}
.user-details-view p strong{
    color:#000;
}
.in-page-social a{
	text-decoration: none !important
}
#navMenu li{
    list-style: none !important;
}
.menu-profile-parent svg{
    width: 1.5vw !important;
    height: auto;
}
#floatingMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#floatingMenu ul li {
    position: relative; /* important for absolute positioning of submenu */
}

#floatingMenu ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#floatingMenu ul li:hover > ul {
    display: block;
    left: -35px;
    width: 100%;
}
#subFooter.py-4 a{
	color: #FFF !important;
	text-decoration: none !important
}