@font-face {
	font-family: 'ginto_black';
	font-weight: 800;
	font-style: normal;
	src: url('../fonts/ABCGintoNormal-Bold.woff');
}
@font-face {
	font-family: 'ginto';
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/ABCGintoNormal-Regular.woff');
}

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Typography */
h1,h2{line-height: 1.2em;}
p{line-height: 1.5em;}

h3{
    text-transform: uppercase;
    letter-spacing: .025em;
    margin-bottom: 1em;
}
em{
    font-style: normal;
    font-weight: 600;
}
.services h4{
    text-align: center;
    font-size: 1.25em;
}

.contact{
    margin-top: 1em;
}
p, .contact h3{
    margin-bottom: 1em;
}
/* logo colour change */
.content--fixed--color{
    border:1px solid var(--background-color) !important;
    color:var(--background-color) !important;
}

/* button */

a#menu__trigger{
   /* background-color: #ffffff; */
    transition: border 0.5s ease;
    transition: color .75s ease;
    padding:.4em 1em .6em;
    border-radius: 4px;
    border:1px solid #ffffff;
    color: #fff;
    
}
#menu{
    background-color: #ffffff;
    padding:1em;
    border-radius: 4px;
    border:1px solid var(--background-color);
}
#nav{
    position: fixed;
    right: 1.5em;
    top:2em;
    z-index: 900;
}
@media screen and (max-width: 768px) {
    #nav{
    /* display: none; */
        position: absolute;
}
}

/* elements */

.page{
    margin-top: 12em;
}
.terms li{
    list-style: disc;
}
hr{
    border-top: 1px solid white;
}

      .hidden {
        opacity: 0;
      }
      .visible {
        opacity: 1;
      }
    

.MouseScroll{
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: 100px;
    height: 100px;
    margin: 0 0 0 -50px;
    z-index: 2;
}

path.MouseScroll--chevron {
	animation: ChevronAnimation 3s ease infinite;
	transform: translateY(3px)
}


@keyframes ChevronAnimation {
	0% {
		transform: translateY(3px);
		opacity: 1
	}
	50% {
		transform: translateY(8px);
		opacity: 0
	}
	60% {
		transform: translateY(3px);
		opacity: 0
	}
}



.scroll-prompt-wrap{
    width:4em;
    height:4em;
    border-radius: 8em;
    color: var(--background-color-2);
    text-align: center;
    margin:4em auto auto 4em;
    display: flex;
    justify-content:center;
    align-items: center;
}

@keyframes slidedown{
    0% {
        opacity: 1;
    } 
    25% {
        opacity: 1;
		transform: translate(0, -10vh);
    }
    50% {
        opacity: 1;
		transform: translate(0, 0px);
    }
}

.prompt-scroll{
	animation: slidedown 2s ease-in-out 5s 2;
}




.quote__wrap{
    width:240px;
    display:block;
}
.quote__fig{
    margin-bottom: 2em;
}
.quote__portrait{
    background-color: var(--background-color-2);
    width:240px;
    height:240px;
    border-radius: 600px;
    overflow:hidden;
    display:block;
    margin: 0 auto 1.275em;
}
.quote__portrait img{
    /* mix-blend-mode: multiply; */
    width:100%;
}
.quote__attribution{
    display:block;
    margin-top: 1em;
    text-align: center;
}
.quote__name{
    display:block;
    text-align: center;
    font-weight: 600;
    font-size: 1.25em;
}
.quote__position{
    display:block;
    text-align: center;
}
/* Lists */
ul, li{
    list-style: none;
    text-indent: 0;
    margin:0;
    padding:0;
}

.dot li{
        padding:.5em 0;
}
.dot li img{
    vertical-align: middle;
    padding-right: .25em;
}
ul{
    padding-top: 1em;
    padding-bottom: 3em;
}
#menu__content{
    font-size:1.5em;
    padding:1.5em;
}
body {
	--text-color: #fff;
	--background-color: #009EDD;
	--background-color-2: #3BAA2A; /* green */
	--background-color-3: #FF5100; /* orange */
	--link-color: #009EDD;
	--link-hover-color: #fff;
	font-family: 'ginto','Roboto Mono', sans-serif;
	font-weight: 500;
	color: #fff;
	color: var(--text-color);
	background-color: #ffffff;
	/* background-color: var(--background-color);*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body#impressum{
    background-color: #009EDD;
}
footer{
    min-height: 6em;
    background-color: #ffffff;
    width: 100%;
    max-width: 1280px;
    padding: 1.5em;
    margin:0 auto;
    color:#333;
}
footer img
{
    width:6em;
    vertical-align: middle;
}
.footer__info{
    float:right;
    font-size: .875em;
    color:#999;
}
/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background-color);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 10000;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 10px solid var(--background-color-2);
	border-left-color: var(--text-color);
	animation: loaderAnim 0.8s linear infinite forwards;
}

@keyframes loaderAnim {
	to {
		transform: rotate(360deg);
	}
}

main {
	position: relative;
	width: 100%;
	overflow: hidden;
    z-index: 90;

}

a {
	text-decoration: none;
	color: var(--link-color);
	outline: none;
}

a:hover,
a:focus {
	color: var(--link-hover-color);
	outline: none;
}
a.link-reverse{
    color:#ffffff;
}
.breadcrumb{
    margin-bottom: 1em;
}
.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	/* pointer-events: none;*/
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

/* Deco Shape */
.decoshape {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	fill: var(--background-color-3);
}

/* SVG Morph */
.sweep-shape{
    width:100%;
    height:100%;
    position: absolute;
}
.sweep-shape svg{
    width:100%;
    height:100%;
    mix-blend-mode: color;  
}
.no-filter svg{
    mix-blend-mode: none;  
}
@media screen and (max-width: 768px) {
    .sweep-shape svg{
        width:1200px;
        height:100%;

        margin-left:-50%;
    }
}
@media screen and (max-width: 640px) {
    .sweep-shape svg{
        width:1200px;
        height:100%;

        margin-left:-75%;
    }
}
.sweep-shape path{
     opacity: 0;
}
.morph-2{
  opacity: 0;
}



.morph-wrap {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	display: flex;
    display: none;
	align-items: center;
	justify-content: center;
	pointer-events: none;
    opacity: .9;
    z-index: 90;
}

.morph {
	position: relative;
	height: 100%;
	fill: #3BAA2A; /* var(--background-color-2); */
	flex: none;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 90;
}

.content-wrap-1 { 
    position:relative;
    background: var(--background-color) url("../img/hero.jpg") no-repeat right bottom;
    background-size: contain;
}
.content-wrap {
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	/* pointer-events: none;*/
   /* z-index: 90;*/
}
.content-wrap--2{
    background: var(--background-color-3) url("../img/nfl-player-red.jpg") no-repeat right bottom ;
     background-size: contain;
    
}
.content-wrap--3{
     background: var(--background-color-2) url("../img/volleyball-player-green.jpg") no-repeat right top;
    background-size: contain;
}

@media screen and (max-width: 640px) {
    
    .content-wrap-1 { 
    position:relative;
    background: var(--background-color) url("../img/hero.jpg") no-repeat -100% 100%;
    background-size: cover;
}

   .content-wrap--2{
    background: var(--background-color-3) url("../img/nfl-player-red.jpg") no-repeat 50% 100%;
     background-size:auto;
    
}
.content-wrap--3{
     background: var(--background-color-2) url("../img/volleyball-player-green.jpg") 0 0 ;
    background-size: cover;
}
    
}





.content-wrap--32{
     background-color: #ffffff;
    color:#3BAA2A;

}
.content-wrap--4{
    background-color: #ffffff;
    color:#3BAA2A;

}
.services__icons{
    width:100%;
    display: flex;
  justify-content: center;
    margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
    .services p{
        text-align: center;
    }
}
.content-wrap--5{
    background-color: var(--background-color);
}
.paraph--last{
    padding-bottom: 6em;
}

.content {
    z-index: 200;
    /*
	position: relative;
	display: grid;
    */
}
.content--footer{
    background-color: var(--background-color-3);
    text-align: center;
}
.content--footer a, .content--footer a:hover {
    color:#ffffff;
    text-decoration: underline;
}

.grid{
    width:100%;
    max-width:1280px;
    margin: 0 auto;
    text-align: left;
}

.grid-4{
    width:66%;
    max-width: 40rem;
    float: left;
    position:relative;

}
.grid-2{
    width:34%;
    float: right;
    position:relative;
}
.grid-4-odd{
    width:66%;
    float: right;
    position:relative;

}
.grid-2-odd{
    width:34%;
    float: left;
    position:relative;
}
.grid-1{
    width:17%;
    float: left;
    position:relative;
}
.content--fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	z-index: 100;
	/* pointer-events: none; */
	padding: 1.5em;
	grid-template-columns: 50% 50%; 
	grid-template-rows: auto auto 4em;
	grid-template-areas:	"header ..."
							"... decotitle"
							"demos decotitle";
}

.content--fixed a {
	/* pointer-events: auto;*/
}

.content--layout {
	/* pointer-events: auto;*/
	justify-content: center;
	align-content: center;
	grid-template-columns: 150px 150px 150px 150px; 
	grid-template-rows: 150px 75px 75px;
	grid-template-areas:	"... title title title"
							"author ... desc desc"
							"author ... link link";
    */
    outline:1px solid blue;
}

.content--related {
	text-align: center;
	align-content: center;
	justify-content: center;
	padding: 0 2em;
	min-height: 600px;
	height: 100vh;
	font-size: 0.85em;
   /* background-color: #ffffff; */
}

.content__img {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	opacity: 1;
	width: 300px;
	height: 300px;
}

.content__title {
	grid-area: title;
	font-family: 'ginto_black', sans-serif;
	letter-spacing: 0em;
	font-size: 4em;
    margin-bottom: .25em;
	z-index: 10;
	cursor: default;
}
.content__title.big-quote{
    font-size:3em;
}


@media screen and (max-width: 1280px) {
	.content-wrap--3, .content-wrap--1{
		background-position: bottom right;
	}

}
@media screen and (max-width: 768px) {

    h1, .content__title{
        font-size:2em;
    }
    .content__title.big-quote{
    font-size:1.5em;
    margin-bottom: 3em;
}
    .quote__portrait{
    margin: 1em auto;
}
        

}

.content__author {
	grid-area: author;
	margin: 0;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	padding: 1em;
	text-align: right;
	z-index: 10;
	cursor: default;
}

.content__desc {
	grid-area: desc;
	margin: 0;
	z-index: 10;
	padding: 0 1em;
	cursor: default;
}

.content__img,
.content__title,
.content__author,
.content__desc {
	transition: transform 0.3s ease-out;
}

.content__link {
	pointer-events: auto;
	grid-area: link;
	align-self: end;
	justify-self: start;
	z-index: 10;
	padding: 0 1em 0.15em;
}

.content__info {
	grid-column: 1 / 3;
}

.content__related-item {
	padding: 1em;
	transition: color 0.3s;
}

.content__related-img {
	max-width: 100%;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.content__related-item:hover .content__related-img,
.content__related-item:focus .content__related-img {
	opacity: 1;
}

.content__related-title {
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
}

/* Different layouts */

#team-list{
    background-color: var(--background-color-2);
    color:#ffffff;
}
#team-list img{
    filter: invert(1);
}
#team-list figcaption{
    color:#ffffff;
}
/* layout-2 */
.content--layout-2 {
	grid-template-areas:	"... title title title"
							"desc desc ... author"
							"link link ... author";
}

.content--layout-2 .content__img {
	grid-column: 3 / 5;
	grid-row: 1 / 3;
}

.content--layout-2 .content__desc {
	text-align: right;
}

.content--layout-2 .content__link {
	justify-self: end;
}

.content--layout-2 .content__author {
	justify-self: end;
	align-self: start;
}

/* layout-3 */
.content--layout-3 {
	grid-template-rows: 75px 75px 150px;
	grid-template-areas:	"... ... desc desc"
							"author title title title"
							"author ... link link";
}

.content--layout-3 .content__img {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.content--layout-3 .content__desc {
	align-self: end;
}

/* layout-4 */

.content--layout-4 {
	grid-template-areas:	"title title title desc"
							"... author ... desc"
							"... author ... link";
}

.content--layout-4 .content__img {
	grid-column: 2 / 4;
	grid-row: 1 / 3;
}

.content--layout-4 .content__author {
	justify-self: start;
	align-self: start;
}


/* Blocks */
.block-content{
    width:100%;
    position:relative;
    background-color: #f8f8f8;
    z-index: 800;
    color:#FF5100;
    min-height: 20vh;
    margin:-2em auto 0;
    padding:2em 5% 3em;
    text-align: center;
}

/* icon grid */

.icon-grid {
  max-width:800px;
    margin:0 auto;
  display: grid;
    align-items:center;
  gap: 2em 2em;
}

.about-grid{
    width:90%;
    max-width:840px;
    margin:0 auto;
  display: grid;
    align-items:flex-start;
    grid-template-columns: 2fr 4fr;
  gap: 2em 2em;
}

.about-grid h3{
    margin-top: 4em;
}


.item1 {
  grid-area: 1 / 1 / span 1 / span 2;
    
}

@media screen and (min-width: 640px) {
    .icon-grid {
    align-items:center;
  grid-template-columns: repeat(4, 1fr);
 

}
}

/* service grid */
.service-grid {
    margin:0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6em 4em;
  grid-template-areas:
    ". . "
    ". . ";
    text-align: center;
}

.service-grid h4{
    margin-bottom: 1em;
}

/* contact grid */
#contact-content{
    opacity: 1;
}
.contact-grid {
    margin:0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 6em 3em;
  grid-template-areas:
    ". . ";
}


@media screen and (max-width: 768px) {
    .content-wrap{
        height:auto;
        min-height: 90vh;
    }
    .content{
        padding-top:2em;
        padding-bottom:2em;
    }
    .service-grid, .grid-2, .grid-4, .contact-grid, .grid-2-odd, .grid-4-odd, .about-grid {
        width:100%;
        max-width:90%;
      display: block;

    }
    .grid-2-odd{
        margin:0 auto;
    }
    .icon-grid{
        padding:0 1.5em;
        grid-template-columns: repeat(2, 1fr);
        }
}

/* Header */
#header{
    position:absolute;
    width:50%;
    padding: 2.125em 1.5em 1.5em 5%;
    z-index: 100;
}


@media screen and (max-width: 1280px) {
	.grid {
		width:90%;
	}
    #header{
        left:5%;
        padding:1.5em 0;
        margin:0;
    }
}

/* Demos */
.demos {
	grid-area: demos;
	align-self: end;
}

.demo {
	display: inline-block;
	position: relative;
	font-size: 0.85em;
	margin: 0 0.25em 0.5em 0;
	padding: 1em;
}

.demo .decoshape {
	display: none;
}

.demo--current {
	color: var(--link-hover-color);
	border-color: currentColor;
}

.demo--current .decoshape {
	display: block;
	z-index: -1;
}


/* Top Navigation Style */
.codrops-links {
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1em 0 0;
    text-align: center;
    white-space: nowrap;
}

.codrops-icon {
	position: relative;
	display: inline-block;
	padding: 0.75em 0.75em 1em;
}



@media screen and (max-width: 50em) {
	.content--fixed {
		height: auto;
		min-height: 0;
		display: block;
		z-index: 1000;
		position: absolute;
	}
	.codrops-header {
		align-items: center;
		flex-direction: column;
	}
	.deco--title {
		display: none;
	}
	.demos {
		text-align: center;
	}
}

@media screen and (max-width: 40em) {
	.content--layout {
		transform: scale3d(0.8,0.8,1);
	}
}

@media screen and (max-width: 36em) {
	.content--layout {
		transform: scale3d(0.7,0.7,1);
	}
}

@media screen and (max-width: 32em) {
	.content--layout {
		transform: scale3d(0.6,0.6,1);
	}
	.content__author,
	.content__desc,
	.content__link {
		font-size: 1.35em;
	}
}

@media screen and (max-width: 28em) {
	.content--layout {
		transform: scale3d(0.5,0.5,1);
	}
}



.logo-item{
    opacity:.7;
}
.logo-item img{
    width:100%;
    height: auto;
    max-width:96px;
    filter: grayscale(100%);
    opacity: .75;
    padding-bottom: 1em;
}
.logo-item.wide img{
    max-width: 128px;
}
.logo-item img:hover{
    width:100%;
    filter: grayscale(0%);
    opacity: 1;
    cursor: pointer;
}
.logo-item figcaption{
    display: none;
    color:#222;
    font-size: .875em;
}





/* ******************************************************************** */ 
/* Clearfix: http://csscreator.com/attributes/containedfloat.php        */
/* ******************************************************************** */
.clearfix:after {
 content: "."; 
 display: block; 
height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */  