/* bitter-700 - latin-ext_latin */
@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/bitter-v28-latin-ext_latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/bitter-v28-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/bitter-v28-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/bitter-v28-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/bitter-v28-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/bitter-v28-latin-ext_latin-700.svg#Bitter') format('svg'); /* Legacy iOS */
}

:root {
  --background-color: rgb(16, 18, 18);
}

 @viewport {
   width: device-width;
   zoom:1;
}

/* Works on Firefox */
* {
  scrollbar-width: medium;
  scrollbar-color: #666666 #333333;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #333333;
}

*::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 16px;
  border: 3px solid #333333;
}

:is(a, button, input, textarea, summary) {
  --outline-size: max(1px, 0.08em);
  --outline-style: solid;
  --outline-color: #ffffff;
}

:is(a, button, input, textarea, summary):focus {
  outline: var(--outline-size) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-offset, var(--outline-size));
}

html {
    background: #101212;
    width: 100%;
    height: 100%;
    display: table;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    display: table-row;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 1px;
}

html, body {
    margin: 0;
    padding: 0;
}
    
body.fade {
    animation: einblenden 3s;
    -moz-animation: einblenden 3s; /* Für Firefox */
    -webkit-animation: einblenden 3s; /* Für Safari und Chrome */
    -o-animation: einblenden 3s; /* Für Opera */
}

@keyframes einblenden {
    from { opacity:0; }
    to { opacity:1; }
}

@-moz-keyframes einblenden { /* Für Firefox */
    from { opacity:0; }
    to { opacity:1; }
}

@-webkit-keyframes einblenden { /* Für Safari und Chrome */
    from { opacity:0; }
    to { opacity:1; }
}

@-o-keyframes einblenden { /* Für Opera */
    from { opacity:0; }
    to { opacity:1; }
}

h1, h4, h5, h6 {
    font-family: "Bitter", Georgia, serif;
    color: #ffcc00;
    line-height: 1.2;
    letter-spacing: 2px;
}

h1 {
    font-size: 5rem;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: "Bitter", Georgia, serif;
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #101212;
    box-shadow: 12px 0 0px 0px #ffcc00, -12px 0 0px 0px #ffcc00;
    -moz-box-shadow: 12px 0 0px 0px #ffcc00, -12px 0 0px 0px #ffcc00;
    -webkit-box-shadow: 12px 0 0px 0px #ffcc00, -12px 0 0px 0px #ffcc00;
    -ms-box-shadow: 12px 0 0px 0px #ffcc00, -12px 0 0px 0px #ffcc00;
    -o-box-shadow: 12px 0 0px 0px #ffcc00, -12px 0 0px 0px #ffcc00;    
    display: inline;
    background-color: #ffcc00;
    padding: 4px 0;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-weight: 400;
    margin-top: 40px;
}

a, a:link, a:visited, a:checked, a:enabled, a:active, a:hover {
    color: #ffcc00;
    text-decoration: none;
}

.hover-underline-animation {
    display: inline-block; 
    position: relative;
    color: #0087ca;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffcc00;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8%;
}

ul {
    padding: 0;
    margin: 0 0 40px 0;
}

ul li {
    font-weight: 300;
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 12px 0;
}

    ul.three-columns {
    margin: 0;
}

b, strong {
    font-weight: 400;
}

.white {
    color: #fff;
}

.clearfix {
    clear: both;
}

.head-block {
    display: block;
    width: fit-content;
}

.navigation {
    background-color: #101212; 
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    padding: 12px 0 16px 32px;
    z-index: 9999;
    text-transform: uppercase;
    border-bottom: 1px solid #353535;
}

.navigation ul {
    font-size: 1rem;
    margin: 0;
    padding: 8px;
    float: right;
    clear: both;
}

.navigation ul li {
    padding-right: 24px;
    font-weight: 300;
    list-style-type: none;
    display: inline-block;
}

.navigation h5 {
    display: inline;
    font-size: 1.25rem;
}

.pt-100 {
    padding-top: 100px;
}

.boxed-header {
    min-height: 100vh;
    max-width: 900px;
    padding: 8% 15% 0 15%;
}

.boxed-header h1 {
    margin-bottom: 24px;
}

.boxed {
    max-width: 1800px;
    padding: 4% 15% 8% 15%;
    float: left;
}

.boxed-small {
    max-width: 900px;
    padding: 4% 15% 0 15%;
}

.boxed p, .boxed-header p {
    margin-bottom: 4%;
    margin-top: 0;
}

.stop {
    scroll-snap-align: start;
}

.textrow-1 {
    width: 60%;
    height: auto;
    float: left;
    padding: 0 100px 0 0;
}

.textrow-2 {
    width: 25%;
    float: left;
}

img {
    width: 100%;
    height: auto;
    display: block;
    animation: imganim 1s ease-in-out 2s 1 normal both;
}

img.four-columns-img {
    width: 25%;
    height: auto;
    display: block;
    float: left;
    animation: imganim 1s ease-in-out 2s 1 normal both;
}

img.three-columns-img {
    width: 33.33333333333%;
    height: auto;
    display: block;
    float: left;
    animation: imganim 1s ease-in-out 2s 1 normal both;
}

img.two-columns-img {
    width: 50%;
    height: auto;
    display: block;
    float: left;
    animation: imganim 1s ease-in-out 2s 1 normal both;
}

@keyframes imganim {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.img-container {
    display: flex;
    flex-wrap: wrap;
}

.img-container-columns {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 4%;
}

.img-container-columns .two-columns-img {
    height: 100%;
    padding: 2%;
    max-width: 46%;
    display: flex;
    flex-wrap: wrap;
}

.img-container-columns .three-columns-img {
    height: 100%;
    padding: 1.1111111%;
    max-width: 31.11111111111111%;
    display: flex;
    flex-wrap: wrap;
}

.img-container-columns .four-columns-img {
    height: 100%;
    padding: 2%;
    max-width: 21%;
    display: flex;
    flex-wrap: wrap;
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.portrait-image {
    background-size: contain;
    width: 500px;
    height: 500px;
    border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
    background-image: url(images/cr-portrait_800px.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    display: table-cell;
    float: right;
    bottom: 24px;
    margin: 6% 15% 0 4%;
}

.bg-screen {
    width: 100%;
    max-width: 90%;
    background-color: #222932;
    padding: 5%;
}

.hide {
    display: block;
    margin-left: 9999px;
}

.toplink a, toplink a:default, toplink a:visited {
    position: fixed;
    float: right;
    bottom: 24px;
    right: 24px;
    background-color: #ffcc00;
    background-image: url(images/Icon_arrow-up_40px.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
    z-index: 9999;
    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.toplink a:hover {
    background-color: #ffffff;
}

.arrow-down, .arrow-down a {
    width: 48px;
    height: 48px;
    animation: arrowanim 4s linear 3s infinite alternate both;
    margin-top: 15%;
}

@keyframes arrowanim {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: translateY(-24px);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0px);
	}
}

#header {
    background-image: url(images/bg-start.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    padding-top: 4%;
    animation: animbg 4s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards;
}

@keyframes animbg {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

.columns {
    display: table;
    margin: 4% 15% 0 15%;
    width: -moz-available;
    max-width: 100%;
    width: 80%;
}

.three-columns {
    display: table-column;
    width: 33%;
    float: left;
}

#footer {
    display: block;
    text-align: center;
    padding: 7% 8% 8% 8%;
    border-top: 1px solid #353535;
}



/* - - - - - - - - - -  Media Queries - - - - - - - - - - - */


@media screen and (min-width: 1920px) {
    h1 {
    font-size: 6.5rem;
    margin: 0;
    padding: 0;
}

    h2 {
    font-size: 4rem;
}
}

@media screen and (max-width: 1919px) {
    .boxed {
    max-width: 1100px;
    padding-bottom: 120px;
    }
    
    .textrow-1, .textrow-2 {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
}
    
    .textrow-2 ul {
    margin: 0;
}
        
    .portrait-image {
    width: 400px;
    height: 400px;
    margin: 6% 15% 4% 2%;
}
}

@media screen and (max-width: 1440px) {
    .three-columns {
    width: 50%;
}
}
    
@media screen and (max-width: 1200px) {
    
    h1 {
    font-size: 3.5rem;
    margin: 0;
    padding: 0;
}

    h2 {
    font-size: 2.5rem;
}
    
    img.four-columns-img, img.three-columns-img {
    width: 50%;
}
    
    .img-container-columns .three-columns-img, .img-container-columns .four-columns-img {
    padding: 2%;
    max-width: 46%;
}
    
    .portrait-image {
    width: 300px;
    height: 300px;
}
    .boxed {
    padding: 0 12% 12% 12%;   
    min-height: 100%;
    max-width: 800px;
    float: left;
}
}
    
@media screen and (max-width: 992px){    
    
    .portrait-image {
    width: 240px;
    height: 240px;
    margin: 6% 12% 4% 2%;
}    
}

@media screen and (max-width: 767px) {
    
    h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

    h2 {
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1.3;
    color: #101212;
    box-shadow: 8px 0 0px 0px #ffcc00, -8px 0 0px 0px #ffcc00;
    padding: 4px 0;
}
    h3 {
    font-size: 1.5rem;
}    
    .navigation {
    padding: 12px 0 16px 32px;
}
        
    .boxed-header {
    min-height: 100vh;
    max-width: 900px;
    padding: 12%;
}

    .toplink a, toplink a:default, toplink a:visited {
    bottom: 16px;
    right: 16px;
}
    
    img.two-columns-img, img.three-columns-img, img.four-columns-img {
    width: 100%;
}
    
    .img-container-columns .two-columns-img, .img-container-columns .three-columns-img, .img-container-columns .four-columns-img {
    padding: 4%;
    max-width: 92%;
}
    
    .portrait-image {
    width: 200px;
    height: 200px;
    float: left;
    margin: 8% 100% 4% 14%;
}
    
    .navigation {
    text-align: center;
    padding: 16px 0 8px 0;
    height: auto;
    width: 100%;
    display: inline-block;

}    
    .navigation ul {
    font-size: 1rem;
    margin: 0;
    float: none;
    clear: both;
}

    .navigation ul li {
    margin: 0 8px;
    padding: 0;
}

    .navigation h5 {
    font-size: 1.5rem;
}
    .three-columns {
    width: 100%;
}
}

@media screen and (max-width: 575px) {
    
    body {
    font-size: 1rem;
    letter-spacing: 1px;
}                
    p {
    font-size: 1rem;
    letter-spacing: 1px;
}
    
    .boxed-header {
    padding: 16% 8% 0 8%;    
}
    
    .boxed {    
    padding: 0 8% 20% 8%;
}
    
    .boxed-small {
    padding: 4% 8% 0 8%;    
    }
    
    .textrow-1 ul (
    margin-bottom: 0;
)
    
    .columns {
    margin: 4% 8% 0 8%;
}
    .portrait-image {
    margin: 8% 100% 4% 8%;
        
}
    .toplink a, toplink a:default, toplink a:visited {
    bottom: 24px;
    right: 16px;
    width: 16px;
    height: 16px;
    padding: 16px;
}
}
    #footer {
    margin-bottom: 48px;
}
}