@font-face {
    font-family: "Helvetica-Neue";
    font-style: medium;
    src: url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.woff') format("woff"),
    url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.ttf') format("truetype"),
    url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.svg') format("svg");
    }

@font-face {
    font-family: "Helvetica-Neue-Bold";
    font-style: bold;
    src: url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.woff') format("woff"),
    url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.ttf') format("truetype"),
    url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.svg') format("svg");
    }

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent; 
    text-decoration: none;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica-Neue;
}

p, h1, h2 {
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

h1 {
    font-size: 1.6rem;
}

h1:hover {
    text-decoration: underline;
}

.flex {
    display: flex;
}

/*HEADER*/

#logo {
    margin: 0 auto;
    font-size: 0;
}

.container {
    margin: 0 auto;
    width: 75%;
}

.container-large {
    justify-content: center;
    padding: 2rem 0;
}

.top {
    position: relative;
    display: flex;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: center;
    border-top: 1px solid #ECECEC;
    border-bottom: 1px solid #000;
}

.navbar div {
    display: flex;
}

.navbar a {
    padding: .85rem;
}

.hamburger {
    display: none;
    position: absolute;
    padding: .85rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

/*FOOTER*/

.footer {
    display: flex;
    border-top: 1px solid #000;
}

.col {
    width: 33%;
    padding-top: .85rem;
}

.footer-link {
    padding: .85rem;
}

.start {
    /*text-align: start;*/
    text-align: left;
}

.center {
    text-align: center;
}

.end {
    /*text-align: end;*/
    text-align: right;
}

/*MAIN*/

.pill {
    align-items: center;
    font-size: .8rem;
    height:1.4rem;
    width:6rem;
    border: 1.5px solid #000000;
    border-radius: 25px;
    margin: .5rem;
}

.pill-icon {
    width: 12px;
    height: 12px;
    margin: .5rem;
}

.article-container {
    width: 75%;
    margin: 0 auto;
}

.article {
    width: 100%;

    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    box-shadow: rgb(0, 0 ,0 ,0.2) 3px 3px 6px 0px;
}

.large{
    margin: 1rem 0;
}

.medium {
    margin-bottom: 1rem;
}

.imedium {
    overflow : hidden;
    height: 12rem;
}

.ilarge {
    overflow : hidden;
    height: 20rem;
}

.article-image {
    width: 100%;
}

.description {
    margin: 1rem;
}

.left {
    margin-right: .5rem;
}

.right {
    margin-left: .5rem;
}

.centered {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}


@media only screen and (max-width:960px) {
    .hamburger {
        display: initial;
    }

    .navbar {
        display: none;
    }

    .top {
        border-bottom: 1px solid #000;
    }

    .left, .right {
        margin-left: 0;
        margin-right: 0;
    }

    .article-container {
        flex-direction: column;
    }

    .imedium, .ilarge {
        height : 8rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .footer {
        flex-direction: column;
    }

    .start {
        text-align: center;
    }

    .end {
        text-align: center;
    }

    .col {
        width: 100%;
    }
}

@media only screen and (max-width:535px) {
    /* For mobile phones: */
    h1 {
        font-size: 1.2rem;
    }
}

/*TAB*/

.nav-icon {
    height: 18px;
    padding-right: .5rem;
}

li  {
    list-style-type: none; 
}

ul.nav {
    margin: 0;
    padding-left: 1rem;
    padding-top:2.5rem;
    text-align: left;
    align-items: start;
}

a.nav {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    font-size: 1.2rem;
}