:root {
    --red: #E1393E;
    --green: #87C300;
    --grey: #F1F1F1;
}

body {
    background: black;
    font-family: 'Montserrat', Arial, sans-serif;
}

h2 {
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    padding: 0 0 20px;
}

h5 {
    margin-top: 20px;
}

p {
    font-size: 18px;
    line-height: 1.7;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol li {
    margin-bottom: 10px;
}

figure {
    max-width: 100%;
}

figure img {
    max-width: 100%;
}

figure figcaption {
    text-align: center;
    font-style: italic;
    font-size: 14px;
    margin-top: 5px;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

header {
    background: url(img/top-back.png) no-repeat;
    background-size: cover;
}

header .container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 40px 15px;
}

header .container img {
    width: 80%;
}

footer {
    background-color: black;
    padding: 20px 0;
    font-size: 12px;
    text-align: right;
    color: grey;
}

section {
    padding: 30px 0;
}

section.black {
    background-color: black;
}

section.red {
    background-color: var(--red);
    color: white;
}

section.grey {
    background-color: var(--grey);
}

section.white {
    background-color: white;
}

.title-section {
    margin-bottom: 35px;
}

.title-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.title-section-header h4 {
    font-weight: 600;
    padding-right: 10px;
}

.title-section-header span {
    display: block;
    padding: 6px 16px;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

.title-section-header .mit {
    background-color: red;
}

.title-section-header .fakt {
    background-color: green;
}

.title-section-content p {
    font-size: 17px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    column-gap: 20px;
}

.grid-column {
    margin-bottom: 30px;
}

.icon-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.icon-section h3 {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.small-img {
    width: 100%;
}

.email {
    font-size: 22px;
}

.video-image {
    display: block;
    background-color: #000;
    width: 100%;
    height: 315px;
    text-align: center;
}

.video-image img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 576px) {
    .grid {
        grid-template-columns: 2fr 1fr;
    }
    .small-img {
        width: 50%;
    }
    .email {
        font-size: 30px;
    }
}
