/* Home Non-Logged-In View */
.home-body {
    padding: 28px 56px 100px 56px;
}

.home-header {
    color: var(--primary-body);
    font-size: 40px;
    font-weight: normal;
    margin: 0;
}

.home-header b {
    color: var(--primary-body);
    font-weight: bold;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    width: 35%;
    max-width: 500px;
}

.hero-info h1 {
    margin-bottom: 20px;
}

.hero-info p {
    margin-bottom: 33px;
}

.hero-info a {
    width: fit-content;
}

.hero img {
    width: 50%;
    border-radius: 8px;
}

.what-to-know {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.what-to-know h1 {
    text-align: center;
    margin-bottom: 32px;
}

.what-to-know-info {
    display: flex;
    flex-direction: row;
}

.what-to-know-info-box {
    flex: 1 1 0px;
    margin-right: 20px;
}

.what-to-know-info-box:last-child {
    margin-right: 0;
}

.what-to-know-info-box h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--primary-body);
    margin: 0 0 16px;
}

.what-to-know-info-box svg {
    margin-right: 8px;
}

.game-changer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.game-changer iframe {
    width: 100%;
    max-width: 1000px;
}

.game-changer-info {
    width: 50%;
    max-width: 525px;
    margin-right: 40px;
}

.game-changer-info h1 {
    margin-bottom: 32px;
}

.game-changer-info-quote {
    display: flex;
    flex-direction: row;
}

.game-changer-info-quote h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.game-changer-info-quote svg {
    overflow: visible;
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .home-body {
        padding: 20px 16px 40px 16px;
    }

    .home-header {
        font-size: 28px;
    }

    .hero {
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }

    .hero img {
        width: 100%;
        margin-bottom: 16px;
    }

    .hero-info {
        width: 100%;
        max-width: none;
        align-items: center;
    }

    .hero-info p {
        margin-bottom: 28px;
    }

    .hero-info a {
        width: 100%;
    }

    .what-to-know {
        margin-bottom: 40px;
    }

    .what-to-know-info {
        flex-direction: column;
    }

    .what-to-know-info-box {
        margin: 0 0 42px;
    }

    .what-to-know-info-box:last-child {
        margin: 0;
    }

    .game-changer {
        flex-direction: column;
    }

    .game-changer-info {
        width: 100%;
        max-width: none;
        margin-bottom: 32px;
    }

    .game-changer-info-quote {
        flex-direction: column;
    }
}

/* Your Impact Header */
.home-impact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 28px 56px;
    background: white;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--secondary-color);
}

.home-impact h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 34px;
}

.home-impact-info h3 {
    color: var(--primary-body);
}

.home-impact-stats {
    display: flex;
    flex-direction: row;
}

.home-impact-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 32px;
}

.home-impact-stat-box:last-child {
    margin-right: 0;
}

.home-impact-stat-box h3 {
    font-size: 32px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.home-impact-stat-box p {
    color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
    .home-impact {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .home-impact h2 {
        font-size: 16px;
        margin: 0 0 11px 0;
    }

    .home-impact h3 {
        font-size: 14px;
        margin: 0 0 11px 0;
    }

    .home-impact-stats {
        flex-direction: column;
    }

    .home-impact-stat-box {
        flex-direction: row;
        align-items: flex-end;
        margin: 0 0 8px 0;
    }

    .home-impact-stat-box h3 {
        font-size: 16px;
        margin: 0 4px 2px 0;
    }

    .home-impact-stat-box p {
        font-size: 14px;
        margin: 0;
    }
}

/* Classes near you header */
.classes-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 56px;
    margin-bottom: 32px;
}

.classes-header h1 {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}

.classes-header-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
}

.classes-header-links a {
    margin-right: 32px;
}

.classes-header-links a:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 768px) {
    .classes-header {
        flex-direction: column;
        padding: 0 20px;
    }

    .classes-header h1 {
        font-size: 28px;
        margin: 0 0 12px 0;
    }

    .classes-header-links {
        flex-direction: column;
        justify-content: flex-start;

    }

    .classes-header-links a {
        margin: 0 0 16px 0;
    }

    .classes-header-links a:last-child {
        margin: 0;
    }
}

/* Classes near you filters */
.classes-filters {
    padding: 0 56px;
    margin-bottom: 32px;
}

.classes-filters-inputs {
    display: flex;
    flex-direction: row;
    margin-bottom: 12px;
}

.classes-filters-buttons {
    display: flex;
    flex-direction: row;
}

.classes-filters-buttons a {
    width: 159px;
    margin-right: 12px;
}

.classes-filters-buttons a:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 768px) {
    .classes-filters {
        padding: 0 20px;
    }

    .classes-filters-inputs {
        flex-wrap: wrap;
    }
}

/* Classes List */
.classes-container {
    padding: 0 56px;
}

.numEngagements {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-body);
    margin-bottom: 16px;
}
.numEngagementsWOF {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-body);
    margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
    .classes-container {
        padding: 0 20px;
    }
}