﻿/*******************************************************/
/******************* ## Hero Banner Small 4 *******************/
/*******************************************************/

.hero-banner-small-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    min-height: 590px;
    border-radius: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 30px;
    margin-right: 30px;
}

@media only screen and (max-width: 991px) {
    .hero-banner-small-4 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 1399px) {
    .hero-banner-small-4 {
        min-height: 450px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-banner-small-4 {
        min-height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-banner-small-4 {
        min-height: 350px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-banner-small-4 {
        min-height: 300px;
    }
}

.hero-banner-small-4:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 35, 31, 0)), to(var(--forest-green)));
    background: -webkit-linear-gradient(top, rgba(29, 35, 31, 0) 0%, var(--forest-green) 100%);
    background: -o-linear-gradient(top, rgba(29, 35, 31, 0) 0%, var(--forest-green) 100%);
    background: linear-gradient(180deg, rgba(29, 35, 31, 0) 0%, var(--forest-green) 100%);
}

.banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .banner-inner .page-title {
        max-width: 800px;
        margin-right: 15px;
    }

@media only screen and (min-width: 1200px) {
    .banner-inner .page-title {
        font-size: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-inner .page-title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-inner .page-title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .banner-inner .breadcrumb {
        font-size: 20px;
    }
}

.banner-inner .breadcrumb .breadcrumb-item {
    font-weight: 300;
    color: var(--heading-color);
}

    .banner-inner .breadcrumb .breadcrumb-item + .breadcrumb-item {
        padding-left: 15px;
    }

        .banner-inner .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
            font-weight: 300;
            content: "\f054";
            font-size: 0.8em;
            padding-right: 15px;
            color: var(--heading-color);
            font-family: "Font Awesome 5 Pro";
        }

    .banner-inner .breadcrumb .breadcrumb-item.active {
        font-weight: 500;
        text-decoration: underline;
    }

.text-white .breadcrumb .breadcrumb-item {
    color: var(--light-color);
}

    .text-white .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
        color: var(--light-color);
    }
