﻿/* Хедер */
.header-background {
    position: relative;
    background: url('../images/header_banner.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: #fff;
    height: 200px;
    overflow: hidden;
    border-bottom: 2px solid #3f3f5e;
}

.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.header-background h1 {
    margin: 0;
    font-size: 2.5em;
    line-height: 200px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.header-background p {
    margin: 0;
    font-size: 1.2em;
    position: relative;
    z-index: 2;
}
