.main-section-homepage {
    padding: 5rem 0;
    color: #fff;
    background: var(--bg-image);
    background-size: cover;
}

.main-section-homepage .title {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000000;
    line-height: 1;
}

.main-section-homepage .sub-title {
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 1px #000000;
    font-size: 3rem;
    color: var(--primary-color);
    margin-top: 2rem;
}

.get-btn {
    background: var(--primary-color) !important;
    color: var(--primary-txt-color) !important;
    max-width: 500px;
    margin: 3rem auto !important;
    display: block !important;
}

.join-now-section {
    padding: 2rem 0;
}

.join-now-section .container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
}

.join-now-section .column {
    flex: 0.5;
}

.join-now-section .title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.join-now-section .title span {
    color: var(--primary-color);
}

.join-now-section .content {
    font-size: 2rem;
    font-weight: 300;
}

.wide-bg-section {
    min-height: 400px;
    background: url(/static/images/wide.jpg) center;
    background-size: cover;
}

.details-section {
    background: var(--primary-color);
    color: var(--primary-txt-color);
    padding: 3rem 0;
}

.details-section .container {
    display: flex;
    gap: 1rem;
}

.details-section .detail-wrapper {
    max-width: 400px;
    margin: 3rem auto;
    background: var(--detail-box-bg-color);
    color: var(--detail-txt-bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.details-section .detail-wrapper .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.details-section .detail-wrapper .content {
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .details-section .container {
        flex-direction: column;
    }

    .main-section-homepage .title {
        font-size: 2rem;
    }

    .main-section-homepage .sub-title {
        font-size: 1.6rem;
    }

    .join-now-section .container {
        gap: 2rem;
        flex-direction: column-reverse;
    }
}
