/*universal*/


body {
    font-family: optima, sans-serif;
    margin: 0px;
    color: black;
    font-size: 1.2em;
    background-color: #efefef;
    line-height: 1.5;
}


a:visited,
a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #60ad95;
}

a.button {
    border: 2px solid white;
    color: white;
    padding: 0.5em 0.8em;
    text-align: center;
}


a.button:hover {
    background-color: white;
    color: #60ad95;
}

.all-content {
    margin-top: 130px;
    margin-bottom: 60px;
}


.content {
    margin: 3% 15%;
}


h1 {
    font-family: montserrat, sans-serif;
    text-align: center;
    font-size: 3em;
    color: #60ad95;
}

h2 {
    font-family: montserrat, sans-serif;
    font-size: 2em;
    color: white;
}

h3 {
    font-family: montserrat, sans-serif;
    text-align: justify;
    font-size: 1.5em;
    color: #60ad95;
}

h4 {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.1em;
    text-transform: capitalize;
}

/*interactive map*/

#svg-map {
    position: relative;
}

#map-catcher {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
}

.info-box {
    width: 450px;
    height: auto;
    display: none;
    background-color: white;
    color: #000000;
    text-align: center;
    border-radius: 6px;
    padding: 0px 0;
    position: absolute;
    z-index: 2;
}

.info-box img {
    width: 100%;
    height: auto;
}

/*index*/
#news em:hover {
    text-decoration: underline;
}

#concerns li {
    display: inline-block;
    list-style: none;
}

#stories blockquote {
    padding-top: 3em;
    text-align: center;
    font-size: 1.5em;
    color: white;
    margin: 0;
    position: relative;

}

#stories blockquote:before {
    font-family: georgia, serif;
    position: absolute;
    font-size: 3em;
    line-height: 1;
    top: 0.6em;
    left: 0.6em;
    content: "\201C";
}

blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
    float: right;
    font-size: 3em;
    line-height: 1;
    right: 0.7em;
    bottom: -1em;
    content: "";
}

.quote-container {
    background-color: #444;
    display: flex;
    flex-direction: column;
}

/*footer*/

#footer-container {
    background-image: url(assets/rhino.jpg);
    background-blend-mode: multiply;
    background-color: #3c6d5e;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

#vertical-nav ul {
    padding-bottom: 50px;
    padding-top: 50px;
    padding-right: 150px;
    margin: 0;
}

#vertical-nav ul li {
    padding: 8px;
    list-style: none;
    font-family: montserrat-bold, sans-serif;
    text-align: end;
}

#vertical-nav ul a {
    color: white;
    text-decoration: none;
}

#vertical-nav a:hover {
    color: #60ad95;
}

#small-footer {
    display: none;
}

@media screen and (max-width: 900px) {
    #footer-container {
        display: none;
    }

    #small-footer {
        display: flex;
        flex-flow: column wrap;
        background: #3c6d5e;
        color: white;
        justify-content: center;
    }

    #small-nav {
        text-align: center;
    }

    #small-nav ul {
        padding: 0px;
    }


    #small-nav li {
        display: inline-block;
        padding: 10px 15px;
        font-size: 18px;

    }

    #small-nav a {
        color: white;
    }

    #small-nav a:hover {
        color: black;
    }
}

/*end footer*/

* {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex: 33.3%;
    padding: 5px;
}

.column img {
    max-width: 100%;
}

@media screen and (max-width:600px) {
    .row {
        flex-wrap: wrap;
    }

    .column {
        flex: 100%;
    }
}

/* start nav*/

.header a {
    font-family: montserrat-semibold, sans-serif;
    text-decoration: none;
}

.header {
    background-color: #60ad95;
    width: 100%;
    display: flex;
    padding-left: 4%;
    padding-right: 4%;
    top: 0px;
    flex-wrap: nowrap;
    position: fixed;
    box-sizing: border-box;
    height: 70px;
    z-index: 2;
    /*    max-height: 85.0  6px;*/
}

.flex-logo {
    flex-grow: 1;
    box-sizing: border-box;
    margin-top: -14px;
}

.flex-navbar {
    flex-grow: 3;
    text-align: center;
    box-sizing: border-box;
    margin-top: -20px;
}

.header ul {
    list-style-type: none;
    white-space: nowrap;
}

.flex-navbar nav {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.header li {
    display: inline-block;
}

.flex-navbar nav ul li {
    display: inline-block;
    padding-left: 2vw;
    padding-right: 2vw;
    text-align: center;
    color: #444;
}

@media screen and (max-width: 1345px) {
    .flex-navbar nav ul li {
        padding-left: 1vw;
        padding-right: 1vw;
    }
}

/* hambuerger menu nav start */
#sidebar {
    box-sizing: border-box;
    display: none;
    background-color: black;
    width: 0px;
    height: 200px;
    transition: width 2s;
    -webkit-transition: width 2s;
}

.hamburger {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 900px) {
    .hamburger {
        display: inline;
        visibility: visible;
        opacity: 1;
    }

    .hamburger img {
        box-sizing: border-box;
        padding-top: 10px;
    }

    .flex-navbar {
        display: none;
    }

    #sidebar {
        box-sizing: border-box;
        display: block;
        visibility: hidden;
        opacity: 0;
        background-color: #444;
        width: 0px;
        height: 100%;

        position: fixed;
        top: 0;
        right: 0;
        float: right;
        z-index: 1;

        transition: width 0, 5s, opacity 0.5s, visibility 0s;
        -webkit-transition: width 0.5s, opacity 0.5s, visibility 0s;
    }

    #sidebar li:hover {
        background-color: #60ad95;
    }

    #main {
        transition: margin-right 0.5s;
    }

    #hamburgerLogo {
        transition: margin-right 0.5s;
    }

    .hamburger nav ul {
        box-sizing: border-box;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .hamburger nav ul li {
        box-sizing: border-box;
        position: relative;
        display: block;
        padding: 30px;
        width: 100%;
    }

    .hamburger nav ul li a {
        color: white;
        text-align: centre;
        box-sizing: border-box;
        font-size: 1em;
    }
}

.flex-navbar nav a {
    box-sizing: border-box;
    display: block;
    color: white;
    text-align: center;
}

.flex-navbar nav a::before {
    content: "";
    display: block;
    height: 5px;
    background-color: #444;
    /* margin-top: -20px; */
    margin-bottom: 20px;
    width: 0%;

    transition: all ease-in-out 250ms;
}

.flex-navbar nav a:hover {
    color: #444;
}

.flex-navbar nav a:hover::before {
    width: 100%;
}

/*end nav*/

/* animation for heading , main page*/
.tracking-in-expand {
    -webkit-animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    z-index: 0
}

/* ----------------------------------------------
 * Generated by Animista on 2019-10-9 18:55:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/*single-article*/
.article-header {
    margin-bottom: 3em;

}

.article-title {
    color: #60ad95;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 2.5em;
    line-height: 1.2em;
}


.tag {
    font-style: italic;
    color: #60ad95
}

.author {
    margin: 0 auto;
    font-weight: bold;
}

.article-header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-header li {
    display: inline-block;
}

.article-subtitle {
    margin: 0 auto;
    font-weight:

}

.c-a {
    text-align: justify;
    font-size: 1.2em;
    font-family: montserrat, sans-serif;
    margin-top: 1.5em;
}

.part {
    margin-bottom: 2em;
}

.article-content {
    padding: 0 25%;
}

@media screen and (max-width: 500px) {
    .article-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/*article & submissions page*/

.ver-container {
    display: flex;
    flex-wrap: nowrap;
    background: white;
}

.ver-container ul {
    padding: 0;
    margin-bottom: 0;
}


.ver-container ul li {
    display: inline-block;

}

.ver-part {
    flex: 50%;
    max-width: 50%;
    margin-right: 1.5em;
}

.ver-part img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 900px) {
    .ver-container {
        flex-wrap: wrap;
    }

    .ver-part {
        flex: 100%;
        max-width: 100%;
        margin: 0;
    }

    .ver-part .text {
        margin: auto 1em;

    }

    .article-title {
        font-size: 1.5em;
    }
}

.ver-title {
    font-size: 1.8em;
    margin: 0;
    color: #60ad95;
    font-family: montserrat;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #60ad95;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.singular {
    margin-bottom: 10rem;
}