@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

main {
    overflow: hidden;
    min-height: 70%;
}

.container {
    max-width: 1100px !important;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #2d4d9c;
    text-decoration: none;
}

a:hover, a:active {
    color: #686868;
}

.top-nav:hover, .top-nav:active {
    color: #bbbbbb !important;
}

.top-nav {
    color: #bbbbbb !important;
    transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}

.adjust-left {
    left: -121px;
}


/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */

h1, h2, h3, h4, h5, h6 {
    color: #305E76;
    font-weight: 700;
    line-height: normal;
    font-family: proxima-nova, sans-serif;
}


h1 {
    font-size: 2.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    line-height: 1.2em;
}

h2 {
    font-size: 2.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 1.9em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.slogan {
    margin-top: -78px;
    text-align: right;
    font-size: 1.3em;
    font-style: italic;
    color: #254ca1;
    font-weight: 600;
}

.slogan-text {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.fade-text {
    opacity: 0; /* Start with opacity 0 (hidden) */
    transition: opacity 500ms ease-in-out; /* Define the transition for opacity */
}


.logo-size {
    margin-left: 7px;
    width: 66%;
    min-width: 115px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

   .logo-container {
        z-index: 7000;
        top: -40px;
        max-width: 400px;
    }

.top-bar {
    background-color: rgba(37,76,161,.9);
    max-height: 35px;
    z-index: 4000;
    top: 160px;
    width: 100%;
}

#top_page .nav-item .nav-link:hover {
    color: #dddddd !important;
    background-color: #FFFFFF !important;
}

.top-nav {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    line-height: 40px;
    background-color: #254ca1;
    font-size: .85em;
    border-radius: 4px;
    color: #FFFFFF;
}


.top-nav:hover {
    color: #FFFFFF;
}

.top-nav-row {
    min-width: 370px;
    /* background-color: blue; */
    float: right;
    z-index: 8000;
    position: fixed;
    right: 19px;
    top: 9px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #2d4d9c !important;
}
.dropdown-item {
   padding-top: 8px;
   padding-bottom: 8px;
   font-size: 1.2em;
}

.top-nav-col {
    text-align: left;
}

.content-margin-top {
    margin-top: 93px;
}


.bg-light-red {
    background-color: #EFEAEB !important;
}

.bg-light-blue {
    background-color: #D1DDE5 !important;
}

.bg-red {
    background-color: #E64054 !important;
    margin-bottom: 60px;
}

.lt-title {
    margin-top: -119px;
    font-size: 4.2em;
    color: #FFFFFF;
}

.lt-red-title {
    margin-top: -119px;
    font-size: 4.2em;
    color: #EFEAEB;
}

.lt-blue-title {
    margin-top: -119px;
    font-size: 4.2em;
    color: #D1DDE5;
}

.red-title {
    margin-top: -61px;
    font-size: 4em;
    color: #E64054;
    font-weight: 700;
    line-height: 80px;
    font-family: proxima-nova, sans-serif;
}

.home-blurb {
    min-height: 485px;
}

.header-bg {
    background: #21303D;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

        .header-bg {

        }


.nav-padding {
    padding-left: 1rem;
}

.navbar-nav.navbar-center {
    /*position: relative;*/
    /*left: 10%;*/
    /*transform: translatex(-50%);*/
}

.navbar-nav .nav-item {
    width: 90vw;
    font-size: 1.2em;
    line-height: 22px;
    border-bottom: 1px solid #27AAE1;
    border-right: none;
    text-align: left;
    margin-right: 17px;
}

.nav-item:last-of-type {
    border-right: none;
}

.navbar-nav .nav-link:hover {
    background-color: #697D8E;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.navbar-nav .nav-item {
    font-size: 1.1em;
    font-weight: 600;
}

.search-bar {
    min-width: 310px;
    margin-bottom: 40px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.mini-basket-w {
    width: 320px;
    font-size: .9em;
}

.form-control {
    width: 75%;
}

.phone-number {
    color: #ffffff !important;
    font-size: 1.1em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-right: 1px solid #27AAE1;
}

.phone-number:hover {
    color: #27AAE1 !important;
}

.search-text {
    padding-left: 20px;
    color: #ffffff !important;
    font-size: 1em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-right: 1px solid #27AAE1;
    margin-right: 20px;
}

.search-text:hover {
    color: #27AAE1 !important;
}

.sociallinksBox {
    text-align: center;
}

.sociallinksBox img {
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 8px;
}

/* For FontAwesome icons */
.sociallinksBox a, .sociallinksBox a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    width: 25px !important;
    height: 25px !important;
    padding: 5px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}

.sociallinksBox a:last-of-type {
    margin-right: 0px;
}

.sociallinksBox a:first-of-type {
    margin-left: 0px;
}

.sociallinksBox a:link, .sociallinksBox a:visited {
    background-color: #82beda;
    color: #FFFFFF;
}

.sociallinksBox a:hover, .sociallinksBox a:active {
    background-color: #546c84 !important;
    color: #FFFFFF;
}

.topsociallinks {
}

.topsociallinks a {
    margin-right: 5px !important;
    margin-left: 5px !important;
    text-align: center !important;
    width: 34px !important;
    height: 34px !important;
    padding: 9px 0px 0px 0px !important;
    font-size: 17px !important;
}

.topsociallinks a:link, .topsociallinks a:visited {
    background-color: #bbbbbb;
    color: #FFFFFF;
}

.topsociallinks a:hover, .topsociallinks a:active {
    background-color: #546c84;
    color: #FFFFFF;
}

header {
    border-bottom: 1px solid #305E76;
}

/*Nav Stuff*/
.navbar {
    line-height: .7em;
    padding: 8px;
    position: relative;
    align-items: end;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2000;
    background-color: #0f212f;
    top: 161px;
}

.section-padding {
    margin-top: 90px;
}

.btn-primary {
    color: #fff !important;
    background-color: #305E76;
    border-color: #305E76;
}

.btn-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary {
    color: #dddddd !important;
    border-color: #8b8c8d !important;
}

.btn-outline-primary:hover {
    background-color: #8b8c8d !important;
    color: #FFFFFF !important;
}


.btn-outline-primary {
    color: #dddddd !important;
    border-color: #8b8c8d !important;
}

.btn-outline-primary:hover {
    background-color: #8b8c8d !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary {
    color: #9c9c9c !important;
    border-color: #9c9c9c !important;
}

.btn-outline-secondary:hover {
    background-color: #8b8c8d !important;
    color: #FFFFFF !important;
}

.slider-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    max-height: 1030px;
}


.slider-spacer {
    min-height: auto;
}

.carousel {
    top: 130px;
}

.carousel-item p {
    font-size: 1.3em;
}

.carousel-inner {
    max-height: 530px;
    margin-top: -100px;
}

.carousel-caption {
    text-align: center;
    position: relative !important;
    margin-top: 0px;
    width: 100%;
    font-size: .85em;
    line-height: .7em;
    padding: 20px;
    background-color: rgba(21, 85, 137, 0.90);
    right: 0px !important;
    left: 0px !important;
    bottom: 4vh;
    padding: 0px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.carousel-caption p {
    color: #FFF;
    font-weight: bold;
    font-size: 1.6em;
    line-height: 1.2em;
    padding-right: 11%;
    padding-left: 11%;
    font-weight: bold;
}

.carousel-control-prev {
    width: 70px !important;
}

.carousel-control-next {
    width: 70px !important;
}

.carousel-caption h2 {
    margin-top: -120px;
    font-size: 1.8em;
    color: aqua;
    margin-bottom: 55px;
    font-weight: 300;
    margin-left: 22%;
    margin-right: 22%;
}

.glow {
    font-family: "athelas", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
    color: #27AAE1;
    text-align: left;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #2C4A5C, 0 0 20px #2C4A5C, 0 0 30px #2C4A5C, 0 0 40px #2C4A5C, 0 0 50px #2C4A5C, 0 0 60px #2C4A5C, 0 0 70px #2C4A5C;
    }

    to {
        text-shadow: 0 0 20px #305E76, 0 0 30px #305E76, 0 0 40px #305E76, 0 0 50px #305E76, 0 0 60px #305E76, 0 0 70px #305E76, 0 0 80px #305E76;
    }
}

.image-wrap {
    width: 100%;
    height: 45vw;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.image-wrap img {
    width: 100%;
    animation: move 40s ease;
    /* Add infinite to loop. */

    -ms-animation: move 40s ease;
    -webkit-animation: move 40s ease;
    -o-animation: move 40s ease;
    -moz-animation: move 40s ease;
    position: absolute;
    top: -160px;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: top left;
        -moz-transform-origin: top left;
        -ms-transform-origin: top left;
        -o-transform-origin: top left;
        transform-origin: top left;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        /* IE 9 */

        -webkit-transform: scale(1.0);
        /* Safari and Chrome */

        -o-transform: scale(1.0);
        /* Opera */

        -moz-transform: scale(1.0);
        /* Firefox */
    }
    100% {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        /* IE 9 */

        -webkit-transform: scale(1.2);
        /* Safari and Chrome */

        -o-transform: scale(1.2);
        /* Opera */

        -moz-transform: scale(1.2);
        /* Firefox */
    }
}

.vendor-table {
    min-height: 60px;
}

.blurb-border {
    border: 2px solid #fff;
}

.blurb-images {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;

}

.blurb-img{
    max-width: 120%;
}

.blurb-header-bg {
    background-repeat: no-repeat;
    height: 340px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.inside-carousel-caption {
    position: relative !important;
    margin-top: -6.0rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 20px;
    right: 0px !important;
    left: 100px !important;
    bottom: 0px !important;
}

.page-blurb-title {
    text-transform: uppercase;
    text-shadow: 1px 6px 6px rgba(0, 0, 0, .5);
}

.scale-up {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.scale-down {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.darken {
    filter: brightness(50%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.lighten {
    filter: brightness(100%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.blurb-button {
    margin-bottom: 60px;
}

.blurb-caption {
    margin-top: -204px;
    position: inherit;
}

.blurb-text {
    margin-top: 8px;
    font-size: 1.4em;
    padding-top: 12px;
    padding-bottom: 4px;
}

.blurb-bg {
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

.detail-link {
    font-size: 1.8em;
    color: #9c9c9c !important;
}

.detail-link:hover {
    font-size: 1.8em;
    color: #152B46 !important;
}

.news-link {
    font-size: 1.8em;
    color: #FFFFFF !important;
}

.news-link:hover {
    font-size: 1.8em;
    color: #9c9c9c !important;
}

.border-2 {
    border-width: 2px !important;
}

.home-text-top {
    margin-top: 120px;
}

.home-text {
    font-size: 1.2em;
}

.rating {
    display: none;
}

.list-group-item {
    font-size: .95em;
    padding: .75rem .75rem;
    background-color: #4A637C;
    border: 1px solid rgba(0, 0, 0, .125);
}

.list-group-item a {
    color: #FFFFFF !important;
}

.list-group-item:hover {
    color: #FFFFFF !important;
    background-color: #66819b !important;
}

.nav-list .list-group-item.active {
    background-color: #ce142c !important;
    border-color: #ce142c !important;
}


.testimonal-heading {
    font-size: 1.9em;
    font-family: source-sans-3, sans-serif;
    font-weight: 700;
}

.testimonal-padding {
    padding-left: 10px;
    padding-right: 10px;
    top: 30px;
    padding-bottom: 100px;
}

.quote-size {
    width: 4% !important;
}

.quote-left {
    margin-right: 0px;
}

.quote-right {
    margin-left: 0px;
}

.testimonal-bottom {
    margin-bottom: 10px;
}


.footer-bg {
    background-color: #21303D;
}

footer {
    position: relative;
    height: 150px;
    clear: both;
    padding-top: 20px;
}

footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #FFFFFF;
}

footer .list-group-item a {
    color: #FFFFFF;
}

footer .list-group-item a:hover {
    color: #a1bdac;
}


.star-rating .yellowstar {
    color: #E6CE31 !important;
}

.sticky .header-bg {
    height: 197px;
}


.sticky .top-bar {
    /* max-height: 115px; */
    height: 29px;
    z-index: 4000;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sticky .navbar {
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    top: 150px;
}

.sticky .logo-size {
    width: 53%;
}

.sticky .top-nav {
    padding-top: 1px;
    padding-bottom: 1px;
    padd2ng-right: 2px;
    line-height: 30px;
    font-size: .9em;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    font-size: 1.05em;
}


.sticky .search-bar {
    margin-bottom: 10px;
}

.sticky .topsociallinks a {
    width: 32px !important;
    height: 32px !important;
    padding: 8px 0px 0px 0px !important;
    font-size: 17px !important;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

#message-inner {
    display: inline-block;
    margin: 0 auto;
    width: 45%;
    padding-top: 30px;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {


    .bg-red {
        margin-bottom: 10px;
    }

    .lt-title {
        margin-top: -136px;
        font-size: 5.2em;
        color: #FFFFFF;
    }

    .lt-red-title {
        margin-top: -136px;
        font-size: 5.2em;
        color: #EFEAEB;
    }

    .lt-blue-title {
        margin-top: -136px;
        font-size: 5.2em;
        color: #D1DDE5;
    }

    .red-title {
        margin-top: -67px;
        font-size: 5em;
    }

    .navbar-nav .nav-item {
        width: 80vw;
        text-align: right;
        margin-right: 0px;
    }

    .home-text-top {
        margin-top: 0px;
    }

    .top-nav {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        font-size: 1em;
    }

    .top-nav-col {
        text-align: right;
    }

    .navbar-nav .nav-item {
        width: auto;
        font-size: 1.9em;
        border-right: 1px solid #ed1f24;
        border-bottom: none;
        text-align: center;
    }

    .navbar {
        padding: 0px;
    }

    .carousel-inner {
        margin-top: 0px;
    }

    .carousel-caption {
        font-size: 1em;
        line-height: 1.9em;
        font-weight: normal;
        float: right;
        bottom: 0vh;
        padding: 0px;
    }

    .carousel-caption p {
        padding-top: 20px;
        color: #FFF;
        font-size: 1.8em;
        line-height: 1.25em;
        font-weight: 600;
    }

    .header-bg {
        background-color: #152B46;
    }

    .carousel {
        top: 0px;
    }

    .slider-spacer {
        min-height: 760px;
    }

    .navbar-nav .nav-item {
        font-size: .9em;
    }

    .form-control {
        width: 100%;
    }

    .logo-size {
        width: 60%;
    }

    .sticky .logo-size {
        width: 42%;
    }

    .logo-size {
        margin-left: 40px;
    }

    .content-margin-top {
        margin-top: 210px;
    }

    .testimonal-heading {
        font-size: 2.5em;
        font-family: source-sans-3, sans-serif;
        font-weight: 700;
    }

    .testimonal-padding {
        padding-left: 220px;
        padding-right: 220px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    .sticky {
            background-position-y: -96px !important;
        }

    .navbar-nav .nav-item {
        font-size: 1em;
    }

    .logo-container {
        /* max-width: none; */
    }

    .carousel-caption {
        font-size: 1.3em;
        line-height: 2.4em;
        font-weight: normal;
        float: right;
        bottom: 19vh;
    }


    .carousel-caption-new {
        margin-top: -50px;
        background-color: #1a4a72;
        font-size: 2em;
        color: #FFFFFF;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .carousel-caption {
        bottom: 22vh;
        font-size: 1.1em;
    }

    .nav-padding {
        padding-left: 10rem;
    }

    .navbar-nav .nav-item {
        font-size: 1.2em;
    }

    .navbar-nav .nav-link {
        padding-right: .8rem !important;
        padding-left: .8rem !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .carousel-inner {
        max-height: 72vh;
    }

    .logo-size {
        width: 60%;
    }

    .carousel-caption {
        bottom: 29vh;
        font-size: 1.3em;
    }



}

@media (min-width: 1700px) {
    .carousel-caption {
        bottom: 33vh;
        font-size: 1.5em;
    }

      .header-bg {
          background-size: 88% !important;
      }

        .sticky {
            background-position-y: 20px;
            background-size: 84% !important;
            background-position-y: -126px !important;
        }
}
