/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../webfonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../webfonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../webfonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../webfonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../webfonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../webfonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../webfonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../webfonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../webfonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../webfonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../webfonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../webfonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../webfonts/roboto-v30-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
    url('../webfonts/roboto-v30-latin-500.woff') format('woff'), /* Modern Browsers */
    url('../webfonts/roboto-v30-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../webfonts/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../webfonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../webfonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../webfonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../webfonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
    url('../webfonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../webfonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

body {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fcf1d1;
    color: #666633;
}

.outer {
    background-color: #cccc99;
    box-shadow: 0 0 1em black;
    padding-left: 0;
    padding-right: 0;
    max-width: 1002px;
    min-height: 98vh;
}

.navbar {
    background-color: #cccc99;
    border-bottom: 2px solid #666633;
    border-top: 2px solid #666633;
}

.logo {
    height: 216px;
    background-color: #cccc99;
    background-image: url(../img/header-logo.jpg);
    background-repeat: no-repeat;
}

@media (max-width: 576px) {
    .logo {
        height: 240px;
        background-color: white;
        background-image: url(../img/logo-small.jpg);
        background-repeat: no-repeat;
        background-position: center;
    }
}

.content {
    background-color: #cccc99;
}

a {
    color: #666633;
    text-decoration: underline;
}

.nav-link {
    font-variant: small-caps;
    font-size: 18px;
    text-decoration: none;
}

@media (min-width: 768px) {
  .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

a:hover {
    color: #666633;
    filter: brightness(65%);
}

.nav-link.active {
    color: #bd2222;
    font-weight: bold;
}

footer {
    font-size: smaller;
    text-align: right;
}

.line-red:after {
    content: "";
    display: block;
    background-image: url(../img/line-red.png);
    background-repeat: no-repeat;
    height: 3px;
    margin-left: 50px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.content-box .content-title,
.project-box .content-title {
    font-size: larger;
    color: #bd2222;
    font-weight: bold;
    font-variant: small-caps;
}

.project-box .content-subheadline {
    font-weight: normal;
    font-size: initial;
}

.project-box .date {
    font-size: initial;
}


.project-box .content-participants,
.project-box .content-prices {
    line-height: 1.4;
    text-align: right;
    margin-left: auto;
}

@media (max-width: 768px) {
    .project-box .content-participants {
        text-align: left;
        margin-left: 0;
    }
}

.dynamic-flex-direction {
    flex-direction: row;
}

@media (max-width: 768px) {

    .dynamic-flex-direction {
        flex-direction: column;
    }

    .dynamic-column-reverse {
        flex-direction: column-reverse;
    }
}

.content-image-left {
    margin-right: 3rem;
}

.content-image-right {
    margin-left: 3rem;
}

@media (max-width: 768px) {

    .content-image-left,
    .content-image-right {
        margin-left: auto;
        margin-right: auto;
    }
}

.project-box .info-image {
    margin: 0;
}

.text-red {
    color: #bd2222;
}

.text-blue {
    color: #557490;
}

@media (max-width: 768px) {
    .pe-9{
        padding-right: 2rem !important;
    }

    .ps-9 {
        padding-left: 2rem !important;
    }

    .pe-md-9 {
        padding-right: 3rem !important;
    }

    .ps-md-9 {
        padding-left: 3rem !important;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .pe-9{
        padding-right: 0 !important;
    }

    .ps-9 {
        padding-left: 0 !important;
    }

    .pe-md-9 {
        padding-right: 3rem !important;
    }

    .ps-md-9 {
        padding-left: 3rem !important;
    }
}

@media (min-width: 768px) {
    .pe-9, .pe-md-9 {
        padding-right: 4rem !important;
    }

    .ps-9, .ps-md-9 {
        padding-left: 4rem !important;
    }

}

@media (min-width: 992px) {
    .pe-9, .pe-md-9 {
        padding-right: 9rem !important;
    }

    .ps-9, .ps-md-9 {
        padding-left: 9rem !important;
    }
}


.text-small-caps {
    font-variant: small-caps;
}

.text-justify {
    text-align: justify;
}

.modal-article .modal-content {
    background-color: #fcf1d1;
    color: #666633;
}

.modal-article .modal-header {
    border-bottom: none;
}

.modal-article h1 {
    font-weight: bold;
    font-size: x-large;
    font-style: normal;
    font-variant: normal;
}

.modal-article h2 {
    font-weight: bold;
    font-style: italic;
    font-size: larger;
}

.modal-article h3 {
    font-size: medium;
    font-weight: bold;
}

.modal-article .author {
    font-style: italic;
    font-size: smaller;
}

.modal-article .source {
    font-style: italic;
    font-size: smaller;
}

.bordered-table {
    border: 1px solid #666633;
}

.bordered-table .col {
    padding: 5px;
}

@media (max-width: 768px) {
    .bordered-table .col {
        padding: 2px;
    }
}

.bordered-table .b-right {
    border-right: 1px solid #666633;
}

.bordered-table .b-bottom {
    border-bottom: 1px solid #666633;
}
