/* Block header */
.bg-header {
    background-color: #061467;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.logo:hover {
    color: #ffffff;
}

.nav-link {
    color: #ffffff;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.nav-link.active {
    color: #ffffff;
    text-decoration: underline;
}


/* Header button */
.navbar-toggler {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-left: 15px;
    background-color: hsla(0, 0%, 100%, 0.1);
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.navbar-toggler .navbar-icon-bar {
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
}

.navbar-toggler .navbar-icon-bar + .navbar-icon-bar {
    margin-top: 6px;
}

/* Block content */
.bg-grey {
    background-color: #f1f1f8;
}

.bg-blue {
    background-color: #213056;
    color: #fff;
}

div img {
    display: block;
    max-width: 100%;
}

/* Button */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 42px;
    background-color: #061467;
    color: #ffffff;
    border: 0;
    text-decoration: none;
}

.button:hover {
    color: #ffffff;
    filter: brightness(110%);
}

.button:active {
    color: #ffffff;
    filter: brightness(90%);
}

.button img {
    display: block;
    margin: 0;
    margin-right: 5px;
}

/* Block footer */
.footer {
    color: #ffffff;
    background-color: #061467;
}

.footer__title {
    font-weight: bold;
    font-size: 20px;
}

.footer hr {
    max-width: 576px;
}

.copyright {
    font-size: 12px;
}

.half-opacity {
    opacity: 0.5;
}

/* Block cookie */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 120;

}

.cookie-consent.show {
    display: flex;
}

.cookie-consent .block {
    font-size: 14px;
    background: #ffffff;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.161));
    padding: 15px 30px;
}

.block-row {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.cookie-button {
    width: 100px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .block {
        width: 750px;
    }

    .cookie-button {
        width: 150px;
    }
}

@media (min-width: 992px) {
    .block {
        width: 800px;
    }

    .cookie-button {
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .block {
        width: 884px;
        padding: 30px 70px;
    }

    .cookie-button {
        width: 200px;
    }
}

