/*  Define some vars
 */
:root {
    --bs-primary: #0092ba;

    --text-color-headline: rgb(0,146,186);

    --nav-link-color-active: rgb(0,146,186);

    --footer-link-color: rgb(255,255,255);
    --footer-link-weight: 300;
    --footer-link-hover-color: rgb(0,43, 56);
    --footer-link-hover-weight: 700;
}

/*  Typo
 */

/* noto-sans-display-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-display-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-display-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans Display';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/noto-sans-display-v26-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/noto-sans-v36-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/****
 Common definitions
 ****/

body {
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
}

hr { border-color: white; background-color: white; }
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color-headline);
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 small {
    display: block;
    font-size: 0.7em;
    color: rgba(0,155,164,.75);
}

strong, b {
    font-weight: 700;
}

.lead {
    font-size: 1.2em;
}

a { text-decoration: none; }

.text-dark {
    color: rgb(80,80,80) !important;
}

.size-large i {
    color: var(--text-color-headline);
}

@media ( min-width: 1200px ) {
    body { font-size: 20px; }
    .size-extra-large { font-size: 3em; }
    .size-large { font-size: 1.8em; }
    .mt-xl { margin-top: 5em !important; }
    .mb-xl { margin-bottom: 5em !important; }
}


/****
 Navigation
 ****/
.nav ul, .footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin-bottom: 1rem;
}

.nav a{
    text-decoration: none;
    color: rgb(13,32,74);
    font-weight: 600;
}

.nav a:hover {
    color: rgb(100,100,100);
}

.nav a.active {
    color: var(--nav-link-color-active);
}

@media ( max-width: 8px) {
    .nav {
        margin-top: 1em;
        flex-direction: column;
        text-align: right;
    }

    .nav-link {
        padding: 0 !important;
    }
}

/****
 Page header
 ****/
.logo {
    padding: 1em 0;
}
.logo img {
    max-width: 275px;
}

.hero {
    position: relative;
    border-top: 5px solid var(--bs-primary);
}

.heroclaim {
    padding: 0.25em 1em;
    background: var(--bs-primary);
    color: rgb(255,255,255);
    font-size: 1em;
    font-weight: 600;
}

@media ( min-width: 576px ){
    .heroclaim {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 1.2em;
        padding: 0.25em 1em;
    }
}

@media ( min-width: 768px ) {
    .heroclaim {
        font-size: 1.4em;
        padding: 0.5em 1em;
    }
}
@media ( min-width: 1200px ) {
    .heroclaim {
        font-size: 1.8em;
        padding: 1em;
    }
}


/****
 Page footer
 ****/
.footer {
    position: relative;
    color: rgb(225,225,225);
    background-color: var(--bs-primary);
    padding: 4rem 0;
}
.footer ul { margin-bottom: 1rem; }
.footer h4 { color: rgb(255,255,255); }
.footer a {
    color: var(--footer-link-color);
    font-weight: var(--footer-link-weight);
    transition: all 250ms;
    text-decoration: none;
}
.footer a:hover {
    color: var(--footer-link-hover-color);
}

.footer a.active {
    font-weight: var(--footer-link-hover-weight);
}

.scrollToTopBtn {
    background-color: black;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 48px;
    width: 48px;

    /* place it at the bottom-right corner */
    position: fixed;
    bottom: 30px;
    right: 30px;

        /* keep it at the top of everything else */
    z-index: 100;

        /* hide with opacity */
    opacity: 0;

        /* also add a translate effect */
    transform: translateY(100px);

        /* and a transition */
    transition: all .5s ease
}

.showBtn {
    opacity: 1;
    transform: translateY(0)
}


.contact {
    color: rgb(100,100,100);
    font-size: 1.1em;
}

.rights a {
    font-size: 0.9em;
    font-weight: 300;
    color: rgb(225,225,225);
}

.rights li {
    margin-bottom: initial;
}


h5 { font-size: 1em; }


.dropdown-toggle::after {
    border: none;
    content: '+';
    vertical-align: 0;
}


.quickinfo {
    padding: 1em 0;
    color: rgb(0,155,164);
    font-weight: 400;
    font-size: 1.2em;
}

.premium-partner {
}


