.main-header, .section.main-header:nth-child(odd) {
    background: url(../../img/paralax.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
}

.main-header::after {
    content: '';
    display: block;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3fa1e4;
    opacity: 0.95;
}

.main-header .wrapper {
    position: relative;
    z-index: 3;
}

.main-header .row {
    padding: 0;
    min-height: 320px;
    padding-top: 36px;
    padding-bottom: 36px;

}

.main-header .col {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
} 

.main-header .h1 {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 18px;
    color: white;
    font-size: 54px;
    font-weight: 700;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-header .h1 * {
    color: white;
    font-size: 64px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}

.main-header .h1::after {
    background-color: white;
}

.main-header .breadcrumb {
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 0;
}

.main-header .breadcrumb * {
    color: white;
}

@media screen and (max-width: 890px) {

    .main-header .row {
        min-height: 240px;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .main-header .h1 {
        margin-bottom: 12px;
        font-size: 32px;
      }

      .main-header .h1 * {
        font-size: 32px;
      }  

    .main-header .breadcrumb {
        display: flex;
    }

}