section {
    background: url(../images/impact/background-impact.jpg) center/cover no-repeat;
}

.container {
    padding: 100px 25px 20px;
}

.title {
    text-align: center;
    color: #0C415C;
}

.title h1 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 800;
}

.title h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

.things {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 52px;
}

.card {
    background-color: #0C415C;
    width: 80%;
    min-width: 300px;
    max-width: 700px;
    color: #fff;
    margin: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;

    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}