body {
    margin: 0px;
    padding: 0px;
}

.topBanner {
    height: 85vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topBanner video {
    height: 85vh;
    width: 100%;
    position: absolute;
    z-index: -1;
    object-fit: cover;

}

.topBanner h1 {
    font-size: 70px;
    color: #ffffff;
    line-height: 62px;
    text-align: center;
    font-family: Josefin Sans;
    font-weight: 400;
    font-style: normal;
    letter-spacing:6.05px;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInUp {
    animation-name: slideInUp
}


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

.cards .card {
    width: 85%;
    background: #f6f6f6;
    border: 1px solid #E0DDDD;
    padding: 40px 90px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease-in, transform 0.4s ease-in;
}

.cards .card:nth-child(even) {
    background: #ffffff;
}

.cards .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px) scale(1.01);
}

.cards .card .content p {
    color: #828282;
    font-size: 18px;
    line-height: 31px;
    margin-bottom: 30px;
    text-align: left;
    font-family: "Hind", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 300;
    letter-spacing: 1.7px;
}

.cards .card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.card .title {
    color: #333;
    font-family: "Josefin Sans";
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.card-details .single-card {
    width: 50%;
}

.card-details p {
    color: #333333;
    text-align: left;
    font-family: "Hind", "Arial", "sans-serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 1.7px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-rendering: optimizelegibility;
    margin-bottom: 1em;
}

.cards .card-details .button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cards .card-details .card-button {
    background: #333;
    border-radius: 0;
    padding: 10px 15px;
    border: none;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Nunito', 'Arial', 'sans-serif';
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    text-rendering: optimizelegibility;
    text-decoration: none;
}


.cards .card-details .card-button:hover {
    color: #ccc;
}

@media only screen and (max-width: 800px) {
    .cards .card {
        width: 95%;
    }
}


@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        transform: translateY(0)
    }
}