/*Colour Map
    white: #ffffff;
    grey: #999999;
    dark-grey: #2a2a2a;
    purple: #6f328b;
*/

body,
html {
    position: relative;
    min-height: 650px;
    background-color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.main-container {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 767px) {
    .main-container {
        background-image: none;
    }
}

.landing-page-container {
    margin: 0 auto;
    padding: 40px 15px;
    height: calc(100vh - 100px);
    min-height: 615px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 767px) {
    .landing-page-container {
        margin: 0 auto;
        max-width: 1200px;
        max-height: 100vh;
        padding: 30px 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.landing-page-item {
    text-align: center;
}

@media (min-width: 767px) {
    .landing-page-item {
        width: 33%;
    }
}

.brand-logo {
    width: 100%;
    max-width: 200px;
}

.landing-page-img {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 767px) {
    .brand-logo {
        margin-top: 0;
        max-width: 70%;
    }

    .landing-page-img {
        display: block;
        width: 100%;
    }
}

.description {
    color: #999999;
    font-size: 16px;
    line-height: 1.28;
    text-align: center;
    max-width: 350px;
}

@media (min-width: 767px) {
    .description {
        color: #999999;
        line-height: 1.28;
        text-align: left;
        font-weight: 400;
        margin-bottom: 0;
        max-width: 100%;
    }

    .description p {
        padding-right: 15%;
    }
}

.description p {
    margin: 0;
}

.description-bold {
    color: #cccccc;
    font-weight: 800;
}

.description-bold span {
    text-transform: uppercase;
}

.show-for-large {
    display: none;
}

@media screen and (min-width: 767px) {
    .show-for-large {
        display: inline-block;
    }
}

.footer {
    background-color: #2a2a2a;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
    padding: 30px 15px;
    text-align: center;
    font-size: 19px;
    letter-spacing: -1px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

@media screen and (min-width: 767px) {
    .footer {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

.footer-inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

@media screen and (min-width: 767px) {
    .footer-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer-slogan-item {
    display: inline-block;
    margin-bottom: 10px;
    color: #999999;
    text-transform: uppercase;
}

@media screen and (min-width: 767px) {
    .footer-slogan-item {
        margin-bottom: 0;
    }
}

.footer-social {
    color: #6f328b;
    text-decoration: none;
}

.footer-social-image {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.footer-social-image-linkedin {
    position: relative;
    top: -2px;
}

.footer-separator {
    line-height: 1;
    vertical-align: top;
    margin-right: 5px;
    margin-left: 5px;
    color: #999999;
    font-weight: normal;
}
