@import url(https://fonts.googleapis.com/css?family=Lato:700);
@import url(/templates/global.css);

body {
    background: white;
}

a {
    color: #7A0D10;
}

.t-primary-bgcolor {
    background-color: #7a0d10;
}

.container {
    width: 1100px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    margin-bottom:20px; */
}

.header__logo {
    max-width: 325px;
    margin: 10px 40px;
}

.header__nav {
    font-size: 0;
}

.header__nav a {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato';
    letter-spacing: 3px;
    color: #333333;
    margin-right: 40px;
    line-height: 96px;
    display: inline-block;
    border-top: 3px solid white;
    transition: 0.2s linear all;
}

.header__nav a.active, .header__nav a:hover {
    color: #470809;
    border-color: #470809;
    text-decoration: none;
}