* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    margin-top: -30px;
}

.content h1{
    font-size: 70px;
    margin-top: 80px;

}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
    font-size: 40px;

}

.wrapper {
    font-family: "raleway";
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    margin-bottom: 80px;
}

.wrapper h1 {
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}

.content-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}

.card {
    flex: 0 0 calc(50% - 20px);
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
    margin: 10px 4px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.card i {
    margin: 20px;
    color: #3e96f4;
}

.card h2 {
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
}

.card p {
    color: #6c757d;
    text-align: center;
}

.card:hover {
    background: #3e96f4;
}

.card:hover h2 {
    font-weight: 600;
    color: #f2f2f2;
}

.card:hover i, .card:hover p {
    color: #f2f2f2;
}

@media(max-width: 991px) {
    .wrapper {
        padding: 25px;
    }
    .wrapper h1 {
        font-size: 2.5em;
        font-weight: 600;
    }
    .content-box {
        flex-direction: column;
        width: 100%;
    }
    .card {
        min-width: 300px;
        margin: 10px auto;
        width: 100%;
        flex: 0 0 100%;
    }
}