@charset "UTF-8";
:root {
    /* Colors */
    --white: #fff;
    --white-cold: #f8f9fa;
    --grey-darker: #222;
    --grey: #333333;
    --grey-lighter: #f6f6f6;
    --grey-light: #e5e5e5;
    --blue-accent: #3b5f83;/*29abe2*/
    --blue-medium: #568abe;/*155d7a*/
    --orange-accent: #992b00;
    --orange-medium: #bf5f39;

    /* Shadows */
    --shadow-medium: 0 5px 20px -2px rgba(0,0,0,.14);
    --shadow-large: 5px 10px 25px 10px rgba(0,0,0,.25);

    /* Metrics */
    --navbar-height: 7.85rem;

    /* Transitions */
    --transition-medium: .3s;
    --transition-fast: 0.2s;
}

/* General
 =========================================================================== */
html {
    overflow: auto;
    width: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
    width: 100%;
}

/* Navbar
 =========================================================================== */
nav {
    position: fixed;
    width: 100%;
    background-color: var(--white-cold);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--grey-light);
    z-index: 2;
}
#nav-bar {
    transition: top var(--transition-medium);
}
.nav-bar {
    padding: 0 3rem;
    height: var(--navbar-height);
    transition: 1s;
}

.nav-bar  a {
    padding: 2rem 0;
    cursor: pointer;
}

#logo {
    float: left;
    height: 3.85rem;
}

#logo img {
    height: 3.85rem;
}

#burger {
    float: right;
    height: 3.85rem;
    font-size: 2.1rem;
    line-height: 1.9;
    color: var(--grey);
    padding: 2rem 0 2rem 2rem;
}

.mobile-menu {
    height: 0;
    overflow: hidden;
    background-color: var(--grey-lighter);
    border-top: 1px solid var(--grey-light);
}

.show-mobile-menu {
    height: auto;
}

.mobile-menu ul, .mobile-sub-menu ul {
    margin-bottom: 0;
}

.mobile-menu ul li, .mobile-sub-menu ul li {
    box-sizing: border-box;
    display: list-item;
    list-style-type: none;
    margin-bottom: 0;
    border-bottom: 1px solid var(--grey-light);
}

.mobile-menu ul li a, .mobile-sub-menu ul li a {
    display: block;
    float: none;
    padding: 1.9rem 1.2rem 1.9rem 3rem;
    font-size: 1.6rem;
    line-height: normal;
    color: var(--grey);
    text-decoration: none;
}
.mobile-menu-flags {
    display: flex!important;
}
.mobile-menu-flags a img {
    height: 1.6rem;
    width: 1.6rem;
    margin-bottom: -0.2rem;
}

.mobile-sub-menu {
    display: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-arrow {
    float: right;
    padding-right: 1.8rem;
}

.show-mobile-sub-menu {
    display: block;
}

.desktop-menu {
    display: none;
    float: right;
}
.desktop-menu a {
    float: left;
    color: var(--grey);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.2rem;
    height: 3.85rem;
    font-size: 1.8rem;
    line-height: 2.1;
    margin-right: 4.4rem;
}
.desktop-menu a img {
    height: 2.78rem;
    width: 2.78rem;
    padding: 0.5rem 0;
}
.desktop-menu-flag-spacer {
    margin-right: 2rem!important;
}

.desktop-menu a:last-child {
    margin-right: 0;
}

@media (min-width: 1000px) {
    #mobile-menu, #burger {
        display: none;
    }
    .desktop-menu {
        display: block;
    }
    .nav-bar {
        top: 0;
        padding: 0 6rem;
    }
    .mobile-menu ul li a {
        padding-left: 6rem;
    }
}

/* Sections
 =========================================================================== */
.theme-section {
    padding: 1rem 0 2.8rem;
}

.theme-section-header {
    padding-top: 11.2rem;
}

.theme-section-cold {
    background-color: var(--white-cold);
}

.theme-section-nopad {
    padding: 0!important;
}

.section-header {
    text-align: center;
    margin-bottom: 4.6rem;
}

.section-header h2 {
    color: var(--grey);
    font-size: 3rem;
    line-height: 1.24;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.1rem;
}

.section-header p {
    color: var(--grey-darker);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 20px;
}

@media (min-width: 400px) {
    .section-header h2 {
        font-size: 3.4rem;
    }
}

@media (min-width: 550px) {
    .theme-section {
        padding: 1rem 3rem 2.8rem;
    }
    .theme-section-header {
        padding-top: 11.2rem;
    }
    .section-header h2 {
        font-size: 4rem;
    }
}

@media (min-width: 750px) {
    .section-header h2 {
        font-size: 4.2rem;
    }
}

.section-list {
    width: 100%;
    margin: 0;
}

.section-list ul li {
    list-style-type: none;
}

.section-list i {
    display: inline-block;
    color: var(--white);
    background-color: var(--blue-accent);;
    font-size: 1.6rem;
    line-height: 2.3rem;
    width: 2.3rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    text-align: center;
}

.section-list h3 {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 2.3rem;
    color: var(--grey);
    width: calc(100% - 3.3rem);
    float: right;
    letter-spacing: normal;
}

.section-list ul li p {
    padding-left: 3.4rem;
    font-size: 1.5rem;
    line-height: 2.8rem;
}

.section-image {
    display: none;
    width: 100%;
    overflow: hidden;
    border-radius: 0.7rem;
    box-shadow: var(--shadow-large);
    margin: 0;
}

.section-image img {
    height: 100%;
    width: auto;
    position: relative;
    display: block;
}
@media (min-width: 750px) {
    .section-image {
        display: block;
    }
}
@media (min-width: 1000px) {
    .section-list {
        width: 62%;
        padding-right: 4%;
    }
    .section-image {
        width: 38%;
    }
    .section-image img {
        left: -50%;
    }
}

.article-section {
    padding-top: 20rem;
    font-size: 1.7rem;
}

.article-section * {
    font-family: 'Open Sans', sans-serif;
}

.article-section h1,
.article-section .h1 {
    font-size: 3.2rem;
    line-height: 1.68;
}

.article-section h2,
.article-section .h2 {
    font-size: 2.6rem;
    line-height: 1.68;
    font-weight: 600;
}

.article-section h3,
.article-section .h3 {
    font-size: 2.4rem;
    line-height: 1.42;
    font-weight: 600;
}

.article-section h4,
.article-section .h4 {
    font-size: 1.9rem;
    line-height: 1.42;
    font-weight: 600;
}

@media (min-width: 550px) {
    .article-section h1,
    .article-section .h1 {
        font-size: 4.2rem;
    }
}

.document-field {
    background-color: var(--white-cold);
    padding: 4.4rem 2.2rem;
    margin: 4.4rem 0;
}

.document-field h1,
.document-field .h1 {
    font-size: 2.2rem;
    line-height: 1.68;
    font-weight: 600;
}

.document-field h2,
.document-field .h2 {
    font-size: 2.4rem;
    line-height: 1.68;
    font-weight: 600;
}

.document-field h3,
.document-field .h3 {
    font-size: 1.9rem;
    line-height: 1.42;
    font-weight: 600;
}

.document-field h4,
.document-field .h4 {
    font-size: 1.6rem;
    line-height: 1.42;
    font-weight: 600;
}

@media (min-width: 550px) {
    .document-field h1,
    .document-field .h1 {
        font-size: 3.2rem;
    }
}

/* Unternehmen
 =========================================================================== */

#unternehmen {
    padding-bottom: 6rem;
    padding-top: 12rem;
}

.portrait-text {
    text-align: center;
    padding-top: 1.75rem!important;
    padding-bottom: 2.25rem!important;
    width: 100%!important;
    margin: 0!important;
}

.portrait-text h3 {
    font-size: 3.4rem!important;
    line-height: 1.3!important;
    letter-spacing: 0.1rem!important;
    color: var(--grey)!important;
}

.portrait-text p {
    font-size: 1.8rem!important;
    line-height: 3.2rem!important;
    letter-spacing: 0.05rem!important;
    color: var(--grey)!important;
}

.portrait-image {
    width: 100%!important;
    overflow: hidden!important;
    margin: 0!important;
}

.portrait-image img {
    width: 62%!important;
    border-radius: 50%!important;
    position: relative!important;
    display: block!important;
    max-height: 18rem;
    max-width: 18rem;
    margin: auto;
}

@media (min-width: 750px) {
    .portrait-text {
        text-align: left;
        width: 70%!important;
        padding-right: 4%!important;
        padding-top: 4rem!important;
        padding-bottom: 0!important;
    }
    .portrait-text p {
        font-size: 2rem !important;
    }
    .portrait-image {
        width: 30%!important;
        padding-top: 1.75rem!important;
        padding-bottom: 3rem!important;
    }
    .portrait-image img {
        position: relative!important;
    }
}

/* Kontakt
 =========================================================================== */

#kontakt {
    padding-top: 6rem;
}

#kontakt-form h3 {
    font-size: 2rem;
    line-height: 1.68;
    letter-spacing: 0.1rem;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 3rem;
}

#kontakt-form p {
    font-size: 1.7rem;
    letter-spacing: 0;
    color: var(--grey);
}

#kontakt-form p a {
    text-decoration: none;
    color: var(--blue-accent);
}

#kontakt-form p a:focus,
#kontakt-form p a:hover {
    color: var(--blue-medium);
}

#datenschutz_checkbox {
    margin-right: 0.5rem;
    margin-bottom: 2.5rem;
}

/* AGB
 =========================================================================== */
#agb .document-field h2,
#agb .document-field h3,
#agb .document-field h4 {
    text-align: center;
}

/* Separator
 =========================================================================== */

.separator {
    font-size: 0;
}

.separator-light {
    background-color: var(--white-cold);
}

.separator-dark {
    background-color: var(--white);
}

.separator-transparent {
    background-color: transparent!important;
}

/* Go-to-top
 =========================================================================== */
#backtotop {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    position: fixed;
    float: right;
    bottom: -7rem;
    right: 2rem;
    text-align: center;
    font-size: 3.75rem;
    transition: var(--transition-fast);
}

.backtotop-normal {
    color: var(--blue-medium);
    background-color: var(--white);
}

.backtotop-tennis {
    color: var(--orange-medium);
    background-color: var(--white);
}

/* Gallery
 =========================================================================== */

.gallery {
    border-radius: 0.2rem;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
}

.gallery-cell {
    width: 42rem;
    height: 36rem;
    margin-right: 1rem;
    background: hsla(0, 0%, 87%, 0.9);
    counter-increment: gallery-cell;
    border-radius: 0.4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-cell img {
    display: block;
    max-height: 100%;
}

.gallery-cell:before {
    display: block;
    text-align: center;
    line-height: 20rem;
    font-size: 8rem;
    color: white;
}

.gallery-text {
    font-size: 1.8rem;
    font-style: italic;
    display: none;
}
@media (min-width: 1000px) {
    .gallery-text {
        display: block;
    }
}

.gallery.is-fullscreen .gallery-cell {
    background: hsl(0, 0%, 13%);
    height: 100%;
    width: auto;
}

/* Product header
 =========================================================================== */

.product-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}


.product-header .column, .columns {
    margin-left: 0;
}

.product-header h1 {
    font-size: 3.6rem;
    letter-spacing: .1rem;
}

#sm2,
#tm2,
#v4 {
    padding-bottom: 0;
}

@media (min-width: 1000px) {
    .product-header {
        flex-direction: row;
        margin-bottom: 2rem;
    }
    .product-header .column, .columns {
        margin-left: 4%;
    }
    #sm2,
    #tm2,
    #v4 {
        padding-bottom: 2.8rem;
    }
}

/* Product-preview sites
 =========================================================================== */
.rolltore {
    background-image: url("../images/rolltore-bg.jpg");
}
.tennis {
    background-image: url("../images/tennis-bg.jpg");
}
.rolltore,
.tennis {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}

.rolltore .theme-section-header,
.tennis .theme-section-header {
    min-height: 64vh;
}

.product-card {
    min-height: 26rem;
    background-color: var(--grey-lighter);
    border-radius: 2rem;
    padding: 2rem;
    margin-top: 4rem;
    box-shadow: var(--shadow-large);
}

.product-card-img img {
    border-radius: 50%;
    width: 100%;
    padding-bottom: 2rem;
}

.product-card-text {
    min-height: 34rem;
    position: relative;
}

.product-card-text h2 {
    font-size: 3.4rem;
    padding-top: 1rem;
    letter-spacing: 0.1rem;
}

.product-card-text p {
    margin-top: 1rem;
    letter-spacing: 0.025rem;
}

.product-card-text a {
    position: absolute;
    bottom: 0;
}
@media (min-width: 480px) {
    .product-card-text {
        min-height: 26rem;
    }
}
@media (min-width: 769px) {
    .product-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 972px;
    }
    .product-card-img img {
        height: 26rem;
        width: auto;
        float: left;
        padding-right: 2rem;
        padding-bottom: 0;
    }
}

/* Product buttons
 =========================================================================== */

.btn-tennis {
    background-color: var(--orange-accent);
}

.btn-rolltore {
    background-color: var(--blue-accent);
}

.btn-rolltore,
.btn-tennis {
    border: none;
    color: var(--white);
    display: inline-block;
    padding: 0.8rem 1.9rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: .1rem;
    margin-top: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-medium);
}

.btn-tennis:focus,
.btn-tennis:hover {
    color: var(--white);
    background-color: var(--orange-medium);
}

.btn-rolltore:focus,
.btn-rolltore:hover {
    color: var(--white);
    background-color: var(--blue-medium);
}

@media (min-width: 769px) {
    .btn-rolltore,
    .btn-tennis {
        padding: 1rem 2.6rem;
        border-radius: 3rem;
        transition: var(--transition-medium);
    }
}

/* Footer
 =========================================================================== */

footer {
    padding: 5rem 3rem 3rem;
    font-size: 1.7rem;
}

.footer-column-container {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 100%;
    margin-bottom: 5rem;
    padding: 0 0;
}

@media (min-width: 946px)  {
    .footer-column {
        flex: 31.3333333333%;
        margin-bottom: 0;
        padding: 0 1%;
    }

}

footer h4,
footer .h4 {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    line-height: 1.56;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin: 0 0 1.8rem;
    color: var(--grey);
}

footer a {
    text-decoration: none;
    color: var(--grey);
}

footer ul li {
    list-style-type: none;
    margin-bottom: 0.5rem;
}

.footer-copyright span {
    font-size: 1.2rem;
    line-height: 4.2rem;
}

footer a:focus,
footer a:hover {
    color: var(--blue-medium);
}

/* YouTube
 =========================================================================== */

.videoframe {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.videoframe iframe,
.videoframe object,
.videoframe embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .1);
    box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .1)
}

/* Produktbereichsvorschau
 =========================================================================== */
.product-area {
    display: flex;
    flex-wrap: wrap-reverse;
}
.product-area-reverse {
    flex-wrap: wrap;
}
.product-area-text {
    width: 100%;
    padding: calc(5% + 2rem);
    text-align: center;
    margin: 0!important;
}
.product-area-text h2 {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    font-size: 3.2rem;
    letter-spacing: .2rem;
    font-weight: 400;
    margin: 0;
}
.product-area-text p {
    padding-top: 1rem;
    padding-bottom: 5rem;
    font-size: 1.6rem;
    letter-spacing: .1rem;
    text-align: left;
    margin: 0;
}
.product-area-text a {
    margin: 0;
}
.product-area-img {
    width: 100%;
    margin: 0!important;
}
.product-area-img img {
    width: 100%;
    height: 100%;
    max-height: 48rem;
    object-fit: cover;
}
@media (min-width: 1000px) {
    .product-area {
        height: 48rem;
    }
    .product-area>div {
        max-height: 48rem;
        width: 50%;
        margin: 0;
    }
    .product-area-text {
        max-height: 48rem;
        width: 45%;
        padding: calc(2.5% + 2rem);
    }
    .product-area-text h2 {
        padding-top: 3rem;
    }
    .product-area-text p {
        padding-bottom: 4rem;
    }
    .product-area-img {
        max-height: 48rem;
        width: 50%;
    }
}

/* Hero
 =========================================================================== */
#hero {
    width: 100%;
    padding: 10rem 0 7rem;
    /*background-image: url("../images/index-header.jpg");*/
    background-size: cover;
    text-align: center;
    color: var(--grey-darker);
}
#hero h1 {
    font-size: calc(100vw / 15);
    padding-top: 6rem;
    letter-spacing: .25rem;
    line-height: 1.4;
}

.hero-links {
    display: flex;
    justify-content: center;
    padding: 0 19%;
    flex-direction: column;
}
.hero-links>div{
    text-align: center;
    margin: 0;
}
.hero-links a {
    word-break: keep-all;
    border: none;
    color: var(--grey-darker);
    background-color: var(--white);
    display: inline-block;
    padding: 0.8rem 1.9rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: .1rem;
    margin-top: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-medium);
}

.hero-links a:focus,
.hero-links a:hover {
    color: var(--grey);
    background-color: var(--grey-lighter);
}

@media (min-width: 1000px) {
    #hero {
        padding-bottom: 10rem;
    }
    #hero h1 {
        padding-top: 4rem;
        font-size: calc(((500px + 100vw) / 2) / 17);
        letter-spacing: .5rem;
    }
    .hero-links {
        flex-direction: row;
    }
    .hero-links a {
        padding: 1rem 2.6rem;
        border-radius: 3rem;
        transition: var(--transition-medium);
    }
}

/* Messen
 =========================================================================== */
.anmeldecode {
    background-color: var(--grey-light);
    padding: 0.2rem 0.8rem;
    border-radius: 1.2rem;
}

.product-info {
    display: flex;
    flex-direction: column;
}
.product-info>div {
    margin-left: 0;
}
.product-info>div img {
    width: 98%;
    max-width: 600px;
    margin-bottom: 2rem;
}
.referenzen {
    margin-top: 4rem;
}
.referenzen h3 {
    margin-bottom: 4rem;
}

@media (min-width: 1000px) {
    .product-info {
        flex-direction: row;
    }
    .product-info>div {
        max-width: 50%;
    }
    .product-info>div img {
        margin: 0 0 2rem 2%;
    }
    .product-info>div:nth-child(second){
        margin-left: 4%;
    }
    .referenzen {
        margin-top: 0;
        text-align: center;
    }
}