@import url("/templates/global.css");

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

body {
    background-color: #fff;
}

.t-primary-bgcolor {
    background-color: #1C4B74;
}

a {
    color: #FAA61A;
}

.container {
    width: 1300px;
}

.header {
    width: 100%;
    font-family: "futura-pt-condensed", sans-serif;
    font-weight: 600;
}

.header__main {
    padding: 24px 21px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.header__main a {
    color: #000;
}

.contact__left {
    display: flex;
    flex-direction: row;
    font-size: 16px;
}

.contact__left a {
    color: #3a3a3a;
}

.contact__left .separator {
    margin-right: 6px;
    margin-left: 4px;
    border-right: 2px solid #212529;
    height: 24px;
}

.header__logo {
    justify-self: center;
}

.socials {
    justify-self: end;
}

.socials a {
    width: 32px;
    height: 32px;
    color: #000;
    text-decoration: none;
    border: #000 solid 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease;
}

.socials a:hover {
    color: #fff;
    background-color: #000;
}

.header__nav {
    background-color: #1C4B74;
}

.header__nav__inner {
    width: 75%;
    display: flex;
    flex-direction: row;
    margin: auto;
    align-items: center;
    height: 45px;
}

.header__nav__inner a {
    flex: 1;
    display: block;
    text-align: center;
    padding: 8px 24px;
    color: #fff;
    text-transform: uppercase;
    font-size: 19.2px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    position: relative;
    text-align: center;
}

.header__nav__inner a:hover {
    color: #f9a618;
    background: #0a3542;
    text-decoration: none;
}

.main {
    padding-top: 3rem;
}

.sidebar {
    margin-right: 3rem;
}

@media screen and (max-width: 1950px) {
    .header__nav__inner a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1524px) {
    .header__nav__inner a {
        display: none;
    }
}