/* Layout & Sections */

.jumbotron {
    background: linear-gradient(rgba(40, 120, 235, 0.9), rgba(40, 120, 235, 0.9)), url(../../img/header.jpg), no-repeat center center;
    background-size: cover;
}

.jumbotron.page-header {
    background: linear-gradient(rgba(40, 120, 235, 0.9), rgba(40, 120, 235, 0.9)), url(../../img/page-header.jpg), no-repeat center center;
    background-size: cover;
}

.overlay-top::before,
.overlay-bottom::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 85px;
    left: 0;
    z-index: 1;
}

.overlay-top::before {
    top: 0;
    background: url(../../img/overlay-top.png) top center no-repeat;
    background-size: contain;
}

.overlay-bottom::after {
    bottom: 0;
    background: url(../../img/overlay-bottom.png) bottom center no-repeat;
    background-size: contain;
}

.bg-image {
    background: linear-gradient(rgba(40, 120, 235, 0.05), rgba(40, 120, 235, 0.05)), url(../../img/bg-image.jpg);
    background-attachment: fixed;
}

.section-title h6 {
    color: var(--primary) !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
}

.section-title h6::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title.text-center h6::before {
    left: 50%;
    margin-left: -30px;
}

/* ========================================
   SECTION SPACING - RESPONSIVE
   ======================================== */

.mb-100 {
    margin-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* DESKTOP XL */
@media (max-width: 1200px) {

    .mb-100,
    .mt-100,
    .my-100 {
        /* Keep 100 on large desktops */
    }
}

/* TABLET AND LARGE MOBILE */
@media (max-width: 991.98px) {
    .mb-100 {
        margin-bottom: 60px;
    }

    .mt-100 {
        margin-top: 60px;
    }

    .my-100 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .mb-100 {
        margin-bottom: 30px;
    }

    .mt-100 {
        margin-top: 30px;
    }

    .my-100 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}