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

body {
    background-color: #fff;
}

a {
    color: #d16627;
}

.container {
    width: 1100px;
}

.t-primary-bgcolor {
    background-color: #00293b;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 75px;
    background-color: #00293b;
}

.header-wrapper::after {
    height: 75px;
    content: "";
    display: block;
    background: url(banner.jpg) center/cover;
}

@media screen and (max-width: 1425px) {
    .header {
        justify-content: space-between;
        padding: 0 50px;
    }

    .header__logo,
    .header__nav {
        flex: initial;
    }

    .header__right {
        display: none;
    }
}