.call {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.call-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.call-title h1 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 800;
    color: var(--main-white);
}

.call-message {
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 900;
    color: var(--main-white);
    text-align: center;
}

.call-message b {
    color: var(--main-red);
    font-weight: 900;
}

@media (max-width: 980px) { 
    .call {
        align-items: normal;
    }

    .call-title {
        flex-direction: column;
    }

    .call-message {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .call-title h1 {
        font-family: 'Montserrat';
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--main-white);
    }
}