@import url(./fonts.css);

html, body
{
    height: 100%;
}

body
{
    font-family: 'BW Quinta Pro', sans-serif;
    font-size: 20px;

    margin: 0;
    padding: 0;

}

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

/* text definitions */
strong
{
    font-weight: bold;
}
.highlight-pink { color: #C60086; }
.highlight-orange { color: #EF7D00; }
.highlight-red { color: #E4032E; }
.highlight-lipstick { color: #BD136A; }
.highlight-purple { color: #6B247A; }

.uppercase
{
    text-transform: uppercase;
}

.headline-1
{
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;

    margin-bottom: 50px;
}

.copy-default
{
    display: block;
    line-height: 1.5;
    width: 750px;
}

/* main */
div#master-container
{
    overflow-x: hidden;
    width: 100vw;
    height: 100%;

    position: relative;
}

div.icn-large__plus
{
    width: 365px;
    height: 365px;

    background-image: url(../media/icn-large__plus.svg);
    background-repeat: no-repeat;

    position: absolute;
    z-index: -1;

    top: 50%;
    right: -90px;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

div.main-wrapper
{
    width: 1180px;
    margin: 0 auto;
}

header.main-header
{
    margin-top: 60px;
    }
    header.main-header img.main-logo
    {
        margin-left: -17px;
    }


div.content-wrapper
{
    padding: 140px;
    padding-bottom: 0;
}

div.footer-grid
{
    margin-top: 140px;
    margin-bottom: 60px;
    font-size: 0.8em;
    line-height: 1.5;
}

div.footer-grid:after
{
    display: block;
    clear: both;
    content: '';
}


/* grid */

.grid-2 div
{
    width: 48%;
    float: left;
}
.grid-2 div:first-child
{
    margin-right: 2%;
}




/* responsive */
@media only screen
and (max-width : 1220px)
{
    .content-wrapper
    {
        padding: 140px 30px !important;
    }

    img.main-logo
    {
        margin-left: 13px !important;
    }

    div.icn-large__plus
    {
        width: 200px;
        height: 200px;
        background-size: contain;
        right: -45px;
        top: 65%;
    }
}

@media only screen
and (max-width : 900px)
{
    .headline-1
    {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .content-wrapper
    {
        padding: 60px 30px !important;
    }

    img.main-logo
    {
        margin-left: 13px !important;
    }


    div.icn-large__plus
    {
        display: none;
    }

    div.main-wrapper
    {
        width: 100%;
    }

    .copy-default
    {
        width: 100%;
        font-size: 0.8em;
    }

    header.main-header {
        margin-top: 30px;
    }

    .grid-2 div
    {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    div.footer-grid
    {
        margin-top: 80px;
    }

}
