@import url("reset.css");

img,
figure {
    pointer-events: none;
}

/* Elemente mit der Klasse .notsafe erhalten ihre Pointer-Events zurück*/
.notsafe {
    pointer-events: auto !important;
}

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/montserrat-v25-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-600 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: local(''),
        url('../fonts/montserrat-v25-latin-600.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/montserrat-v25-latin-600.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: local(''),
        url('../fonts/montserrat-v25-latin-italic.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/montserrat-v25-latin-italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-600italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: local(''),
        url('../fonts/montserrat-v25-latin-600italic.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/montserrat-v25-latin-600italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


.clear {
    clear: both;
}

a {
    transition: ease .8s;
    -o-transition: ease .8s;
    -webkit-transition: ease .8s;
    -moz-transition: ease .8s;
    -ms-transition: ease .8s;
}

body {
    font: 400 15px/22px 'Montserrat';
    color: #000
}

.logo {
    position: fixed;
    left: 10%;
    top: 10px;
    z-index: 101;
}

.logo a {
    display: block;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 35px 10%;
    z-index: 100;
}

nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

nav ul li {
    margin: 0 25px
}

nav ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}

.profitieren,
.btn {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 50%);
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
}

.profitieren:hover,
.btn:hover {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 90%)
}

header {
    background: url(../images/steinmetz.jpg) no-repeat center / cover;
    height: 900px;
    position: relative;
}

.slogan {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 50%);
    color: #fff;
    padding: 25px;
    position: absolute;
    left: 9%;
    bottom: -5%;
    width: 480px;
}

.slogan .big {
    font-size: 30px;
    text-transform: uppercase;
    line-height: 35px;
    margin-bottom: 10px;
    font-weight: 600;
}

.slogan .small {
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: 30px;
}

.stoerer {
    position: absolute;
    right: 80px;
    top: 15%;
}

.stoerer .normal {
    position: relative;
    z-index: 99;
    margin: 5px 5px 0 0
}

.stoerer .rotate {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 98;
    -webkit-animation: rotate 5s normal linear infinite;
    animation: rotate 5s normal linear infinite;
}


@keyframes rotate {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    25% {
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
    }

    50% {
        -webkit-transform: rotate3d(0, 0, 1, 180deg);
        transform: rotate3d(0, 0, 1, 180deg);
    }

    75% {
        -webkit-transform: rotate3d(0, 0, 1, 270deg);
        transform: rotate3d(0, 0, 1, 270deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}


#zukunft {
    padding: 100px 10%;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#zukunft .flex {
    align-items: center;
}

.col {
    width: 48%;
}

.relative img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

h1,
h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #ddca69;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px
}

h1 span,
h2 span {
    text-transform: none;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    font-style: italic;
    line-height: 25px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px
}

.relative {
    position: relative;
}

.cta {
    position: absolute;
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 50%);
    padding: 10px 15px;
    bottom: -2%;
    right: 10%;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.cta:hover {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 90%)
}

#ziele {
    background: url(../images/bg.jpg) center / auto;
    padding: 100px 0 50px;
    text-align: center;
}

#ziele h2 {
    margin-bottom: 50px
}

.ziel {
    width: 20%;
    height: 300px;
    align-items: center;
}

.hover {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 50%);
    opacity: 0;
    color: #fff;
    transition: ease .8s;
    -o-transition: ease .8s;
    -webkit-transition: ease .8s;
    -moz-transition: ease .8s;
    -ms-transition: ease .8s;
}

.hover p {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    padding: 0 15px
}

.nachwuchs {
    background: url(../images/nachwuchsfoerderung.jpg) no-repeat center / cover;
}

.orga {
    background: url(../images/pokal.jpg) no-repeat center / cover;
}

.gruendung {
    background: url(../images/mannschaft.jpg) no-repeat center / cover;
}

.vernetzung {
    background: url(../images/vernetzung.jpg) no-repeat center / cover;
}

.foerderung {
    background: url(../images/unterstuetzung.jpg) no-repeat center / cover;
}

.nachwuchs:hover .hover,
.orga:hover .hover,
.gruendung:hover .hover,
.vernetzung:hover .hover,
.foerderung:hover .hover {
    opacity: .9;
}

#meisterschaften,
.teilnehmer {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 90%);
    padding: 100px 10%;
}

.title {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .8);
    width: 100%;
    padding: 5px 10px
}

#meisterschaften h2,
.teilnehmer h2 {
    color: #fff;
}

#meisterschaften .flex {
    align-items: center;
}

.btn-white {
    background: #fff;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 15px;
    color: #000;
    text-decoration: none;
}

.btn-white:hover {
    background: #bea524;
    color: #fff;
}

#about {
    padding: 100px 10% 250px;
    hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.person {
    width: 25%;
    position: relative
}

.person img {
    width: 100%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.11)
}

.erfolg {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 70%);
    position: absolute;
    width: 80%;
    padding: 25px;
    color: #fff;
    left: 10%;
    margin-top: -25px
}

.erfolg span {
    text-transform: uppercase;
    font-weight: 600;
}

.erfolg ul li {
    list-style: disc;
    list-style-position: inside;
}


#partner {
    padding: 100px 10%;
    background: #f7f7f7;
}

#partner .flex {
    flex-wrap: wrap;
    justify-content: space-around
}

.partner-info {
    width: 23%;
    position: relative;
    margin: 25px 0;
}

.partner-logo {
    background: #fff;
    padding: 15px 25px 25px;
    height: 180px;
    display: flex;
    align-items: center;
}

.partner-logo img {
    margin: auto;
    display: block;
}

.partner-info a {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 70%);
    width: 80%;
    display: block;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    position: absolute;
    left: 10%;
    margin-top: -15px
}

.partner-info a:hover {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 90%);
    text-decoration: underline;
}


.eyecatcher {
    background: url(../images/steinmetz-arbeiten.jpg) no-repeat center / cover;
    height: 350px
}

#profitieren {
    padding: 100px 10%;
}

.list {
    margin: 10px 0 0 15px;
}

.list li {
    position: relative
}

.list li:before {
    position: absolute;
    content: '';
    background: #cdb756;
    width: 5px;
    height: 5px;
    color: #cdb756;
    left: -15px;
    top: 8px
}

.gelb {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 70%)
}

.gelb:first-child {
    background: url(../images/bildmarke.png) no-repeat right -50px bottom -30px / 180px, linear-gradient(45deg, #dccd7f 0%, #bea524 70%)
}

.grey {
    background: #f7f7f7;
}

.vorteil {
    width: calc(100% / 3 - 20px);
    height: 150px;
    margin: 10px 5px;
    padding: 10px;
    text-align: center;
}

.vorteil img {
    width: 80px;
    margin: 20px auto;
    display: block;
}

.helfen .flex {
    flex-wrap: wrap;
    gap: 10px;
}

.vorteil:last-child img {
    width: 50px;
    margin-bottom: 5px
}

.vorteil a {
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

.vorteil:nth-of-type(3) {
    display: inline-block;
}


#kontakt {
    background: #737373;
    color: #fff;
}

#kontakt .col {
    width: 50%;
}

#kontakt .col:first-child {
    padding: 100px 10%;
}

#kontakt h2 span {
    color: #fff;
}

.btn {
    display: inline-block;
    margin-top: 15px;
}

.bg {
    background: url(../images/bg.jpg) center / auto;
    padding: 50px 10%
}

.multiple-items .flex {
    margin: 0 15px
}

.multiple-items img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.multiple-items .inhalt {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 90%);
    padding: 15px;
    color: #fff;
}

/* --------DSA SECURE-------- */
.dsa-secure-plugin {
    border-radius: 5px;
    position: relative
}

.dsa-secure-plugin .dsa-secure-image {
    width: 100%;
    height: 100%
}

.dsa-secure-plugin {
    font-size: 12px;
    line-height: 16px
}

.dsa-secure-plugin .dsa-buttons {
    width: 90%;
    margin: auto;
    text-align: center
}

.dsa-secure-plugin .dsa-buttons a:nth-of-type(2n) {
    margin-top: 10px
}

.dsa-secure-plugin .undercheck {
    background-color: #fff;
    color: #222 !important;
    border-radius: 5px;
    padding: 4px;
    margin: 8px 50% 16px;
    width: 202px;
    transform: translateX(-50%)
}

.dsa-secure-plugin .check-slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    margin: auto;
    -webkit-transform: translateY(100%);
    transform: translateY(-50%)
}

.dsa-secure-plugin .dsa-switch {
    position: relative;
    width: 60px;
    height: 34px;
    display: block
}

.dsa-secure-plugin .check-slide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear
}

.dsa-secure-plugin .dsa-secure-plugin input {
    display: none
}

.dsa-secure-plugin iframe {
    width: 100%
}

.dsa-secure-plugin .dsa-switch {
    margin-left: calc(50% - 30px)
}

.dsa-secure-plugin p,
.dsa-secure-plugin p {
    text-align: center;
    font-family: arial;
    padding: 10px 0;
    display: block;
    margin: auto;
    font-weight: 700
}

.dsa-secure-plugin .check-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000
}

.dsa-secure-plugin .check-slide.hide {
    display: none
}

.dsa-secure-plugin a {
    font-size: 12px;
    text-align: center;
    font-family: arial;
    display: block;
    margin: auto;
    width: calc(100% - 20px);
    max-width: 300px;
    background-color: #cc1417;
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #fff
}

.dsa-secure-plugin a:hover {
    background-color: #dd171b
}

.dsa-secure-plugin:hover .check-slide,
.dsa-secure-plugin .check-slide:hover {
    visibility: visible;
    opacity: 1;
    visibility: visible;
    opacity: 1
}

.dsa-secure-plugin .dsa-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #000
}

.dsa-secure-plugin .dsa-buttons a:hover {
    color: #fff !important
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext {
    font-size: 12px;
    visibility: hidden;
    width: 100%;
    max-width: 300px;
    background-color: #cc1417;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0;
    margin-left: 0;
    opacity: 0;
    transition: opacity .3s
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent
}

.dsa-secure-plugin .dsa-tooltip:hover .tooltiptext,
.dsa-tooltip.active .tooltiptext {
    visibility: visible;
    opacity: 1
}

.dsa-secure-plugin .dsa-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    -webkit-transition: .4s;
    transition: .4s
}

.dsa-secure-plugin .dsa-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

.dsa-secure-plugin input:checked + .dsa-slider {
    background-color: #cc1417
}

.dsa-secure-plugin input:focus + .dsa-slider {
    box-shadow: 0 0 1px #cc1417
}

.dsa-secure-plugin input:checked + .dsa-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

.dsa-secure-plugin .dsa-slider.round {
    border-radius: 34px
}

.dsa-secure-plugin .dsa-slider.round:before {
    border-radius: 50%
}

.dsa-cookie-notice-close:hover {
    background-color: #000
}

.dsa-cookie-notice-close {
    position: absolute;
    display: block;
    height: 20px;
    bottom: 20px;
    width: 20px;
    line-height: 20px;
    right: 5px;
    top: 5px;
    text-decoration: none;
    color: #fff !important;
    background-color: #515151
}

.dsa-cookie-notice {
    font-family: arial;
    font-size: 12px;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 99999 !important;
    background-color: #6d6d6d;
    margin: auto;
    width: 100%;
    text-align: center
}

.dsa-cookie-notice a {
    color: #000
}

.dsa-cookie-notice.hide {
    display: none
}

.cookie-inner {
    padding: 25px
}

@media (max-width:900px) {

    .dsa-secure-plugin .check-slide,
    .dsa-secure-plugin .check-slide {
        visibility: visible;
        opacity: 1;
        visibility: visible;
        opacity: 1
    }
}

/* --------DSA SECURE ENDE-------- */


/*---RESP NAVI-----*/


.burger-nav {
    position: fixed;
    right: 4%;
    top: 32px;
    color: #000;
    z-index: 9999;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 40px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    padding: 16px 21px 21px 19px;
    display: none;
}

.burger-nav b {
    transition: all .4s ease-in-out;
    float: left;
    margin-left: 0;
    font-family: 'Montserrat';
    font-style: normal;
}

.burger-nav-anim {
    top: 19px;
    right: 4%;
    color: #fff;
}

.burger-nav-anim b:first-of-type {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
    opacity: 0;
}

.burger-nav-anim b:last-of-type {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: -68%;
}

.full-screen-nav {
    position: fixed;
    z-index: 110;
    width: 100%;
    height: 100vh;
    background: rgba(115, 115, 115, 0.98);
    display: table;
    visibility: hidden;
    transition: all .4s ease-in-out;
    opacity: 0;
    left: 0;
    top: 0;
}

.full-screen-nav ul {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}


.full-screen-nav ul .nav-li,
.full-screen-nav ul li a {
    padding: 10px 20px;
    display: block;
    font-size: 20px;
    color: #ddca69;
    transition: all .4s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}

.full-screen-nav ul .nav-li {
    text-decoration: underline;
    font-style: italic;
}


.fadeIn {
    opacity: 1 !important;
    visibility: visible !important;
}

.fadeUp {
    opacity: 1 !important;
    margin-top: 0 !important;
}

.full-screen-nav ul li a:hover {
    color: #fff
}

/*----RESP NAVI ENDE-----*/


.aufgabe {
    width: 32%;
    background: #fff;
}

.aufgabe-img {
    background: url(../images/bg.jpg) center / auto;
    padding: 25px
}

.aufgabe-txt {
    padding: 25px
}

.aufgabe img {
    margin: 0 auto 0 auto;
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.aufgabe h2 {
    color: #ddca69;
}


.data {
    position: fixed;
    left: 0;
    bottom: 0;
    background: #737373;
    padding: 5px 10px;
    font-size: 13px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.data:hover {
    background: linear-gradient(45deg, #dccd7f 0%, #bea524 50%);
}

.data a {
    color: #fff;
    text-decoration: none;
}

.color {
    color: #ddca69
}

strong {font-weight: 600;}

/*---------------------------------------
MEDIA Queries | Tablet | Phone
---------------------------------------*/

@media screen and (max-width: 1160px) {

    /*CSS*/
    .logo {
        left: 3%;
    }

    nav {
        padding: 35px 3%;
        font-size: 14px
    }

    nav ul li {
        margin: 0 15px;
    }

    .slogan {
        left: 5%;
    }

    #zukunft,
    #meisterschaften,
    #partner,
    #profitieren,
    #kontakt .col:first-child,
    .teilnehmer {
        padding: 100px 5%;
    }

    .bg {
        padding: 50px 5%
    }

    #ziele .flex {
        flex-wrap: wrap;
    }

    .ziel {
        width: 33.33%;
    }

    .ziel:nth-of-type(4),
    .ziel:nth-of-type(5) {
        width: 50%;
    }

    #about {
        padding: 100px 5% 250px;
    }
}

@media screen and (max-width: 950px) {

    /*CSS*/
    nav ul li {
        margin: 0 10px;
    }

    .person {
        width: 32%;
    }

    #partner .flex {
        flex-wrap: wrap;
    }

    .partner-info {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 850px) {

    /*CSS*/
    .ziel {
        width: 50%;
    }

    .ziel:last-child {
        width: 100%;
    }

    .flex {
        flex-wrap: wrap;
    }

    .col {
        width: 100%;
    }

    .col:first-child {
        margin-bottom: 25px;
    }

    .teilnehmer .col:first-child {
        margin-bottom: 0;
    }

    #meisterschaften .col .fade {
        width: 80%;
        margin: auto auto 25px
    }

    .person {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 10px 0
    }

    .person img {
        width: 50%;
        height: 300px;
        object-fit: cover;
    }

    .erfolg {
        position: relative;
        margin: 0;
        left: inherit;
        height: 250px;
        width: 50%
    }

    #kontakt .col {
        width: 100%;
    }

    .dsa-secure-plugin {
        height: 350px !important
    }

    .stoerer {
        right: 35px;
    }

    .relative img {
        height: 350px
    }

    header {
        height: 650px
    }

    nav ul {
        display: none
    }

    nav {
        padding: 45px 3%;
    }

    .burger-nav {
        display: block;
        top: 20px;
    }

    .multiple-items img {
        height: 450px;
    }
}

@media screen and (max-width: 530px) {

    /*CSS*/
    * {
        hyphens: auto;
        -o-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
    }

    .person {
        flex-wrap: wrap;
    }

    .person img {
        width: 90%;
        margin: auto;
    }

    .erfolg {
        width: 100%;
    }

    .erfolg {
        height: auto;
    }

    .partner-info {
        width: 100%;
        margin-bottom: 40px;
    }

    .ziel,
    .ziel:nth-of-type(4),
    .ziel:nth-of-type(5) {
        width: 100%;
    }

    .slogan {
        width: 300px;
    }

    .slogan .big {
        font-size: 25px;
        line-height: 27px
    }

    .slogan .small {
        font-size: 18px;
        line-height: 22px
    }

    #meisterschaften .col .fade {
        width: 100%;
    }

    .vorteil {
        width: calc(100% / 2 - 20px);
    }

    #about {
        padding: 100px 5%;
    }

    .logo a img {
        width: 230px;
    }

}
