body {
    font-family: 'Open Sans', sans-serif;
	color:#333;
	background-color: #fff;
    margin: 0;
    padding: 0;
}
:root {
    --acol: #2f7fb7;
}
a {
	color:#555;
	text-decoration:underline;
}

.big-back {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center right;
}

div#nav-wrap {
    position: fixed;
    top: 0;
    left: 50%;
    transform:translateX(-50%);
    width: 177.7vh;
    height: 17.2vh;
    text-align: center;
    z-index: 100;
}

div#nav-line {
    position: absolute;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
    bottom: 0.3vh;
}
a#nav-logo-a {
    position: absolute;
    left: 8%;
    bottom: 5.5vh;
    width: 54vh;
    height: 6vh;
    background-image: url(/images/logo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#nav-line .nav-dropdown, #nav-line a {
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
    color: #525252;
    letter-spacing: 0.2px;
    font-size: 1.85vh;
    padding-left: 5vh!important;
    transition: 0.3s color;
    text-transform: uppercase;
}
#nav-line a:hover {
    color: #000;
}
#nav-line a.active, #nav-line span.active {
	color: #000;
	font-weight: bold;
}
#nav-line a.lesspadd {
    padding-left: 0vh!important;
}
#nav-line .sep {
    color: #525252;
    cursor:default;
    margin: 0 0.5vh;
    user-select:none;
    font-size: 1.85vh;
}

div#bg-imageicle {
    width: 100%;
    height: 73.4vh;
    position: fixed;
    top: 17.2vh;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-dropdown .drop {
    position: absolute;
    background-color: var(--acol);
    margin-left: -4vh;
    padding: 2vh 0;
    pointer-events: none;
    opacity: 0;
    margin-top: 0.8vh;
    transition: 0.1s ease-in-out;
    text-align:left;
}
.nav-dropdown:hover .drop {
    opacity: 1;
    pointer-events:all;
    margin-top: 0.3vh;
}

#nav-line .nav-dropdown {
    position: relative;
}

#nav-line .nav-dropdown .drop a {
    color: #fff;
    text-align: left;
    padding-left: 0;
    padding: 1.4vh 4vh!important;
    white-space: nowrap;
    opacity: 0.7;
    transition:0.1s;
}
#nav-line .nav-dropdown .drop a:hover {
    opacity: 1;
}
#nav-line .nav-dropdown .drop a.active {
    opacity: 1;
}

.nav-dropdown span {
    cursor:pointer;
}

.nav-dropdown .drop:before {
    content: "";
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 0.7vh;
    top: -0.6vh;
}





div#foot {
    position: fixed;
    bottom: 7.8vh;
    margin-bottom: -3.7vh;
    left: 50%;
    width: 177.7vh;
    text-align: right;
    font-size: 1.4vh;
    padding-right: 11vh;
    box-sizing: border-box;
    transform: translateX(-50%);
}

#foot a {
    padding-left: 3vh;
}
#foot a#foot-auditex {
    background-image: url(/images/audit);
    height: 4.1vh;
    width: 25vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 50%;
    right: calc(50% + 6vh);
    transform: translate(50%, -50%);
    padding: 0;
    top: 0.5vh;
}


div#pg-content-wrap, div#pg-content-wrap-whiter {
    width: 100%;
    height: 65.5vh;
    position: fixed;
    top: 23.55vh;
    z-index: 10;
}
div#pg-content-wrap {
    left: 50%;
    transform: translateX(-50%);
    width: 177.7vh;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 1fr 14vh;
    padding: 4vh 14vh;
}
div#pg-content-wrap-whiter {
    z-index: 9;
    pointer-events:none;
}
div#pg-content-wrap-whiter.whiten {
    background-color: rgba(255,255,255,0.7);
}

.content-grid {
    width: 100%;
    height: 100%;
    display: grid;
}
div#tagline {
    text-transform: uppercase;
    font-size: 3.1vh;
    font-weight: 400;
    padding-top: 8vh;
    color: #fff;
}
div#tagline.on-whiten {
    color: #333;
}


.content-grid h1 {
    margin-top: 0;
    font-size: 3.2vh;
    font-weight: 400;
    text-transform: uppercase;
}
.content-grid h2 {
    font-size: 2vh;
    font-weight: 800;
    margin-bottom: -1.75vh;
}
.content-grid p, .content-grid ul {
    margin-bottom: 2vh;
    font-size: 1.65vh;
}

.content-grid img {
    box-shadow: 1vh 1vh 1.6vh rgba(0,0,0,0.3);
}




/** ASPECT SWITCH **/
html.aspect div#bg-imageicle {
    height: 41.2vw;
    top: 9.7vw;
    background-position: center;
}
html.aspect div#pg-content-wrap, html.aspect div#pg-content-wrap-whiter {
    width: 100%;
    height: 36.9vw;
    top: 13.3vw;
}

html.aspect .content-grid h1 {
    font-size: 1.8vw;
}

html.aspect .content-grid h2 {
    font-size: 1.125vw;
    margin-bottom: -1.1vw;
}

html.aspect .content-grid p, html.aspect .content-grid ul {
    margin-bottom: 1.13vw;
    font-size: 0.93vw;
}

html.aspect div#pg-content-wrap {
    padding: 2.25vw 7.9vw;
    grid-template-rows: 1fr 8vw;
}

html.aspect div#tagline {
    font-size: 1.745vw;
    padding-top: 4.5vw;
}
html.aspect div#nav-wrap {
    width: 100vw;
    height: 9.7vw;
}

html.aspect div#nav-line {
    bottom: 0.16vw;
}

html.aspect #nav-line .nav-dropdown, html.aspect #nav-line a {
    font-size: 1.04vw;
    padding-left: 2.82vw!important;
}

html.aspect #nav-line .sep {
    margin: 0 0.3vw;
}

html.aspect #nav-line a.lesspadd {
    padding-left: 0!important;
}

html.aspect .nav-dropdown .drop {
    margin-left: -2.25vw;
    padding: 1.13vw 0;
}

html.aspect #nav-line .nav-dropdown .drop a {
    padding: 0.79vw 2.25vw!important;
}

html.aspect a#nav-logo-a {
    bottom: 3.1vw;
    width: 30.42vw;
    height: 3.38vw;
}

html.aspect div#foot {
    bottom: 4.39vw;
    margin-bottom: -2.08vw;
    width: 100vw;
    font-size: 0.79vw;
    padding-right: 6.19vw;
}

html.aspect #foot a {
    padding-left: 1.7vw;
}

html.aspect #foot a#foot-auditex {
    height: 2.32vw;
    width: 14.1vw;
    right: calc(50% + 3.4vw);
    top: 0.29vw;
}
html.aspect #foot a#foot-auditex {
    height: 2.32vw;
    width: 14.1vw;
    right: calc(50% + 3.4vw);
    top: 0.29vw;
}

h1.minified {
    text-transform: none;
    font-size: 2.5vh;
}
html.aspect h1.minified {
    font-size: 1.4vw;
}

.content-grid.minified p, .content-grid.minified ul {
    font-size:1.52vh!important;
}
html.aspect .content-grid.minified p, html.aspect .content-grid.minified ul {
    font-size:0.855vw!important;
}

.fheight {
    height: 47.6vh;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    margin-top: -4vh;
}
html.aspect .fheight {
    margin-top: -2.3vw;
    height: 26.7vw;
}

.dvpad-1 {              padding-top:7.5vh; }
html.aspect .dvpad-1 {  padding-top:4.1vw; }

a.hr-bld {
    text-decoration:underline;
    font-weight:bold;
}
a.hr-bld:before {
    content: "> ";
}

.img-i-00 {             height: 30.8vh; }
html.aspect .img-i-00 { height: 17.2vw; }
.img-i-01 {             height: 29vh; }
html.aspect .img-i-01 { height: 16vw; }


.prof-padd {
    grid-template-columns: 1fr 35vh
}
html.aspect .prof-padd {
    grid-template-columns: 1fr 20vw;
}
.profile-picpad {
    background-color: #ddd;
    height: 47.5vh;
    position: relative;
    margin-top: -4vh;
}

html.aspect .profile-picpad {
    margin-top: -2.2vw;
    height: 26.7vw;
}
.propic {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.v-overflow {
    overflow-y: auto;
    max-height: 43.5vh;
}
html.aspect .v-overflow {
    overflow-y: auto;
    max-height: 24.3vw;
}
html.mobile .v-overflow {
    overflow-y: auto;
    max-height:unset;
}