/*
Theme Name: Manchester Y Club Wrestling
Author: Soulful Sites
Description: Theme for Manchester Y Club Wrestling
Requires at least: 6.4
Requires PHP: 7.0
Version: 1.0
*/

/* LOCAL FONTS */

@font-face {
  font-family: "Inter";
  src: local("Inter"), url(../fonts/inter.ttf) format("truetype");
}

/* GLOBAL RESETS */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol,
menu {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 !important;
}

h1 {
  font-size: 42px;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  line-height: 1.5 !important;
}

/* GLOBAL VARIABLES */
:root {
  /* Colour Scheme */
  --ycw-cs1: #e30000;
  --ycw-cs2: #1e1e1e;
  --ycw-cs3: #fff;
  --ycw-f: "Inter";
}

body {
  font-family: var(--ycw-f), sans-serif;
}

/* HTML */
html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  /* Parallax effect */
  background-attachment: fixed;
  border-bottom: 4px solid var(--ycw-cs1);
}

/* HEADER > NAVIGATION BAR */
header nav {
  color: var(--ycw-cs3);
  transition: all 500ms ease-out;
  background-color: transparent;
}

/* NAVIGATION BAR BEHAVIOUR */
/* Div to add when scrolling */
nav.scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  background-color: var(--ycw-cs2);
  filter: blur(75%);
}

/* On scroll change properties on this element */
nav.scroll .nav-container {
  margin-top: 0.25rem;
}

/* And this one... */
nav.scroll .nav-container .ylogo {
  scale: 1.1;
  transform: translateX(10px);
}

/* This one as well */
nav.scroll .nav-container .nav-links li {
  padding-bottom: 0.25rem;
  transform: translateY(-100px);
}

/* NAV CONTAINER */
.nav-container {
  transition: all 250ms ease-out;
}

nav.top {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: var(--ycw-cs2);
}

/* HAMBURGER MENU */

#hamburger,
#close {
  width: 40px !important;
  transition: all 250ms ease-out;
  cursor: pointer;
}

#hamburger {
  filter: invert(1);
}

.hide {
  display: none;
}

/* CLUB LOGO */
.ylogo {
  width: 170px !important;
  transition: all 300ms linear;
}

.custom-logo {
  max-width: 125px !important;
}

.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  transition: all 500ms ease-out;
}

/* Utilities - Padding */

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.plr-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.t-center {
  text-align: center;
}

/* NAV LINKS */
.nav-links {
  height: 0;
  overflow: hidden;
  transition: all 250ms ease-out;
  padding: 1rem;
  padding-top: 0;
}

/* NAV LINKS > LI ELEMENTS */
.nav-links li {
  transition: all 250ms ease-out;
  margin-top: 1rem;
  font-size: 24px;
  text-transform: uppercase;
}

.nav-links li:last-child {
  color: var(--ycw-cs1);
  font-weight: 700;
}

.show-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mmenu-overflow-y {
  overflow-y: scroll;
}

.body-overflow {
  overflow: hidden;
}

/* NAV SOCIALS */
.nav-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 1rem;
  padding-top: 0;
}

/* Class to add when moving nav socials to bottom of viewport */
.nav-socials.bottom {
  position: fixed;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* NAVIGATION BAR > Social Media Icons/Logos/SVG */
.nav-socials .ns-logos .ns {
  display: inline !important;
  width: 35px;
  height: 35px;
  margin-top: 0.25rem;
  transition: all 500ms ease-out;
}

.nav-socials .ns-logos .ns:hover {
  fill: var(--ycw-cs1) !important;
  scale: 1.1;
}

.nav-socials .ns-logos svg path:hover {
  fill: var(--ycw-cs1) !important;
}

/* HERO */
.hero-area {
  padding-left: 1rem;
  padding-top: 4rem;
  height: 50vh;
  color: var(--ycw-cs3);
}

.hero-area.hero-area__single {
  text-align: center;
}

/* HERO > Hero Main Heading */
.hero-main {
  font-size: 26px;
  text-transform: uppercase;
}

/* HERO > Hero Main Heading - LARGE */
.hero-main.hero-main__large {
  font-size: 52px;
}

.hero-main.hero-main__single {
  font-size: 52px;
}

.hero-single-sub {
  font-size: 24px;
}

.hero-sub-span {
  color: var(--ycw-cs1) !important;
}

/* Hero CTA buttons */
.hero-btn {
  background-color: var(--ycw-cs1);
  border: none;
  color: inherit;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 250ms ease;
  align-self: flex-start;
  font-size: 24px;
}

/* Hover effects for Hero CTA buttons */
.hero-btn:hover {
  transform: translateY(1px solid var(--ycw-cs3) ;);
  background-color: var(--ycw-cs3);
  color: var(--ycw-cs2);
  border-bottom: 10px solid var(--ycw-cs1);
}

/* Article buttons */
.article-btn {
  border: none;
  background-color: transparent;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  transition: all 250ms ease-out;
}

.article-btn__red {
  background-color: var(--ycw-cs1);
  color: var(--ycw-cs3);
  font-weight: 600;
}

.article-btn__red:hover {
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
}

.article-btn.article-btn.article-index-history {
  margin-top: 2rem;
  font-size: 20px;
}

/* HERO > HERO BTNS CONTAINER */
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

/* Main socials / logos */
.ms {
  width: 100px !important;
}

/* Section headers */
.section-header {
  font-size: 55px !important;
  font-weight: 600;
  text-transform: uppercase;
}

.section-header.bio-header {
  font-size: 32px !important;
  text-align: center;
}

/* HEADER */

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  width: 100% !important;
  height: 100% !important;
}

.fa-img {
  display: none;
}

.hero-area {
  z-index: 1 !important;
}

/* MAIN AREA */
main .main-area {
  display: flex;
  flex-direction: column;
}

main .main-area.main-area__history {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

main .main-area.main-area__history .history-part {
  display: flex;
}

main .main-area.main-area__history .history-part .img-container,
main .main-area.main-area__history .history-part .content {
  flex-basis: 50%;
  flex: 1;
}

main .main-area.main-area__history .history-part:nth-child(odd) .img-container {
  order: 1 !important;
}

main
  .main-area.main-area__history
  .history-part:nth-child(even)
  .img-container {
  order: 0 !important;
}

.search-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.search-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e8c;
  padding: 0.5rem;
  color: var(--ycw-cs3) !important;
}

.si.scrollsearch {
  display: none;
}

.socials-feed {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.search-box.search-box__fixed {
  padding: 0 !important;
  background-color: red !important;
  clip-path: none !important;
}

.search-box .section-header {
  margin-bottom: 1rem !important;
}

.search-box form {
  display: flex;
}

.search-box input[name="s"] {
  background-color: transparent;
  border: 2px solid var(--ycw-cs3);
  padding: 0.5rem 1rem;
  color: var(--ycw-cs2) !important;
  font-size: 22px !important;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 28px;
}

input[name="s"].search-input__fixed {
  background-color: var(--ycw-cs3);
  padding: 0.5rem 1rem;
  border: none;
  font-size: 18px;
  animation: si_f-a 1s 3 ease-out;
}

input[name="s"].search-input__fixed:focus {
  outline: none !important;
}

@keyframes si_f-a {
  0% {
    outline: none;
  }
  100% {
    outline: 6px solid var(--ycw-cs1) !important;
  }
}

.sf-submit.sf-submit__fixed {
  background: transparent;
  border: none;
}

.sf-submit.sf-submit__fixed img {
  width: 35px;
}

.ss-form#search-form {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box button {
  background-color: transparent;
  border: 2px solid var(--ycw-cs3) !important;
  border-left: none !important;
  font-size: 24px;
  color: var(--ycw-cs2);
  padding: 0.5rem;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.search-box button:hover {
  background-color: var(--ycw-cs2);
}

.search-box button img {
  width: 32.5px;
}

.search-box .section-header {
  font-size: 20px !important;
  color: var(--ycw-cs3) !important;
}

.coaches-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.coaches-box .coach {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  min-height: 225px;
  flex: 1;
}

.coaches-box .coach .coach-container {
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.coaches-box .coach-text {
  /* display: block; */
}

.coaches-box .coach-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--ycw-cs2);
  width: 100%;
}

.coaches-box .coach-top .coach-title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  width: 100%;
}

.coaches-box .coach-top .pp-text {
  color: var(--ycw-cs3);
  padding: 0.5rem;
}

.coaches-box .coach-top .home-logo {
  width: 75px;
}

.coaches-box .coach-big {
  font-size: 26px;
  font-weight: 600;
  color: var(--ycw-cs1);
  margin-bottom: 2rem !important;
}

.coaches-box .coach-small {
  font-size: 30px;
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
  font-style: italic;
  text-align: center;
}

.coaches-box .coach-bio-title {
  color: var(--ycw-cs1);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}

.coach-profile-picture {
  width: 100%;
}

/* MAIN AREA > Article Header */
main
  .main-area
  .front-article
  .content
  .article-heading.article-heading__front {
  font-weight: 600;
  text-transform: uppercase;
}

main .main-area .front-article .content .article-heading.article-posted {
  display: block;
}

/* MAIN AREA > FRONT PAGE ARTICLE > CONTENT > Article main heading */
main .main-area .front-article .content .article-main-heading {
  font-size: 26px;
  font-weight: 600;
}

/* MAIN AREA > FRONT PAGE ARTICLE > Article paragraph */
main .main-area .front-article .content .article-para {
  margin-top: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* MAIN AREA > FRONT PAGE ARTICLE */
main .main-area .front-article {
  display: flex;
  flex-direction: column;
}

main .main-area .single-article .modified-container {
  margin-top: 2rem;
  display: flex;
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  width: fit-content;
  gap: 20px;
}
main .main-area .single-article .modified-container .mc-img {
  width: 20px;
}

/* MAIN AREA > FRONT PAGE ARTICLE > CONTENT */
main .main-area .front-article .content {
  order: 0;
  padding: 0.5rem 1rem;
  flex: 1;
  flex-basis: 50%;
}

/* MAIN AREA > FRONT PAGE ARTICLE > CONTENT > Article Heading */
main .main-area .front-article .content .article-heading {
  color: var(--ycw-cs1);
  font-size: 16px;
}

/* MAIN AREA > FRONT PAGE ARTICLE > IMAGE CONTAINER */
main .main-area .front-article .img-container {
  order: 1;
  flex: 1;
  flex-basis: 50%;
  width: 100%;
  overflow: hidden;
}

/* MAIN AREA > FRONT PAGE ARTICLE > IMAGE CONTAINER > Container Image */
main .main-area .front-article .img-container .fa-img {
  object-fit: cover;
}

main .main-area .single-article .content.content-single,
main .main-area .history-part .content.content-single {
  padding: 4rem 4rem;
}

/* MAIN > CLUB HISTORY ELEMENT */
main .club-history {
  background-color: var(--ycw-cs2);
  display: flex;
  flex-direction: column;
  align-items: unset;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* MAIN > CLUB HISTORY ELEMENT > CH BACKGROUND IMAGE */
main .club-history .clubhistory-bg {
  width: auto;
}

/* MAIN > CLUB HISTORY ELEMENT > CH CONTAINER */
main .club-history .ch-container {
  color: var(--ycw-cs3);
  padding-top: 3rem;
  width: 100% !important;
}

/* MAIN > CLUB HISTORY ELEMENT > CH CONTAINER > CH WRAPPER */
main .club-history .ch-container .ch-wrapper {
  text-align: left;
  padding: 0 1rem;
}

/* MAIN > CLUB HISTORY ELEMENT > CH CONTAINER > CH WRAPPER > CH CONTENT */
main .club-history .ch-container .ch-wrapper .ch-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 0.25rem;
}

/* MAIN > CLUB HISTORY ELEMENT > CH CONTAINER > CH WRAPPER > CH CONTENT > TOP > Section Header */
main
  .club-history
  .ch-container
  .ch-wrapper
  .ch-content
  .ch-top
  .section-header {
  font-size: 55px;
}

/* MAIN > CLUB HISTORY ELEMENT > CH CONTAINER > CH WRAPPER > CH CONTENT > CH Paragraph */
main .club-history .ch-container .ch-wrapper .ch-content .ch-history .ch-para {
  margin-top: 2rem;
}

/* MAIN > MAIN SOCIALS */
main .main-smi {
  display: flex;
  flex-direction: column;
  justify-content: unset;
  align-items: unset;
  margin-top: 4rem;
  margin-bottom: 4rem !important;
}

/* MAIN > MAIN SOCIALS > SOCIALS CONTAINER */
main .main-smi .smi-container {
  padding-left: 1rem;
}

/* MAIN > MAIN SOCIALS > Section Header */
main .main-smi .section-header.section-header__socials {
  margin-bottom: 6rem !important;
  text-align: left;
  padding-left: 1rem;
}

/* MAIN > MAIN SOCIALS > SOCIALS CONTAINER > Social Media Logos/Icons/SVG */
main .main-smi .smi-container .ms {
  display: inline;
  width: 80px !important;
}

main .main-smi .smi-container .ms:not(:last-child) {
  margin-right: 0.5rem;
}

main .search-result {
  border: 2px solid var(--ycw-cs2);
}

.text-title {
  font-size: 32px !important;
}

.eb-ul {
  list-style-type: none !important;
}

.text-title a {
  text-decoration: none;
  color: inherit !important;
}

table tbody tr {
  border: none;
}

table tbody tr:first-of-type td {
  background-color: var(--ycw-cs1);
}

.scroller {
  position: relative;
  display: flex;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* SCROLL TO TOP BUTTON */
.si {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ycw-cs1);
  border-radius: 50%;
  width: auto;
  transition: all 250ms ease-out;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#ssExpand {
  display: none;
  overflow: hidden;
  background-color: var(--ycw-cs2);
  padding: 0.5rem 1rem;
  animation: sa-mobile 250ms 1 both ease-out;
  transition: all 400ms ease-out;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

#ssExpand.enabled {
  display: initial;
  animation: sa-mobile-b 250ms 1 both ease-out;
}

.s-e {
  position: absolute;
  width: max-content;
  top: -40px;
  display: none;
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
  padding: 0.5rem;
  border-radius: 6px;
  z-index: 9999;
}

.si:hover .s-e {
  display: initial;
}

@keyframes sa {
  0% {
    transform: translateX(150px);
  }
  100% {
    transform: translateX(-5px);
  }
}

@keyframes sb {
  0% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(150px);
  }
}

@keyframes sa-mobile {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sa-mobile-b {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.scroller .si.alt {
  background-color: var(--ycw-cs2);
}

/* Hide scroll to top class */
.scrolltop.hide {
  display: none;
}

/* Hover effects for scroll to top button */
.scroller .si:hover {
  background-color: var(--ycw-cs2);
}

/* Arrow top SVG */
.scroller .st-img {
  width: 60px !important;
  padding: 0.25rem;
}

/* FOOTER > FOOTER CONTACT */
footer .footer-contact {
  /* padding: 1rem 2rem; */
  background-color: var(--ycw-cs1);
  padding-top: 4rem;
}

/* FOOTER > FOOTER CONTACT > Section Header */
footer .footer-contact .section-header.section-header__footer {
  color: var(--ycw-cs3);
  text-align: left;
  width: 90%;
  padding-left: 1rem;
}

/* FOOTER > FOOTER CONTACT > CONTACT CONTAINER */
footer .footer-contact .contact-container {
  display: flex;
  flex-direction: column;
  gap: unset;
  color: var(--ycw-cs3);
  padding-left: 1rem;
}

/* FOOTER > FOOTER CONTACT > CONTACT CONTAINER > CONTAINER ITEM */
footer .footer-contact .contact-container .contact-item {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: unset;
  align-self: unset;
}

/* FOOTER > FOOTER CONTACT > CONTACT CONTAINER > CONTAINER ITEM > Contact Text */
footer .footer-contact .contact-container .contact-item .contact {
  font-size: 20px;
}

/* FOOTER > FOOTER CONTACT > CONTACT CONTAINER > CONTAINER ITEM > Contact Text Title */
footer .footer-contact .contact-container .contact-item .contact.contact-title {
  font-weight: 600;
}

/* FOOTER > FOOTER CONTACT > CONTACT AREA ELEMENT */
footer .footer-contact .contact-area {
  padding-top: 4rem !important;
}

/* FOOTER > FOOTER NAVIGATION > FOOTER CONTAINER > NAV ELEMENT */
footer .footer-nav .footer-container.footer-container__nav {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 10px;
}

/* FOOTER > FOOTER CLUB LOGO */
footer
  .footer-nav
  .footer-container.footer-container__nav
  .club-logo.club-logo__main {
  align-self: flex-start !important;
  margin-right: 3rem;
}

/* FOOTER > FOOTER LIST > LI ELEMENT */
footer
  .footer-nav
  .footer-container.footer-container__nav
  .footer-list
  .li-head {
  color: var(--ycw-cs1) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px !important;
  margin-bottom: 1rem;
}

footer
  .footer-nav
  .footer-container.footer-container__nav
  .footer-list
  li:not(:first-child) {
  font-weight: 600;
  margin-top: 0.2rem;
}

/* FOOTER > FOOTER SOCIALS */
footer .fs {
  width: 30px;
  display: inline-block;
  margin-right: unset;
}

footer .footer-list.footer-list_socials .li-not-li {
  display: block !important;
  color: var(--ycw-cs1) !important;
}

/* FOOTER > FOOTER NAV > NEWSLETTER CONTAINER */
footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container {
  position: relative;
  margin-top: 0.5rem;
}

/* FOOTER > FOOTER NAV > NEWSLETTER CONTAINER > INPUT ELEMENT */
footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container
  .newsletter {
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  width: 200px;
  background-color: #1e1e1e38;
  border: none;
}

footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container
  .newsletter:active {
  outline: 2px solid var(--ycw-cs1);
}

footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container
  .newsletter:focus {
  outline: 4px solid var(--ycw-cs2);
}

/* FOOTER > FOOTER NAVIGATION > NEWSLETTER CONTAINER > NEWSLETTER BUTTON */
footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container
  .footer-btn {
  position: unset;
  right: 0;
  background-color: var(--ycw-cs1);
  color: var(--ycw-cs3);
  border: none;
  height: 100%;
  padding: 0.5rem 1rem;
  width: 100px;
}

footer
  .footer-nav
  .footer-list.footer-list_newsletter
  .newsletter-box
  .news-container
  .footer-btn:focus {
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
}

/* FOOTER > BOTTOM FOOTER CONTAINER */
footer .footer-end {
  background-color: var(--ycw-cs2);
  color: var(--ycw-cs3);
  padding: 1rem 2rem;
}

/* FOOTER > BOTTOM FOOTER CONTAINER */
footer .footer-end .footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .footer-nav .footer-container.footer-container__nav .footer-affils {
  align-self: flex-start !important;
  justify-self: flex-start;
}

/* MailChimp Integrated Form */

#mc_embed_signup input {
  display: block;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  width: 200px;
  background-color: #1e1e1e38;
  border: none;
}

#mc_embed_signup input[name="subscribe"] {
  margin-top: 0.5rem;
  background-color: var(--ycw-cs1);
  color: var(--ycw-cs3);
  border: none;
  padding: 1rem 2rem;
}

#mc_embed_signup .indicates-required {
  font-size: 12px;
}

#mc_embed_signup .indicates-required .asterisk {
  font-weight: 600;
  color: var(--ycw-cs1);
}

.f-affil {
  width: 200px;
}

/* Events Plugin Styling */

.events-container {
  background-color: var(--ycw-cs1);
  color: var(--ycw-cs3);
  text-align: center;
}

.events-bar {
  background-color: var(--ycw-cs1);
  color: var(--ycw-cs3);
  padding: 2rem 1rem 2rem 1rem;
}

.event-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item.event {
  padding-top: 1rem;
  font-size: 18px;
  text-align: unset !important;
}

.event-name {
  font-size: 24px !important;
}

.e-text {
  font-size: 22px !important;
  font-weight: bolder;
}

.events-bar .events-header {
  font-size: 42px;
  font-weight: 600;
}

.events-bar .date {
  font-size: 32px;
}

.events-bar .em-item-info {
  font-size: 30px;
}

.em-tooltip-ddm-content.em-event-add-to-calendar-content,
.em-event-when button,
.em-item-image {
  display: none !important;
}

.em-view-container {
  display: flex !important;
  justify-content: center;
  align-content: center;
  text-align: center !important;
}

.events-bar-cal {
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  gap: 75px;
}

.events-bar-cal li:not(:last-child) {
  margin-bottom: 2rem;
}

.events-bar-cal .e-main-title,
.title {
  background-color: var(--ycw-cs1);
  padding: 1rem 2rem;
}

.title {
  font-weight: 24px !important;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
}

.events-bar-cal .event-title,
.day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 1rem 2rem; */
  font-weight: bolder;
  border-bottom: 4px solid var(--ycw-cs1);
  background-color: #1e1e1e20;
}

.day {
  flex-direction: column;
}

.events-bar-cal .event-title:not(:last-of-type),
.day {
  margin-bottom: 0.5rem;
}

.events-bar-cal .e-big {
  font-size: 28px !important;
  font-weight: 600;
  margin-bottom: 2rem !important;
}

.events-bar-cal .e-sub {
  margin-right: 2rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.events-bar-cal .e-cat,
.status {
  text-transform: uppercase;
  font-weight: normal;
  padding: 1rem 2rem;
}

.events-bar-cal .main-title {
  font-size: 32px;
  font-weight: bolder;
  margin-bottom: 0.5rem !important;
}

.events-bar-cal .e-text,
.title {
  font-weight: initial;
  font-size: 18px !important;
}

.events-bar-cal .events-header {
  display: none;
}

.em-view-container h3 {
  margin-top: 1rem !important;
  text-transform: uppercase;
}

.widget-timetable .wp-block-table thead th {
  font-size: 24px;
  background-color: var(--ycw-cs1);
}

.widget-timetable .wp-block-table tbody td {
  font-size: 24px;
}

/* MEDIA QUERIES */
/* Mobiles - Landscape */
@media only screen and (orientation: landscape) {
  header {
    height: 100vh;
  }

  .hero-area {
    padding-top: 2rem;
  }

  .hero-btns {
    flex-direction: row;
  }

  .nav-links li {
    font-size: 16px;
  }

  main .main-area .front-article {
    flex-direction: column;
  }

  main .club-history {
    align-items: center;
  }

  main .club-history .ch-container .ch-wrapper {
    text-align: center;
    padding: 2rem 2rem;
  }

  main .main-smi {
    justify-content: center;
    align-items: center;
  }

  main .main-smi .section-header.section-header__socials {
    text-align: center;
    padding-left: unset;
  }

  main .main-smi.smi-container {
    padding-left: unset;
  }

  footer .footer-contact .section-header.section-header__footer {
    text-align: center;
    width: 100%;
    padding-left: unset;
  }

  footer .footer-contact .contact-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-left: unset;
  }

  footer .footer-contact .contact-container .contact-item {
    justify-content: center;
    align-items: center;
    align-self: flex-start;
  }

  footer .footer-nav .footer-container.footer-container__nav {
    flex-direction: row;
    padding: 2rem;
    gap: 30px;
  }

  footer .footer-social {
    margin-right: 0.25rem;
  }

  footer .footer-end .footer-container {
    flex-direction: row;
  }
}

@media only screen and (min-height: 736px) and (min-width: 414px) and (orientation: landscape) {
  header {
    height: 200vh !important;
  }
}

@media (min-width: 1080px) and (max-width: 800px) {
  #hamburger {
    z-index: 9999 !important;
  }
}

@media (min-width: 800px) and (max-width: 1280px) {
  video,
  .header-video {
    display: initial !important;
    z-index: -1;
    object-fit: cover;
  }

  .video-overlay {
    z-index: 9999 !important;
  }

  #hamburger {
    z-index: 9999;
  }

  nav {
    z-index: 9005;
  }

  header {
    z-index: 9006;
  }
}

/* TABLETS */
@media (min-width: 768px) and (max-width: 1024px) {
  header {
    height: 70vh !important;
    object-fit: cover;
  }

  video,
  .header-video {
    display: initial !important;
  }

  main .main-area .front-article {
    flex-direction: row;
  }

  main .main-area .front-article .img-container .fa-img {
    max-width: auto !important;
  }

  main .club-history {
    align-items: center;
  }

  main .club-history .ch-container .ch-wrapper {
    text-align: center;
    padding: 2rem 2rem;
  }

  main .main-smi {
    justify-content: center;
    align-items: center;
  }

  main .main-smi .section-header.section-header__socials {
    text-align: center;
    padding-left: unset;
  }

  main .main-smi .smi-container {
    padding-left: unset;
  }

  footer .footer-contact .section-header.section-header__footer {
    text-align: center;
    width: 100%;
    padding-left: unset;
  }

  footer .footer-contact .contact-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-left: unset;
  }

  footer .footer-contact .contact-container .contact-item {
    justify-content: center;
    align-items: center;
    align-self: flex-start;
  }

  footer .footer-nav .footer-container.footer-container__nav {
    flex-direction: row;
    padding: 2rem;
    gap: 30px;
  }

  footer .footer-social {
    margin-right: 0.25rem;
  }

  footer .footer-end .footer-container {
    flex-direction: row;
  }
}

/* LAPTOP */
@media (min-width: 1025px) and (max-width: 1280px) {
  .si.scrollsearch {
    display: initial;
  }

  #hamburger {
    display: none;
  }

  .nav-links li:not(:last-child) {
    margin-right: 2rem !important;
  }

  header {
    height: 80vh !important;
  }

  main .main-area {
    gap: unset;
  }

  main .main-area .front-article .img-container .fa-img {
    max-width: auto !important;
  }
}

/* DESKTOP */
@media screen and (min-width: 1281px) {
  footer .fs {
    width: 30px;
    display: inline !important;
    margin-right: unset;
  }
  .coaches-box {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }

  .coaches-box .coach {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    min-height: 225px;
    flex: 1;
    overflow: hidden;
  }

  .coaches-box .coach .coach-container {
    height: 100%;
    text-align: center;
    padding: 2rem;
  }

  .coaches-box .coach-text {
    /* display: block; */
  }

  .coaches-box .coach-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--ycw-cs2);
    width: 100%;
  }

  .coaches-box .coach-pic {
    overflow: hidden;
  }

  .coaches-box .coach-top .coach-title {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    width: 100%;
    overflow: hidden;
  }

  .coaches-box .coach-top .pp-text {
    color: var(--ycw-cs3);
    padding: 0.5rem;
  }

  .coaches-box .coach-top .home-logo {
    width: 75px;
  }

  .coaches-box .coach-big {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: var(--ycw-cs1);
  }

  .coaches-box .coach-small {
    font-size: 30px;
    background-color: var(--ycw-cs2);
    color: var(--ycw-cs3);
    font-style: italic;
    text-align: center;
  }

  .coaches-box .coach-bio-title {
    color: var(--ycw-cs1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
  }

  .coach-profile-picture {
    height: 1000px;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 150ms ease;
  }

  .bio-articles {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
  }

  .post-article {
    display: flex;
  }

  .bio-img {
    max-height: 300px;
    max-width: 300px;
    object-fit: contain;
  }

  .bio-area {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .bio-area .bio-head {
    font-size: 28px;
    margin-top: 2rem;
  }

  .modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #1e1e1e;
    z-index: 9999 !important;
  }

  .si.scrollsearch {
    display: initial;
  }

  .fa-img {
    display: initial;
  }

  header {
    background-image: none !important;
  }

  header.header-single {
    background-image: initial !important;
  }

  .header-video {
    display: initial !important;
  }

  #hamburger {
    display: none;
  }

  .nav-links {
    transition: all 1.2s ease-in-out;
  }

  .nav-links ul li {
    display: inline;
  }

  .nav-links #ul li:not(:last-child) {
    margin-right: 1.25rem !important;
  }

  .nav-links #ul li {
    scale: initial;
    padding: 0.25rem;
  }

  .nav-links #ul li:hover {
    color: var(--ycw-cs1);
    background-color: #fff;
    scale: 1.2;
    padding: 0.25rem;
    border-left: 4px solid var(--ycw-cs1);
  }

  header {
    position: relative;
    height: 65vh !important;
    overflow: hidden;
  }

  .header-video {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
    background-attachment: fixed !important;
  }

  .video-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.766) 0%,
      rgba(0, 0, 0, 0.08735994397759106) 100%
    );
    background-attachment: fixed;
  }

  .scroller {
    display: flex;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* SCROLL TO TOP BUTTON */
  .si {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ycw-cs1);
    border-radius: 50%;
    width: auto;
    transition: all 250ms ease-out;
    cursor: pointer;
    z-index: 9990;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  #ssExpand {
    display: none;
    overflow: hidden;
    background-color: var(--ycw-cs2);
    padding: 1rem 2rem;
    animation: sb 250ms 1 both ease-out;
    transition: all 400ms ease-out;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  #ssExpand.enabled {
    display: initial;
    animation: sa 250ms 1 both ease-out;
  }

  @keyframes sa {
    0% {
      transform: translateX(150px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes sb {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(150px);
    }
  }

  @keyframes sa-mobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(30px);
    }
  }

  .scroller .si.alt {
    background-color: var(--ycw-cs2);
  }

  .search-box {
    margin-top: 1rem;
    padding: 1.5rem 3rem;
    background-color: transparent !important;
    color: var(--ycw-cs2) !important;
  }

  .search-box .section-header {
    color: var(--ycw-cs2) !important;
  }

  .search-box .search-input {
    border: 2px solid var(--ycw-cs2) !important;
    color: var(--ycw-cs2);
  }

  .search-box .sf-submit {
    border: 2px solid var(--ycw-cs2) !important;
    border-left: none !important;
    background-color: var(--ycw-cs2) !important;
  }

  .search-box .sf-submit:hover {
    background-color: var(--ycw-cs1) !important;
    border: 2px solid var(--ycw-cs1) !important;
  }

  .search-box .sf-submit:hover #search {
    border: 2px solid var(--ycw-cs1) !important;
  }

  header.header-single {
    height: 55vh !important;
  }

  main .main-area {
    display: flex;
    flex-direction: column;
    gap: unset !important;
  }

  main .search-area {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
  }

  main .search-area .result {
    border-radius: 6px;
    padding: 1.5rem 3rem;
  }

  main .search-area .result .result-head {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--ycw-cs1);
  }

  main .search-area .result .result-head .result-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ycw-cs1);
  }

  main .search-area .result .result-lu {
    text-transform: uppercase;
    color: #525252;
  }

  main .search-area .result .article-para {
    padding-top: 1rem;
  }

  main .search-area .result .result-head .result-title.result-title__alt {
    font-size: 16px !important;
    font-weight: initial !important;
    color: var(--ycw-cs2);
    padding-bottom: 0.5rem;
    text-transform: capitalize;
  }

  main .search-area .results-container {
    padding: 1.5rem 3rem;
  }

  main .search-area .results-container .section-header {
    font-size: 20px !important;
    text-align: center;
  }

  main .search-area .results-container .total-results {
    color: var(--ycw-cs1);
  }

  main .search-area .result .section-header {
    font-size: 20px;
  }

  main .main-area .front-article {
    flex-direction: row;
    padding-left: 3rem;
  }

  main .main-area .front-article .content {
    /* padding-top: 3rem;
    padding-left: 3rem; */
  }

  main .main-area .front-article .img-container .fa-img {
    max-width: auto !important;
  }

  .hero-main {
    font-size: 30px;
    color: #ffffff;
  }

  .hero-main.hero-main__large {
    font-size: 50px;
  }

  .hero-area {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 0 3rem;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .club-logo {
    width: 175px;
    aspect-ratio: 1 / 1;
  }

  .nav-container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
  }

  .nav-head {
    padding: 0;
  }

  .nav-links {
    height: auto;
    display: flex;
  }

  .nav-links a {
    padding: 0;
    margin: 0 0.5rem;
  }

  .nav-socials {
    display: flex;
    flex-direction: column;
  }

  .nav-socials .ns-logos {
    display: initial;
    align-self: flex-end;
  }

  .nav-socials .ns-text {
    align-self: flex-end;
  }

  .em-view-container h3 {
    font-size: 30px;
  }
}
