@font-face {
    font-family: MontserratLight;
    src: url('../fonts/Montserrat/Montserrat-Light.ttf');
}

body, html {
    background: #F1F2F5;
    color: #222222;
    margin: 0;
    padding: 0;
    font-family: MontserratLight, Helvetica Neue, Helvetica, Arial, sans-serif;
}

/* *********************************************** */
/* CONTENT */
div.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 80%;
    min-width: 800px;
    margin: auto;
}

div.columns {
    display: flex;
    flex-direction: row;
}

div.column[data-num="2"] {
    width: calc(50% - 109px);
}

/* *********************************************** */
/* HEADER */

header {
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    cursor: default;
    user-select: none;
    color: #222;
}

header a {
    outline: none;
    color: inherit;
    text-decoration: none;;
}

.placeholder-clear-header {
    height: 90px;
}

#logo {
    background: #fff;
    margin: 20px 0;
    border-radius: 30px;
    padding: 0 15px 0 5px;
    line-height: 50px;
    box-shadow: 0 10px 10px -10px rgba(0,0,0,0.2);
    float: left;

}

#logo > img {
    float: left;
    margin: 10px;
}

#logo > p {
    float: left;
    margin: 0;
}

nav {
    float: right;
    display: flex;
    flex-direction: row;
    margin: 35px 0;
    color: #fff;
}

nav > div {
    margin: 0 20px;
    position: relative;
    cursor: pointer;
}

nav > div[data-active="true"]:after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}


/* *********************************************** */
/* MAIN */

main a {
    color: #27A5F7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 200ms ease;
}

main a:hover {
    border-bottom-color: #27A5F7;
}

main a.noeffect {
    border-bottom: none !important;
}

/* *********************************************** */
/* FOOTER */
footer {
    background: #F1F2F5;
    color: rgb(150, 150, 160);
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    height: 23px;;
    font-size: 12px;
    z-index: 2;
}

.placeholder-clear-footer {
    height: 53px;
}

footer p {
    margin: 0;
    line-height: 20px;
}

footer p:first-of-type {
    float: left;
}

footer p:last-of-type {
    float: right;
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 0 0 15px;
}