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

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

a {
    color: #333;
}

body {
    background-color: #fff;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    padding: .5rem 0 50px 0;
    width: 100%;
    z-index: 1;
    justify-content: flex-start;
    /* logo stays on far left */
}

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

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* half your 200px logo */
    background: #083169;
    z-index: -1;
    /* sit behind logo + nav */
}

.header-wrapper {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(header_bg4.jpg);
    background-size: cover;
    background-position: center center;
}

.header__label {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    text-align: center;
}

.header__label h1 {
    font-family: "Playfair Display", sans-serif;
    font-weight: 400;
    font-size: 70px;
    margin-top: 50px;
    color: white;
    letter-spacing: 2px;
}

@media screen and (max-width: 1450px) {
    .header__label h1 {
        margin-top: 50px;
        font-size: 60px;
        /* pick whatever size you want */
        line-height: 1.1;
    }
}

@media screen and (max-width: 1255px) {
    .header__label h1 {
        margin-top: 70px;
        font-size: 40px;
        /* pick whatever size you want */
        line-height: 1.1;
    }
}