@font-face {
    font-family: 'Montserrat-Reg';
    src:    /*url('fonts/Montserrat.ttf') format('truetype'),*/
            url('fonts/montserrat-webfont.woff2') format('woff2'),
            url('fonts/montserrat-webfont.woff') format('woff');
            /* url('fonts/Montserrat.eot') format('embedded-opentype'),
            url('fonts/Montserrat.svg') format('svg'); */
}
@font-face {
    font-family: 'Montserrat-Bold';
    src:    /*url('fonts/Montserrat.ttf') format('truetype'),*/
            url('fonts/montserrat-black-webfont.woff') format('woff'),
            url('fonts/montserrat-black-webfont.woff2') format('woff2');
            /* url('fonts/Montserrat.eot') format('embedded-opentype'),
            url('fonts/Montserrat.svg') format('svg'); */
}
body, html{
    width:100%;
    height: 100%;
}

body{
    margin:0;
    padding: 0;

    font-family: 'Montserrat-Reg', sans-serif;
    background-color: #242165;
    overflow-x: hidden;
    overflow-y: auto;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
body > * {
    flex-basis: 100%;
}
*{
    position: relative;
}

section{
    padding: 50px 0 100px 0;
}
article{
    width: 80%;
    margin: 0 auto;
}
article > div {
    /* flex-basis: 100%;
    flex-shrink: 0; */

}
h1, h2{
    font-size: 8vw;
    color:white;
    text-align: center;
    /* text-shadow: 0 0 200px rgba(0,0,0,0.2); */
    margin: 0;
    padding: 0;
    font-weight: 900;
    font-family: "Montserrat-Bold", sans-serif;
}
h3{
    font-family: "Montserrat-Bold", sans-serif;
}
h2{
    font-size: 16px;
    color: grey;
    text-shadow: none;
    font-weight: 300;
}
p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: white;
}
#websiteHeadline{
    font-family: "Montserrat-Bold";
}
#legal{
    opacity: 0;
    text-align: center;
}
#legal a > span{
    padding: 10px;
    margin: 10px;
    border-radius: 20px;

    color:rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all .3s ease-in-out;
    font-weight: 300;
    display: inline-block;
}
a, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
}
#legal a:hover > span {

    color:rgba(255,255,255,1);
    transition: all .3s ease-in-out;
}
.highlight {
    text-shadow: 0 0 200px rgba(0,0,0,0.2);
    transition: text-shadow .7s ease-in-out;
}
.colored {
    color: #00bffb;
    text-shadow: none;
    transition: all 1s ease-in-out;
}
.visible{
    opacity: 1 !important;
    transition: opacity .6s ease-in-out;
}
#landingpage{
    min-height: calc(100vh - 150px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#landingpage h1{
    width: 100%;
}
#landingpage #intro{
    width: 100%;
}
/* Datenschutz & Impressum */
section.datenschutz,
section.impressum {
    display: block;
}
section.datenschutz article,
section.impressum article {
    text-align: center;
    color: #000;
}
section.datenschutz h1,
section.impressum h1 {
    font-size: 3rem;
    margin: 1rem 0;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: left;
    box-sizing: border-box;
}
.container h3 {
    text-align: center;
}

/*KEVIN*/

.textSliderItem {
    /*height: 408px;*/
    height: 325px;
    display: table;
    max-width: 1200px;
    margin: 0 auto;
}

.textSliderInner {
    display: table-cell;
    vertical-align: middle;
}

.textSliderItemAnimation {
    animation: startUp 1s ease-out, dropUp 1s 6s ease-in;
}

.textSliderItemHide {
    display: none;
}

@keyframes startUp {
    0%{transform: translateY(100px); opacity: 0}
    100%{transform: translateY(0px); opacity: 1}
}
@keyframes dropUp {
    0%{transform: translateY(0px); opacity: 1}
    100%{transform: translateY(-100px); opacity: 0}
}

.textSliderHeadline {
    color: yellow;
    font-size: 4rem;
    line-height: 4rem;
    font-family: "Montserrat-Bold";
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 900;
}

.textSliderSubline {
    color: #FFFF02;
    font-size: 1.125rem;
    line-height: 2rem;
}

#textSliderWrapper {
    /* max-width: 960px;
    margin-left: auto;
    margin-right: auto; */
    /* min-height: 18vw; */
    text-align: center;

     opacity: 0;
    transform: translateY(100px);
    transition: all 2s;
}


.clearfix {
    overflow: visible;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
/*INFO BOX*/
.infoBox {
    /* width: 31.33%; */
    /* margin-left: 1%;
    margin-right: 1%; */
    width: calc(25% - 2px);
    max-width: 346px;
    margin: 1px;
    height: auto;
    /* float: left; */
    background-color: white;
    overflow: hidden;
    transform: scale(1);

    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.37);
    transition: box-shadow .5s ease-in-out,
                transform .5s ease-in-out;

    cursor: pointer;
    z-index: auto;
}

.infoBox img {
    width: 100%;
    filter: saturate(0);
    transform: scale(1.2); // rotate(5deg);
    transition: all .5s ease-in-out;
}

.infoBox:hover img,
.infoBox:focus img {
    transform: scale(1); // rotate(5deg);
    filter: saturate(1);

    transition: all .5s ease-in-out;
}
.infoBox:hover,
.infoBox:focus {
    z-index: 200;
    box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.9);
    transform: scale(1.05);

    transition: box-shadow .5s ease-in-out,
                transform .5s ease-in-out;
}

.infoBox p {
    padding: 20px;
    margin: -5px 0 0 0;
    color: black;

    background-color: white;

    font-size: 14px;
    line-height: 20px;

}


#infoBoxWrapper {
    width: 100%;
    margin-left: auto;
    margin-right:auto;

    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(-100px);
    transition: all 2s;
    flex-basis: unset !important;
}
#subline{
    margin-top: -1vw;
    width: 100%;
    color: white;
    opacity: 0;
}


/*FOOTER / LEGAL*/

#legal {
    /* margin-top: 100px; */
    /* background-color: rgba(4,18,47, 0.5); */
    /* position:absolute; */
    bottom: -57px;
    width:100%;
}
.fullscreen-bg__video {
    position: fixed;
}


/*START ANIMATIONS*/

#websiteHeadline {
    opacity: 1;
    top: 25%;
    transform: translateY(50%);
    transition: all 2s;
}
.animStartShow {
    opacity: 1!important;

}

.animStartHeader {
    transform: translateY(0px)!important;
    top: 0%!important;
}

.animStartShow2 {
    opacity: 1!important;
    transform: translateY(0px)!important;
}

#letter-m{opacity: 0;}
#letter-s01{opacity: 0;}
#letter-s02{opacity: 0;}
#letter-b{opacity: 0;}
#letter-g{opacity: 0;}

@media all and (min-width: 768px) {
    #websiteHeadline {
        transform: translateY(50%) scale(2);
    }
}

/*PARTNER STUFF*/
.partner-grid {
    width: 130px;
    height: 130px;
    margin: 5px;
    transition: all 1s;
    z-index: 1;
}
.partner-grid img {
    width: 100%;
}
.partner-grid:hover {
    transform: scale(1.2) rotate(-2deg);
    z-index: 200;
    box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.9);
}
#partner-content-inner p{

    margin-top: 0;
    margin-bottom: 20px;

}
#partner-content-inner {
    width: 60%;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#partner-content {
    top: 50px;

    transform: translateY(-100px);
    opacity: 0;
    transition: all 2s;
}

/*INTERNET EXPLORER*/
.fullscreen-bg__video {
    top: 0px;
}


#partner-content-inner h3 {
    font-size: 3.25rem;
    line-height: 3.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: tomato;
}

/* INFOTEXT */
#infoText {
    width: 100%;
    /* margin-top: 40px; */
    /* padding-bottom: 32px; */
    opacity:0;
    transition: all 2s;

    background-color: rgba(0,0,0,06);
}


.infoTextText p{


    padding: 20px;
    padding-top: 0;
}

.infoTextText {
    width: 100%;
    float:left;
}
@media all and (min-width:768px){
    .infoTextText {
        width: 50%;
    }
}

#infoText h3 {
    font-size: 3.25rem;
    line-height: 3.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: yellow;
    text-align: center;
}

/* INFOTEXT_TOP*/
#infoText1 h3 {
    font-size: 3.25rem;
    line-height: 3.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: tomato;
    text-align: center;
}

#infoText1 {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 32px;
    opacity:0;
    transition: all 2s;
}

#infoTextBackground1 {
    background-color: black;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.6;
}

.impressumTextText p{
    text-align: center;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: auto;
    height: 100%;
  }
}



/*MOBILE*/
@media all and (max-width: 1200px) {

    #infoBoxWrapper {
     width: 80%;
    }

}
@media all and (max-width: 768px) {
    #websiteHeadline{
        font-size: 15vw;
    }
    .textSliderHeadline {
        font-size: 11vw;
        line-height: 12vw;
    }

    #infoBoxWrapper {

        width: 100%;
    }
    .infoBox {
        width: calc(50% - 2px);
        max-width:none;
        margin:10px 1px;
    }
    #partner-content-inner {
        width: 100%;
    }
    #partner-content-inner p{
        width: 90%;
        margin: 0 auto;

    }
}

@media all and (max-width: 440px) {
    .textSliderHeadline {
        color: yellow;
        font-size: 9vw;
        line-height: 10vw;
        font-family: "DMAG-Headline",Verdana;
        margin-bottom: 1rem;
    }
    .textSliderSubline {
        color: #FFFF02;
        font-size: 3vw;
        line-height: 10vw;
    }
    .textSliderItem {
        height: 250px;

    }
    #legal a {
        width: 100%;
        float: left;

    }
    #websiteHeadline{
        font-size: 23vw;
    }

    #infoBoxWrapper {


    }
    .infoBox {
        width: 100%;
        margin: 10px 0;
    }
}
