/* Mobile-first */

.hide-small {
    display: none;
}

@media (min-width: 56rem) {
    .hide-small {
        display: block;
    }
}

/* LOAD FONTS */

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/roboto-v20-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
       url('../fonts/roboto-v20-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-300italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('../fonts/roboto-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-v20-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
       url('../fonts/roboto-v20-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-700italic.svg#Roboto') format('svg'); /* Legacy iOS */
}

/*

GENERAL MARKUP

*/

/* LINKS */

body {
    background-color: #f3eedf;
}

a {
    color: #AF2E3A;
}

/* BUTTONS */

.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: #AF2E3A;
    border: 0.1rem solid #AF2E3A;
}

/* HEADER */

.welcome {
    margin-top: 2em;
    text-align: center;
}

.teaser {
    margin-top: 2em;
    text-align: center;
}

.header_line {
    background-color: #e10021;
    height: .2em;
}

/* TOPICONS */

.topicons {
    margin-bottom: 2em;
    margin-top: 2em;
}

.topicons i {
    color: #fff;
    background: #AF2E3A;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    text-align: center;
    line-height: 2em;
    vertical-align: middle;
    padding: 0;
}

.topicons a:hover i {
    background: #606c76;
}

/* SCHRIFTFARBEN */

.green {
    color: #437852;
    margin-top: 1em;
}

/* DETAILS */

.details {
    text-align: center;
}

.details h4 {
    border-bottom: .05em solid;
}

/* SOCIAL MEDIA */

.social-media h4 {
    text-align: center;
    border-bottom: .05em solid;
}

.social-media {
    text-align: center;
}

/* IMPRESSUM */

.footer {
    text-align: center;
}

/* ############################# */
/* Anpassungen für small devices */
/* ############################# */


@media (max-width: 56rem) {
    .topicons i {
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
    }
    
    .details {
        flex-direction: column;
        text-align: center;
    }
    
    .hide-small {
        display: none!important;
    }
}

@media (max-width: 56rem) {
    .topicons i {
/*
        width: 1.8em;
        height: 1.8em;
        line-height: 1.8em;
*/
        font-size: 1.8em;
    }
    
    .details {
        flex-direction: column;
        text-align: center;
    }
    
    .hide-small {
        display: none!important;
    }
    
    .topicons h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 47rem) {
    .topicons i {
/*
        width: 1.6em;
        height: 1.6em;
        line-height: 1.6em;
*/
        font-size: 1.6em;
    }
    
    .topicons {
        flex-direction: row;
    }
 
    .topicons h4{
        font-size: 1.0em;
    }
    
    .apo-trailer-preview:before {
        font-size: 4em;
    }

    .apo-trailer-preview:after {
        font-size: 4em;
    }
}

@media (max-width: 32rem) {
    h3 {
        font-size: 1.4em;
    }
    
    .topicons i{
/*
        width: 1.4em;
        height: 1.4em;
        line-height: 1.4em;
*/
/*        font-size: 1.2em;        */
    }
    
    .topicons h4{
        font-size: 0.8em;
    }
    
    
    .footer {
        display: flex!important;
        flex-direction: column;
    }
    
    .footer-spacer {
        display: none;
    }
}

@media (max-width: 26rem) {
    .topicons {
        margin-bottom: 2em;
    }
    
    .topicons h4 {
        display:none;
    }
}