body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

@media screen and (min-width: 1208px) {

    .hero h1 {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (min-width: 1675px) {

    .hero h1 {
        max-width: 65%;
        margin-left: auto;
        margin-right: auto;
    }

}

.hero {
    height: 100vh;
    color: white;
    position: relative;
    min-height: 850px;
    z-index: 2;
    overflow: hidden;
}

.hero .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Behaves like background-size: cover */
    object-position: center top; /* Matches your original background-position */
}

.hero:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    background-color: #000000;
    opacity: 60%;
    z-index: 1;
    animation: hero-fade 2s ease-in-out;
}

.hero.loading:before, .hero.loading *, nav.home.loading {
    animation-play-state: paused !important;
}

@keyframes hero-fade {
    from {
        background-color: var(--primary);
        opacity: 100%;
    }
}

.hero .animated-hero {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-70%);
    z-index: 2;
}

.hero h1 {
    font-size: 4.5em;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

h2, .h2 {
    font-size: 2.25rem;
    line-height: 1.4;
    letter-spacing: 1px;
}

.left-tab-border {
    position: relative;
}

.left-tab-border:before {
    position: absolute;
    top: 0;
    left: -3rem;
    bottom: 0;
    content: '';
    border-left: 1px solid var(--primary);
}

p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 2;
}

.hero a:hover {
    text-decoration: none;
}

a > object {
    pointer-events: none;
}

.hero-play {
    margin-top: 2rem;
    opacity: 0;
    animation: fade-in 1s forwards;
    animation-delay: 2s;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.hero-play a {
    color: white;
    font-size: 1.25rem;
    letter-spacing: 1px;
    font-weight: 300;
    text-shadow: 0 3px 6px #00000029;
}

.hero-play object, .hero-play img {
    width: 45px;
}

nav {
    height: 8rem;
    background-color: var(--light);
    z-index: 999;
    transition: background-color 0.3s ease-in;
}

nav.active, nav.hidden {
    height: 6rem;
}

nav a {
    transition: color 0.3s ease-in;
}

nav.home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    animation: nav-home 2s forwards;
    animation-delay: 2s;
    opacity: 0;
}

@keyframes nav-home {
    to {
        opacity: 1;
    }
}

nav.page {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
}

nav {
    transition: all 0.5s ease-in-out;
}

nav.hidden {
    transform: translateY(-100%);
}

nav.active {
    background-color: white;
}

nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: normal;
}

nav .nav-item:not(:last-child) .nav-link {
    margin-right: 0;
}

nav a {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
}

nav.home:not(.active) a, nav.home:not(.active) button {
    color: white;
}

nav .line {
    transition: background-color 0.3s ease-in;
}

nav.home:not(.active) .line {
    background-color: white;
}

.navbar-brand {
    transition: width 0.3s ease-in-out;
    width: 15rem;
}

nav.active .navbar-brand, nav.hidden .navbar-brand {
    width: 12rem;
}

.navbar-nav {
    flex-grow: 1;
    margin-left: 10%;
    margin-right: auto;
    justify-content: space-around;
}

footer {
    background-color: #2f4e40;
    color: #ffffff;
    font-size: 1.1rem;
}

footer p {
    font-size: 1.1rem;
    line-height: 1.5;
}

footer h3 {
    max-width: 20rem;
}

footer #disclaimer p {
    font-size: 0.8rem;
}

footer h3.h5 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary);
}

footer li {
    line-height: 2;
}

footer a {
    color: #717171;
}

.footer-bottom {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 1px;
}

.btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: lighter;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 1.2rem;
}

.btn-tall {
    padding: 1.5rem 3rem;
}

p {
    color: #707070;
}

.text-gray {
    color: #707070;
}

.font-barlow-condensed {
    font-family: 'Barlow Condensed', sans-serif !important;
}

.link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-right: 5rem;
    height: 40px;
    display: flex;
    align-content: center;
}

.link:hover {
    text-decoration: none;
}

.link.text-white:before {
    background-image: url("../img/more_arrow_white.png");
}

.home-image-1, .image-float-right {
    max-width: 25%;
    position: absolute;
    right: 0;
    bottom: 20%;
}

.home-image-1 .image-shadow, .image-float-right:before {
    height: 100%;
    width: calc(100% + 2rem);
    position: absolute;
    top: 2rem;
    right: 0;
    content: '';
    background-color: var(--secondary);
    z-index: -1;
}

.home-image-1 .image-circle {
    content: url("../img/ffc_logo_icon_color.svg");
    position: absolute;
    top: 100%;
    transform: translate(20%, -50%);
    right: 0;
    clip-path:inset(0 20% 0 0);
}

.home-rotated-text {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vh;
    text-align: center;
}

.home-rotated-text > div {
    transform: rotate(-90deg);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    position: relative;
}

.home-rotated-text a:hover {
    text-decoration: none;
}

.content {
    padding-bottom: 6rem;
    padding-top: 6rem;
}

.home-section-3 > .row {
    position: relative;
}

.home-section-3 > .row:before {
    position: absolute;
    content: '';
    width: 80%;
    right: 0;
    top: -4rem;
    bottom: -6rem;
    background-color: var(--light);
}

.home-section-3.alt > .row:before {
    position: absolute;
    content: '';
    width: 80%;
    right: 0;
    top: -6rem;
    bottom: -6rem;
    background-color: var(--light);
}

.home-section-3.alt {
    margin-top: -10rem;
}

.home-section-3.alt > .row:after {
    content: none;
}

.home-section-3 > .row:after {
    position: absolute;
    content: '';
    width: 20%;
    left: 0;
    height: 6rem;
    bottom: -6rem;
    background-color: var(--primary);
}

.home-section-4 {
    background-color: var(--primary);
    color: white;
}

.home-section-4 p {
    color: white;
}

.slider img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.slider .slick-list {
    margin-left: 3rem;
}

.slider .slick-slide > div {
    padding-left: 0;
}

.event {
    position: relative;
    margin-left: 3rem;
    overflow: hidden;
}

.event img {
    transition: transform 0.5s ease-in-out;
    transform: scale(1.05);
}

.event:hover img {
    transform: scale(1);
}

.event:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent linear-gradient(0deg, #000000C6 0%, #0909094E 47%, #0D0D0D1F 100%) 0 0 no-repeat padding-box;;
    content: '';
    z-index: 1;
}

.event .event-info {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 2;
}

.large-event h2 {
    font-size: 55px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 3rem;
}

.am-experience.large-event h2 {
    font-size: 55px;
}

.large-event img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease-in-out;
    transform: scale(1.05);
    width: 100%;
    height: 40rem;
}

.large-event img:hover {
    transform: scale(1);
}

.large-event p, .large-event ul {
    color: #707070;
    font-size: 16px;
}

.event {
    color: white;
}

.event .event-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px #00000029;
    line-height: 0.9;
}

.event .event-location {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 4px #00000029;
}

.event .event-date, .single-event .event-date {
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: rgba(213, 208, 202, 0.9);
    font-family: "Barlow Condensed", serif;
    font-size: 1.3rem;
    padding: 0.125rem 3rem;
    text-shadow: 0 3px 6px #00000029;
    color: white;
}

.single-event .event-date {
    text-transform: uppercase;
}

.philosophy-section > .row {
    position: relative;
}

.philosophy-section > .row:before {
    position: absolute;
    content: '';
    width: 80%;
    right: 0;
    top: -4rem;
    bottom: -6rem;
    background-color: var(--light);
}

.number {
    font-weight: 300;
    font-family: "Barlow Condensed", sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta {
    background: url("../img/cta-bg.png");
    color: white;
    position: relative;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.cta h2 {
    font-size: 2.25rem;
}

.cta:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: 0.9;
}

.social-icon {
    font-weight: normal;
}

.large-event .event-date {
    background-color: rgba(213, 208, 202, 0.9);
    font-family: "Barlow Condensed", serif;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    color: white;
    text-transform: uppercase;
    pointer-events: none;
    letter-spacing: 1px;
}

.large-event.bg-light .event-date {
    background-color: #707070;
}

.past-events {
    color: var(--primary);
    text-transform: uppercase;
    font-family: "Barlow Condensed", serif;
    pointer-events: none;
    font-size: 1.3rem;
}

.coaches-section-1 p {
    color: white;
}

.coaches-section-1 img {
    transform: translateY(-15rem);
    z-index: 1;
}

.coaches-section-1.what .play-video {
    transform: translateY(-15rem);
    z-index: 1;
}

.coaches-section-1.what img {
    transform: translateY(0);
}


.coaches-section-1 > .row:nth-child(2) {
    margin-top: -9rem;
}

.coaches-section-1 {
    background-image: url("../img/cta-bg.png");
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-top: 12rem;
}

.coaches-section-1.alt {
    background-image: url(../img/cta-bg.png);
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding-top: 3.5rem;
    padding-bottom: 16.5rem;
    margin-top: 12rem;
}

.coaches-section-1:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: 0.9;
}

.coaches-section-1:after, .coaches-section-1.alt:after {
    position: absolute;
    content: '';
    background-color: var(--primary);
    width: 1px;
    height: 17rem;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.coach-section .subtitle {
    color: #707070;
    text-transform: uppercase;
    font-family: "Barlow Condensed", serif;
    font-size: 1.3rem;
    font-weight: normal;
}

.coach-section h2 {
    color: var(--primary);
}

.coach-section p {
    color: #707070;
}

#timeline {
    position: relative;
}

#timeline:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--primary);
    left: 50%;
    transform: translateX(-50%);
}

#timeline .row:first-child .point {
    margin-top: 5rem;
}

#timeline .row:first-child .point:before, #timeline .row:last-child .point:before {
    background-color: var(--primary);
}

#timeline .row:last-child .point {
    margin-bottom: 5rem;
}

#timeline .point {
    position: relative;
    padding-left: 2rem;
}

#timeline .point:before {
    position: absolute;
    content: '';
    left: -1rem;
    top: 5px;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background-color: var(--light);
    transform: translateX(50%);
}

#timeline .point h3 {
    color: var(--primary);
    text-transform: uppercase;
    font-family: "Barlow Condensed", serif;
    font-size: 1.2rem;
    font-weight: normal;
}

.timeline-image-1 {
    max-width: 20%;
    position: absolute;
    right: 0;
    top: 30rem;
}

.timeline-image-2 {
    max-width: calc(20% - 2rem);
    position: absolute;
    left: 2rem;
    top: 45rem;
}

.timeline-image-3 {
    max-width: 20%;
    position: absolute;
    right: 0;
    bottom: -3rem;
}

.timeline-image-2:before {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 2rem;
    right: 2rem;
    content: '';
    background-color: #D5D0CA;
    z-index: 0;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-family: "Barlow Condensed", serif;
    font-weight: normal;
    pointer-events: none;
    font-size: 1.3rem;
}

#team > div {
    margin-bottom: 6rem;
}

#team p {
    line-height: 1.5;
}

#contact-container {
    transition: all 0.3s ease-in-out;
}

#contact-container > div {
    padding: 4rem;
    background-color: rgba(248, 249, 250, 0.98);
}

#contact-container .form-control, #contact-container select {
    height: 3rem;
    border-radius: 0;
    background-color: var(--light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
}

.single-event .form-control, .single-event select {
    height: 3rem;
    border-radius: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
}

.single-event .form-control::placeholder, .single-event select {
    text-transform: uppercase;
}

#contact-container .form-control::placeholder, #contact-container select, #newsletter .form-control::placeholder {
    text-transform: uppercase;
}

#newsletter .form-control {
    height: 3rem;
    border-radius: 0;
    border: 1px solid #707070;
    border-right-width: 0;
    background-color: transparent;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
}

#newsletter .btn {
    height: 3rem;
    border: 1px solid #707070;
    border-left-width: 0;
}

#newsletter .input-group > div:nth-child(2) {
    position: relative;
}

#newsletter .input-group .btn {
    width: 4rem;
    background-image: url("../img/more_arrow_green.png");
    background-size: 2.5rem;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
}

#contact-container textarea {
    min-height: 12rem;
}

#contact-container .line {
    margin-left: auto;
    margin-right: auto;
    width: 5rem;
    height: 1px;
    background-color: var(--primary);
}

#contact-container .small {
    font-weight: 300;
}

#locations {
    color: #707070;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#locations h3 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Barlow Condensed", sans-serif;
}

#locations p {
    font-size: 1rem;
}

#locations .row > div {
    margin-bottom: 3rem;
}

nav .line {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    width: 1vw;
    height: 1px;
    background-color: var(--primary);
}

.home-rotated-text > div:after {
    width: 2rem;
    height: 1px;
    margin-left: 1rem;
    background-color: var(--primary);
    content: '';
    display: inline-block;
    vertical-align: middle;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select .custom-select {
    background-image: none;
}

.select {
    position: relative;
}

.select::after {
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
    font-family: "Font Awesome 5 Pro";
    content: "\f0d7";
    color: #D5D0CA;
    font-size: 1.3rem;
}

.left-arrow, .right-arrow {
    display: inline-block;
}

.left-arrow object, .right-arrow object {
    width: 2.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.left-arrow:hover, .right-arrow:hover {
    text-decoration: none;
}

.left-arrow:hover object {
    transform: translateX(-0.5rem);
}

.right-arrow:hover object {
    transform: translateX(0.5rem);
}

nav.navbar .navbar-brand {
    position: relative;
    margin-right: 0;
}

nav.navbar .navbar-brand img {
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

nav.navbar.active .navbar-brand img.top {
    opacity: 0;
}

#mobile-navbar {
    z-index: 99999;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
}

#mobile-nav {
    height: 100vh;
    z-index: 1000;
    justify-content: space-around;
    background-color: var(--primary);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#mobile-nav .nav-link {
    font-size: 18px;
    margin-right: unset;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
}

#timeline-container {
    width: 60%;
}

.timeline-8rem {
    margin-bottom: 8rem;
}

#timeline > .row:nth-child(even) {
    justify-content: flex-end;
}

#timeline > .row:nth-child(odd) .point {
    padding-left: unset;
    padding-right: 2rem;
    text-align: right;
}

#timeline .row:nth-child(odd) .point:before {
    left: unset;
    right: -1rem;
}

#timeline .row:nth-child(odd) .point .timeline-image {
    width: 100%;
    max-width: 16rem;
    position: absolute;
    right: calc(100% + 1rem);
    top: 0;
}

#timeline .row:nth-child(even) .point .timeline-image {
    width: 100%;
    max-width: 16rem;
    position: absolute;
    left: calc(100% + 1rem);
    top: 0;
}

.timeline-image img {
    position: relative;
    z-index: 1;
}

.timeline-image.drop-shadow:before {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 2rem;
    right: 2rem;
    content: '';
    background-color: #D5D0CA;
    z-index: 0;
}

sup {
    font-size: 60%;
}

#documents {
   font-size: 1.5rem;
}

#documents .list-group-item {
    border-color: var(--primary);
}

#documents .list-group-item:hover {
    background-color: var(--primary);
    color: white;
}

#documents .list-group-item:hover:after {
    content: 'Download';
    float: right;
}

.form-sent {
    padding-top: 12rem !important;
    padding-bottom: 24rem !important;
}

.form-sent #contact-container {
    transform: unset;
}

/*Credit to start goes here: https://tobiasahlin.com/moving-letters/#6*/
.animated-hero {
    position: relative;
}

.text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.slide-up-fade {
    display: inline-block;
    opacity: 0;
}

.video-modal .modal-content {
    border: 0;
}

.video-modal .modal-header button {
    color: white;
}

.video-modal .modal-body, .modal-header {
    padding: 0;
}

.video-modal .modal-body iframe {
    max-width: 100%;
}

.bio-video > div {
    position: relative;
}

.play-bio-video {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 4rem;
}

@media (min-width: 992px) {
    .side-padding {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

@media (max-width: 992px) {
    .large-event h2 {
        font-size: 5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .large-event p, .large-event ul {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    #team > div {
        margin-bottom: 1rem;
        text-align: center;
    }

    #contact-container {
        padding: 1rem;
    }

    .coaches-section-1 {
        margin-top: unset;
    }

    .coaches-section-1 img {
        transform: unset;
        margin-bottom: 1rem;
    }

    .coaches-section-1.what .play-video {
        transform: unset;
        z-index: 1;
    }

    .coaches-section-1.what img {
        transform: unset;
    }

    .coaches-section-1 > .row:nth-child(2) {
        margin-top: unset;
    }

    .coaches-section-1:after {
        height: 2rem;
    }

    .philosophy-section > .row:before {
        display: none;
    }

    .content {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }

    .home-section-4 {
        padding-top: 6rem;
    }

    .large-event .event-date {
        display: block;
    }

    .slider .slick-slide > div {
        padding-left: unset;
    }

    .event:before, .event .event-info {
        left: 0;
    }

    .slider img {
        width: 100%;
    }

    .home-image-1 {
        display: none;
    }

    .home-section-3 > .row:after {
        display: none;
    }

    .home-rotated-text {
        transform: unset;
        position: unset;
        top: unset;
        left: unset;
        width: unset;
        align-self: center;
    }

    .home-rotated-text > div {
        transform: unset;
        font-size: 1.5rem;
    }

    .timeline-image, .timeline-image-1, .timeline-image-2, .timeline-image-3 {
        display: none;
    }

    #timeline-container {
        width: unset;
    }

    #timeline:before {
        left: 0;
        transform: unset;
    }

    .timeline-8rem {
        margin-bottom: unset;
    }

    #contact-container > div {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #documents .list-group-item:hover:after {
        display: block;
    }

    .home-section-3 > .row:before, .home-section-3.alt > .row:before {
        width: 100%;
    }

    .home-section-3.alt {
        margin-bottom: 5rem;
    }

    .event, .slider .slick-list {
        margin-left: unset;
    }

    .event .event-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .event .event-location {
        font-size: 1rem;
    }

    #timeline > .row:nth-child(even) {
        justify-content: flex-start;
    }

    #timeline > .row:nth-child(odd) .point {
        padding-left: 2rem;
        padding-right: unset;
        text-align: left;
    }

    #timeline .row:nth-child(odd) .point:before {
        left: -1rem;
        right: unset;
    }

    #documents .list-group-item:hover:after {
        display: none;
    }

    #documents {
        font-size: 1.25rem;
    }

    #documents .list-group-item:after {
        content: 'Download';
        text-align: right;
        display: block;
        font-size: 0.9rem;
     }

    .container-fluid > .row > .col-12, .container > .row > .col-12 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .large-event img {
        height: 50vh;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 80vh;
        background-image: url("../img/hero-mobile-1.png");
        min-height: 600px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .large-event h2 {
        font-size: 3rem;
    }

    .home-rotated-text > div:after {
        display: none;
    }
}

@media (max-width: 550px) {

    .hero h1 {
        font-size: 2rem;
    }

}

#container {
    position: absolute;
    width: 46px;
    height: 46px;
    border: solid #fefefe 1px;
    border-radius: 50%;
}

.default-top {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 4px solid #fefefe;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    -webkit-transform: rotate(45deg);
    margin-left: -1px;
}

#halfclip {
    width: 50%;
    height: 100%;
    right: 0px;
    position: absolute;
    overflow: hidden;
    transform-origin: left center;
}

.hero-play a:hover #halfclip {
    animation: cliprotate 0.5s;
    transform: rotate(180deg);
} 

@keyframes cliprotate {
  0% {transform: rotate(0deg);}
  50% {transform: rotate(0deg);}
  50.01% {transform: rotate(180deg);}
  100% {transform: rotate(180deg);}
}

.halfcircle {
  box-sizing: border-box;
  height: 100%;
  right: 0px;
  position: absolute;
  border: solid 3px transparent;
   border-top-color: #fefefe;
   border-left-color: #fefefe;
   border-radius: 50%;
}

#clipped {
    width: 200%;
    transform: rotate(-45deg);
}
.hero-play a:hover #clipped {
    transform: rotate(135deg);
    animation: rotate 0.25s linear 2;
}


@keyframes rotate {
  0% {transform: rotate(-45deg);}
  100% {transform: rotate(135deg);}
}

#container i {
    position: absolute;
    left: calc( 50% - 6px );
    top: calc( 50% - 9px );
    font-size: 18px;
        filter: drop-shadow( 0px 0px 2px rgb(113 113 113 / 28%) );
}

#fixed {
  width: 100%;
    transform: rotate(135deg);  
    opacity: 0;
}

.hero-play a:hover #fixed {
    opacity: 1;
    animation: showfixed 0.5s 1;
}

@keyframes showfixed {
  0% {opacity: 0;}
  49.99% {opacity: 0;}
  50% {opacity: 1;}
 100% {opacity: 1;}
}

.hero-play span {
    margin-left: 55px;
}

a.link span {
    margin-top: 6px;
}
 
.link-arrow {
    position: relative;
    height: 40px;
    width: 80px;
    display: inline-block;
    overflow: hidden;
    margin-left: 5px;
}

.more-arrow {
    position: absolute;
    top: calc( 50% - 6.85px);
    left: 0;
    margin-left: 5px;
    width: 40px;
    transition: all 0.5s ease-in-out;
}

a.link:hover .link-arrow .more-arrow {
    left: 0;
    margin-left: -16px;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 20px;
    height: 40px;
    transition: all 0.5s ease-in-out;
}

a.link:hover .link-arrow .circle {
    left: 20px;
    margin-left: -20px;
}

.single-event-header {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    object-position: center;
}

.adx-video-container {
    height: 100%;
    width: 100%;
    background: #000;
}

.adx-video {
    width: 100%;
    max-width: 80%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
}

.adx-video .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    color: #fefefe;
    border: none;
}

.play-adx-video {
    margin-top: -12rem;
    padding-right: 20px;
}

footer p.lead {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.5rem;
}

.coaches-section-1.a > .row:nth-child(2) {
    margin-top: -12rem;
}

ul li .text-wrapper {
    position: relative;
    display: inline;
    overflow: hidden;
}

ul li p .text-wrapper {
    font-size: 95%;
}

a.dropdown-item {
    font-size: 75%;
    padding: 0.25rem 0.5rem;
    letter-spacing: 2px;
    color: #2F4E40 !important;
}

.dropdown-menu {
    background: #eff1f3;
    border-radius: 0;
    border: none;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

.involved-box {
    background: #D5D0CA;
    color: #304e40 !important;
    padding: 3rem 1.5rem;
    height: 100%;
}

.involved-box p {
    font-size: 0.95rem;
    color: #304e40 !important;
}

.slider .slick-slide {
    margin: 0 15px;
    padding-left: 15px;
    margin-bottom: 1rem;
}

.slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.slider .slick-slide {
    height: auto;
    display: flex !important;
}

.slider .slick-slide > div {
    display: flex;
}

.involved-box {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    
    font-size: 1.2rem;
    font-weight: 600;

    padding: 0;
    cursor: pointer;
}

.faq-question:hover {
    color: #0056b3; /* optional */
}

.faq-answer {
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
    color: #444;
    font-size: 1rem;
}

button.faq-question {
    text-transform: uppercase;
    font-family: "Barlow Condensed", serif;
    font-weight: 300;
    font-size: 1.55rem;
    color: #fefefe;
}

button.faq-question:focus {
    outline: none;
}

button.faq-question:hover {
    color: #fefefe;
    font-weight: 400;
}

.faq-answer a {
    color: #f48100;
    text-decoration: none;
    background-color: transparent;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.play-video {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Transparent overlay */
.play-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* darker transparent overlay */
    z-index: 1; /* behind icon */
    border-radius: inherit;
    transition: background 0.3s ease;
}

/* Play icon */
.play-video::before {
    content: "\f144"; /* fa-thin fa-circle-play (unicode) */
    font-family: "Font Awesome 6 Pro"; /* or your FA family */
    font-weight: 100; /* "thin" weight */
    color: white;
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* behind icon */
    pointer-events: none;
}

/* Optional hover effect */
.play-video:hover::after {
    background: rgba(0,0,0,0.65);
}

@media (max-width: 992px) {

    .coaches-section-1:after, .coaches-section-1.alt:after {
        height: 14rem;
    }

    .btn-tall {
        padding: 1.1rem 2rem;
    }

}

.nav-link.btn {
    font-size: 1rem;
}