@import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
}

p.a {
    font-family: sans-serif;
}


/* Navigation bar ***************************************************** */

.navigation-bar {
    /* overflow: hidden; */
    display: inline-block;
    position: fixed;
    top: 1%;
    left: 2%;
    /* opacity: 0; */
    background-color: rgba(0, 0, 0, 0.2);
    /* width: 37.7%; */
    /* padding: 0vw 0vw; */
    border-radius: 0.5vw;
    z-index: 1;
}

.dropdown-1 {
    /* overflow: hidden; */
    display: inline-block;
    position: relative;
    /* z-index: 1; */
    /* top: 1%;
    left: 2%; */
    /* opacity: 0; */
    /* background-color: rgba(0, 0, 0, 0.2); */
    /* width: 100%; */
    /* border-radius: 0.5rem; */
}

.dropdown-button {
    display: inline-block;
    text-align: center;
    background-color: inherit;
    color: white;
    padding: 1.1vw 1.5vw;
    font-size: 1.5vw;
    border: none;
    border-radius: 0.5vw;
    /* z-index: 1; */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(120, 120, 120, 0.6);
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 0.5vw;
}

.navigation-bar a {
    /* float: Center; */
    display: inline-block;
    color: WHITE;
    /* background-color: rgba(0, 0, 0, 0.2); */
    text-align: center;
    padding: 1vw 1.5vw;
    text-decoration: none;
    font-size: 1.5vw;
    border-radius: 0.5vw;
    /* opacity: 0; */
}

.dropdown-content a {
    float: Center;
    display: block;
    color: WHITE;
    text-align: center;
    padding: 0.8vw 0.1vw;
    text-decoration: none;
    font-size: 1.5vw;
    /* opacity: 0; */
}

.dropdown-content a:hover {
    background-color: #9fa59f;
    color: white;
    border-radius: 0.5vw;
}

.dropdown-content a:hover {
    background-color: #9fa59f;
}

.dropdown-1:hover .dropdown-content {
    display: block;
}

.navigation-bar a:hover,
.dropdown-1:hover .dropdown-button {
    background-color: rgba(94, 93, 93, 0.8);
}


/* ********************************************************************* */

.intro {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-not-main {
    height: 20vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-header {
    border-radius: 0.5vw;
    padding: 2vw 2vw;
    background-color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1vw;
}

.intro-header h1 {
    font-size: 4vw;
    margin-bottom: 0.75vw;
}

.intro-header p {
    font-size: 1.75vw;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* filter: brightness(50%); */
    /* display: none; */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.website-footer {
    position: fixed;
    top: 95%;
    right: 1%;
    font-size: 1.1vw;
    font-weight: 100;
    /* Z-index: 1; */
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}


/* Photography page for three coloumns and when you have the hover over image ********************************* */


/* Create four equal columns that sits next to each other */

.column {
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.container {
    position: relative;
    width: 100%;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.container:hover .image {
    opacity: 0.3;
}

.container:hover .middle {
    opacity: 1;
}

.text {
    background-color: #04AA6D;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
}


/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {
    .column {
        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) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}


/* @media (max-width: 700px) {
    html {
        font-size: 12px;
    }
    .intro-header {
        padding: 1.5rem 2rem;
    }
    .intro h1 {
        font-size: 2.5rem;
    }
    .intro p {
        font-size: 1.25rem;
    }
} */


/* Custom Scroll bar ************************************************************************************************* */


/* width */

::-webkit-scrollbar {
    width: 20px;
}


/* Track */

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: rgba(160, 160, 160, 0.5);
    border-radius: 10px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #9b9b9b;
}


/* Home page content *************************************************************** */

.row-content {
    position: relative;
    background: rgb(252, 252, 252);
    display: block;
    flex-wrap: wrap;
    /* padding: inherit; */
    justify-content: center;
    padding: 4px 4px;
}

.content-header {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    color: black;
    font-size: 1vw;
    margin-bottom: 4vw;
    margin-top: 6vw;
}

.gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* padding: inherit; */
    justify-content: center;
    margin-block: 3vw;
    vertical-align: middle;
}

.coloumn-gallery-3 {
    flex: 1%;
    max-width: 26%;
    /* padding: inherit; */
    padding: 4px 4px;
}

.coloumn-gallery-3 img {
    margin-top: 8px;
    vertical-align: middle;
    width: 10%;
    /* overflow: hidden; */
}

.coloumn-gallery-4 {
    flex: 10vw;
    max-width: 19vw;
    padding: 0 4px;
}

.coloumn-gallery-4 img {
    margin-top: 8px;
    vertical-align: middle;
    width: 10%;
}

.text-below-image-header {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 2vw;
    padding: 16px 32px;
}

.text-below-image-body {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1vw;
    padding: 16px 32px;
}

.footer {
    display: inline-block;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    Z-index: 1;
    /* height: 100vh; */
    position: relative;
    display: inline-flexbox;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2vw;
}