/* === FONTS === */
/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/raleway-v17-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/raleway-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/raleway-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/raleway-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/raleway-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/raleway-v17-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* red-rose-regular - latin */
@font-face {
  font-family: 'Red Rose';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/red-rose-v2-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Red Rose Regular'), local('RedRose-Regular'),
       url('../fonts/red-rose-v2-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/red-rose-v2-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/red-rose-v2-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/red-rose-v2-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/red-rose-v2-latin-regular.svg#RedRose') format('svg'); /* Legacy iOS */
}
/* red-rose-700 - latin */
@font-face {
  font-family: 'Red Rose';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/red-rose-v2-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Red Rose Bold'), local('RedRose-Bold'),
       url('../fonts/red-rose-v2-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/red-rose-v2-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/red-rose-v2-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/red-rose-v2-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/red-rose-v2-latin-700.svg#RedRose') format('svg'); /* Legacy iOS */
}



body {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

* {
    box-sizing: border-box;
}

/*  ------  GENEREL -------  */

.clearfix::after {
  content: "";
  clear: both;
  display: block;
}
.container {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
}

/* === GRID-SYSTEM === */



  .row::after {
    content: "";
    clear: both;
    display: block;
  }

  [class*='col-'] {
    float: left;
    min-height: 1px;
    padding: .8rem;
  }

  .col-1 { width: 16.666%; }
  .col-2 { width: 33.333%; }
  .col-3 { width: 50%;     }
  .col-4 { width: 66.666%; }
  .col-6 { width: 100%;    }

  #text {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
  #logo {
    margin-left: auto;
    margin-right: auto;
    padding-left: 7rem;
    padding-right: 7rem;

  }
  img {
    width: 87%;
    padding-left: 9%;
  }
  h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0066;
  	background-image: -webkit-linear-gradient(92deg, #070874, #ff0066);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	-webkit-animation: hue 30s infinite linear;
  }
  @-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
  }
  p {
    font-size: 1.9rem;
  }

/*  ======= bild swing in  =======  */
  .swing-in-top-fwd {
  	-webkit-animation: swing-in-top-fwd 2.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  	        animation: swing-in-top-fwd 2.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  }

  @-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

  /*  =======   slide text =======  */

  .tracking-in-expand {
  	-webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.5s both;
  	        animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1.5s both;
  }
  @-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .text-focus-in {
  	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2s both;
  }
  @keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

  @media (max-width: 1024px) {

    .col-1 { width: 33.333%; }
    img {
      max-width: 95%;
    }
  }

  @media (max-width: 768px) {

    .col-1 { width: 50%;  }
    .col-2 { width: 100%; }
    .col-3 { width: 100%; }
    .col-4 { width: 100%; }
    img {
      max-width: 100%;
    }
    #logo {
      padding: 0;

  }

  @media (max-width: 480px) {

    .col-1 { width: 100%; }
    .col-2 { width: 100%; }
    .col-3 { width: 100%; }
    .col-4 { width: 100%; }
    img {
      max-width: 100%;
    }
    #logo {
      padding: 0;
    }
  }
