/* basic */


@font-face {
    font-family: "Geomanist";
    font-weight: 300;
    src: url("../fonts/Geomanist-Complete-Desktop/Geomanist-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Geomanist";
    font-style: italic;
    src: url("../fonts/Geomanist-Complete-Desktop/Geomanist-Regular-Italic.otf") format("opentype");
}

@font-face {
    font-family: "Geomanist";
    font-weight: bold;
    src: url("../fonts/Geomanist-Complete-Desktop/Geomanist-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Geomanist";
    font-weight: bold;
    font-style: italic;
    src: url("../fonts/Geomanist-Complete-Desktop/Geomanist-Bold-Italic.otf") format("opentype");
}

@font-face {
    font-family: "Geomanist";
    font-weight: 100;
    font-style: italic;
    src: url("../fonts/Geomanist-Complete-Desktop/Geomanist-ExtraLight-Italic.otf") format("opentype");
}

:root {

    --white: #ffffff;
    --black: #000000;
    --greyform: #eaecf0;
    --grey5: #f2f2f2;
    --grey10: #e6e6e6;
    --grey15: #d9d9d9;
    --grey20: #cccccc;
    --grey25: #bfbfbf;
    --grey50: #818181;
    --greyfooter: #545c5e;
    --grey75: #505050;
    --gold: rgb(224, 190, 91);
    --darkgold: #99823f;
    --head09: linear-gradient(90deg, rgba(230, 230, 230, 0.7) 0%, rgba(242, 242, 242, 0.7) 10%, rgba(255, 255, 255, 0.7) 100%);
    --head1: linear-gradient(90deg, rgba(230, 230, 230, 1) 0%, rgba(242, 242, 242, 1) 10%, rgba(255, 255, 255, 1) 100%);

    --pink: #db1a78;
    --lightblue: #47a5d1;

}

/* colours */

.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.gold {
    color: var(--gold);
}

.darkgold {
    color: var(--darkgold);
}

.grey75 {
    color: var(--grey75);
}

/* fontstyles */

.thin {
    font-weight: 100;
}

.regular {
    font-weight: 300;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.uppercase{
    text-transform: uppercase;
}

/* fontsizes */

.h1 {
    font-size: clamp(1.0rem, 3vw, 1.2rem);
}


nav.mobile>ul>li,
nav.tablet-small>ul>li {
    font-size: clamp(1.0rem, 1.5vw, 1.2rem);
}


nav.tablet-big>ul>li,
nav.desktop>ul>li {
    font-size: clamp(0.7rem, 1.3vw, 0.9rem);
}

.h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 100;
    font-style: italic;
    text-transform: uppercase;
}

.h3 {
    font-size: clamp(0.8rem, 3.7vw, 1.4rem);
    margin: 10px 7%;
}

h4 {
    font-size: clamp(0.6rem, 2.5vw, 0.8rem);
    line-height: clamp(1rem, 4vw, 1rem);
    font-weight: 500;
    margin: 5px 0;
    color: var(--gold);
}

h5 {
    font-size: clamp(0.8rem, 3.7vw, 1.0rem);
    line-height: clamp(1.0rem, 6vw, 1.2rem);
}

.content {
    hyphens: auto;
    /* text-align: justify; */
    font-size: clamp(0.8rem, 3.7vw, 1.0rem);
    /* line-height: clamp(1.4rem, 6vw, 1.8rem); */
    font-weight: 300;
}

p {
    /* font-size: clamp(1rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 4vw, 1.7rem); */
    font-size: clamp(1rem, 2.5vw, 1rem);
    line-height: clamp(1.2rem, 6vw, 1.5rem);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    font-family: 'Geomanist';
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: var(--gold) var(--grey75);
    /* scroll thumb and track */
}

a {
    text-decoration: none;
    color: inherit;
}

.tablet-big li:hover,
.desktop li:hover {
    color: var(--gold);
    transition: 0.2s;
}

.jump {
    position: relative;
    bottom: 60px;
    width: 0;
}

.jump1 {
    bottom: 110px !important;
}

.img {
    object-fit: cover;
    width: 100%;
    vertical-align: bottom;
    max-height: 100%;
}

/* mobile */

.mobile {
    display: block;
}

.mobile-inline {
    display: inline;
}

.not-mobile-inline {
    display: none;
}

.not-mobile-block {
    display: none;
}

.tablet-small {
    display: none;
}

.tablet-big {
    display: none;
}

.desktop {
    display: none;
}

#tablet-small-burgerbutton {
    display: none;
}

#dots1,
#dots2,
#dots3 {
    display: inline;
}

#more1,
#more2,
#more3 {
    display: none;
}

/* mobile-arrows */

.arrow {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-right: 4px solid var(--gold);
    border-top: 4px solid var(--gold);
}

.arrow-small {
    width: 17px;
    height: 17px;
    background-color: transparent;
    border-right: 3px solid var(--gold);
    border-top: 3px solid var(--gold);
}

.arrow-right {
    transform: rotate(45deg);
}

.arrow-bot {
    transform: rotate(135deg);
}

.arrow-left {
    transform: rotate(225deg);
}

.arrow-shadow{
    box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.6);
}

/* mobile-header */

header {
    height: 60px;
    padding: 10px 0;
    background: rgb(230, 230, 230);
    background: var(--head09);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    position: fixed;
    z-index: 100;
    width: 100vw;
    transition: 2s;
}

header:hover {
    background: var(--head1);
    transition: 2s;
}

.header-headline {
    height: inherit;
    padding: 10px 0 10px 15px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: start;
    align-items: center;
}

.header-logo {
    height: 100%;
}

h1 {
    margin-left: 18px;
}

/* mobile-burger-button */

.firstline,
.thirdline {
    width: 40px;
    height: 5px;
    background: var(--gold);
    transition: .5s;
}

.secondline {
    width: 40px;
    height: 5px;
    background: var(--gold);
    transition: all 0.5s ease-in 0.3s;
}

.firstline-active {
    transform: translate(0, 180%) rotateZ(45deg);
    transition: .5s;
}

.secondline-active {
    visibility: hidden;
    transition: 0.01s;
}

.thirdline-active {
    transform: translate(0, -220%) rotateZ(-45deg);
    transition: .5s;
}

.burgerbutton {
    cursor: pointer;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 25px;
    margin-left: 20px;
    float: right;
}

/* mobile-nav */

nav.mobile,
nav.tablet-small {
    position: relative;
}

nav.mobile ul {
    position: fixed;
    z-index: 10000;
    transform: translate(100vw, 55px);
    text-align: end;
    width: 40vw;
    transition: transform 0.5s ease-out 0.2s;
}

nav.mobile ul.nav-active {
    transform: translate(calc(60vw - 25px), 55px);
    margin-right: 25px;
    transition: transform 0.8s ease-out;
}

nav.tablet-small ul {
    position: fixed;
    z-index: 100000;
    transform: translate(100vw, 55px);
    text-align: end;
    width: 30vw;
    transition: transform 0.5s ease-out 0.2s;
}

nav.tablet-small ul.nav-active {
    transform: translate(calc(70vw - 25px), 55px);
    margin-right: 25px;
    transition: transform 0.8s ease-out;
}

nav.mobile ul li div,
nav.tablet-small ul li div {
    padding: 15px 0px 15px 10px;
    margin: 5px 0;
}

nav.mobile ul li,
nav.tablet-small ul li {
    list-style: none;
    text-transform: uppercase;
    background-color: rgba(232, 204, 122, 0.8);
    padding-right: 16px;
    padding-left: 16px;
    font-weight: 500;
    font-style: italic;
    cursor: pointer;
}

nav.mobile ul li:hover,
nav.tablet-small ul li:hover {
    list-style: none;
    text-transform: uppercase;
    background-color: rgba(232, 204, 122, 1);
    padding-right: 16px;
    padding-left: 16px;
    font-weight: 500;
    font-style: italic;
    cursor: pointer;
}

.listitem {
    width: 100%;
    height: 100%;
}

/* mobile-slider */

.swiper {
    height: 100%;
}

.teamswiper {
    /* height: calc(100% - 50px); */
    height: 100%;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    color: var(--gold);
    --swiper-navigation-size: 22px;
}

.swiper .swiper-button-prev {
    left: 15px;
}

.swiper .swiper-button-next {
    right: 15px;
}

.swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

.swiper-slide {
    text-align: center;
    overflow: hidden;
}

.swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.landing-slider {
    height: calc(100vh - 60px);
    margin-top: 60px;
    background-color: var(--weiß);
    z-index: 0;
    position: relative;
}

/* mobile-subline */

.subline {
    margin: 50px 0 40px 0;
    text-align: center;
}

.sublineBild {
    margin: 50px 0 60px 0;
}

.stars {
    width: 60px;
}

.goldenLine {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 5px auto 15px auto;
}

.goldenLineText {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 13px auto;
}

.grid-content-2columns {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas:

        "inhalt"
        "bild";

    margin: 0 0%;
    width: auto;
}

#content1 {
    grid-area: inhalt;
    margin: 0 50px 50px 50px;
    white-space: normal;
}

#img-slider1 {
    grid-area: bild;
    height: 100%;
}

#img-slider1 img {
    height: auto;
}

.link-gold {
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin-top: 20px;
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
    cursor: pointer;
    line-height: 25px;
}

.link-gold a,
.link-gold p {
    margin-right: 10px;
    font-size: clamp(1.3rem, 4vw, 1.5rem);
}

.manager {
    margin-right: 15px;
    position: relative;
    /* bottom: 50px; */
    z-index: 1;
    /* text-shadow: 1px 1px 2px var(--black); */
}

.grid-content-4columns {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas:

        "inhalt"
        "slider";

    margin: 0;
}

#content2 {
    grid-area: inhalt;
    margin: 0 50px 50px 50px;
}

#img-slider2 {
    grid-area: slider;
}

/* mobile-Vereinskonzept */

.pdf-slider .link-gold {
    margin-right: 20px;
}

.pdf-slider{
    position: relative;
}

.pdf-download {
    position: absolute;
    bottom: 10px;
    right: 0px;
}

.img_vereinskonzept {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* max-width: 90%; */
    /* max-height: 40vh; */
    /* margin-left: 50%; */
    /* transform: translateX(-50%); */
}

/* mobile-teamsslider */

.content-wrapper-teams {
    overflow-y: auto;
    height: 100%;
}

.content-wrapper-weddingchallenge{
    height: 100%;
    position: relative;
}

.teams-slider {
    position: relative;
    height: 70vh;
}

.teams-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--weiß);
}

.team1,
.team2,
.team3,
.team4,
.team5,
.team6,
.team7 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
}

.team-active {
    z-index: 0;
}

.box-active{
    border: 4px solid var(--gold);
}

.teamboxen-mobile {
    position: absolute;
    z-index: 2;
    width: 25%;
    max-width: 300px;
    /* height: calc(100% - 50px); */
    height: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 80%;
}

.teambox {
    height: 13.5%;
    width: 100%;
    /* um das Bild zu sehen einfach die background-color ausschalten */
    background-color: var(--grey5);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 4vw;
    font-weight: bold;
    font-style: italic;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.teambox img {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    width: 100%;
}

.grid-content-3columns-2 {
    margin-bottom:80px;
  }

/* mobile-tournaments */

.grid-content-3columns {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas:

        "inhalt";

    margin: 0 0 0 0;
}

#content5 {
    grid-area: inhalt;
    padding-right: 10px;
    overflow-y: hidden;
    margin: 0 50px 50px 50px;
}

.livescore {
    justify-content: start;
    margin-bottom: 50px;
    margin-left: 50px;
}

.img-3col-1,
.img-3col-2 {
    height: 100%;
}

/* mobile-player-slider */

.player-slider {
    height: 70vh;
}

/* video-link */

.video-link {
    background-color: var(--grey10);
    aspect-ratio: 2 / 1;
}

.video-link-player {
    aspect-ratio: 2 / 1;
    padding: 5% 10%;
}

.live-img {
    object-fit: contain;
    width: 100%;
}

/* form */

#userName{
    margin-bottom: 6px;
}

#userForname,
#subject,
#content,
#phonenumber{
    margin: 6px 0 6px 0;
}

#fakecheck{
    display: none;
}

.form {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas:

        "form";

    margin: 0 10% 80px 10%;
}

form {
    grid-area: form;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

input,
textarea {
    width: 100%;
    padding: 5px 10px;
    border: 2px solid transparent;
    border-radius: 3px;
    background: var(--greyform);
    font-size: clamp(0.6rem, 4vw, 1.2rem);
    font-weight: 300;
    resize: none;
}

.input-field-nachricht{
    height: 100%;
}

textarea{
    /* overflow-y: scroll; */
}

input:focus,
textarea:focus {
    outline: none;
    border: 2px solid var(--gold);
}

::placeholder{
    color: #939598;
}

.submitbutton {
    background: var(--gold);
    color: white;
    font-size: clamp(0.6rem, 5vw, 1.4rem);
    cursor: pointer;
    margin-top: 6px;
}

.form p {
    color: var(--grey75);
    font-weight: 400;
    font-size: clamp(0.8rem, 3.7vw, 1.0rem);
    line-height: 30px;
}

/* footer */

footer {
    height: 150px;
    background: var(--greyfooter);
    color: var(--gold);
    font-size: clamp(0.6rem, 2vw, 0.8rem);
    font-style: italic;
    line-height: clamp(0.8rem, 3vw, 0.8rem);
    width: 100vw;
    display: flex;
    padding: 25px 20px;
    flex-direction: row;
    align-items: top;
}

footer p{
    font-size: clamp(0.6rem, 2vw, 0.8rem);
}

.footer-logo {
    max-height: 70%;
}

.adress {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.social-logo1 {
    margin-left: auto;
}

.social-logo2 {
    margin-left: 15px;
}

.facebook-logo {
    height: 30px;
}

.instagram-logo {
    height: 30px;
}

.clubname {
    font-weight: 600;
}

.streetname {
    font-weight: 400;
    line-height: clamp(0.9rem, 3.5vw, 1.1rem);
}

.area {
    font-weight: 400;
    line-height: clamp(0.9rem, 3.5vw, 1.1rem);
}

.email {
    font-weight: 400;
    line-height: clamp(0.9rem, 3.5vw, 1.1rem);
}

@media only screen and (max-width: 770px) {

    .not-mobile-inline {
        display: none;
    }

    .not-mobile-block {
        display: none;
    }

    .form p,
    .form h5 {
        color: var(--grey75);
        font-size: clamp(0.8rem, 3.7vw, 1.0rem);
        line-height: 30px;
        margin-left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }
}


/* mobile-big */
@media only screen and (min-width: 500px) {

    #content1,
    #content2,
    #content5{
        margin: 0 20% 50px 20%;
    }

    .livescore {
        margin-left: 20%;
    }

    .kontakt-content,
    .form {
        margin: 0 0 100px 0;
    }

    footer{
        padding: 25px 20%;
    }
}

/* tablet-small */
@media only screen and (min-width: 770px) {
    #content5 {
        overflow-y: auto;
        height: 70%;
    }

    .livescore{
        margin: 0;
        position: absolute;
        bottom: 0;
    }

    .link-gold a, .link-gold p {
        margin-right: 0;
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    }
    
    .mobile,
    .mobile-inline {
        display: none !important;
    }

    .not-mobile-inline {
        display: inline;
    }

    .not-mobile-block {
        display: block;
    }

    .tablet-small {
        display: block !important;
    }

    .tablet-big {
        display: none !important;
    }

    .desktop {
        display: none !important;
    }

    #tablet-small-burgerbutton {
        display: flex;
    }

    nav.tablet-big>ul,
    nav.desktop>ul {
        width: auto;
        display: flex;
        justify-content: end;
        flex-direction: row;
        align-items: center;
        margin-right: 50px;
    }

    nav.tablet-big>ul>li,
    nav.desktop>ul>li {
        position: relative;
        list-style: none;
        white-space: nowrap;
        margin-left: 30px;
    }

    .subline {
        margin: 50px 0 60px 0;
    }

    #more1,
    #more2,
    #more3 {
        display: inline;
    }

    .grid-content-2columns p {
        overflow-y: auto;
        height: 100%;
    }

    .pdf-slider {
        height:auto;
    }

    .img_vereinskonzept {
        width: 100%;
        object-fit: cover;
    }

    .teams-ul {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        transform: translatey(0%);
        width: auto;
        position: absolute;
        z-index: 10;
    }

    .teams-ul li {
        font-size: 0.9rem;
        list-style: none;
    }

    .teams-ul li.teams-li {
        padding: 7px 0;
        font-size: 0.8rem;
        font-weight: 400;
        width: 200px;
        color: var(--darkgold);
        padding-left: 10px;
    }

    .teams-ul li.teams-li:hover {
        background-color: #e0de5b;
    }

    .teams-ul>li>p:hover {
        cursor: pointer;
    }

    .teams-li-1,
    .teams-li-2,
    .teams-li-3,
    .teams-li-4,
    .teams-li-5,
    .teams-li-6,
    .teams-li-7 {
        display: none;
    }

    #tablet-small-teamboxen1,
    #tablet-small-teamboxen2 {
        display: flex;
    }

    #tablet-big-teamboxen1,
    #tablet-big-teamboxen2,
    #desktop-teamboxen1,
    #desktop-teamboxen2 {
        display: none;
    }

    .teams-li-1 {
        margin-top: 10px;
        background-color: var(--grey75);
    }

    .teams-li-2 {
        background-color: var(--gold);
    }

    .teams-li-3 {
        background-color: #e4c877;
    }

    .teams-li-4 {
        background-color: #e8cf87;
    }

    .teams-li-5 {
        background-color: #eddaa1;
    }

    .teams-li-6 {
        background-color: #f4e9cb;
    }

    .teams-li-7 {
        background-color: var(--white);
    }

    .teamsUlLi-active {
        display: block;
    }

    .grid-content-2columns {
        grid-template-columns: 40% 50px calc(60% - 50px);
        grid-template-rows: 50vh;
        grid-template-areas:

            "inhalt margin bild";

        margin: 0 7% 0 7%;
    }

    #content1 {
        grid-area: inhalt;
        margin: 0 0 0 0;
        white-space: normal;
    }

    #content1 p {
        padding-right: 10px;
    }

    #img-slider1 {
        height: 100%;
    }

    #img-slider1 img {
        height: 100%;
    }

    #dots1,
    #dots2,
    #dots3 {
        display: none;
    }

    #more1,
    #more2,
    #more3 {
        display: inline;
    }

    .grid-content-4columns {
        grid-template-columns: 25% 20px calc(25% - 20px) 20px calc(25% - 20px) 20px calc(25% - 20px);
        grid-template-areas:

            "inhalt margin bild1 margin2 bild2 margin3 inhalt2";

        margin: 0 7% 100px 7%;
        grid-template-rows: 50vh;
    }

    .grid-content-4columns p.tablet-small {
        height: 50vh;
    }

    #content2 {
        margin: 0;
    }

    .content2-wrapper,
    .content3-wrapper {
        overflow-y: auto;
        padding-right: 10px;
        height: 100%
    }

    .grid-content-4columns-bild1 {
        grid-area: bild1;
    }

    .grid-content-4columns-bild1>img {
        height: 100%;
    }

    .grid-content-4columns-bild2 {
        grid-area: bild2;
    }

    .imgcontainer>img {
        height: calc(50% - 10px);
    }

    .imgmargin {
        margin-bottom: 20px;
    }

    #content3 {
        grid-area: inhalt2;
    }

    .grid-content-3columns-2 {
        display: grid;
        grid-template-columns: 25% 20px calc(50% - 20px) 6px calc(12.5% - 6px) 6px calc(12.5% - 6px);
        grid-template-areas:

            "inhalt margin slider margin2 boxen1 margin3 boxen2";

        margin: 0 7% 140px 7%;
    }

    #content4 {
        grid-area: inhalt;
        padding-right: 10px;
        height: 100%;
    }

    .teams-slider {
        grid-area: slider;
        height: 100%;
    }

    .teamboxen1-desktop {
        grid-area: boxen1;
        display: flex;
        height: 100%;
    }

    .teamboxen-wrapper {
        height: 100%;
    }

    .teamboxen2-desktop {
        grid-area: boxen2;
        display: flex;
    }

    .teamboxen {
        background-color: transparent;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        opacity: 100%;
        width: 100%;
        height: 100%;
    }

    .teambox {
        margin-bottom: 6px;
        height: calc((100% - 3 * 6px) / 4);
    }

    .teamboxen-mobile {
        display: none;
    }

    .grid-content-3columns {
        display: grid;
        grid-template-columns: 25% 20px calc(50% - 20px) 20px calc(25% - 20px);
        grid-template-rows: 50vh;
        grid-template-areas:

            "inhalt margin bild1 margin2 bild2";

        margin: 0 7% 0 7%;
    }

    #grid-content-3columns-bild1 {
        grid-area: bild1;
    }

    #grid-content-3columns-bild2 {
        grid-area: bild2;
    }

    #grid-content-3columns-bild1>img,
    #grid-content-3columns-bild2>img {
        height: 100%;
    }

    #content5 {
        margin: 0 0 0 0;
    }

    .player-slider-margin1 {
        margin-bottom: 80px;
    }

    .kontakt-content {
        margin: 100px 30% 100px 30%;
    }

    .form {
        display: grid;
        grid-template-columns: calc(50% - 10px) 20px calc(50% - 10px);
        grid-template-areas:

            "form margin img";

        margin: 0 15% 100px 15%;
        grid-template-rows: 50vh;
    }

    form{
        position: relative;
    }

    .submitbutton{
        position: sticky;
        bottom: 0;
        left: 0;
    }

    .form-img {
        grid-area: img;
        height: 100%;
        width: 100%;
        object-fit: cover;
        max-height: 50vh;
    }

    /* tablet-small footer */

    footer{
        padding: 25px 20px;
    }

    .footer-logo {
        max-height: 70%;
    }
    
    .adress {
        display: flex;
        flex-direction: column;
        margin-left: 30px;
    }
    
    .social-logo1 {
        margin-left: 90px;
    }
    
    .social-logo2 {
        margin-left: 15px;
    }
    
    .facebook-logo {
        height: 30px;
    }
    
    .instagram-logo {
        height: 30px;
    }
}

@media only screen and (min-width: 1070px){
    #content5 {
      height: 90%;
    }
}

/* tablet-big */
@media only screen and (min-width: 1150px) {
    .mobile,
    .mobile-inline,
    .tablet-small,
    .desktop {
        display: none !important;
    }

    .tablet-big {
        display: block !important;
    }

    #tablet-small-burgerbutton {
        display: none;
    }

    .jump {
        width: 0;
    }

    #content2{
        height: 100%;
    }

    .grid-content-2columns p {
        overflow-y: auto;
    }

    #tablet-big-teamboxen1,
    #tablet-big-teamboxen2 {
        display: flex;
    }

    #tablet-small-teamboxen1,
    #tablet-small-teamboxen2,
    #desktop-teamboxen1,
    #desktop-teamboxen2 {
        display: none;
    }
}

/* desktop */
@media only screen and (min-width: 1280px) {

    html {
        width: calc(100vw - 14px);
    }

    .mobile,
    .mobile-inline,
    .tablet-small,
    .tablet-big {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }

    .grid-content-2columns {
        grid-template-columns: 40% 50px calc(60% - 50px);
        grid-template-rows: 50vh;
        grid-template-areas:

            "inhalt margin bild";

    }

    .grid-content-2columns p {
        height: 100%;
        overflow: auto;
    }

    .grid-content-4columns .content2-wrapper,
    .grid-content-4columns .content3-wrapper {
        height: 100%;
        overflow: auto;
    }

    .kontakt-content {
        margin: 100px 35% 100px 35%;
    }

    #desktop-teamboxen1,
    #desktop-teamboxen2 {
        display: flex;
    }

    #tablet-small-teamboxen1,
    #tablet-small-teamboxen2,
    #tablet-big-teamboxen2,
    #tablet-big-teamboxen2 {
        display: none;
    }

    .form {
        margin: 0 20% 200px 20%;
      }
}

@media only screen and (min-width: 1500px) {

    nav.tablet-big>ul,
    nav.desktop>ul {
        margin-right: 150px;
    }

    .grid-content-2columns {
        grid-template-rows: 50vh;
    }

    .grid-content-3columns-2 {
        display: grid;
        grid-template-columns: 25% 15px calc(55% - 42px) 21px 10% 6px 10%;
        margin: 0 7% 100px 7%;
    }
}

/* Hier werden die Bilderhöhennachgebessert */

@media only screen and (min-width: 770px) and (max-width: 900px) {
    .grid-content-2columns,
    .grid-content-3columns-2,
    .grid-content-3columns,
    .grid-content-4columns {
        grid-template-rows: 30vh;
    }

    .grid-content-4columns {
        grid-template-columns: 25% 20px calc(25% - 20px) 10px calc(25% - 10px) 10px calc(25% - 10px);
    }

    .imgmargin{
        margin-bottom: 10px;
    }

    .imgcontainer > img {
        height: calc(50% - 5px);
      }

      .form{
        margin: 0 7% 100px 7%;
      }

      .form{
        grid-template-rows: 35vh;
      }
}

@media only screen and (min-width: 900px) and (max-width: 1200px) {
    .grid-content-2columns,
    .grid-content-3columns-2,
    .grid-content-3columns,
    .grid-content-4columns {
        grid-template-rows: 40vh;
    }

    .form{
        grid-template-rows: 35vh;
      }

    #content5 {
        overflow-y: auto;
        height: 80%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px)  {
    .grid-content-2columns,
    .grid-content-3columns-2,
    .grid-content-3columns,
    .grid-content-4columns {
        grid-template-rows: 50vh;
    }

    .form {
        grid-template-rows: 40vh;
    }
}

@media only screen and (min-width: 1400px) {
    .grid-content-2columns,
    .grid-content-3columns-2,
    .grid-content-3columns,
    .grid-content-4columns {
        grid-template-rows: 60vh;
    }

    .form{
        grid-template-rows: 50vh;
        margin: 0 20% 200px 20%;
      }
}

@media only screen and (min-width: 1800px) {
    .grid-content-2columns,
    .grid-content-3columns-2,
    .grid-content-3columns,
    .grid-content-4columns {
        grid-template-rows: 70vh;
    }

}

@media only screen and (min-width: 2300px) {

    .form{
        grid-template-rows: 50vh;
        margin: 0 30% 200px 30%;
      }
}


