.logo {
    display: block;
    margin: 15px;
    text-align: center;
}
.logo > img {
    height: 50px;
    width: 170px;
}
.navbar-header {
    position: relative;
}
.navbar-toggle {
    border: 0;
    float: none;
    left: 10px;
    line-height: 1;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.navbar-toggle .icon-bar {
    background-color: #000;
}
.call-link {
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 9px 10px;
}
.navbar-toggle > svg,
.call-link > svg {
    height: 24px;
    width: 24px;
}
.call-link > span {
    color: #000;
    font-size: 22px;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
    color: var(--link-color);
    text-decoration: none;
}
.dropdown-menu {
    min-width: 220px;
}
.dropdown-menu > li > a {
    padding: 10px;
}
.navbar-nav li.dropdown > a.hover:not(.is-active) {
    color: var(--link-color-hover);
}
.page-title {
    background-color: var(--page-title-background);
    border-bottom: 1px solid var(--page-title-border-color);
    padding: 4rem 0;
}
.page-title-inner {
    margin-bottom: 10px;
}
.page-title h1 {
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}
.breadcrumb {
    font-size: 90%;
    margin: 0;
    padding: 0;
}
.breadcrumb > li+li:before {
    padding: 0 3px;
}
.breadcrumb a {
    color: var(--breadcrumb-color);
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--link-color);
}
.section.bg-image {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.section.bg-image:after {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.parallax.title {
    background-color: var(--page-title-background);
    padding: 120px 0;
    color: var(--white);
}
.parallax {
    position: relative;
    z-index: 0;
}
.parallax.title:after {
    content: '';
    background-color: rgba(0, 0, 0, .4);
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: -1;
}
#parallax-title {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0;
}
.parallax .subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .logo > img {
        margin-top: -5px;
    }
    .navbar-header {
        border-bottom: 1px solid #f5f5f5;
        height: 75px;
    }
    .navbar-collapse {
        background-color: #f5f5f5;
    }
}

@media screen and (min-width: 768px) {
    .navbar-nav {
        float: right;
    }
    .navbar-nav > li > a {
        color: var(--text-default-color);
        line-height: 80px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar-nav > .last > .dropdown-menu {
        left: auto;
        right: 0;
    }
    .call-link {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .breadcrumb {
        float: right;
        margin-top: 12px;
    }
    .page-title-inner {
        margin: 0;
    }
    .page-title h1 {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media screen and (min-width: 1200px) {
    .parallax {
        background-attachment: fixed;
    }
}