@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #333;
}

/*Does everything with the header: logo and navigation*/

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
header .logo {
    max-width: 200px;
}
header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li {
    list-style: none;
    margin-left: 20px;    
}
header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #333;
    border-radius: 30px;
}
header ul li a:hover {
    background: #333;
    color: #fff;
}

/*Does everything with the banner image and the animated text*/

.Banner {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 100px;
}
.Banner #Banner_IMG {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.floaty {
    position: absolute;
    top: 50%;
    right: 55%;
    transform: translate(50%, -50%);
    z-index: 2;
    margin-bottom: 20px;
    animation: sweep 1s 1;
}
.floaty2 {
    position: absolute;
    top: 75%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
    margin-bottom: 20px;
    animation: sweep 1s 1;
}
.floaty2 h1 {
    color: black;
    font-size: xx-large;
    animation: blinker 1.5s ease infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
@keyframes sweep {
    0% {
        top: 100%;
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}
#float {
    width: 125%;
}

/*Does everything with the main section*/

#Main {
    position: relative;
    margin: 10px;
    text-align: center;
    padding: 10px;
}
#Main h1 {
    color: #fff;
    padding: 5px;
}
#Main hr {
    width: 40%;
    display: block;
    margin: auto;
    padding: 10px;
    border: none;
}
#Main h3 {
    color: #fff;
    padding: 8px;
}
#Main h4 {
    padding: 5px;
}
#Main h5 {
    padding: 5px;
}
#Main p {
    padding: 5px;
}

/*This styles the blocks of text under "What We Do"*/

.block ul {
    margin-top: 10px;
    padding: 5px;
}
.block ul li {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    color: #fff;
}

/*More animations for the above blocks and "What We Do"*/

.slideUp {
    animation-name: slideUp;
    animation-duration: 1s;
    visibility: visible;
}
@keyframes slideUp {
    0% {
        opacity: 0%;
        transform: translateY(70%);
    }
    100% {
        opacity: 100%;
        transform: translateY(0%);
    }
}

hr {
    margin: auto;
    width: 40%;
    margin-bottom: 20px;
}

.stories h2 {
    color: #fff;
    margin: 10px;
    padding: 10px;
    text-align: center;
}
.stories h3 {
    color: #fff;
    margin: 10px;
    padding: 10px;
    text-align: center;
}

/*Styles the Image Buttons*/

.Examples ul {
    text-align: center;
    margin: 10px;
    padding: 10px;
}
.Examples ul li {
    display: inline-block;
    vertical-align: top;
}
.Examples ul li a img {
    height: 300px;
    width: 300px;
    border-radius: 30px;
    padding: 18px;
}
.box {
    position: relative;
}
.box .centered {   
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    color: #333;
}
.pic {
    transition: transform .25s;
}
.pic:hover {
    transform: scale(1.05);
}

/*Styles the pop-up text*/

.anc {
    display: block;
    position: relative;
    top: 80%;
}
.blocks {
    /* display: none; */
    /* opacity: 0; */
}
.blocks h3 {
    color: #fff;
    margin: 10px;
    padding: 10px;
}
.blocks p {
    color: #fff;
    margin: 10px;
    padding: 10px;
}

/*Animates the popup text*/
.stories {
    scroll-behavior: smooth;
}

.hidden {
    display: none;
}

#contacts {
    color: #fff;
    margin: 10px;
    padding: 10px;
}