/* 
    BLUE #1B2B45 
    GREEN #8DE600
*/

@font-face {
    font-family: "ProximaNovaLight";
    src: url(../fonts/ProximaNova-Light.otf) format("truetype");
}
@font-face {
    font-family: "ProximaNovaLightItalic";
    src: url(../fonts/ProximaNova-LightItalic.otf) format("truetype");
}
@font-face {
    font-family: "ProximaNovaRegular";
    src: url(../fonts/ProximaNova-Regular.otf) format("truetype");
}
@font-face {
    font-family: "ProximaNovaBold";
    src: url(../fonts/ProximaNova-Bold.otf) format("truetype");
}

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

body {
	height: auto;
	width: 100%;
}

/*------------------------------------------
----------------- GENERAL ------------------
------------------------------------------*/
div.home-title-dark-container {
    background-color: #1B2B45;
}

div.home-title-dark {
    height: auto;
    width: 70%;
    padding: 20px 100px 20px 100px;
    background: #EAEAEA;
}

div.home-title-dark span {
    font-family: 'ProximaNovaBold';
    font-size: 30px;
}

div.home-title {
    height: auto;
    width: 70%;
    margin: 50px 0;
    padding: 20px 100px 20px 100px;
    background: #EAEAEA;
}

div.home-title span {
    font-family: 'ProximaNovaBold';
    font-size: 30px;
}

div.home-title-bar {
    height: 0;
    width: 100px;
    padding-top: 18px;
    border: 0;
    border-bottom: 3px solid #1B2B45;
}

@media only screen and (max-width: 960px) {
    div.home-content {
        height: auto;
        width: 100%;
        margin: 50px 0;
        padding: 0 20px;
    }

    div.home-content.home-brands {
        padding: 0;
    }

    div.home-title {
        width: 100%;
        margin: 0 0 30px 0;
        padding: 20px;
    }

    div.home-title-dark {
        width: 100%;
        padding: 20px;
    }

    div.home-title span, div.home-title-dark span {
        font-family: 'ProximaNovaBold';
        font-size: 16px;
    }
}

/*------------------------------------------
----------------- GENERAL ------------------
------------------------------------------*/
span, p {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: black!important;
    text-align: justify;
}

label {
    display: block;
    font-family: 'ProximaNovaBold';
    font-size: 16px;
    color: black;
}

input {
    height: 40px;
    width: 100%;
    padding-left: 10px;
    border: 1px solid #1B2B45;
    border-radius: 3px;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: #1B2B45;
    outline: none;
}

textarea {
    display: block;
    height: 100px;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    border: 1px solid #1B2B45;
    border-radius: 3px;
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: #1B2B45;
    outline: none;
}

b {
    font-family: 'ProximaNovaBold'!important;
}

a {
    height: auto;
    width: 100%;
    text-decoration: none!important;
}

a:hover > span {
    color: #8DE600!important;
}

a.active > span {
    color: #8DE600!important;
}

a.dropdown > img {
    height: 20px;
    width: 20px;
    margin-left: 20px;
    border-radius: 50%;
}

a.link {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

@media only screen and (max-width: 960px) {
    span, p {
        font-size: 14px;
        text-align: left;
    }
}

/*------------------------------------------
--------------- LANGUAGES ------------------
------------------------------------------*/
/* LANGUAGES */
div.languages {
    height: 40px;
    width: auto;
    min-width: 200px;
    padding: 0 10px;
    border: 1px solid #1B2B45;
    border-radius: 3px;
    cursor: pointer;
}

div.languages img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

@media only screen and (max-width: 960px) {
    div.languages {
        width: 200px;
        margin-top: 20px;
        padding: 0 5px;
        border-color: white;
        border-radius: 0;
    }

    div.languages span {
        color: white!important;
    }
}

/*------------------------------------------
----------------- HEADER -------------------
------------------------------------------*/
div.header {
    height: auto;
    width: 100%;
    padding: 20px 50px;
}

img.header-logo {
    width: 100%;
    max-width: 300px;
}

div.upper-menu {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

div.upper-menu span {
    font-size: 12px!important;
}

div.lower-menu {
    height: auto;
    width: 100%;
}

div.lower-menu span {
    font-size: 14px!important;
}

@media only screen and (max-width: 960px) {
    div.header {
        padding: 20px;
    }
}

/*------------------------------------------
----------------- FOOTER -------------------
------------------------------------------*/
div.footer {
    height: auto;
    width: 100%;
    padding: 50px;
    background: #1B2B45;
}

div.footer span {
    color: white!important;
}

div.footer a:hover > span {
    color: #8DE600!important;
}

div.footer-contact {
    height: 40px;
    width: 150px;
    margin-top: 20px;
    border: 2px solid white;
    cursor: pointer;
}

div.footer-contact:hover {
    border-color: #8DE600;
}

div.footer-contact:hover span {
    color: #8DE600!important;
}

div.footer-languages {
    height: auto;
    width: 100%;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid white;
}

div.footer-languages a.dropdown span {
    color: #1B2B45!important;
}

@media only screen and (max-width: 960px) {
    div.footer {
        padding: 20px;
    }

    div.footer-contact {
        height: 60px;
        width: 200px;
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/*------------------------------------------
--------------- COPYRIGHT ------------------
------------------------------------------*/
div.copyright {
    height: auto;
    width: 100%;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid white;
}

/*------------------------------------------
----------------- PICTURE ------------------
------------------------------------------*/
div.page-picture {
    height: 60vh;
    width: 100%;
    padding: 0 100px;
    background-image: url("../img/jpg/home.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.page-picture-title {
    height: auto;
    width: 100%;
    max-width: 500px;
}

div.page-picture-title > span {
    font-family: 'ProximaNovaBold';
    font-size: 30px;
    color: white!important;
}

div.page-picture-title > span.highlight {
    color: #8DE600!important;
}

@media only screen and (max-width: 960px) {
    div.page-picture {
        padding: 20px;
        background-position: right center;
    }

    div.page-picture-title > span {
        font-size: 20px;
    }
}

/*------------------------------------------
----------------- GENERAL ------------------
------------------------------------------*/
div.page-content {
    height: auto;
    width: 100%;
    margin: 100px 0;
    padding: 0 10%;
}

div.page-content-dark {
    height: auto;
    width: 100%;
    background-color: #1B2B45;
    padding: 100px 20% 100px 20%;
}

div.page-content-shrink {
    padding: 0 20%!important;
}

p.tagline {
    font-family: 'ProximaNovaBold'!important;
    font-size: 30px;
}

button.email-us {
    height: 80px;
    width: auto;
    margin-top: 20px;
    padding: 0 20px;
    background: #EAEAEA;
    border: 0;
    font-family: 'ProximaNovaBold';
    font-size: 30px;
    color: black;
    cursor: pointer;
    outline: none;
}

button.email-us > a {
    color: black;
}

button.submit {
    height: 50px;
    width: 200px;
    background: #EAEAEA;
    border: 0;
    font-family: 'ProximaNovaBold';
    font-size: 16px;
    color: black;
    cursor: pointer;
    outline: none;
}

img.grid-picto {
    height: 30px;
    width: auto;
}

div.grid-name-container {
    height: auto;
    min-height: 70px;
}

span.grid-name {
    font-family: 'ProximaNovaBold';
    font-size: 20px;
    text-align: left;
}

div.stories-desc-container {
    height: 150px;
    -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent);
}

p.stories-desc {
    font-size: 14px;
}

div.stories-desc-view-more-background {
    position: relative;
    height: 0px;
    width: 100%;
    border-top: 1px solid black;
}

button.stories-desc-view-more {
    position: absolute;
    height: 30px;
    width: auto;
    top: -15px;
    border: none;
    border-radius: 15px;
    background: #8DE600
}

@media only screen and (max-width: 960px) {
    div.page-content {
        margin: 50px 0;
        padding: 0 20px;
    }

    div.page-content-dark {
        padding: 50px 20px 50px 20px;
    }

    p.tagline {
        font-size: 20px;
    }

    button.email-us {
        height: 50px;
        width: 100%;
        font-size: 20px;
    }

    button.submit {
        width: 100%;
    }

    img.grid-picto {
        height: auto;
        max-height: 30px;
        width: 30px;
    }

    span.grid-name {
        font-size: 16px;
    }
}


/*------------------------------------------
----------------- CONTACT ------------------
------------------------------------------*/
div.contact-message {
    display: none;
    height: auto;
    width: 100%;
    margin-top: 30px;
}

div.contact-message > span {
    font-family: 'ProximaNovaRegular';
    font-size: 16px;
    color: #1B2B45;
    letter-spacing: 1px;
}

@media only screen and (max-width: 960px) {
    div.contact-message > span {
        font-size: 14px;
    }
}











