.page-landing{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    p{
        margin-top: 75px;
        font-size: 2rem;
        text-align: center;
        max-width: 1200px;
    }
}
.page-landing__container {
    background: var(--brand-color);
    min-height: 300px;
    padding: calc(40px + (var(--header-height))) 20px 40px;
    display: flex;
    align-items: center;
    width: 100%;
}

.page-landing__inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.page-landing__title {
    margin: 0;
    color: var(--color-white);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.04em;
    font-size: 4rem;
    line-height: 1.06;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: auto;
        height: 80px;
        margin-right: 20px;
    }
}

@media (max-width: 980px) {
    .page-landing__container {
        min-height: 220px;
        padding: calc(28px + (var(--header-height) / 2)) 16px 28px;
        .page-landing__title{
            font-size: 2.5rem;
        }
    }
    .page-landing{
        p{
            font-size: 1.5rem;
        }
    }
}
