/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,28): run-time error CSS1039: Token not allowed after unary operator: '-color-light-grey'
(21,17): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(26,28): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(30,28): run-time error CSS1039: Token not allowed after unary operator: '-color-light-grey'
(116,25): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(146,25): run-time error CSS1039: Token not allowed after unary operator: '-color-pink'
(181,32): run-time error CSS1039: Token not allowed after unary operator: '-color-pink'
(185,28): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(187,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(191,28): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(192,17): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(193,24): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(220,21): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(232,24): run-time error CSS1039: Token not allowed after unary operator: '-color-pink'
(237,22): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(238,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(251,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(261,28): run-time error CSS1039: Token not allowed after unary operator: '-color-light-grey'
(280,35): run-time error CSS1039: Token not allowed after unary operator: '-color-pink'
(309,28): run-time error CSS1039: Token not allowed after unary operator: '-color-blue'
(310,24): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
 */
:root {
    --color-black: rgb(0,0,0);
    --color-white: rgb(255,255,255);
    --color-pink: rgb(232,79,156);
    --color-blue: rgb(27,76,134);
    --color-light-grey: #f8f9fa;
}

html, body {
    /*font-family: 'Nunito', sans-serif;*/
    /*font-family: 'Quicksand', sans-serif;*/
    /*font-family: 'Dosis', sans-serif;*/
    font-family: 'Varela Round', sans-serif;
}

html {
    background-color: var(--color-light-grey);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-blue);
}

body {
    margin-top: 111px;
    background-color: var(--color-white);
}

header {
    background-color: var(--color-light-grey);
}

.navbar-rmot {
    height: 110px;
}

.navbar .mr-auto {
    margin: 0 0 0 auto;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 0 20px;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

section { margin: 2rem 4rem;}

.carousel-inner > .carousel-item {
    height: 60vh;
}

    .carousel-inner > .carousel-item img {
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
    }

.img-card {
    overflow: hidden;
    margin: 15px 0;
    border: 0 none;
}

    .img-card img {
        transition: transform .7s cubic-bezier(.2,1,.22,1), opacity 0.5s ease;
    }

    .img-card:hover img {
        transform: scale(1.2);
    }

    .img-card h5 {
        font-size: 1.8em;
    }

        .img-card h5 a {
            font-weight: 700;
        }

            .img-card h5 a:hover {
                text-decoration: none;
            }

        .img-card .card-text, .img-card h5 a {
            color: #fff;
            text-shadow: 0 0 5px #000;
        }

    .img-card .admin {
        position: absolute;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.1);
        text-align: right;
        padding: 5px;
    }

        .img-card .admin a {
            color: var(--color-white);
        }

            .img-card .admin a:hover {
                text-decoration: none;
            }

    .img-card .card-footer {
        position: absolute;
        z-index: 1000;
        bottom: 0;
        left: 0;
        right: 0;
        height: 10%;
        color: #fff;
        padding: 10px;
        text-align: right;
    }

footer {
    background-color: #000;
    color: #fff;
    margin-top: 20px;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            color: var(--color-pink);
            text-decoration: none;
        }

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
}

    .social-links > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .social-links > div > a {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .social-links .facebook {
        background-color: #4267b2
    }

    .social-links .instagram {
        background-color: rgb(38, 38, 38);
    }

    .social-links .email {
        background-color: var(--color-pink);
    }

.btn-primary {
    background-color: var(--color-blue);
    border-width: 0;
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-blue);
    border-color: var(--color-blue);
    border-radius: 10px;
    border-width: 2px;
    font-weight: 700;
}

.introduction.parallax {
    min-height: 400px;
    margin-top: 0;
}

    .introduction.parallax.article {
        min-height: 250px;
        margin-bottom: 10px;
    }

.introduction {
    display: flex;
}

    .introduction h1 {
        align-self: flex-end;
        margin: 0 auto 20px auto;
        list-style: none;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 1.6rem;
        color: var(--color-white);
        text-align: center;
    }

        .introduction h1.center-text {
            align-self: center;
            margin: 0 auto;
        }


.card-primary {
    border-radius: 10px;
    border-color: var(--color-pink);
    border-width: 2px;
}

.articles-section {
    background: var(--color-blue);
    color: var(--color-white);
    padding-bottom: 15px;
}

.articles-section .row {
    margin: 0;
}

.articles-section .col-md-6, .articles-section .col-md-8 {
    padding: 0;
}

.articles-section h2 {
    color: var(--color-white);
    padding: 5px;
    margin: 0;
}

.articles-section .card-img-overlay {
    background-color: rgba(0,0,0,0.3);
}

.intro-section {
    background-color: var(--color-light-grey);
}

    .intro-section > div > .col-md-4, .intro-section > div > .col-md-8 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 4rem;
    }

    .intro-section .row {
        margin: 0;
    }

    .intro-section .col-md-6, .intro-section .col-md-8 {
        padding: 0;
    }

.heading-underline {
    border-bottom: 3px solid var(--color-pink);
    width: 80px;
    margin: 10px 0;
}

.heading-underline-right {
    margin: 10px 0 10px auto;
}

/* slide in animations */
.come-in {
    opacity: 0;
    transform: translateY(150px);
    animation: come-in 0.8s ease forwards;
}

    .come-in:nth-child(odd) {
        animation-duration: 0.6s; /* So they look staggered */
    }

@keyframes come-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookie-usage-message {
    margin-bottom: 0;
    background-color: var(--color-blue);
    border-color: var(--color-white);
    color: #fff;
}

.section-2 {
    margin: 3rem 0;
}

.indent {
    margin: 2rem 0 0 4rem;
}
