@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Droid Serif';
    src: url('../fonts/DroidSerif-Regular.eot');
    src: url('../fonts/DroidSerif-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DroidSerif-Regular.woff2') format('woff2'),
        url('../fonts/DroidSerif-Regular.woff') format('woff'),
        url('../fonts/DroidSerif-Regular.ttf') format('truetype'),
        url('../fonts/DroidSerif-Regular.svg#DroidSerif-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Droid Serif';
    src: url('../fonts/DroidSerif-Bold.eot');
    src: url('../fonts/DroidSerif-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DroidSerif-Bold.woff2') format('woff2'),
        url('../fonts/DroidSerif-Bold.woff') format('woff'),
        url('../fonts/DroidSerif-Bold.ttf') format('truetype'),
        url('../fonts/DroidSerif-Bold.svg#DroidSerif-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* font-family: 'Droid Serif', sans-serif; */
/* font-family: "Work Sans", sans-serif; */
/* font-family: "Nunito Sans", sans-serif; */
/* BANNER STYLES */
.heritage-banner { margin-top: 100px; }
.heritage-banner__content {
    background-position: 0 center;
    background-size: auto 100%;
    background-repeat: no-repeat;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 38px 115px 38px 75px;
    background-color: #045385;
}

.heritage-banner__content__badge {
    width: 165px;
    height: auto;
    display: block;
}

.heritage-banner__content__text {
    margin-left: 60px;
    padding-right: 40px;
    flex: 1;
}

.heritage-banner__content__text__title {
    font-family: 'Droid Serif', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 15px;
}

.heritage-banner__content__text p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.heritage-banner__content__button {
    margin-left: auto;

    background-color: #ad7c37;
    height: 45px;
    
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-basis: 190px;
    
    font-family: 'Droid Serif', sans-serif;
    font-weight: 400;
    color: #fff !important;
    font-size: 18px;
    line-height: 28px;
}


@media( max-width: 1199px ){
    .heritage-banner__content {
        padding-left: 50px;
        padding-right: 50px;
    }

    .heritage-banner__content__text {
        margin-left: 40px;
    }
}

@media( max-width: 991px ){
    .heritage-banner__content {
        flex-wrap: wrap;
        justify-content: center;
        background-image: none !important;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .heritage-banner__content__text {
        flex-basis: 100%;
        margin-bottom: 40px;
        text-align: center;
        margin-left: 0;
        padding-right: 0;
    }

    .heritage-banner__content__badge {
        width: 145px;
    }

    .heritage-banner__content__button {
        margin-right: auto;
    }
}