.heading {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    margin: 50px;
    gap: 20px;
    width: 800px;
}
.heading h2 {
    font-size: 40px;
    font-weight: 400;
    color: var(--text-color);
}
.heading-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.heading-col p{
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 25px;
    text-align: left;
}

@media screen and (max-width: 980px) {
    .heading {
        width: 100%;
        padding: 0 20px;
    }
    
}
