.banner{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-cover{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 2;
}

.banner-title{
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .7);
    z-index: 10;
}

a.logo-container{
    height: 100%;
    box-sizing: border-box !important;
    padding-bottom: 15px !important;
    min-width: 150px;
}
.logo-container img.logo{
    height: 100%;
    object-fit: contain;
}


@media (max-width: 960px){
    .banner{
        height: 200px;
    }
    .banner-title{
      font-size: 32px;
    }
  }