
/*==================================
            PAGE HERO
===================================*/

.page-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem 0 1rem;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #009893;
}

.page-hero h2 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: #009893;
}

.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #000000;
    line-height: 1.8;
}


/*==================================
            MEDIA LIST
===================================*/

.media-list-section {
    padding: 2rem 0 3rem;
}

.media-list-section1{
    padding: 0rem 0 3rem;
}


.media-event {
    margin-bottom: 4rem;
}

.media-event-heading {
    font-size: 1.8rem;
    font-weight: 400;
    color: #00252A;
    margin-bottom: 2rem;
}


/*==================================
            MEDIA CARD
===================================*/

.media-card {
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(0, 37, 42, .15);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 0 #00252A;
    transition: var(--transition);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 0 #00252A;
}


/*==================================
            VIDEO
===================================*/

.media-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #000;
    border-radius: var(--radius);

}


/*==================================
            MEDIA CONTENT
===================================*/

.media-content {
    padding: 1.5rem 2rem 2rem;
}

.media-content h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #00252A;
    margin-bottom: .75rem;
}

.media-content p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    font-size:0.8rem;
}


/*==================================
            RESPONSIVE
===================================*/

@media (max-width: 991.98px) {

    .media-list-section {
        padding: 2rem 0 4rem;
    }

    .media-content {
        padding: 1.5rem 1.75rem 1.75rem;
    }

}

@media (max-width: 767.98px) {

    .media-list-section {
        padding: 2rem 0 3rem;
    }

    .media-event {
        margin-bottom: 3rem;
    }

    .media-event-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .media-content {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .media-content h2 {
        font-size: 1.3rem;
    }

}

.media-list-section .row {
    justify-content: center;
}

.media-list-section .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
}

@media (max-width: 767px) {
    .media-list-section .row > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .media-card {
        width: 100%;
        height: auto;
    }
}