/* Typography */
html { overflow-y: scroll; padding: 0 !important; margin: 0 !important; } 

body {
    font-size: 1rem;
    font-family: 'Montserrat', 'Tahoma', Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: #000000;
    padding: 0;
    margin: 0;

    &.modal-open { padding-right: 0 !important; }
}

h1, .h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.125;

    @media (min-width:992px) { 
        font-size: 3rem;
    }
}
h2, .h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.125;

    @media (min-width:576px) { font-size: 2.5rem; }
}
h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.25;
}

img { width: 100%; }

header {
    .logotype {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .stop-screening {
        &:before {
            content: "✖";
            margin-right: 1rem;
            display: inline-block;
        }
    }
}
@media screen and (max-width: 575px) {
    header .stop-screening:before {
        display: none;
    }
}

main { 
    min-height: calc( 100vh - 70px); 
    background-color: #F6FAFF; }


.link {
    text-decoration: none;
    font-weight: 600;

    &:hover { text-decoration: underline; }

    &.link-red {
        color: #FF3347;
    }
}

footer {
    .common .brand {
        color: #000;
        font-size: 0.85rem;
    }

    .bottom-menu {
        background-color: #f3f8fd;

        a {
            color: #000;
            text-decoration: none;
            font-size: 0.85rem
        }
    }
}
