.title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 50px;
}

.heading {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.subHeading {
    font-size: 1.2em;
    /* margin-bottom: 5px; */
}

.subHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card {
    background-color: rgba(138, 138, 138, 0.062);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    width: 45vw;
}

.contentFlex {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
}
.content p{
    color: rgb(128, 128, 128);
}
.content{
    transition: all 0.3s ease;
}

.expand {
    color: var(--brand-color-dark);
    background-color: var(--brand-color-light);
    padding: 0px 10px;
    border-radius: 5px;
    height: 50%;
    font-size: 30px;
    cursor: pointer;
    
}

@media screen and (max-width: 900px) {
    .title {
        font-size: 2em;
    }
    .heading {
        font-size: 1.5em;
    }
    .subHeading {
        font-size: 1em;
    }
    .contentFlex {
        /* flex-direction: column;
        align-items: flex-start; */
    }
    .expand {
        margin-top: 10px;
        font-size: 24px;
    }
}

@media screen and (max-width: 650px) {
    .contentFlex {
        flex-direction: column;
    }
    .expand {
        margin-top: 10px;
    }
    .subHeading {
        text-align: center;
    }
    
}