/* Minification failed. Returning unminified contents.
(111,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(112,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(113,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(114,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(115,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(116,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(117,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(147,25): run-time error CSS1039: Token not allowed after unary operator: '-text-margin-bottom'
(243,18): run-time error CSS1039: Token not allowed after unary operator: '-header-height'
(247,28): run-time error CSS1039: Token not allowed after unary operator: '-color-dark'
(249,21): run-time error CSS1039: Token not allowed after unary operator: '-content-side-margin'
(289,36): run-time error CSS1039: Token not allowed after unary operator: '-color-brand-blue'
(300,18): run-time error CSS1039: Token not allowed after unary operator: '-header-height'
(306,23): run-time error CSS1039: Token not allowed after unary operator: '-inner-viewport-height'
(306,54): run-time error CSS1039: Token not allowed after unary operator: '-header-height'
(338,24): run-time error CSS1039: Token not allowed after unary operator: '-header-height'
(338,47): run-time error CSS1039: Token not allowed after unary operator: '-content-side-margin'
(338,75): run-time error CSS1039: Token not allowed after unary operator: '-content-side-margin'
(360,24): run-time error CSS1039: Token not allowed after unary operator: '-header-height'
(360,47): run-time error CSS1039: Token not allowed after unary operator: '-content-side-margin'
(360,75): run-time error CSS1039: Token not allowed after unary operator: '-content-side-margin'
(445,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(465,22): run-time error CSS1039: Token not allowed after unary operator: '-inner-viewport-height'
(473,32): run-time error CSS1039: Token not allowed after unary operator: '-color-dark'
 */

*, ::before, ::after {
    margin: 0;
    padding: 0;
}

html {
    color: #000;
    background: #FFF;
}


table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: unset;
    font-weight: unset;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    *font-size: 100%;
}

legend {
    color: #000;
}

#yui3-css-stamp.cssreset {
    display: none;
}


@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/robotoslab-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('fonts/RobotoSlab-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}



html {
    --header-height: 4rem;
    --text-margin-bottom: 1rem;
    --content-side-margin: 2rem;
    --text-side-margin: 1rem;
    --color-dark: #353c42;
    --color-brand-blue: rgb(120,176,210);
    --inner-viewport-height: 100vh;
}


html {
    font-size: 0.8vw;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: white;
    background-color: #3e4e60;
}

* {
    box-sizing: border-box;
}


strong {
    font-weight: 700;
}

h1, h2, h3, p, ul, ol {
    margin-bottom: var(--text-margin-bottom);
}

h1 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
    line-height: 6.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    background-color: red;
    background-image: linear-gradient( to right, #00f4d3, #f06d06, rgb(255, 255, 0), #167cea );
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;
    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-shadow: 0 0 1.5rem rgba(255,255,255,0.5);
}

h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

h3 {
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 400;
}


a {
    color: inherit;
    text-decoration: none;
}

    a:hover, a:focus {
        color: inherit;
        text-decoration: underline;
    }

em {
    font-style: italic;
}

ul {
    list-style: disc outside;
}

ol {
    list-style: decimal outside;
}

li {
    margin-left: 18px;
}


a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

    a:active,
    a:visited {
        text-decoration: none;
    }



/* width */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Track */
*::-webkit-scrollbar-track {
    background: transparent;
}






header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-dark);
    color: white;
    padding: 0 var(--content-side-margin);
    display: flex;
    justify-content: center;
    z-index: 100;
}

.header-inner {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}


.logo, .logo svg {
    height: 100%;
    width: auto;
}


nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    height: 100%;
}

    nav a {
        display: inline-block;
        transition: all ease-in-out 0.1s;
        display: flex;
        flex-flow: row;
        align-items: center;
        padding: 1rem;
        height: 100%;
    }

        nav a:hover {
            background-color: var(--color-brand-blue);
            text-decoration: none;
        }

.menu-toggle {
    display: none;
}


.spacer {
    display: block;
    height: var(--header-height);
}

main {
    display: flex;
    flex-flow: column nowrap;
    height: calc(var(--inner-viewport-height) - var(--header-height));
}

    main.home {
        scroll-snap-type: y mandatory;
        overflow-y: auto;
    }

section {
    min-height: 100%;
    position: relative;
    scroll-snap-align: start;
}


.article-img, .article-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 10;
    filter: brightness(0.6);
}


article {
    display: flex;
    z-index: 20;
    width: 100%;
    position: relative;
    padding: calc(var(--header-height) + var(--content-side-margin)) var(--content-side-margin);
    word-wrap: break-word;
    margin: auto auto;
    max-width: 1400px;
    align-items: center;
}

main.home article {
    height: 100%;
}





.instagramGrid {
    display: flex;
    flex-flow: row wrap;
    margin: auto auto;
    max-width: 1400px;
    align-items: flex-start;
    gap: 1rem;
    padding: calc(var(--header-height) + var(--content-side-margin)) var(--content-side-margin);
}

.instagramItem {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.2rem;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
}

.instImg {
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    object-position: center center;
    transition: all 0.2s ease-in-out;
}

.instagramItem:hover .instImg {
    transform: scale(1.05);
}




.img-small, .img-large {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 1s ease;
    /* this is needed so Safari keeps sharp edges */
    transform: scale(1);
    object-fit: cover;
    object-position: center center;
}



.img-small {
    opacity: 0;
    filter: blur(30px);
}

.inbackground {
    position: absolute;
    top: 0;
    left: 0;
}


.opaque {
    opacity: 1 !important;
}




@media only screen and (max-width: 1400px) {
    html {
        font-size: 1.5vw;
    }

    .instagramGrid {
    }
}



@media only screen and (max-width: 991px) {

    html {
        font-size: 18px;
    }


    .instagramGrid {
    }
}

@media only screen and (max-width: 768px) {

    html {
        --content-side-margin: 1rem;
        font-size: 18px;
    }

    body {
        letter-spacing: 0.1rem;
    }


    .header-inner {
        align-items: center;
    }

    nav a {
        height: auto;
        justify-content: center;
    }

    nav {
        position: absolute;
        height: var(--inner-viewport-height);
        width: 100vw;
        inset: 0;
        flex-flow: column nowrap;
        justify-items: flex-start;
        align-items: stretch;
        padding-top: 4rem;
        justify-content: flex-start;
        background-color: var(--color-dark);
        transform: translateX(100%);
        transition: all 0.1s ease-in-out;
    }

        nav.open {
            transform: translateX(0%);
        }


    .menu-toggle {
        z-index: 100;
        display: block;
        stroke: white;
        stroke-linecap: round;
        stroke-width: 2px;
        fill: none;
        height: 1.2rem;
    }


    h1 {
        margin-bottom: 1rem;
        font-size: 3rem;
        line-height: 3.7rem;
        font-weight: 600;
        letter-spacing: 0.1rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 2rem;
        font-weight: 400;
        letter-spacing: 0.1rem;
    }

    h3 {
        font-size: 1rem;
        line-height: 1.4rem;
        font-weight: 500;
    }

    .instagramGrid {
        flex-flow: column nowrap;
        align-items: center;
    }

}

