/* Normalize
---------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #777;
    font-size: 16px;
    line-height: 1.4;
}

img {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

.main {
    max-width: 1170px;
    margin: 0 auto;
}

/* Site Header
--------------------------------------------------------------*/
.site {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 70px 0;
}

.site-header__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header__logo a {
    display: block;
    text-decoration: none;
}

.site-header__logo a img {
    height: 60px;
}

@keyframes scrollText {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.site-title {
    font-size: 36px;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollText 10s linear infinite;
}

.site-title__image {
    height: 150px;
    opacity: .1;
}

.contact-details {
    text-align: center;
    margin-top: 20px;
    color: #222;
}

.contact-details h2{
    font-weight: 300;
    background-color: #1b1b1b;
    border-radius: 5px;
    padding: 8px 20px;
    color: #fff;
    font-size: 17px;
    margin-bottom: 10px;
}

.footer__wrapper {
    text-align: center;
    color: #333;
}

.footer__wrapper p{
    display: inline-flex;
    align-items: center;
}

.footer-icon{
    padding: 0;
    margin-right: 3px;
    font-size: 20px;
}







