.page-content {
    padding-top: 0;
    margin-top: 0;
}

.colored-card {
    background-color: var(--color-primary);
    color: white;
    padding: 30px;
}

.objective {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;

    .img-header {
        display: flex;
        flex-direction: row;
        gap: 20px;

        i {
            font-size: 50px;
        }

        h3 {
            width: 100%;
            text-align: center;
        }
    }
}

@media screen and (max-width: 400px) {
    .objective {
        .img-header {
            flex-direction: column;
            align-items: center;
        }
    }
}