body {
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #9D8633;

    --font-family: "IBM Plex Sans", sans-serif;
    --header-bg: #fff;
    --header-padding: 15px 20px;

    --footer-bg: #9D8633;
    --footer-color: #fff;
    --footer-padding: 20px;
}
.ibe-header {
    background: var(--header-bg);
    padding: var(--header-padding);

    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    font-family: var(--font-family);
}

.ibe-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ibe-header-logo {
    width: 100%;
    max-width: 100px;
}

.ibe-header-logo img {
    width: 100%;
    height: auto;
}

.ibe-header-phone {
    color: var(--primary-color);
    text-decoration: none;
}

.ibe-header-phone:hover {
    text-decoration: underline;
}

.ibe-wrapper {
    padding: 30px 0;
}

.ibe-footer {
    background: var(--footer-bg);
}

.ibe-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: var(--footer-padding);

    text-align: center;
    color: var(--footer-color);
    font-size: 14px;
    font-family: var(--font-family);
}

.ibe-footer-links {
    margin-top: 10px;
}

.ibe-footer-inner a {
    margin-left: 8px;

    color: var(--footer-color);
    text-decoration: none;
}

.ibe-footer-inner a:hover {
    text-decoration: underline;
}


@media only screen and (min-width: 576px) {
    .ibe-header-logo {
        max-width: 160px;
    }

    .ibe-footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ibe-footer-links {
        margin-top: 0;
    }
}
