@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
@import url("/templates/global.css");

.t-primary-bgcolor {
    background-color: #00467f;
}

a {
    color: #d6001c;
}

body {
    background-color: #fff;
}

.container {
    width: 1122px;
}

.header-wrapper {
    box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 10;
}

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

.header__logo img {
    max-height: 87px;
}

.header__nav {
    font-size: 0;
}

.header__nav a {
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #4e4f4f99;
    margin-left: 22px;
    transition: opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.header__nav a:hover {
    text-decoration: none;
    opacity: 0.7;
}