/*html {
    scroll-behavior: smooth;
}*/

header,
nav,
main,
footer,
article,
section,
aside {
    display: block;
}

/*
h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: IBMPlexMedium;
    font-size: 22px;
}

a.w3-bar-item {
    font-family: IBMPlexMedium;
    font-size: 16px;
}

p,
td {
    font-family: IBMPlexRegular;
    font-size: 20px;
}

blockquote {
    font-family: IBMPlexMedium;
    font-size: 16px;
    font-style: italic;
}
*/

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: HankenGroteskMedium;
    font-size: 22px;
}

a.20 {
    font-family: HankenGroteskMedium;
    font-size: 20px;
}

a.w3-bar-item {
    font-family: HankenGroteskMedium;
    font-size: 16px;
}

p,
td {
    font-family: HankenGroteskRegular;
    font-size: 20px;
}

blockquote {
    font-family: HankenGroteskMediumItalic;
    font-size: 16px;
}

h3.portfolio {
    font-family: HankenGroteskMediumItalic;
    font-size: 22px;
}

h2.portfolio {
    font-family: HankenGroteskMediumItalic;
    font-size: 22px;
}

p.italic {
    font-family: HankenGroteskMediumItalic;
    font-size: 20px;
}

/*Italic Link*/
a.link {
    font-family: HankenGroteskRegular;
    font-size: 18px;
}

a.linkitalic {
    font-family: HankenGroteskMediumItalic;
    font-size: 20px;
}

h1#page_title {
    margin: 0 0 0 0;
    text-align: left;
    color: #000000;
}

h1#page_title > a {
    font-size: 25px;
}

h1#other_pages {
    margin: 0 0 0 0;
    text-align: left;
    color: #2196F3;
}

h1#other_pages > a {
    font-size: 25px;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    color: #59925f;
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


h1.left {
    text-align: left;
}

p.left {
    text-align: left;
}

h1.right {
    text-align: right;
}

p.right {
    text-align: right;
}

/*footer formatting*/
p.headspace {
    margin-top: -20px;
}

/*h1.rotate {transform:rotate(270deg);}*/

h1.rotate {
    writing-mode: vertical-lr;
}


/*Center Image*/
img.victor {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*Sticky Header*/
/* Style the header */
.header {
    padding: 0;
    background: #ffffff;
    color: #000000;
}

/* Page content */
.content {
    padding: 0;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 0;
}

/*Random Image on Load*/
/*Little CSS fade in*/
.fade-in {
    -webkit-animation: fade-in 2s ease;
    -moz-animation: fade-in ease-in-out 2s both;
    -ms-animation: fade-in ease-in-out 2s both;
    -o-animation: fade-in ease-in-out 2s both;
    animation: fade-in 2s ease;
    visibility: visible;
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.banner-load img {
    width: 100%;
    max-width: 450px;
}

.banner-load-large img {
    width: 100%;
    max-width: 600px;
}

.banner-load-larger img {
    width: 100%;
    max-width: 800px;
}

/*Mosaic Grid*/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: HankenGroteskRegular;

}

.header {
    text-align: center;
    padding: 10px;
}

.row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 0;
}

.column img {
    margin-top: 0;
    vertical-align: middle;
    width: 100%;
}

/* Create four equal columns that sit next to each other with black background */
.columnblack {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 0;
}

.columnblack img {
    margin-top: 0;
    vertical-align: middle;
    width: 100%;
}

/*  for panarama*/
.twocolumn {
    -ms-flex: 50%;
    /* IE10 */
    flex: 50%;
    max-width: 50%;
    padding: 0 0;
}

.twocolumn img {
    margin-top: 0;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other for panarama*/
@media screen and (max-width: 600px) {
    .twocolumn {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        padding: 0 0;
    }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
        padding: 0 0;
    }
}

/* Responsive layout - makes a two column-layout instead of four columns with black background */
@media screen and (max-width: 800px) {
    .columnblack {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
        padding: 0 0;
        background-color: black;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        padding: 0 0;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other with black background */
@media screen and (max-width: 600px) {
    .columnblack {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        padding: 0 0;
    }
}

/*Fade in Overlay*/
.container {
    position: relative;
    width: 100%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.container:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

/*No Lightbox on Mobile*/
@media (max-width:480px) {
    .nolightboxmobile {
        pointer-events: none !important;
    }
}

/*Video 100% on Mobile*/
@media (max-width:480px) {
    video {
        width: 100%;
    }
}

/*Video 70% on Desktop*/
@media (min-width:480px) {
    video {
        width: 70%;
    }
}

/*Portfolio*/
w3-border-0 {
    border: 0 !important
}

hr {
    border-top: 1px solid black;
}

/*Video 90% on Desktop*/
@media (min-width:480px) {
    video.portfolio {
        width: 85%;
    }
}

/*Stretch Object Cover*/
video.portfolio {
    object-fit: cover;
}

/*Web Page Scroll Containers*/
.img-container {
    width: 80 vw;
    height: 50vh;
    overflow: auto;
    margin: 0 auto 0;
    border-radius: 7px;
    border-width: 24px 4px 4px 4px;
    border-style: solid;
    border-color: #96b999;
}
