@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;900&display=swap');


html, body {
    margin:0;
    padding:0;
}
html,h1,h2,h3,h4,h5,h6,a {
    font-family: 'Roboto', sans-serif;
}
/* hide everything until compilation complete */
.hide {
    display: none;
}

/* h1 in body except for header */
h1 {
    font-size: 2.9rem;
    line-height: 1.2 !important;
    letter-spacing: normal;
    -webkit-font-smoothing: auto;
}
h1 div:not(#myheader){
    font-family: 'Roboto', sans-serif !important;
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: normal;
    font-weight: 300 !important;
    line-height: 48px !important;
    margin: 1.6em 0 0 0 !important;
    text-align: left !important;
}
h2 {
    font-size: 2.8rem;
    font-weight: 700 !important;
}
h3 {
    font-size: 2.7rem;
    font-weight: 700 !important;
}
h4 {
    font-size: 2.6rem;
    font-weight: 700 !important;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
h5 {
    font-size: 2.4rem;
    font-weight: 700 !important;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    /*background:#111;*/
    background: rgb(120, 120, 120);
    color: #fff;
}
html, body {
    font-size: 10px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    html, body {
        font-size: 18px;
    }
}
@media only screen and (-webkit-max-device-pixel-ratio: 2) and (min-width: 600px) {
    html, body {
        font-size: 10px;
    }
}
@media only screen and (-webkit-max-device-pixel-ratio: 2) and (min-width: 900px) {
    html, body {
        font-size: 9px;
    }
}
p {
    font-size: 2rem;
    -webkit-font-smoothing: auto;
}

a {
    text-decoration: none;
    color:white;
    /* border-style:solid;
    border-width: 0px 0px 0.1px 0px;
    padding-bottom:3px; */
    /* opacity:0.95; */
    opacity: 1;
}
a:hover,a:focus,a:active {
    /*text-decoration: underline;*/
    text-decoration:none;
    /* border-style:solid;
    border-width: 0px 0px 0.1px 0px;
    padding-bottom:3px; */
    opacity:1;
    /*transition: all .3s ease-in;*/
}


/* menu collapsed button for all pages but landing page */
.myCollapsedMenuBarIcon {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 2%;
    right: 1%;
    background-image: url(../images/logo/menubar.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}
.myCollapsedMenuBarIcon:hover {
    background-image: url(../images/logo/menubar_inverted.svg);
}
/* menu collapsed button for landing page */
.landing-page .myCollapsedMenuBarIcon {
    background-image: url(./images/logo/menubar.svg);
}
.landing-page .myCollapsedMenuBarIcon:hover {
    background-image: url(./images/logo/menubar_inverted.svg);
}

/* menu on small screens */
#myMenu {
    text-align: right;
    right: 0em;
    top:0em;
    padding:0px;
    /* margin: 0px; */
    border: 0px;
    background: rgba(12, 12, 12, 0.9);
    width: 100%;
    /* height:2.7em; */
}


/* navigation */
.navbar {
    background: none;
    padding: 0.1%;
    /* height: 2.7em; */
    /*text-align: center;*/
}
.navbar * {
    font-size: 1.7rem;
}
.nav-link, .navbar-brand {
    /*color: #f4f4f4;*/
    cursor: pointer;
    text-decoration: none;
    color: white;
    border: none;
}
/*
.navbar-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/
.nav-link {
    margin-right: 1em !important;
    font-weight: 400 !important;
    -webkit-font-smoothing: auto;
    text-align: -webkit-match-parent;
    border: none;
}
.nav-link:hover {
    /*background: #333;*/
    color: #bbb;
    text-decoration: none;
    border: none;
}
.navbar-collapse {
    justify-content: flex-end;
}

.navbar-toggler {
    /*background:#fff !important;*/
    line-height: 0.6;
    /* border-radius: 50%; */
}

button:focus {
    outline: none;
}
button:active,.button:active:focus,.button:visited {
    outline: none;
}



/* CSS specific to iOS devices */ 
/* background-attachment: fixed; doesn't work on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .header {
        background-attachment: scroll;
    }
}
