﻿.press {
    display: block; /* Remove bullet points; allow greater control of positioning */
    padding: 0; /* Override defaults for lists */
    margin: 0; /* Override defaults for lists */
    width: 100%; /* Get the row full width */
}

.press li {
    display: inline-block; /* Get all images to show in a row */
    width: 30%; /* Show 3 logos per row */
    text-align: center; /* Centre align the images */
}

body {
    background-color: #0a0b09 !important;
    color: white !important;
    font-family: Montserrat !important;
    min-width: 100%;
}

.greenStyle{
    background-color: #7a9075;
}

.vidbg {
    height: 85vh;
}

.abouttext{
    text-align:center;
    font-size: 18px;
    padding:15px;
}

#myVideo {
    object-fit: fill;
    max-height: 100%;
    min-width: 100%
}

.projectbox {
    color: #fff;
    display: inline-block;
    position: relative;
    height: 100%;
    flex: 1 100%;
    text-align: center;
}

.projectboxlast{
    margin-right:0px;
}

.projectimage {
    opacity: 1;
    display: block;
/*    width: 100%;
    height: auto;*/
    transition: .5s ease;
    backface-visibility: hidden;
}

.hoverbox {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.projectbox:hover .projectimage {
    opacity: 0.3;
}

.projectbox:hover .hoverbox {
    opacity: 1;
}

.hovertext {
    color: white;
    font-size: 20px;
    padding: 16px 32px;
}

/*mobile*/
@media screen and (max-width: 1100px) {
    .vidbg {
        height: 55vh;
    }

    .press li {
        width: 45%;
    }

    .abouttext{
        font-size: 16px;
    }

    .blockquote h1 {
        font-size: 2rem;
    }

    #myVideo {
        max-height: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .vidbg {
        height: 35vh;
    }

    .press li {
        width: 45%;
    }

    .customNav {
        height: 55px;
    }

    .abouttext {
        font-size: 14px;
    }

    .blockquote h1 {
        font-size: 26px !important;
    }

    .navelement{
        font-size: medium;
        width: 80px;
        line-height: 55px;
    }
}

@media screen and (max-width: 650px) {
    .customNav a:not(:first-child) {
        display: none;
    }

    .customNav a.icon {
        float: right;
        display: block;
    }

    .press li {
        width: 100%;
    }

    .customNav.responsive {
        position: relative;
    }

    .customNav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .blockquote h1 {
        font-size: 20px !important;
    }


    .customNav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .jobstitle{
        font-size:1.6em;
    }

    .jobclick{
        font-size:1.2em;
    }
}

@media screen and (max-width: 456px) {
    .customNav {
        height: 35px;
    }

    .press li {
        width: 100%;
    }

    .navelement {
        line-height: 35px;
    }

    .vidbg {
        height: 35vh;
    }

    .abouttext {
        font-size: 11px;
    }

    .blockquote h1 {
        font-size: 18px !important;
    }

    .blockquote h4 {
        visibility: hidden;
    }
}
/*mobile*/

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: Transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #7a9075;
    border-radius: 50px
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Content page */
.content {
    max-width: 80vw;
    margin: auto;
    padding: 15px;
}


/* center the blockquote in the page */
.blockquote-wrapper {
    display: flex;
    padding: 0 20px;
}

/* Blockquote main style */
.blockquote {
    position: relative;
    max-width: 620px;
    margin: auto;
    margin-top:15px;
    align-self: center;
}

/* Blockquote header */
.blockquote h1 {
    position: relative; /* for pseudos */
    color: black;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-radius: 10px;
    padding: 25px;
}

/* increase header size after 600px */
/*@media all and (min-width: 600px) {
    .blockquote h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
}*/

/* Blockquote subheader */
.blockquote h4 {
    position: relative;
    color: black;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left: 150px;
    padding-left: 12px;
}

.blockquote h4:first-letter {
    margin-left: -12px;
}

.rowGallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.columnGallery {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.columnGallery img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .columnGallery {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .columnGallery {
        flex: 100%;
        max-width: 100%;
    }
}

.customNav {
    height: 70px;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    z-index: 10;
    margin-left: 10vw;
    margin-right: 10vw;
    min-width: 80vw;
}

.navlink {
    text-decoration: none !important;
}

.navelement {
    float: left;
    text-decoration: none;
    font-size: large;
    width: 100px;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 70px;
    color: white;
}

    .navelement:hover {
        background-color: white;
        color: black;
    }

.customNav .icon {
    display: none;
}
