@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');

body {
    background-color: #fff;
}

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

a {
    color: #006cb8;
}

.container {
    width: 1230px;
}

.header-wrapper {
    box-shadow: 0px 4px 4px 0px rgba(43, 43, 43, 0.26);
    position: relative;
    z-index: 1000;
}

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

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

.header__nav {
    font-size: 0;
}

.header__nav a {
    font-family: "Poppins", sans-serif;
    color: #454545;
    line-height: 40px;
    font-size: 15px;
    font-weight: 700;
    margin-left: 10px;
    padding: 0 6px;
}

.header__nav a:last-child {
    padding-right: 0;
}

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

@media screen and (max-width: 1062px) {
    .header__nav {
        display: none;
    }
}