:root {
    --refuge-red: #8f0000;
    --refuge-red-dark: #700000;
    --refuge-blue: #087df5;
    --refuge-blue-light: #edf5ff;
    --text-dark: #292f36;
    --text-muted: #6c757d;
    --page-bg: #f5f6f8;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html,
body {
    min-height: 100%;
}

body {
    margin: 0;

    background: var(--page-bg);

    color: var(--text-dark);

    font-family:
            Arial,
            Helvetica,
            sans-serif;
}


a {
    transition:
            color .2s ease,
            background-color .2s ease,
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s ease;
}


/* =========================================================
   PAGE
   ========================================================= */

.site-wrapper {
    max-width: 1500px;

    margin: 30px auto;
}


.site-main {
    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
            0 5px 25px rgba(0, 0, 0, .07);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    height: 390px;

    position: relative;

    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, .12),
                    rgba(0, 0, 0, 0)
            ),
            url("/images/rec.jpeg")
            center center / cover no-repeat;
}


/* =========================================================
   REFUGE HEADER
   ========================================================= */

.refuge-header {
    padding: 25px 30px 28px;

    text-align: center;

    background: #fff;

    border-bottom: 1px solid #e9ecef;
}


.refuge-header h1 {
    margin: 0 0 8px;

    color: var(--refuge-blue);

    font-size: 30px;

    font-weight: 700;
}


.refuge-header p {
    max-width: 900px;

    margin: 0 auto;

    color: #343a40;

    font-size: 17px;

    line-height: 1.5;
}


.refuge-header strong {
    font-weight: 700;
}


/* =========================================================
   CONTENT
   ========================================================= */

.content-wrapper {
    padding: 30px;
}

.appointment-button {
    margin-left: 20px;

    padding: 11px 17px;

    display: inline-flex;

    align-items: center;

    white-space: nowrap;

    color: #fff;

    background: var(--refuge-red);

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;
}


.appointment-button i {
    margin-right: 8px;
}


.appointment-button:hover {
    color: #fff;

    background: var(--refuge-red-dark);

    text-decoration: none;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar {
    position: sticky;

    top: 30px;
}


.sidebar-menu {
    display: flex;

    flex-direction: column;

    padding: 0 5px;
}


.sidebar-link {
    min-height: 70px;

    margin-bottom: 14px;

    padding: 10px 18px;

    display: flex;

    align-items: center;

    color: var(--refuge-red);

    background: #fff;

    border: 2px solid var(--refuge-red);

    border-radius: 18px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 500;
}


.sidebar-link:hover {
    color: #fff;

    background: var(--refuge-red);

    text-decoration: none;

    transform: translateX(-3px);

    box-shadow:
            0 5px 15px rgba(0, 0, 0, .08);
}


.sidebar-link.active {
    color: #fff;

    background: var(--refuge-red);
}


.sidebar-icon {
    width: 38px;

    margin-right: 10px;

    text-align: center;

    font-size: 21px;
}


.sidebar-arrow {
    margin-left: auto;

    font-size: 14px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 30px;

    padding: 25px;

    color: #fff;

    background: var(--refuge-red);
}


.site-footer p {
    margin: 0;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .site-wrapper {
        margin: 15px;
    }

    .hero {
        height: 330px;
    }

    .sidebar-link {
        font-size: 16px;
    }

}


@media (max-width: 991px) {

    .sidebar {
        position: static;

        margin-top: 10px;
    }


    .sidebar-menu {
        display: grid;

        grid-template-columns:
                    repeat(2, 1fr);

        grid-gap: 10px;
    }


    .sidebar-link {
        margin-bottom: 0;
    }

}


@media (max-width: 767px) {

    .site-wrapper {
        margin: 0;
    }


    .site-main {
        border-radius: 0;
    }


    .hero {
        height: 250px;
    }


    .refuge-header {
        padding: 20px 15px;
    }


    .refuge-header h1 {
        font-size: 23px;
    }


    .refuge-header p {
        font-size: 15px;
    }


    .content-wrapper {
        padding: 20px 15px;
    }

    .appointment-button {
        width: 100%;

        margin-top: 15px;
        margin-left: 0;

        justify-content: center;
    }


    .sidebar-menu {
        grid-template-columns: 1fr;
    }

}

