@import url("/templates/global.css");
@font-face {
    font-family: proxima-nova;
    src: url('proxima-nova');
}

.t-primary-bgcolor {
    background-color: #00ccff;
}

a {
    color: #00ccff;
}

body {
    background-color: white;
}

.header {
    padding: 20px;
    width: 100%;
    background-color: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 29px;
}

.header__logo {
    height: 100px;
}

.header__nav {
    font-size: 16px;
    display: flex;
}

.header__nav a {
    padding: 0 15.2px;
    line-height: 32.5px;
    font-size: 13px;
    color: white;
    letter-spacing: 2px;
    font-family: proxima-nova, sans-serif;
    transition: all .1s ease-in-out;
}

.header__nav a:hover,
.header__nav a:nth-of-type(4) {
    color: #00ccff;
    text-decoration: none;
}

.header__nav a:last-of-type {
    padding-right: 0;
}