.highlightbox-bg-image-big-block .col-md-6:first-child h2 {
    color: #00488f;
}

.highlightbox-bg-image-big-block .hlbox {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.highlightbox-bg-image-big-block .hlbox:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, .4);
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.highlightbox-bg-image-big-block a .hlbox:hover:after {
    opacity: 1;
}

.highlightbox-bg-image-big-block .hlbox i {
    font-size: 4.5rem;
    margin-bottom: 30px;
}

.highlightbox-bg-image-big-block img {
    margin-bottom: 30px;
}

.highlightbox-bg-image-big-block .content-wrapper {
    position: relative;
    z-index: 1;
    padding: 50px;
    overflow: hidden;
    word-wrap: break-word;
}

@media screen and (max-width:767px) {

    .highlightbox-bg-image-big-block .hlbox {
        min-height: 50vh;
    }

}