@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap');

body {
    font-family: 'Titillium Web', sans-serif;
}

:root {
    --base-font-family: 'Titillium Web', sans-serif;
    --base-font-weight: 400;
    --base-font-size: 16px;
    --base-line-height: 150%;

    --head-font-family: 'Titillium Web', sans-serif;
    --head-font-weight: 400;
    --head-font-size: 100px;
    --head-line-height: 102px;
    --head-letter-spacing: 0%;
    --head-text-transform: uppercase;

    --h1-font-family: 'Titillium Web', sans-serif;
    --h1-font-weight: 300;
    --h1-font-size: 75px;
    --h1-line-height: 100%;
    --h1-letter-spacing: 0%;
    --h1-text-transform: uppercase;

    --h2-font-size: 38px;
    --h2-line-height: 47px;

    --h3-font-family: 'Titillium Web', sans-serif;
    --h3-font-weight: 400;
    --h3-font-size: 42px;
    --h3-line-height: 130%;
    --h3-letter-spacing: 0%;

    --h4-font-size: 20px;
    --h4-line-height: 130%;

    --h5-font-family: 'Titillium Web', sans-serif;
    --h5-font-weight: 400;
    --h5-font-size: 20px;
    --h5-line-height: 130%;

    --h6-font-size: 18px;
    --h6-line-height: 32px;


    /* color scheme */
    --dark: #1D1D1C;
    --light: #F1F1E8;

}

@media (max-width: 767px) {
    :root {
        --base-font-size: 12px;
        --base-line-height: 150%;

        --head-font-size: 40px;
        --head-line-height: 46px;

        --h1-font-size: 32px;
        --h1-line-height: 100%;

        --h2-font-size: 24px;
        --h2-line-height: 32px;

        --h3-font-size: 22px;
        --h3-line-height: 100%;

        --h4-font-size: 18px;
        --h4-line-height: 130%;

        --h5-font-size: 16px;
        --h5-line-height: 130%;

        --h6-font-size: 14px;
        --h6-line-height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        --head-font-size: 70px;
        --head-line-height: 80px;

        --h1-font-size: 56px;
        --h1-line-height: 100%;

        --h2-font-size: 30px;
        --h2-line-height: 40px;

        --h3-font-size: 38px;
        --h3-line-height: 100%;

        --h4-font-size: 24px;
        --h4-line-height: 130%;

        --h5-font-size: 18px;
        --h5-line-height: 130%;

        --h6-font-size: 16px;
        --h6-line-height: 30px;
    }
}

@media (min-width: 1025px) {
    :root {
        --head-font-size: 100px;
        --head-line-height: 100%;

        --h1-font-size: 85px;
        --h1-line-height: 100%;
    }
}

body {
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-family: var(--base-font-family);
    color: var(--light);
    max-width: 1280px;
    background-color: var(--dark);
    margin-inline: auto;
    transition: all 0.3s ease-out;
    margin: 0 auto;
}

sup {
    top: -0.6em;
    font-size: 61%;
    font-family: var(--base-font-family);
}

h1 {
    font-family: var(--h1-font-family);
    font-weight: var(--h1-font-weight);
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
    letter-spacing: var(--h1-letter-spacing);
    margin-bottom: 75px;
}

h3 {
    font-family: var(--h3-font-family);
    font-weight: var(--h3-font-weight);
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    letter-spacing: var(--h3-letter-spacing);
    margin: 0;
}

h5 {
    font-family: var(--h5-font-family);
    font-weight: var(--h5-font-weight);
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

p {
    font-family: var(--base-font-family);
    font-weight: var(--base-font-weight);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
}

@media (max-width: 767px) {

    .container,
    .full-width-container .hero-div,
    .full-width-container .banner-div {
        max-width: 100%;
        margin-inline: auto;
        padding-inline: 15px;
    }
}

@media (min-width: 768px) {

    .container,
    .full-width-container .hero-div,
    .full-width-container .banner-div {
        max-width: 1130px;
        margin-inline: auto;
        padding-inline: 15px;
    }
}

@media (min-width: 1025px) {

    .container,
    .full-width-container .hero-div,
    .full-width-container .banner-div {
        max-width: 1171px !important;
        margin-inline: auto;
        padding-inline: 15px;
    }
}

.full-width-container {
    padding-inline: 0;
    max-width: 100% !important;
}

a {
    outline: none;
    transition: all ease 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--light);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    font-family: var(--base-font-family);
    text-decoration: none;
    padding: 8px 10px;
    width: max-content;
    border: 2px solid var(--light, #F1F1E8);
    border-radius: 8px;
}

a:hover,
a:active,
a:focus {
    background-color: var(--light);
    color: var(--dark);
}

.quantum-hero__text-inner {
    font-family: var(--head-font-family);
    font-weight: var(--head-font-weight);
    font-size: var(--head-font-size);
    line-height: var(--head-line-height);
    letter-spacing: var(--head-letter-spacing);
    text-transform: var(--head-text-transform);
    margin-top: 65px;
}

.cstm-slides {
    overflow: hidden;
    margin: 75px auto;
    display: none;
}

.cstm-slides-track {
    display: flex;
    gap: 0;
    animation: slideAnim 8s linear infinite;
}

.cstm-slides-track img {
    object-fit: cover;
}

/* Animation for sliders*/
@keyframes slideAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cstm-slides {
    display: block;
}

.cstm-slides-track a {
    display: inline-block;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: 441px;
}

.two-col-wrapper {
    display: flex !important;
    gap: 69px;
}

.rich-text .two-col-wrapper:not(:last-of-type) {
    margin-bottom: 200px;
}

.two-col-wrapper .left-txt-wrapper {
    flex-basis: 354px;
}

.two-col-wrapper .right-img-wrapper img {
    width: 703px;
    max-width: 100%;
    height: auto;
}

.two-col-wrapper .left-txt-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.instagram-link-container .rich-text {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 137px;
}

#slider_container .collage-div img {
    max-width: 65%;
}

#slider_container .collage-div {
    text-align: center;
    position: relative;
}

#slider_container .collage-div::after {
    content: "";
    display: block;
    border-style: solid;
    height: 14px;
    width: 14px;
    border-color: currentColor;
    transform: rotate(223deg);
    box-sizing: border-box;
    border-width: 0 0 2px 2px;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: 56px;
}

.collage-div {
    display: none;
}

.cta-primary {
    text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1199px) {

    .slide-container,
    .full-width-container .slider-div,
    .banner-txt,
    .projekte-container {
        display: none;
    }

    .collage-div,
    .banner-txt1 {
        display: block !important;
    }

    .slick-prev {
        left: -59px;
        top: 37%;
    }

    .slick-next {
        right: -33px;
        top: 37%;
    }

    .slick-prev::before {
        content: "";
        display: block;
        border-style: solid;
        height: 14px;
        width: 14px;
        border-color: var(--light);
        transform: rotate(45deg);
        box-sizing: border-box;
        border-width: 0 0 2px 2px;
        margin-left: 10px;
        position: absolute;
    }

    .slick-next::before {
        content: "";
        display: block;
        border-style: solid;
        height: 14px;
        width: 14px;
        border-color: var(--light);
        transform: rotate(223deg);
        box-sizing: border-box;
        border-width: 0 0 2px 2px;
        margin-left: 10px;
        position: absolute;
    }

    #Instagram_link {
        /* display: none; -- if need to hide insta link section */
    }

    .slick-prev::before,
    .slick-next::before {
        height: 25px;
        width: 25px;
    }

    .slide-container {
        margin-top: 10rem;
        padding-inline: 80px;
    }

    #slider_container {
        margin-top: 10rem;
    }

    .slick-initialized .slick-slide {
        padding-inline: 5px;
    }

    .right-img-wrapper {
        flex-basis: fit-content;
    }

    #slider_container .collage-div {
        margin-bottom: 60px;
    }

    .banner-txt1 {
        text-transform: uppercase;
    }

    .quantum-hero__text-inner .d-lg-block {
        display: none !important;
    }

    .two-col-wrapper {
        align-items: flex-end;
    }

    .right-img-wrapper {
        flex-basis: fit-content;
        position: absolute;
        width: 300px;
        right: 0px;
        bottom: 0;
    }

    .slick-initialized .slick-slide {
        position: relative;
    }

    .two-col-wrapper .left-txt-wrapper {
        flex-basis: 600px;
        min-height: 300px;
    }

    .instagram-link-container .rich-text {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    h1 {
        margin-bottom: 36px;
    }

    .quantum-hero__text-inner {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .cstm-slides {
        margin: 36px auto;
    }

    .two-col-wrapper {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .two-col-wrapper .left-txt-wrapper {
        flex-basis: auto;
    }

    #slider_container {
        margin-top: 3rem;
    }

    #slider_container .collage-div::after {
        right: 34px;
    }

    .instagram-link-container .rich-text {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    h5 {
        margin-bottom: 10px;
    }

    .rich-text .two-col-wrapper {
        gap: 15px;
    }

    .rich-text .two-col-wrapper:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .slide-container {
        margin-top: 3rem;
        padding-inline: 16px;
    }

    #slider_container .collage-div {
        margin-bottom: 36px;
    }

    .cstm-slides-track img {
        width: 300px;
        height: auto;
    }

    .cstm-slides-track a {
        height: auto;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) and (-webkit-min-device-pixel-ratio: 2) {

    .slide-container {
        margin-top: 10rem;
        padding-inline: 100px;
    }

    #slider_container .collage-div img {
        padding-left: 7rem;
    }

    .quantum-hero__text-inner {
        margin-bottom: 16px;
        margin-top: 145px;
        --head-font-size: 100px;
    }

    #slider_container .collage-div::after {
        top: 37%;
        right: 9%;
        height: 27px;
        width: 27px;
    }

    .quantum-drop-down-menu__list-item a {
        --base-font-size: 24px;
    }

    .right-img-wrapper {
        flex-basis: auto;
        width: 585px;
    }

    .two-col-wrapper .left-txt-wrapper {
        min-height: 35rem;
        flex-basis: 100%;
    }

    h3 {
        --h3-font-size: 75px;
        --h3-line-height: 150%;
    }

    .left-txt h5 {
        text-transform: uppercase;
        margin-bottom: 45px;
    }

    .left-txt p {
        --base-font-size: 18px;
    }

    .slick-prev {
        top: auto;
        bottom: 19.5rem;
    }

    .slick-next {
        top: auto;
        bottom: 19.5rem;
    }

    .instagram-link-container .rich-text {
        margin-top: 0;
    }

    .rich-text .two-col-wrapper:not(:last-of-type) {
        margin-bottom: 75px;
    }

    .instagram-link-container .rich-text {
        margin-bottom: 0;
    }

    .slick-prev::before,
    .slick-next::before {
        height: 27px;
        width: 27px;
        border-width: 0 0 3px 3px;
    }

    .slick-initialized .slick-slide {
        padding-inline: 15px;
    }

    #Instagram_link {
        margin-bottom: 150px;
    }

    #slider_container .collage-div {
        margin-bottom: 125px;
    }
}

@media (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .right-img-wrapper {
        width: 480px;
    }

    .two-col-wrapper .left-txt-wrapper {
        min-height: 397px;
    }

    #slider_container .collage-div {
        margin-bottom: 130px;
    }
}

@media (min-width: 1199px) {
    .quantum-hero__text-inner {
        margin-bottom: 75px;
    }
}