@font-face {
    font-family: PPNeueMontreal;
    src: url(../font/PPNeueMontreal-Book.ttf);
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: PPNeueMontreal;
    src: url(../font/PPNeueMontreal-Medium.ttf);
    font-style: normal;
    font-weight: 530;
    font-display: swap;
}


@font-face {
    font-family: PPNeueMontreal;
    src: url(../font/PPNeueMontreal-SemiBold.ttf);
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}


*,
body {
    font-family: PPNeueMontreal, sans-serif;
    font-size: 16px;
    font-style: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    line-height: 1.3;
    margin: 0;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #30343e85; 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #9EFF00; 
}



body {
    transition: .2s ease;
}

:root {
    --primary: #1e212b;
    --primary-op: #30343e85;
    --akzent: #9EFF00;
    --darkblue: #003A51
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrap {
    position: relative;
}

.page-wrap:after {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -2;
}

a,
p {
    font-size: 1rem;
}


a {
    color: #fff;
    text-decoration: none;
    outline: 0;
    transition: .2s ease;
}


p {
    line-height: 1.2;
    margin: 0;
}




/** Pfeil für Dropdown
.lang li.active:after {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    align-self: center;
    display: flex;
    margin-left: .5rem;
    transition: .2s ease;
} 
.lang:hover li.active:after, .lang:focus li.active:after { 
    content: '';
    border-top: 6px solid var(--akzent);
    transform: rotate(90deg);
}    
**/

/** hover dropdown

.lang li {
    opacity: 0;
    width: 0;
    height: 0;
    display: flex;
    overflow: hidden;
    transition: .2s ease;
    padding: 10px 5px;
}

.lang li.active {
    opacity: 1;
    width: auto;
    height: auto;
    display: flex;
    overflow: initial;
    transition: .2s ease;
    order: 3;
    margin-left: 10px;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.2;
}

.lang:hover li, .lang:focus li {
    opacity: 1;
    width: auto;
    height: auto;
    display: flex;
    overflow: initial;
} **/



.lang {
    list-style: none;
    display: flex;

}

.lang li {
    align-self: center;
}


.lang li a,
.lang li p {
    padding: 5px;
    font-size: 1.6rem;
    transition: .2s ease;
    color: #fff;
    line-height: 1.2;
    overflow: initial;
    cursor: pointer;
}

.lang li.active {
    display: flex;
    transition: .2s ease;
    font-size: 1.6rem;
    line-height: 1.2;   
    align-items: center;
}

.lang li.active p,
.lang li.active a {
    color: var(--akzent)
}


.lang li:nth-child(2):before, .lang li:nth-child(3):before  {
    content: '|';
    color: #fff;
    font-size: 1.6rem;
    margin: 0 10px;
    line-height: 1.2;
    align-self: center;
}

.lang a:hover,
.lang:hover li,
.lang p:hover {
    color: var(--akzent)
}

.lang.mobile {
    display: none;
}

.no-other-languages.lang li.active:after  {
    content: none;
}

.no-other-languages.lang a:hover, .no-other-languages.lang:hover li, .no-other-languages.lang p:hover {
    color: #fff;
}


.content {
    width: 100%;
    max-width: 1900px;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

header {
    display: flex;
    position: relative;
    flex-flow: row wrap;

}

nav {
    align-items: center;
    position: absolute;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    align-items: center;
    width: 100%;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 10;

}

nav.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    background: var(--primary-op);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 1s;
    backdrop-filter: blur(8px) brightness(60%);
    -webkit-box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
}

nav.sticky .logo-wrap {
    max-width: 200px;
}

.line-wrap {
    width: 98%;

}

.line-wrap img {
    width: 100%;
}

h1 {
    color: #fff;
    font-weight: 500;
    font-size: 50px;
    margin-bottom: 0;
}

.h1-wrap {
    max-width: 800px;
    padding: 3rem 2rem 0;
    margin: auto;
}

.main {
    display: flex;
    flex-flow: row wrap;
    margin: auto;
    justify-content: center;
    margin-top: 3rem;
}


.flex {
    display: flex;
    flex-flow: row;
}

.n-bg {
    z-index: -1;
    position: fixed;
    width: 100vw;
    left: 0;
    right: 0;
    bottom: 0;
}

.n-bg svg {
    fill: var(--akzent);
    opacity: 0.1;
}

.f-center {
    justify-content: center;
}

.f-center-v {
    align-items: center;
}


.logo-wrap {
    width: 100%;
    max-width: 240px;
    display: flex;
}


.logo-wrap img {
    width: 100%;
    height: auto;
    margin: auto;
    min-width: 150px;
}

.catalogue-wrap .logo-wrap.big {
    height: 23px;

}

.img-wrap img {
    width: 100%;
    height: auto;
    margin: auto;
}

.img-tap {
    max-width: 80px;
    width: 100%;
    height: auto;
}

.tap {
    position: absolute;
    bottom: -32px;
    right: 0;
}

.rel {
    position: relative;
}


.part {
    padding-top: 2rem;
    padding-bottom: 2rem
}


.page {
    width: 100%;
    height: 850px;
    margin: auto;
    padding: 1rem;
}

.page-wide {
    display: flex;
}

.link {
    color: var(--font-blue);
    transition: .2s ease;
}

.link:hover {
    color: var(--akzent);
}


.button {
    background-color: var(--akzent);
    padding: 1rem 2rem;
    color: #fff;
    text-align: center;
    display: block;
    margin: 1rem 0;
    transition: .2s ease;
    width: fit-content;
}

.button:hover {
    background-color: #005899;
}


.front {
    background-color: var(--primary);
    height: 100%;
}

.start-video.hoch {
    width: 100%;
    height: 100vh;
    display: none;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--primary);
}

.start-video.quer {
    height: 100vh;
    width: 100vw;
    display: flex;
    overflow: hidden;
}

.start-video.hoch video {
    margin: 0 auto;
    max-width: 100vw;
    max-height: 150vh;
    object-fit: cover;

}

.start-video.hoch video[poster] {
    object-fit: fill;

}

.start-video.quer video {
    margin: 0 auto;
    max-width: 105%;
    max-height: 105%;
    object-fit: cover;
    overflow: hidden;
}


.page-wrap {
    width: 80%;
    margin: 0;
    display: flex;
    align-items: center;
}

.page {
    width: 100%;
}



.blurbox {
    width: 100%;
    backdrop-filter: blur(8px) brightness(60%);
    -webkit-box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    border-radius: 14px;
    padding: 2rem;
    margin: 2rem auto 7rem;
    background: #1a1d26;
}

.filter-wrap {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.filter {
    /**background-color: var(--primary-op);
    backdrop-filter: blur(8px) brightness(60%);
    -webkit-box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19); **/
    border: 1px solid #fff;
    border-radius: 30px;
    padding: .5rem 1.5rem;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: .5rem;
    cursor: pointer;
    transition: .2s ease;
    line-height: 1;
}


.filter:hover,
.filter:focus,
.filter.active {
    background-color: var(--akzent);
    border: 1px solid var(--akzent);
    color: #000
}


.info {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 20%;
    padding: 2rem 2rem 2rem 4rem;
}

.info .logo-wrap {
    width: 100%;
}


.qr-wrap {
    height: auto;
    width: 100%;
    display: flex;
    flex-flow: column;
    max-width: 200px;
}

.qr-wrap p,
.qr-wrap a {
    color: #fff;
    line-height: 1.2;
    font-size: 1.2rem;
}

.qr {

    background: #fff;
    display: flex;

    border-radius: 5px;
    margin-top: 1.4rem;
    width: 180px;
    height: 180px;
}

.qr img {
    width: 100%;
    height: 100%;
}


.catalogue-view {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, 18.7%);
    justify-content: space-between;
    grid-gap: 5px;
}


.catalogue-wrap {
    padding: .5rem .5rem 1rem .5rem;
    -webkit-box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    cursor: pointer;
    margin-bottom: 2rem;
    opacity: 0.8;
    backdrop-filter: blur(5px);
    background: linear-gradient(66deg, #2a2f41db, #24273370) padding-box, linear-gradient(306deg, #6c6c6c00, #d2d6e520) border-box;
    border: 2px solid transparent;
    border-radius: 12px;
}


.catalogue-wrap:hover {
    background-color: #3437418c;
    opacity: 1;
}

.img-wrap.catalogue {
    height: auto;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
}


.img-wrap.catalogue img {
    object-fit: cover;
    cursor: pointer;
    transition: .2s ease;
}




.catalogue-wrap .link {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 1.5rem 0 0;
}


.catalogue-wrap .logo-wrap {
    height: 30px;
    margin: 1.5rem 0 0;
}


.catalogue-wrap .logo-wrap img {
    height: 100%;
    width: auto;
    min-width: initial;
    margin: initial;
}

.catalogue-wrap.smaller .logo-wrap {
    max-width: 140px;
}

.catalogue-wrap.smaller .logo-wrap img {
    width: 100%;
    height: auto;
    margin: auto;
}


.catalogue-wrap:hover {
    color: var(--akzent);
}

.catalogue-wrap:hover .link {
    color: var(--akzent);
}

.catalogue-view {
    flex-flow: row wrap;
}

.catalogue-det {
    padding-left: .5rem;
    display: flex;
    flex-flow: column;
}

.detail-header .content {
    padding-top: 2rem;
    align-items: center;
}

.detail h1 {
    font-size: 40px;
}

.backlink {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.backlink img {
    margin-right: 1rem;
    height: 20px;
}

.dark-bg {
    background: var(--primary);
    /** background: radial-gradient(circle, rgba(50, 55, 70, 1) 4%, rgba(30, 33, 43, 1) 72%, rgba(19, 21, 25, 1) 99%);**/
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100vh;
}


.wrap {
    max-width: 100%
}

.totop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-op);
    backdrop-filter: blur(8px) brightness(60%);
    -webkit-box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    padding: 10px;
    transition: .2s ease;
    cursor: pointer;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.totop.sticky {
    opacity: 1;
    width: 50px;
    height: 50px;
    overflow: initial;
}


.totop img {
    width: auto;
    height: 100%;

}
.top-black {
    display: none;
}

.totop:hover .top-white, .totop:focus .top-white {
    display: none;
}

.totop:hover .top-black, .totop:focus .top-black {
    display: flex;
}


.totop:hover {
    background-color: var(--akzent);
}

.totop:hover svg * {
    fill: #000;
}

/*** Bugfix Querstele ***/
@media (width: 1920px) and (height:1080px) {
* {
    /*** box-shadow: none !important; ***/
   /***  border-radius: 0 !important; ***/
    backdrop-filter: none !important; 
}

.catalogue-wrap {
    background: #262834 !important;
}

.content {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}
nav.sticky {
    background: #191c24de
}
}
/*** Bugfix Hochkantstele ***/
@media (orientation:portrait) and (min-width: 2000px) {
    
    * {
        backdrop-filter: none !important; 
    }

    nav.sticky {
        background: #191c24de
    }
}



/** STELE HOCHKANT 
@media all and (orientation:landscape) {
4k: 2.160 x4.096
3.840
 }

 @media all and (orientation:portrait) { … }


@media (min-width: 2100px)
    (min-aspect-ratio: 3/4) 
**/

/** STELE HOCHKANT **/
@media (max-width: 1200px) and (orientation:portrait) {
    .page {
        height: 94vh;
    }

    .page-wrap {
        max-width: 97%;
    }

}


/**
@media (max-width: 1500px) and (orientation:landscape) {
    **/

@media (max-width: 1500px) {
    h1 {
        font-size: 2rem;

    }


    .main {
        display: flex;
        flex-flow: row wrap;
        margin: auto;
        justify-content: center;
        margin-top: 6rem;
    }

    /** ansicht quer - catalogue 100% **/

    .page {
        width: 100%;
        height: 70vh;
        max-height: 1100px;
        padding:0;
    }


    header .content {
        padding-top: 2rem;
    }

    .catalogue-view {
        grid-template-columns: repeat(auto-fill, 31%);
    }


    .detail .catalogue-wrap {
        max-width: 130px;
        padding-bottom: 2rem;
    }

    header .content {

        flex-flow: row wrap;
    }

    .qr-wrap {
        max-width: initial;

    }

    .qr {
        height: initial;
        width: 100%;
    }

    .info {

        padding: 2rem 1rem 2rem 3rem;
    }

    .page-wrap {
        width: 100%;

    }

    .home .h1-wrap {
        padding: 7rem 0 1rem;
        margin: initial;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%
    }

    .home nav {
        padding-top: 1.5rem;
    }

    .main {
        margin-top: 2rem;
    }

    .h1-wrap {
        padding: 7rem 2rem 1rem;
        margin: 0;
        max-width: initial;
    }
}

@media (max-width: 1100px) {

    .info {
        padding: 1rem 0rem 1rem 1rem;
    }


    .blurbox {
        flex-flow: row wrap;
    }

    .info {
        flex-flow: row;
        width: 100%;
        padding: 3rem 1rem 1rem;
    }


    .qr-wrap {
        max-width: initial;
        justify-content: flex-end;
        flex-flow: row;
    }

    .qr-wrap p {
        color: #fff;
        max-width: 30%;
        margin-right: 1rem;
        align-self: center;
    }


    .qr {
        margin: 0 0 0 2rem !important;
        width: 150px;
    }

    .info .logo-wrap {
        max-width: 200px;
    }

    .catalogue-wrap {
        margin-bottom: 1rem;
    }

    nav {
        padding-top: 2rem;
    }


}

@media (min-width: 1600px) {
.h1-wrap {
    max-width: 1000px;
}
}

/** STELE HOCHKANT 4K **/

@media (orientation:portrait) and (min-width: 2000px) {

    .totop {
        bottom: 3rem;
        right: 3rem;
    }
    
    .totop.sticky {
        width: 70px;
        height: 70px;
    }

    .blurbox {
        flex-flow: row wrap;
        padding: 4rem 3rem 3rem;
    }

    ::-webkit-scrollbar {
        width: 14px;
    }

    .detail h1 {
        font-size: 90px;
    }

    nav {
        padding-left: 6rem;
        padding-right: 6rem;
        padding-top: 5rem;
    }

    nav .logo-wrap {
        max-width: 500px;
    }

    nav.sticky .logo-wrap {
        max-width: 400px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .main {
        margin-top: 5rem;
    }

    .h1-wrap {
        width: 100%;
        max-width: initial;
        padding: 17rem 6rem 0;
    }

    .part {
        padding-top: 6rem;
    }

    h1 {
        font-size: 5rem;
        margin-bottom: 1rem;
        max-width: 1600px;
    }

    .filter {
        border: 1px solid #fff;
        border-radius: 50px;
        padding: 1rem 2.5rem;
        font-size: 3rem;
        color: #FFFFFF;
        margin: 1rem;
        cursor: pointer;
        transition: .2s ease;
    }

    .backlink img {
        margin-right: 2rem;
        margin-left: -1.5rem;
        height: 50px;
    }


    .lang li a,
    .lang li p,
    .backlink {
        font-size: 4rem;
    }
    


    .detail .catalogue-wrap {
        padding-bottom: 2.5rem;
    }

    .blurbox {
        margin: 2rem auto 7rem;
    }

    .info {
        padding: 6rem 1rem 1rem !important;
    }

    .page {
        height: 2300px;
    }

    .detail .subhead {
        font-size: 3rem;
        line-height: 1.2;
        width: 500px;
        padding-left: 1rem;
    }

    .info {
        flex-flow: row;
        width: 100%;
        padding: 2rem
    }

    .info .logo-wrap {
        max-width: 600px;
    }

    .qr-wrap a {
        font-size: 4rem;
    }

    .qr-wrap {
        max-width: initial;
        justify-content: flex-end;
    }

    .qr {
        width: 300px !important;
        height: 300px;
    }

    .qr-wrap p {
        color: #fff;
        font-size: 4rem;
        max-width: 30%;
        align-self: center;
    }

    .content {
        max-width: 2100px;
    }

    header .content {
        padding-top: 6rem;
        flex-flow: row wrap;
    }

    .catalogue-view {
        grid-template-columns: repeat(auto-fill, 23%);
    }

    .catalogue-det {
        padding-left: 1rem;
    }

    .catalogue-wrap {
        margin-bottom: 5rem;
        padding: 10px 10px 30px 10px;
    }

    .info .logo-wrap {
        max-width: 600px;
    }

    .l1sdfggo-wrap {
        max-width: 500px;
    }

    .catalogue-wrap .logo-wrap {
        height: 30px;
        margin: 2.5rem 0 0;
    }

    .catalogue-wrap .link {
        padding-top: 1rem;
        font-size: 2.2rem;
    }

    .flex.sticky .lang a,
    .flex.sticky .lang p,
    .flex.sticky .lang li:nth-child(2):before,
    .flex.sticky .lang li:nth-child(3):before {
        font-size: 3rem;
    }

    .lang li:nth-child(2):before, .lang li:nth-child(3):before {
        margin: 0 20px;
        font-size: 4rem;
        line-height: 1.2;
    }
}



@media (orientation:portrait) {
    .blurbox {
        flex-flow: row wrap;
    }

    .info {
        flex-flow: row;
        width: 100%;
        padding: 3rem 1rem 1rem;
    }

    .qr {
        margin: 0 0 0 2rem !important;
        width: 150px;
    }

    .qr-wrap {
        max-width: initial;
        justify-content: flex-end;
        flex-flow: row;
    }

    .qr-wrap p {
        color: #fff;
        max-width: 30%;
        margin-right: 1rem;
        align-self: center;
    }


    .start-video.hoch {
        display: flex;
        margin: auto;
    }

    .start-video.quer {
        display: none;
    }

    .page-wrap {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .wrap {
        max-width: 100%;
        width: 100%;
    }


}



@media (max-width: 900px) and (orientation: portrait) {

    .page {
        height: 80vh;
        padding: 0;
        width: 100%;
    }

    .start-video.hoch {
        width: 100vw;
        height: auto;
    }

    .catalogue-view {
        grid-template-columns: repeat(auto-fill, 48%);
    }

}



@media (max-width: 700px) and (orientation:portrait) {

    .catalogue-wrap {
        margin-bottom: 1rem;
    }

    .catalogue-wrap .link {
        font-size: 1.3rem;
    }

    .page {
        height: 700px;
        padding-top: 0;
    }

    .qr {
        max-width: 100px;
    }

    .info {
        width: 100%
    }

    .home .part {
        padding-top: 0;
        flex-flow: wrap;
    }
}

@media (max-width: 800px) {
    .h1-wrap {
        padding: 3rem 2rem 1rem;
        margin: 0;
    }

    .blurbox {

        margin: 0rem auto 7rem;
    }

    .detail h1 {
        font-size: 30px;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }

    nav {
        padding-top: 1rem;
    }
}

@media (max-width: 700px) {
    .filter-wrap {
        padding-bottom: 2rem;
    }

    .filter {
        padding: .2rem 1rem;
        margin: .3rem;
    }

    .content,
    nav,
    .home .h1-wrap,
    .h1-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .blurbox {
        flex-flow: row wrap;
    }

    .page-wrap {
        width: 100%;
    }

    .info {
        width: 100%;
    }

    .qr {
        display: none;
    }

    .qr-wrap p {
        max-width: initial;
        margin: 0 0 0 2rem;
    }

    .qr-wrap p a {
        text-decoration: underline;
    }
}


@media (max-width: 550px) {

  

    .lang {
        display: none;
    }

    .lang-drop ul{
        display: none;
        padding: 5px;
        margin: 10px 0 0 0;
        list-style-type: none;
        background: #1e212b;
        border-radius: 0  0 10px 10px;
        transition: all 1s;

    }

    .lang-drop.open ul {
        display: flex;
        flex-flow: column;
        position: absolute;
        top: 46px;
        right: 0;
        box-shadow: 4px 5px 7px -1px rgba(0, 0, 0, 0.19);
    }

    .lang-drop ul li a{
        padding: 10px 30px;
        display: block;
    }
    
    .lang.mobile li:before{
       content:none;
    }

    .lang.mobile {
        display: flex;
        position: relative;
    }
 
    .lang.mobile li.active:after {
        content: '';
        width: 0; 
        height: 0; 
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #fff;
        align-self: center;
        display: flex;
        margin-left: .5rem;
        transition: .2s ease;
    } 
    
    .lang.mobile.arrow li.active:after { 
        content: '';
        border-top: 6px solid var(--akzent);
        transform: rotate(90deg);
    }    
    .lang.mobile.arrow li.active p { 
        color: 6px solid var(--akzent);
       
    }   
   


    .lang.mobile li.active {
        opacity: 1;
        width: auto;
        height: auto;
        display: flex;
        overflow: initial;
        transition: .2s ease;
    }

    .lang.mobile li.active p {
            color: #fff
    }

    .no-other-languages.lang li.active:after  {
        content: none;
    }
    
    .no-other-languages.lang a:hover, .no-other-languages.lang:hover li, .no-other-languages.lang p:hover {
        color: #fff;
    }

    .page {
        height: 570px;
        padding-top: 0;
    }

    .main {
        margin-top: 2rem;
    }

    .info {
        flex-flow: row wrap
    }

    .qr-wrap {
        width: 100%;
        justify-content: initial;
    }

    .qr-wrap p {
        margin: 2rem 0 0 0;
    }

    .catalogue-view {
        grid-template-columns: repeat(auto-fill, 100%);
    }

    .catalogue-wrap .link {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .catalogue-wrap .logo-wrap img {
        height: auto;
        width: 100%;
    }

    .catalogue-wrap .logo-wrap, .catalogue-wrap .logo-wrap.big  {
        height: auto;
        width: 200px;
    }

    .catalogue-wrap.dkt .logo-wrap {
        height: auto;
        width: 100px;
    }

    .catalogue-wrap {
        margin-bottom: 2rem;
    }

    .logo-wrap {
        max-width: 200px;
    }

    .home .part {
        padding-top: 3rem;
    }

    .h1-wrap {
        margin: initial;
    }
}


@media (max-width: 450px) {
    .page {
        height: 530px;
        padding-top: 0;
    }

    .blurbox {
        padding: 1rem;
    }

    .filter {

        padding: .5rem 1rem;
        font-size: 1rem;
        margin: .2rem;
    }
}