/* =========================================================
   FACILITIES SECTION
========================================================= */

.fed-facilities-section {
    width: 100%;
    margin: 25px 0 40px;
    padding: 30px 0 25px;

    background: #3d766e;

    overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.fed-facilities-wrapper {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   CAROUSEL
========================================================= */

.fed-facilities-carousel {
    width: 100%;

    display: flex;
    align-items: center;
}


/* =========================================================
   VIEWPORT
========================================================= */

.fed-facilities-viewport {
    width: 100%;
    overflow: hidden;

    padding: 3px 2px 8px;
}


/* =========================================================
   TRACK
========================================================= */

.fed-facilities-track {
    display: flex;
    flex-wrap: nowrap;

    gap: 22px;

    width: max-content;

    transition: transform 0.5s ease;
}


/* =========================================================
   FACILITY CARD
========================================================= */

.fed-facility-card {
    position: relative;

    width: 285px;
    min-width: 285px;

    height: 415px;

    flex-shrink: 0;

    background: #ffffff;

    overflow: hidden;

    border: 1px solid #d7dfdd;

    border-radius: 2px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CARD HOVER
========================================================= */

.fed-facility-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.fed-facility-image {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 205px;

    padding: 7px;

    background: #ffffff;

    overflow: hidden;

    border-bottom: 1px solid #d8dfdd;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE
   IMPORTANT: CONTAIN = NO CROPPING
========================================================= */

.fed-facility-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #ffffff;

    border: 2px solid #d7e2df;

    border-radius: 3px;

    padding: 2px;

    box-sizing: border-box;

    transition: transform 0.3s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.fed-facility-card:hover
.fed-facility-image img {
    transform: scale(1.02);
}


/* =========================================================
   CARD BODY
========================================================= */

.fed-facility-body {
    height: 210px;

    padding: 17px 20px 22px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   TITLE
========================================================= */

.fed-facility-body h4 {
    margin: 0 0 11px;

    color: #064b91;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   TITLE LINK
========================================================= */

.fed-facility-body a {
    text-decoration: none;
}


/* =========================================================
   TITLE HOVER
========================================================= */

.fed-facility-body a:hover h4 {
    color: #08734e;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.fed-facility-body p {
    margin: 0;

    color: #526b88;

    font-size: 13px;

    line-height: 1.58;

    text-align: left;

    display: -webkit-box;

    -webkit-line-clamp: 5;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   GREEN BOTTOM BORDER
========================================================= */

.fed-facility-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #075f43,
        #149466,
        #075f43
    );
}


/* =========================================================
   ARROWS
========================================================= */

.fed-facilities-arrow {
    position: relative;

    z-index: 20;

    width: 42px;
    min-width: 42px;

    height: 42px;

    padding: 0;

    border: none;

    border-radius: 2px;

    background: rgba(20, 31, 32, 0.95);

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 30px;

    line-height: 1;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.fed-facilities-arrow:hover {
    background: #08734e;

    transform: scale(1.05);
}


.fed-facilities-prev {
    margin-right: 12px;
}


.fed-facilities-next {
    margin-left: 12px;
}


/* =========================================================
   DOTS
========================================================= */

.fed-facilities-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 14px;
}


.fed-facilities-dot {
    width: 8px;
    height: 8px;

    display: block;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}


.fed-facilities-dot.active {
    width: 23px;

    border-radius: 10px;

    background: #08734e;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .fed-facility-card {
        width: 300px;
        min-width: 300px;

        height: 420px;
    }

    .fed-facility-image {
        height: 205px;
    }

    .fed-facility-body {
        height: 215px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .fed-facilities-wrapper {
        width: 94%;
    }

    .fed-facility-card {
        width: 310px;
        min-width: 310px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .fed-facilities-section {
        padding: 25px 0 22px;
    }

    .fed-facilities-wrapper {
        width: 92%;
    }

    .fed-facility-card {
        width: 280px;
        min-width: 280px;

        height: 390px;
    }

    .fed-facility-image {
        height: 175px;

        padding: 6px;
    }

    .fed-facility-image img {
        border-width: 2px;
    }

    .fed-facility-body {
        height: 215px;

        padding: 15px 17px 20px;
    }

    .fed-facility-body h4 {
        font-size: 18px;
    }

    .fed-facility-body p {
        font-size: 13px;

        line-height: 1.55;
    }

    .fed-facilities-arrow {
        width: 37px;
        min-width: 37px;

        height: 37px;

        font-size: 27px;
    }

    .fed-facilities-prev {
        margin-right: 6px;
    }

    .fed-facilities-next {
        margin-left: 6px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .fed-facilities-wrapper {
        width: 94%;
    }

    .fed-facility-card {
        width: 255px;
        min-width: 255px;

        height: 380px;
    }

    .fed-facility-image {
        height: 160px;
    }

    .fed-facility-body {
        height: 220px;

        padding: 14px 15px 18px;
    }

    .fed-facility-body h4 {
        font-size: 17px;
    }

    .fed-facility-body p {
        font-size: 12.5px;
    }

    .fed-facilities-arrow {
        width: 33px;
        min-width: 33px;

        height: 33px;

        font-size: 24px;
    }
}








