@font-face {
    src: url(avenir.woff2);
    font-family: "avenir";
}

.t-primary-bgcolor {
    background-color: #2f2e2e;
}

a {
    color: #bc3330;
}

body {
    background-color: #f6f6f6;
}

.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 139px;
    padding-left: 16px;
    overflow: hidden;
}

.header__nav {
    font-size: 0;
}

.header__nav a {
    font-family: "avenir", sans-serif;
    padding: 0 15px;
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.4s all;
}

.header__nav a:hover {
    text-decoration: none;
    color: #e82523;
}

.contact__button {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    background-color: #bc3330;
    padding: 60px;
    transition: 0.4s all;
}

.contact__button:hover {
    text-decoration: none;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 1118px) {
    .header__nav {
        display: none;
    }
}