:root {
    --color-white: #ffffff;
    --color-black: #030000;
    --color-grey: #c0c5cd;
    --color-dark-grey: #69727f;
    --color-black-opacity: rgba(3, 0, 0, 0.6);
    --color-black-opacity-max: rgba(3, 0, 0, 0.8);
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

h1 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

h2 {
    text-transform: uppercase;
    text-align: left;
}

a:hover {
    text-decoration: none;
}

a {
    color: var(--color-dark-blue);
}

.breadcrumbs {
    flex-wrap: wrap;
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 55px 0 0 0;
}

.breadcrumbs li:not(:last-child) {
    margin-right: 20px;
}

.breadcrumbs li:not(:last-child):after {
    content: "|";
    display: inline-flex;
    width: 10px;
    height: 10px;
    margin-left: 20px;
}

.breadcrumbs li a {
    color: var(--color-black);
    font-weight: 600;
}

.main-page-caption {
    margin-top: 80px;
    margin-bottom: 60px;
    text-align: center;
}

.detail-page-caption {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: left;
    padding: 30px;
    background-color: var(--color-grey);

}

@media all and (max-width: 767px) {
    h1 {
        font-size: 20px;
        font-weight: 300;
        text-transform: uppercase;
    }

    h2 {
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
    }

    .main-page-caption {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .breadcrumbs {
        padding: 0;
        justify-content: center;
    }

    .breadcrumbs li {
        margin-bottom: 5px;
    }

    .breadcrumbs li:not(:last-child) {
        margin-right: 10px;
    }

    .breadcrumbs li a {
        white-space: nowrap;
    }

    .main-page-caption,
    .detail-page-caption {
        margin-top: 40px;
        margin-bottom: 30px;
    }
}