@media only screen and (min-width: 768px) {
    html {
        font-size: 18px;
    }

    .getStartedPseudoForm a.btn {
        min-width: auto;
    }

    /* ---------------------------------------------------------------------------------------------------- */
    /* Header */

    body > header {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        place-items: center;

        padding-left: 12vw;
        padding-right: 12vw;
        padding-top: 59px;
        padding-bottom: 41px;
    }

    body > header > nav {
        place-items: center;
    }

    body > header > nav > ul {
        list-style: none;

        margin-bottom: 0;
        padding: 0;
    }

    body > header > nav > ul > li {
        display: inline;

        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }

    body > header > nav > ul > li > a {
        color: #000;
        text-decoration: none;
    }

    body > header > nav > ul >li > a:hover {
        text-decoration: none;

        color: #ef7800;
    }

    body > header > div.navigation-button-group > a {
        padding-left: 15px;
        padding-right: 15px;
    }

    body > header > div.navigation-button-group > a:first-child {
        margin-right: 1rem;
    }

    #profile {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
    }

    .feedbackButton {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loginButton {
        padding-left: 16px;
        padding-right: 16px;
    }

    .getStartedPseudoForm {
        margin-top: 2rem;
        margin-bottom: 4rem;
        display: grid;
        grid-template-columns: 350px 125px;
    }

    .getStartedPseudoForm > input {
        margin-right: -3rem;
        padding-left: 1rem;

        border-width: 0;
        border-radius: 2rem;
    }


    .getStartedPseudoForm > a {
        color: white;
        padding-left: 0;
        padding-right: 0;
    }

    .getStartedPseudoForm > a > p {
        margin: 0;
    }

    .getStartedPseudoForm > a > img {
        display: none;
    }


    ul.whitedotted {
        list-style: none;
        margin-left: -2rem;
        width: 300px;
    }

    ul.whitedotted > li {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: dotted 2px #fff;
        padding-left: 1rem;
        font-weight: normal;
    }

    ul.whitedotted > li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    ul.whitedotted > li::before {
        content: "\2022"; color: #EF7800;
        display: inline-block; width: 1rem;
        margin-left: -1rem
    }

    .big-title {
        font-size: 60px;
        line-height: 65px;
    }

    .title {
        text-align: center;

        margin-top: 2rem;

        font-size: 35px;
        font-weight: normal;
    }

    p.alt-text {
        font-size: 20px;
    }

    h4 {
        color: #ef7800;

        font-size: 25px;
        margin: 0;
    }

    .line {
        border-style: solid;
        border-width: 3px;
        border-image-source: linear-gradient(to right, #e3090b, #ef7800);
        border-image-slice: 1;

        margin-top: 2rem;
    }

    p.sub-line {
        font-size: 25px;
        line-height: 1.4;
        color: rgba(10, 10, 10, 0.4);
        text-align: center;

        padding-left: 1rem;
        padding-right: 1rem;
    }


    /* ---------------------------------------------------------------------------------------------------- */
    /* Articles */

    /* .dark-background {
        background-image: linear-gradient(129deg, #ededed, #faf9fb 51%, #ededed 100%);
    } */

    article:not(.main-content) {
        display: grid;
        justify-content: center;
    }

    article div.container{
        width: 70vw;
        min-width: 800px;
        max-width: 1200px;
    }

    main > article:not(.main-content) {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    main > article:not(.main-content) div.content-wrapper {
        margin-top: 3rem;
    }

    main > article:not(.main-content) div.content-wrapper .sub-line{
        text-align: left;
        padding-left: 0;
    }

    main article div.content-wrapper {
        margin-top: 2rem;
    }

    main > article.main-content > article:first-child > div.container > div.line {
        margin-top: 10rem;
        margin-bottom: 6rem;
    }

    main > article.main-content > article:last-child > div.container > div.line {
        margin-bottom: 10rem;
    }

    main > article.main-content > article:first-child > div.container {
        padding-top: 4rem;
        margin-top: 10rem;

        border-image-source: linear-gradient(to right, #e3090b, #ef7800);
        border-image-slice: 1;

        border-top: solid 6px; /* 2px would be technically correct, but the border appears then to small according to the layout ??? */
        border-right-width: 0px;
        border-bottom-width: 0px;
        border-left-width: 0px;
    }
    main > article.main-content > article:first-child {
        padding-top: 0;
    }
    main > article.main-content > article {
        padding-top: 3rem;
        padding-bottom: 0.5rem;
    }

    article.main-content article div.container > footer.button-wrapper > a{
        min-width: 10.7rem;
        flex-shrink: 0;
    }

    div.container > div.button-wrapper {
        justify-content: center;
    }

    div.container > div.button-wrapper > a {
        min-width: 14.6rem;
        flex-shrink: 0;
    }

    main > article > div.container > div.content-wrapper {
        display: grid;
        grid-template-areas: 'left right';
        grid-gap: 6rem;
    }

    /* main > article.main-content div.content-wrapper {
        grid-template-columns: 1fr 1fr;
    } */

    main > article > div.container > div.content-wrapper figure {
        grid-area: right;
    }

    main > article > div.container > div.content-wrapper > div {
        grid-area: left;
    }

    main.home article:not(.main-content) div.content-wrapper > div {
        grid-area: right;
    }

    main.home article:not(.main-content) div.content-wrapper figure {
        grid-area: left;
    }

    main.benefitsforsuppliers article:not(.main-content) div.content-wrapper > div {
        grid-area: right;
    }

    main.benefitsforsuppliers article:not(.main-content) div.content-wrapper figure {
        grid-area: left;
    }

    /* article.article-imagecontent:nth-child(odd) div.content-wrapper {
        grid-template-areas: 'right left';
    } */


    article.main-content article div.container {
        display: grid;
        grid-template-areas: 'header  image'
        'content image'
        'footer  image';
        /* grid-gap: 6rem; */
        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr auto;
    }
    article.main-content article div.container figure {
        margin-left: 4rem;
    }

    article.main-content article.article-imagecontent:nth-child(odd) div.container {
        display: grid;
        grid-template-areas: 'image header'
                             'image content'
                             'image footer';
        /* grid-gap: 6rem; */
        grid-template-columns: auto 1fr;
        grid-template-rows: auto 1fr auto;
    }
    article.main-content article div.container figure {
        margin-right: 4rem;
    }

    article.main-content article div.container figure{
        grid-area: image;
    }
    article.main-content article div.container header {
        grid-area: header;
    }
    article.main-content article div.container div.content-wrapper{
        grid-area: content;
    }
    article.main-content article div.container {
        grid-area: footer;
    }

    main > article.main-content + article {
        text-align: center;
    }

    main > article.main-content > article > div > div {
        position: relative;
    }

    main > article.main-content > article > div > div > div > figure.illustration {
        position: absolute;
        left: 0;
    }

    .content-wrapper-whoweare {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;

        margin-top: 3rem;
    }

    .content-wrapper-whoweare > .profile > .image-collection > img {
        width: 100%;
    }
    .content-wrapper-whoweare > .profile > .illustration {
        display: grid;
        place-content: center;
    }
    .content-wrapper-whoweare > .profile > .illustration > img {
        width: 100%;
        max-width: 332px;
    }

    div.container {
        margin-left: 15vw;
        margin-right: 15vw;
    }

    div.button-wrapper, footer.button-wrapper {
        display: flex;

        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    div.button-wrapper > a, footer.button-wrapper > a {
        margin-right: 1rem;
    }

    div.button-wrapper > a:last-child, footer.button-wrapper > a:last-child {
        margin: 0;
    }

    article figure.image-collection {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        margin: 0;
    }
    article figure.illustration {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        margin: 0;
    }

    article figure.image-collection img{
        max-width: 400px;

        margin-bottom: 1rem;
    }
    article figure.illustration img{
        width: 332px;

        margin-bottom: 1rem;
    }

    article figure.image-collection img:last-child {
        margin: 0;
    }
    article figure.illustration img:last-child {
        margin: 0;
    }

    .feedbackButton {
        margin-right: 1rem;
    }

    /* ---------------------------------------------------------------------------------------------------- */
    /* Custom Articles */

    main.disclaimer >
        article >
        div,
    main.termsandconditions >
        article >
        div,
    main.privacypolicy >
        article >
        div.container,
    main.disclaimer >
        article >
        div,
    main.termsandconditions >
        article >
        div,
    main.privacypolicy >
        article >
        div.container
    {
        width: 60vw;
        max-width: 52rem;
    }

     /* H2 inside of info pages */
     main.disclaimer >
        article >
        div
        h2,
    main.termsandconditions >
        article >
        div
        h2,
    main.privacypolicy >
        article >
        div.container
        h2,
    main.disclaimer >
        article >
        div
        h2,
    main.termsandconditions >
        article >
        div
        h2,
    main.privacypolicy >
        article >
        div.container
        h2
    {
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

     /* H3 inside of info pages */
     main.disclaimer >
        article >
        div
        h3,
    main.termsandconditions >
        article >
        div
        h3,
    main.privacypolicy >
        article >
        div.container
        h3,
    main.disclaimer >
        article >
        div
        h3,
    main.termsandconditions >
        article >
        div
        h3,
    main.privacypolicy >
        article >
        div.container
        h3
    {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    /* H4 inside of info pages */
    main.disclaimer >
        article >
        div
        h4,
    main.termsandconditions >
        article >
        div
        h4,
    main.privacypolicy >
        article >
        div.container
        h4,
    main.disclaimer >
        article >
        div
        h4,
    main.termsandconditions >
        article >
        div
        h4,
    main.privacypolicy >
        article >
        div.container
        h4
    {
        color: #000;
        font-size: 1rem;

        margin-top: 1.5rem;
        margin-bottom: .25rem;
    }

    /* UL - Tags inside of info pages */
    main.disclaimer >
        article >
        div
        ul,
    main.termsandconditions >
        article >
        div
        ul,
    main.privacypolicy >
        article >
        div.container
        ul,
    main.disclaimer >
        article >
        div
        ul,
    main.termsandconditions >
        article >
        div
        ul,
    main.privacypolicy >
        article >
        div.container
        ul
    {
        margin-left: 0;
        margin-bottom: 3rem;
    }

    /* OL - Tags inside of info pages */
    main.disclaimer >
        article >
        div
        ol,
    main.termsandconditions >
        article >
        div
        ol,
    main.privacypolicy >
        article >
        div.container
        ol,
    main.disclaimer >
        article >
        div
        ol,
    main.termsandconditions >
        article >
        div
        ol,
    main.privacypolicy >
        article >
        div.container
        ol
    {
        margin-left: 1rem;
        margin-bottom: 3rem;
    }

    /* OL > LI - Tags inside of info pages */
    main.disclaimer >
        article >
        div
        ol >
        li,
    main.termsandconditions >
        article >
        div
        ol >
        li,
    main.privacypolicy >
        article >
        div.container
        ol >
        li,
    main.disclaimer >
        article >
        div
        ol >
        li,
    main.termsandconditions >
        article >
        div
        ol >
        li,
    main.privacypolicy >
        article >
        div.container
        ol >
        li
    {
        margin-bottom: .5rem;
    }

    section#gtc-contact-data > p {
        margin-bottom: -1rem;
    }

    article.teaser-image {
        position: relative; /* to set ananchor for the image position */
        top: 0;
        left: 0;
        /*provisoric height*/
        min-height: 500px;

        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    article.teaser-image figure {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -100;
        width: 100%;
        height: 100%;
        overflow: hidden;
        margin: 0;
    }

    article.teaser-image figure img{
        width: 100%;
        height: 100%;
        overflow: hidden;
        object-fit: cover;
        object-position: center top;
    }

    /* ---------------------------------------------------------------------------------------------------- */
    /* Half Circle Rules */

    /* Temporary because of new Textblocks */
    main article#innovation {
        background: none;
    }

    main > article:first-of-type:not(.teaser-image) {
        background: url('/img/view/halfcircles/circle-normal-dark-top-left.svg') top left,
                    url('/img/view/halfcircles/cicrle-normal-dark-bottom-right.svg') bottom right,
                    linear-gradient(130deg, #ededed, #faf9fb 51%, #ededed);
        background-repeat: no-repeat;
    }

    main.about > article:last-of-type {
        background: url('/img/view/halfcircles/circle-normal-dark-top-left.svg') top left,
        linear-gradient(130deg, #ededed, #faf9fb 51%, #ededed);
        background-repeat: no-repeat;
    }

    main > article.teaser-image {
        background: url('/img/view/halfcircles/circle-teaser-dark-bottom-right.svg') bottom right;
        background-repeat: no-repeat;
    }

    main.home > article.circle-teaser-light-top-right {
        background: url('/img/view/halfcircles/circle-teaser-light-top-right.svg') top right;
        background-repeat: no-repeat;
    }

    main.home > article.circle-teaser-dark-bottom-left {
        background: url('/img/view/halfcircles/circle-teaser-dark-bottom-left.svg') bottom left,
        linear-gradient(130deg, #ededed, #faf9fb 51%, #ededed);
    background-repeat: no-repeat;
    }

    main.home > article:last-of-type {
        background: url('/img/view/halfcircles/circle-teaser-light-top-left.svg') top left;
        background-repeat: no-repeat;
    }

    main.about > article.cicrle-normal-light-top-right-and-circle-normal-light-bottom-left {
        background: url('/img/view/halfcircles/circle-normal-light-top-right.svg') top right,
        url('/img/view/halfcircles/circle-normal-light-bottom-left.svg') bottom left;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.cicrle-normal-light-top-right {
        background: url('/img/view/halfcircles/circle-normal-light-top-right.svg') top right;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.circle-normal-light-bottom-left {
        background: url('/img/view/halfcircles/circle-normal-light-bottom-left.svg') bottom left;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.circle-subarticle-light-bottom-left {
        background: url('/img/view/halfcircles/circle-subarticle-light-bottom-left.svg') bottom left;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.circle-subarticle-light-top-left {
        position: relative;
        top: -1px;
        background: url('/img/view/halfcircles/circle-subarticle-light-top-left.svg') top left;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.circle-subarticle-light-bottom-right {
        background: url('/img/view/halfcircles/circle-subarticle-light-bottom-right.svg') bottom right;
        background-repeat: no-repeat;
    }

    main > article.main-content > article.circle-subarticle-light-top-right {
        position: relative;
        top: -1px;

        background: url('/img/view/halfcircles/circle-subarticle-light-top-right.svg') top right;
        background-repeat: no-repeat;
    }

    .mobile-item {
        display: none;
    }

    div.bg-circle-teaser-dark-bottom-right {
        display: none;
        /* z-index: -100;
        position: absolute;
        scale: 60%;
        right: -172px;
        bottom: -100px; */
    }

    div.bg-circle-teaser-light-top-right {
        display: none;
        /* z-index: -100;
        position: absolute;
        scale: 60%;
        right: -176px;
        top: 661px; */
    }

    div.bg-circle-normal-dark-top-left {
        display: none;
        /* z-index: -100;
        position: absolute;
        scale: 60%;
        right: 1px;
        top: 1px; */
    }

    /* End of Half Circle Rules */
    /* ---------------------------------------------------------------------------------------------------- */

    #smartertogether > div {
        margin-left: 20%;

    }

    #smarter {
        margin: 0;
        margin-bottom: -1.5rem;
    }

    #together {
        margin: 0;
        color: #fff;
    }

    .form-control {
        display: block;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0.25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    #loginButtonModal #loginSubmitButton {
        width: 100%;
    }

    div.feedback-button {
        position: fixed;
        top: 36%;
        left: -38px;
        background-color: #fff;
        padding: .25rem 1rem;
        transform: rotate(-90deg);
        border-bottom: solid 3px #ef7800;
        padding: .2rem 1rem .3rem 1rem;
        box-shadow: 0px 0px 42px 0.5px rgba(0, 0, 0, 0.42);
    }

    div.feedback-button > a {
        text-decoration: none;
    }

}