.header-carousel {
    width: 100%;
    height: calc(100vh - 150px);
    position: relative;
    /* border-bottom-right-radius: 100% 50%; */
    border-bottom-left-radius: 100% 50%; 
    overflow: hidden;
    background-color: black;
}

.header-carousel .slide {
    display: none;
    width: 100%;
    height: 100%;
    content-visibility: visible;
}

.header-carousel .prev, .header-carousel .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.header-carousel .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.header-carousel .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.header-carousel .slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.fade {
    /* animation-name: fade; */
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.slide .content {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    height: max-content;
    color: #ffffff;
    padding: 30px 40px;
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-flow: column;
}

.slide .content h2 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 5px;
    max-width: 70%;
}

.slide .content p {
    margin-bottom: 20px;
    max-width: 60%;
}

.slide .content button {
    background-color: #d8226b;
    padding: 10px 20px;
    color: #ffffff;
    border: 0;
    outline: 0;
    font-size: 15px;
    transition: background-color 0.3s ease-in-out;
}

.slide .content button:hover {
    background-color: #97184b;
}

.card-row {
    display: flex;
    height: max-content;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.card {
    width: 300px;
    height: 100%;
    max-height: 500px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 20px 30px 20px;
}

.card .icon {
    margin-bottom: 10px;
    color: #002f5f;
}

.card h2 {
    margin-bottom: 30px;
}