@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');

.container {
    width: 1200px;
    margin: 0 auto;
}

.site-header {
    background-color: white;
    padding: 1.2rem 0;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.header__logo {
    padding-left: 15px;
}

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

.header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    flex: 1;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8125rem;
    /* ~13px */
    font-weight: 500;
    color: #143048;
    margin-bottom: 0.5rem;
    padding-right: 17px;
    padding-top: 5px;
    letter-spacing: 1px;
}

.header__top .phone {
    font-weight: 500;
    color: #239cd5;
    font-size: 19.2px;
}

.header__top .hours {
    font-weight: 600;
    color: #528033;
    font-size: 14px;
}

.header__top .hours::before {
    content: '·';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 700;
}

.header__top .pay-bills {
    background-color: #b71d22;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.3rem 0.45rem 1.3rem;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: 2px;
    margin-left: 15px;
}

.header__top .pay-bills:hover {
    background-color: #b71d22;
}

.top__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.52rem;
    font-size: 1.125rem;
    font-weight: 500;
    align-items: center;
    margin-right: 15px;
    letter-spacing: 0.2px;
}

.top__nav a {
    text-decoration: none;
    color: #3c3c3c;
    position: relative;
    font-family: 'Jost', sans-serif;
}

.top__nav a:hover {
    color: #528033;

}

@media screen and (min-width: 1200px) {
    .container {
        width: 1260px;
        margin: 0 auto;
    }

    .header__wrapper {
        width: 100%;
    }

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

    .top__nav {
        margin-top: 10px;
        margin-right: 8px;
        gap: 30px;
    }

    .top__nav a {
        text-decoration: none;
        color: #3c3c3c;
        position: relative;
        padding: 0 0.75rem;
    }

    /* Dot between items */
    .top__nav a:not(:first-child)::before {
        content: "";
        position: absolute;
        left: -1.2rem;
        /* pull it left into the gap */
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background-color: #528033;
        border-radius: 50%;
    }

    .header__top .hours {
        font-weight: 500;
        color: #528033;
        font-size: 19.2px;
    }

    .header__top .phone {
        font-weight: 500;
        color: #239cd5;
        font-size: 24px;
    }

    .header__top .pay-bills {
        padding: 1rem 1.3rem 0.8rem 1.3rem;
    }
}
