/* GENERAL STYLES */
html {
    height: 100%;
    width: 100%;
}
body {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    height: 100%;
    width: 100%;
    color: #000;
    background-color: #fff;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background-image: url(bg.jpg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.shade {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    transition: 0.5s;
}
@media only screen and (min-width: 1200px) {
    .shade {
        background: rgba(255,255,255,0.4);
    }
}
@media only screen and (min-width: 1400px) {
    .shade {
        background: rgba(255,255,255,0);
    }
}
.wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4%;
}
@media only screen and (min-width: 1200px) {
    .wrap {
        padding: 100px 4% 0;
    }
}

a {
    text-decoration: none;
    color: #749489;
    transition: 0.3s;
}
a:hover {
    color: #bcc5c3;
}
a:link,
a:visited:link {
    /* this highlights links on iPhones/iPads.*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}