.hero {
    min-height: 500px;
    background: url(../images/home/home-banner.jpg) center/cover no-repeat;
    padding: 40px 25px;

    display: flex;
    /* justify-content: start; */
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-text h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 2rem;
    color: #fff;
}

.cards {
    padding: 100px 25px 20px;
    background-color: #CCEBFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.card {
    background-color: #0C415C;
    width: 30%;
    min-width: 300px;
    color: #fff;
    margin: 10px;
    padding: 20px;
    padding-top: 80px;
    position: relative;
    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);
}

.cards .card img {
    width: 120px;
    border-radius: 50%;
    
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.card a {
    /* button style */
    display: inline-block;
    padding: 8px 20px;
    background-color: #1f628e;
    color: #debe8b;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.content {
    background-color: #0C415C;
    padding: 60px 0;
}

.content h1 {
    background-color: #CCEBFF;
    padding: 20px 25px;
    font-size: 2.5rem;
    color: #0C415C;
    text-align: center;
}

.info {
    padding: 20px 25px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col {
    width: 40%;
    margin: 10px;
}

.image-col {
    text-align: end;
}

.row.reverse .image-col {
    text-align: start;
}

.image-col img {
    width: 80%;
    max-width: 400px;
}

.row.reverse .text {
    text-align: end;
}

.text h2 {
    font-size: 2rem;
    color: #fff;
}

.text p {
    font-size: 1rem;
    color: #fff;
}