.country-banner {
    position: relative;
    height: 180px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
}
.country-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}
.country-banner h1 {
    font-size: 36px;
    color: #fff;
    z-index: 1;
    margin-bottom: auto;
} 
.country-banner h6 {
    color: #fff;
    margin-top: auto;
    font-size: 14px;
    margin-bottom: 12px;
    z-index: 1;
}
.country-banner img  {
    width: 36px;
    height: 36px;
    position: absolute;
    bottom: 36px;
    right: 24px;
    border-radius: 50%;
    z-index: 1;
}



@media (max-width: 767px) { 
    .country-banner h1 {
        font-size: 24px;
    }
    .country-banner {
        padding: 16px;
    }
}