* {
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: white;
    font-weight: 500;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

section {
    width: 100%;
    padding: 0 7%;
    display: table;
    margin: 0;
    max-width: none;
    background-color: #373b44;
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

section:nth-of-type(2n) {
    background-color: #373b34;
}

#intro {
    background-image: url("../media/img/intro.jpg")
}

#first-section {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/img/1.jpg");
}

#second-section {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/img/2.jpg");
}

#third-section {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/img/3.jpg");
}

#fourth-section {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/img/4.jpg");
}

#logo {
    position: fixed;
    z-index: 999999;
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    left: 50%;
    transform: translate(-50%, 0);
    top: 35%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.shrink {
    left: 0 !important;
    width: 11em !important;
    top: 0 !important;
    transform: initial !important;
}

.content {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10%;
    padding-right: 10%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.column {
    float: left;
    width: 50%;
    padding: 0 20px 0 0;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

h1 {
    font-size: 3em;
    display: block;
    font-weight: 500;
    margin-bottom: 20px;
}

p {
    font-size: .93em;
    font-weight: 200;
}

q {
    font-style: italic;
    font-size: 1.1em;
    font-weight: 200;
}

.quote-source {
    font-size: 1.1em;
    margin-top: 5px;
}

a {
    font-weight: 700;
    color: white;
    position: relative;
}

a:hover {
    opacity: 0.8;
}

a:active {
    top: 1px;
}

#fixed-social {
    top: 80%;
    height: 120px;
    width: 40px;
    position: fixed;
    right: -3px;
    z-index: 999999;
}

.facebook-flat {
    background: url("../media/img/facebook-icon.png");
    background-size: cover;
    height: 40px;
    width: 100%;
    transition: ease 500ms;
    opacity: 1;
}

.facebook-flat:hover {
    opacity: 0.5;
    transition: ease 500ms;
}

.email-flat {
    background: url("../media/img/email-icon.png");
    background-size: cover;
    height: 40px;
    width: 100%;
    transition: ease 500ms;
    opacity: 1;
}

.email-flat:hover {
    opacity: 0.5;
    transition: ease 500ms;
}

.video-container {
    position: relative;
    padding-bottom: 43.25%;
    margin-bottom: 30px;
    padding-top: 30px;
    height: 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    .column {
        width: 100% !important;
    }
    
}