@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500');

/* Scoped Banner Container */
.metro-banner-scoped {
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.metro-banner-scoped #home {
    position: relative;
    color: #fff;
    background: #999;
}

.metro-banner-scoped #home h1 {
    font-size: 54pt;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 2px;
    line-height: normal;
}

.metro-banner-scoped #home h1 em {
    font-style: italic;
}

.metro-banner-scoped #home h3 {
    font-size: 34pt;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 5px 0 5px 0;
    line-height: normal;
}

.metro-banner-scoped #home p {
    font-size: 10pt;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 1.8em;
}

.metro-banner-scoped .overlay-page {
    position: absolute;
    /* Changed from fixed to absolute to scope it */
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: url('//banner-files/img/pattern.png');
    z-index: 1;
}

.metro-banner-scoped .overlay-main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.metro-banner-scoped .v-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.metro-banner-scoped .imgbg {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

/* Progress Bar */
.metro-banner-scoped #bar {
    width: 0%;
    max-width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

.metro-banner-scoped #progressBar {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

/* Owl Carousel essential overrides for scoped banner */
.metro-banner-scoped .owl-theme .owl-controls .owl-buttons div {
    padding: 10px 17px;
    background: rgba(0, 0, 0, 1);
    position: absolute;
    z-index: 9;
    color: #fff;
    display: inline-block;
}

.metro-banner-scoped .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.metro-banner-scoped .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animations scope */
.metro-banner-scoped .onStep {
    opacity: 0;
}

/* Responsive Queries Scoped */
@media only screen and (max-width: 1024px) {
    .metro-banner-scoped #home h1 {
        font-size: 40pt;
    }

    .metro-banner-scoped #home h3 {
        font-size: 30pt;
    }
}

@media only screen and (max-width: 600px) {
    .metro-banner-scoped #home h1 {
        font-size: 38pt;
    }

    .metro-banner-scoped #home h3 {
        font-size: 24pt;
    }

    .metro-banner-scoped #home p {
        font-size: 12pt;
    }
}

@media (max-width: 414px) {
    .metro-banner-scoped #home h1 {
        font-size: 24pt;
    }

    .metro-banner-scoped #home h3 {
        font-size: 18pt;
    }

    .metro-banner-scoped #home p {
        font-size: 8.5pt;
    }
}