﻿.header {
    position: relative;
    background: url('../../assets/img/slides_bg/contact.jpg') no-repeat center center/cover;
    height: 250px;
    display: flex;
    padding: 35px;
    align-items: center;
    justify-content: start;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
}

    .header-content h1 {
        color: white;
        font-size: 45px;
    }

.bottom-section {
    padding-inline: 35px;
    position: absolute;
    bottom: 15px;
    padding-top: 15px;
    left: 0;
    right: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid white;
}

.header-breadcrumb {
    font-size: 16px;
}

    .header-breadcrumb a {
        color: orange;
        text-decoration: none;
    }

    .header-breadcrumb span {
        color: white;
    }

.training-text {
    font-size: 16px;
    color: white;
}

    .training-text span {
        color: orange;
    }


@media(max-width:786px) {
    .training-text {
        display: none;
    }
}