.trawell-header {
    background-color: var(--main-color)
    }
.trawell-header__inner {
    align-items: center;
    display: flex;
    font-weight: 700;
    height: 70px;
    justify-content: space-between
    }
.trawell-header__title {
    color: #fff;
    font: 700 22px/1 var(--secondary-font)
    }
.trawell-header__title:hover {
    color: var(--accent-color)
    }
@media only screen and (max-width: 767px) {
    .trawell-header__title {
        font-size: 20px
        }
    .trawell-header-nav {
        display: none
        }
    }
.trawell-header-nav__item {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px
    }
.trawell-header-nav__item:hover {
    color: var(--accent-color);
    text-decoration: underline
    }