@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.t-primary-bgcolor {
    background-color: #0e1a30;
}

a {
    color: #bc2f19;
}

body {
    background-color: #FFF;
}

.container {
    width: 1242px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 1.5rem 1.5rem;
}

.header__logo img {
    max-width: 88px;
}

.header__nav {
    font-size: 0;
}

.header__nav a {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 0 20px;
    line-height: 25px;
    color: #4e4e4e;
    transition: color .1s ease-in-out, background-color .1s ease-in-out;
}

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

.header__nav .contact-button {
    background-color: #bc2f19;
    color: #fff;
    border-color: #bc2f19;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 13px 20px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    margin-left: 20px;
}

.header__nav .contact-button:hover {
    background-color: #8b190c;
    color: #fff;
    border-color: #8b190c;
}

.header-wrapper::after {
    height: 200px;
    display: block;
    content: "";
    background-image: url(grid-bg.png);
    background-size: 1480px;
    background-position: center top 12px;
    background-repeat: repeat-x;
}

.main {
    padding-top: 3rem;
}

.sidebar {
    margin-right: 3rem;
}