* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

button {
    font-family: Spectral, sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    cursor: pointer;
}

body {
    background: #FFFFFF;
}


/* header */

.header {
    background: url("./assets/images/ts-main-bg-mobile.jpeg") center/cover no-repeat;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 548px;
}

.header__ellipse {
    width: 100%;
    padding-bottom: 30px;
    background: url("./assets/images/ts-header-ellipse-mobile.svg") center/cover no-repeat;
}

.header__title {
    font-size: 100px;
    color: #BE9B53;
    margin-top: 10px;
    padding: 25px 0;
    font-weight: 800;
    font-family: FuturaPT-Bold, sans-serif;
}

.header__title_de {
    font-size: 100px;
    color: #BE9B53;
    margin-top: 10px;
    padding: 25px 0;
    font-weight: 800;
    font-family: FuturaPT-Bold, sans-serif;
}

.header__companyInfo {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 548px;
}

.header__logo img {
    width: 250px;
}

.header__icons {
    position: absolute;
    right: 20px;
    top: 10px;
    font-family: Spectral, serif;
    display: flex;
    align-items: center;
}


/* languages */

.custom-select-container {
    display: none;
}

.custom-select-container_big {
    display: flex;
    align-items: center;
    position: absolute;
    right: 16px;
    top: 14px;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.select-selected {
    color: #333333;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-items {
    position: absolute;
    display: none;
    background-color: #BE9B53;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.select-items a {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.select-items a:hover {
    background-color: #d5ad5a;
    font-weight: bolder;
    border-radius: 4px;
    text-decoration: underline;
}

/* steps */

.steps {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.steps__title {
    font-size: 36px;
    color: #333;
    margin-top: 60px;
    text-align: center;
    font-family: FuturaPT-Bold, sans-serif;
}

.steps__description-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.steps__description {
    font-size: 22px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
    font-family: Spectral, sans-serif;
    width: 85%;
    margin-top: 30px;
}

.steps__list {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step__number {
    background-color: #BE9B53;
    color: #FFFFFF;
    font-weight: bolder;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-right: 20px;
    font-family: FuturaPT-Bold, sans-serif;
    width: 70px;
    height: 70px;
}

.vertical-line {
    width: 2px;
    height: 50px;
    background-color: #BE9B53;
    position: absolute;
    top: 60px;
    left: 35px;
}

.step__text {
    font-size: 22px;
    color: #333;
    font-family: Spectral, sans-serif;
    font-weight: 700;
}

.step:last-child .vertical-line {
    display: none;
}

.steps__buttonContainer {
    height: 61px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.steps__button {
    background-color: #BE9B53;
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: 900;
    height: 62px;
    width: 485px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    line-height: 18px;
}

.steps__button:hover {
    background-color: #4B4B4B;
}

.stepContainer__heading {
    max-width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #BE9B53;
    font-weight: 900;
    font-size: 24px;
    font-family: FuturaPT-Bold, sans-serif;
    gap: 8px;
    word-break: break-word;
    position: relative;
}

.first::before {
    content: "1";
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.second::before {
    content: "2";
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.third::before {
    content: "3";
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.fourth::before {
    content: "4";
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.fifth::before {
    content: "5";
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.stepThreeContainer__heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #BE9B53;
    font-weight: 900;
    font-size: 24px;
    font-family: FuturaPT-Bold, sans-serif;
    gap: 8px;
}

.stepThreeContainer__heading span:first-child {
    font-size: 80px;
    color: #A5A5A54D;
    font-family: Spectral, sans-serif;
    line-height: 1;
}

.stepThreeContainer__heading span:last-child {
    display: inline-block;
    line-height: 1;
    max-width: 100%;
    word-break: break-word;
}

.stepContainer__heading-description {
    font-family: Spectral, sans-serif;
    margin: 10px 0 40px 0;
}

.activeStep {
    padding: 5px;
    background-color: #BE9B53;
    color: #FFFFFF;
    font-weight: bolder;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

/* footer */

.footer {
    padding: 74px 20px 0;
    text-align: center;
    font-family: Spectral, sans-serif;
}

.footer__info {
    margin-bottom: 20px;
}

.footer__partners__logo {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__partners__logo a:hover img {
    opacity: 1;
    box-shadow: 0 8px 6px -6px #888;
}

.footer__partners__logo-image {
    width: 140px;
    height: 120px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
    border-radius: 12px;
}

.footer__logo_container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer__sb-logo {
    width: 331px;
}

.footer__addressContainer {
    padding: 20px 0;
}

.footer__addressContainer p {
    margin-bottom: 10px;
    font-size: 20px;
}

.footer__addressContainer a {
    color: inherit;
    text-decoration: none;
}

.footer__sites-heading {
    color: #1E1E1E;
    font-size: 22px;
    margin: 15px 0 25px 0;
    text-decoration: underline;
    text-decoration-color: #BE9B53;
    text-decoration-thickness: 3px;
    text-transform: uppercase;
}

.footer__sites ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    gap: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer__sites ul li {
    display: flex;
    flex-direction: column;
    width: max-content;
}

.footer__sites ul li a {
    text-decoration: none;
    color: #333;
    display: inline-block;
    margin: 12px 0;
    letter-spacing: 1.5px;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.footer__sites ul li a:hover {
    text-shadow: -0.3px -0.3px 0 #000000,
    0.3px -0.3px 0 #000000,
    -0.3px 0.3px 0 #000000,
    0.3px 0.3px 0 #000000;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-size: 18px;
}

.footer__sites ul li a::after {
    content: '\2197';
    font-size: 18px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-left: 5px;
}

.footer__sites ul li a:hover::after {
    opacity: 1;
}

.footer__links-container {
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__links ul li {
    text-align: center;
    margin: 11px 0;
    width: max-content;
}

.footer__links ul li a {
    color: #333;
    font-weight: bold;
    text-decoration: underline 0.15em rgba(255, 255, 255, 0);
    text-underline-offset: 6px;
    transition: text-decoration-color 300ms;
}

.footer__links ul li a:hover {
    text-decoration-color: #333;
    text-underline-offset: 6px;
}

@media (min-width: 1100px) {

    .footer__sites ul {
        flex-direction: row;
        gap: 96px;
    }

    .footer__sites ul li {
        /*text-align: center;*/
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
        width: max-content;
    }

    .footer__links-container {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .footer__links ul {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

/* slider */

.glide__arrows {
    display: none;
}

@media screen and (min-width: 1px) {

    .glide__slides {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .glide__arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 150px;
        min-height: 100px;
        gap: 16px;
    }

    .slider__wrapper-dotWrapper::before {
        content: "";
        background: #000000;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .glide__arrow {
        border: none;
        background: transparent;
    }

    .glide__arrow img {
        width: 45px;
        height: 30px;
        cursor: pointer;
    }

    .glide__arrow--left {
        display: flex;
        justify-content: center;
        align-items: center;
        rotate: 180deg;
    }

    .slider__wrapper-dotWrapper {
        background: #BE9B53;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        position: relative;
    }

    .glide__arrow--right {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* gp up arrow */

.go-up-arrow {
    position: fixed;
    bottom: 0;
    left: calc(50% - 20px);
    width: 30px;
    height: 30px;
    background: #be9b53;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.go-up-arrow img {
    width: 25px;
    height: 30px;
}

/* divider */

.divider {
    border-bottom: 5px solid #DECDA9;
    margin: 12px 0;
    width: 85%;
}

.shortDivider {
    border-bottom: 1px solid #8E7F7F;
    width: 100%;
}

.smallDivider {
    border-bottom: 2px solid #8E7F7F;
    width: 100%;
}


/* modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 760px) {
    .modal {
        width: 674px;
    }
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal p {
    font-size: 14px;
    font-family: Spectral, sans-serif;
}

.modal a {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}


.button-wrapper .cookie-button {
    padding: 16px 0;
    cursor: pointer;
}

.button-wrapper .settings-button {
    background: transparent;
    border: 1px solid #000000;
    transition: all 0.3s ease-in-out;
}

.button-wrapper .settings-button:hover {
    background: #000000;
    color: #FFFFFF;
}

.button-wrapper .settings-button:active {
    background: rgba(0, 0, 0, 0.81);
    color: #FFFFFF;
}

.button-wrapper .agreement-button {
    background: #B28727;
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease-in-out;
}

.button-wrapper .agreement-button:hover {
    background: #9a7422;
}

.button-wrapper .agreement-button:active {
    background: #785a1a;
}


@media (min-width: 1024px) {
    #header__logo-id {
        background: url("./assets/images/schoenbrunn_group_logo.svg") center/cover no-repeat;
        width: 194px;
        position: absolute;
        top: 200px;
        left: 50px;
    }

    .header__big__ellipse {
        background: url("./assets/images/home_shaping.svg") no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        min-height: 548px;
    }

    .withoutEllipse {
        min-height: 548px;
    }
}

@media (max-width: 1024px) {

    .header__big__ellipse {
        background: url("./assets/images/home_shaping_mobile.svg") no-repeat;
        background-size: contain;
        position: absolute;
        width: 100%;
        min-height: 548px;
    }
}

@media (max-width: 1420px) {
    .header__title {
        font-size: 80px;
    }
}

@media (max-width: 1240px) {
    #header__logo-id {
        width: 160px;
    }

    .header__title {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .header {
        height: 100vh;
    }

    .header__title {
        font-size: 45px;
        padding: 0 16px;
    }

    .header__title_de {
        font-size: 42px;
        padding: 0 16px;
    }

    .header__logo img {
        height: 100px;
    }

    #header__logo-id {
        width: 50%;
    }

    #header__logo-id {
        display: none;
    }

    .custom-select-container {
        display: flex;
        align-items: center;
        position: absolute;
        right: 16px;
        top: 14px;
    }

    .custom-select-container_big {
        display: none;
    }
    .vertical-line {
        width: 2px;
        height: 50px;
        background-color: #BE9B53;
        position: absolute;
        top: 50px;
        left: 24px;
    }

    .step__number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .steps__title {
        font-size: 28px;
        margin-top: 20px;
    }

    .step__text {
        font-size: 18px;
    }

    .steps__list_en {
        list-style: none;
        padding: 0 30px;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .steps__list_de {
        list-style: none;
        padding: 0 46px;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .steps__description {
        font-size: 16px;
    }

    .steps__button {
        font-size: 14px;
        width: 300px;
    }

    .footer {
        background: url("./assets/images/ts-footer-background-mobile.svg") center/cover no-repeat;
    }

    .footer__sb-logo {
        width: 120px;
    }

    .footer__addressContainer p {
        font-size: 16px;
    }

    .footer__sites ul li a {
        margin: 4px 0;
    }

    .footer__sites-heading {
        font-size: 16px;
    }

    .footer__sites ul li a {
        font-size: 16px;
    }

    .footer__sites ul li a:hover {
        font-size: 16px;
    }

    .footer__sites ul li a::after {
        font-size: 16px;
    }


    .button-wrapper {
        flex-direction: row;
    }
}

@media (max-width: 410px) {
    .header__title {
        font-size: 42px;
        padding: 0 16px;
    }

    .header__title_de {
        font-size: 39px;
        padding: 0 16px;
    }
}