/* How It Works Section */
#how-it-works {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
}
.how-section {
    position: relative;
    margin-bottom: 1rem;
}
.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background-flipped.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}
.how-section > * {
    position: relative;
    z-index: 1;
}
.how-title {
    /*margin-top: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;*/
    margin-top: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
/*.how-intro {
    color: #f5f5f5;
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.2rem;
}*/
.how-image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.how-columns {
    margin-top: 0;
    padding: 0 !important;
}
.how-col-fans {
    padding: 0.5rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.how-col-fans img {
    margin-top: auto;
    margin-bottom: 1rem;
}
.how-col-artists {
    padding: 0.5rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.how-col-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FF0000;
    margin-bottom: 1rem;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.5rem;
}
.how-columns p {
    font-size: 0.75rem;
    color: #f5f5f5;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.how-col strong {
    color: #f5f5f5;
}
.how-signup-btn {
    /*margin-top: 0.5rem;*/
    font-size: 0.85rem;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 1rem;
}
.how-divider-col {
    justify-content: center;
    align-items: stretch;
}
.how-divider {
    width: 1px;
    background-color: #2a2a2a;
    min-height: 100%;
}


/* Media Queries */
@media (max-width: 767px) {
    .how-columns {
        padding: 1rem 0rem;
        border-bottom: 1px solid #2a2a2a;
    }
    .how-col:last-child {
        border-bottom: none;
    }
    .how-intro {
        font-size: 1rem;
    }
}
@media (max-width: 375px) {
    .how-columns p {
        font-size: 0.65rem;   
    }
    .how-intro {
        font-size: 0.9rem;
    }
}