@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.container {
    width: 1100px;
}

.t-primary-bgcolor {
    background-color: white;
}

a {
    color: rgb(80, 80, 80);
}

body {
    background-color: #FFF;
}

.header {
    background-color: white;
    padding: 20px 0;
    width: 100%;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin: 0 auto;
    max-width: 1100px;
}

.header__logo img {
    width: 287px;
    margin-left: 100px;
}

.header__nav a {
    font-size: 14px;
    font-family: "Roboto", "Roboto Fallback";
    background-color: #000;
    color: #fff;
    /* white text */
    padding: 10px 35px;
    text-decoration: none;
    display: inline-block;
    margin-right: 110px;
}

.header__nav a:hover {
    background-color: rgb(229, 26, 26);
}