@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background-color: #f0f0f0;
}

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

a {
    color: #e54630;
}

.container {
    width: 1250px;
}

.header {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 3rem;
}

.header__main {
    height: 164px;
    background-color: #09251a;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    background: #e32d40;
    margin-left: 1rem;
}

.header__nav a {
    padding: 0.3em 5px 0.3em 5px;
    color: #e6eadf;
    text-decoration: none;
    line-height: 1.5em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    transition: 0.3s ease all;
}

.header__nav a:hover {
    text-decoration: none;
    background: #59b390;
}

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