html, body {
    overflow-x: hidden;
}

.silicasoft-footer {
    float: inherit;
    color: white;
    letter-spacing: 5px;
    margin-bottom: -4px
}

.under-silicasoft-footer {
    font-size: 12px;
}

.pages-slides-spacing {
    margin-top: 8%;
    margin-bottom: 5%;
}

.sof-fet-text {
    color: black;
    text-align: center;
}

.sof-fet-spacing {
    letter-spacing: 3px;

}

.add-letter-spacing-header {
    letter-spacing: 2px;

}

.sub-background-color {
    background: var(--secondary-color);

}

.icone-in-page {
    width: 500px;

}

.image-icone {
    align-self: center;

}

.custom-form.donate-form::-webkit-scrollbar {
    display: none;
}

.center-items {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    max-height: 400px;

}

.text-justify {
    text-align: justify;
}

.paragraph-background {
    background-image: url('../source/images/logo-prime.png');

}

.sub-titel {
    font-size: calc(1.0vw + 1.5rem);
    margin-top: 7%;
    margin-bottom: 3%;
}

/**

Menu Style
*/

.stack-icons-text {
    padding-top: 5%;
    text-align: center;
}


.site-footer-title {
    color: white;
    letter-spacing: 1px;
}

.site-footer-title-blue {
    color: #131645;
    letter-spacing: 1px;
}

.site-background-title {
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    font-size: 700%;
    position: relative;
}

h3 {
    color: #1e4475;
}

.text-space {
    letter-spacing: 1px;
}

/**BASE PAGE**/

.dark-and-bold {
    font-weight: bold;
    color: #333;
}

.image-frame {
    border-radius: 20px;
    border: solid 2px var(--secondary-color);
    padding: 2px;
}

.dev-ops-frame {
    border-radius: 20px;
    border: solid 2px var(--secondary-color);
    padding: 2px;
}

.standard-image-size {
    width: 100%;
}

.over-div {
    background-color: white;
    flex: 3;
    margin: 50px;
    top: 0;
    left: 0;
    width: 30%;
    margin-top: 100px;
    margin-right: 200px;
    margin-left: 0;
    opacity: 80%;
    box-shadow: 4px 4px 4px rgba(86, 86, 86, 0.3);
    border-radius: 5px;
}

.section-shadow {
    opacity: 80%;
    box-shadow: 4px 4px 4px 4px rgba(86, 86, 86, 0.3);
}

.section-card-vortext {
    color: white;
    padding-top: 3%;
    padding-bottom: 1%
}

.under-div-image {
    width: 200%;
    max-width: 1100px;
    border-radius: 10px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.gruender-image {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 3%;
}

.text-vorwort {
    letter-spacing: 5px;
    background: linear-gradient(to top, #131645 0%, #002366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 32px;
}

.sections-col {
    background-color: white;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sections-image {
    width: 100%;
    border-radius: 20px;
}

.section-bc-color {
    background: var(--primary-color);
}

.index-section-titel {
    color: var(--primary-color);
    margin-bottom: 1%;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-section::before {
    content: "";
    background: #e5c285;
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -30px;
    margin: auto;
    width: 250px;
    height: 250px;
}

.testimonial-section::after {
    content: "";
    background: #e5c285;
    border-radius: 50%;
    position: absolute;
    bottom: -110px;
    right: -80px;
    width: 350px;
    height: 350px;
}


.contact-form-button {
    background: var(--primary-button);
    border: none;
}

.contact-form-button:hover {
    background: #1b8eff;
    border: none;
}


/** Images on AR VR PAGE**/
.force-center-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;

}

.force-center-elements img {
    width: 80%;
    transition: transform 0.3s;
}

.force-center-elements img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgb(50, 210, 250);
}


/**TITEL OF THE PAGE**/

@keyframes textResize {
    0% {
        transform: scale(2.5); /* Start with 1.5 times the original size */
        opacity: 0; /* Start invisible */
    }
    100% {
        transform: scale(1); /* End at the original size */
        opacity: 1; /* Fully visible */
    }
}

.site-background-title {
    animation: textResize 1s ease-in-out; /* Adjust the duration and timing function as needed */
}

.hidden-text {
    opacity: 0;
    transition: opacity 2s, transform 2s; /* Add smooth transition effects */
}

.hidden-text-buttom {
    opacity: 0;
    transition: opacity 2s, transform 2s; /* Add smooth transition effects */
}

.visible-text {
    opacity: 1;
    transform: translateX(0);
}


/**FEATURE SPAN**/

@keyframes spin {
    0% {
        transform: rotate(0deg);
        color: #000000;
    }
    25% {
        color: #676767;
    }
    50% {
        color: #6b6b6b;
    }
    75% {
        color: #1e4475;
    }
    100% {;
        color: #000000;
    }
}

.spinning-text {
    font-size: 50px;
    animation: spin 4s linear infinite;
    letter-spacing: 10px;
}


/**Gradient Color**/
.gradient-blue {
    background: linear-gradient(to bottom, #48c6ef 0%, #173183 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 10px;
}

.gradient-green {
    background: linear-gradient(to bottom, #37ecba 0%, #72afd3 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 10px;
}

.gradient-red {
    background: linear-gradient(to bottom, rgb(255, 90, 8) 30%, rgb(126, 2, 2));
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 10px;
}

.gradient-dark-blue-black {
    background: linear-gradient(to top, #09203f 0%, #537895 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 10px;
}

.standard-text-color {
    background: var(--primary-color);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 0;
    margin-top: -4%;
}

.service-titel {
    background: linear-gradient(to top, #131645 0%, #002366 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: calc(1.5rem + 0.6vw);
    letter-spacing: 5px;
    margin-bottom: 0;
    margin-top: -4%;
}

.gradient-above-footer {
    background: linear-gradient(to top, #09203f 0%, #44525DFF 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    font-weight: bold;
    font-size: 80px;
    letter-spacing: 10px;
}


/**HOVER INFORMATION**/

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 10s linear infinite;
    display: inline-flex;

}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/**INDEX MAIN TITEL**/

.animate-main-titel {
    text-transform: uppercase;
    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip-main 5s linear infinite;
    font-size: 60px;

}

@keyframes textclip-main {
    to {
        background-position: 200% center;
    }
}


.animate-main-undertitel {

    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip-main 5s reverse infinite;
    font-size: 20px;

}


.animate-main-titel-moto {
    background-image: repeating-linear-gradient(
            140deg,
            #131645,
            #131645 10%,
            #e5c285 10%,
            #e5c285 20%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip-main-titel 100s;
}


@keyframes textclip-main-titel {
    to {
        background-position: 200% center;
    }
}

.animate-main-icons:hover {

    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip-main 5s linear infinite;
    font-size: 15px;

}


@keyframes textclip-main {
    to {
        background-position: 200% center;
    }
}

.animate-charcter-insights {
    text-transform: uppercase;
    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 20s linear infinite;
    display: inline-flex;
    letter-spacing: 5px;
}

.animate-charcter-pages {
    text-transform: uppercase;
    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 20s linear infinite;
    display: inline-flex;
    letter-spacing: 5px;
    margin-top: 10px;
}

.animate-pages-titel {
    text-transform: uppercase;
    background-image: linear-gradient(
            220deg,
            #2a2a2a 0%,
            #1a1a1a 60%,
            #797979 60%,
            rgb(93, 93, 93) 85%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 10s linear infinite;
    display: inline-flex;
    letter-spacing: 5px;
    margin-top: 10px;
}


.animate-charcter-inner-text {
    background-image: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 7s linear reverse infinite;
    display: inline-flex;
    font-size: 40px;
    letter-spacing: 5px;
}

.animate-silicasoft {
    background-image: linear-gradient(
            120deg,
            rgb(19, 22, 69) 0.0002%, /* Adjusted alpha value for transparency */ rgb(19, 22, 69) 10%,
            rgb(19, 22, 69) 67%,
            #131645 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: rgba(255, 255, 255, 0.67);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 30s linear infinite;
    display: compact;
    letter-spacing: 5px;
}


.animate-background-gradient {
    background: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    ) 0% 0% / 200% auto;
    color: transparent;
    animation: textclip 25s linear infinite reverse;
    display: inline-flex;
    font-size: 40px;
}

.animate-line {
    background: linear-gradient(
            90deg,
            rgb(19, 22, 69) 70%,
            rgb(84, 84, 84) 70%,
            rgb(255, 196, 0) 80%,
            #131645 100%
    ) 0% 0% / 200% auto;
    color: transparent;
    animation: textclip 10s linear infinite reverse;
    display: inline-flex;
    font-size: 40px;
    width: 100%;
    height: 5px;
    margin-top: -50px;
}

.animate-background-gradient-index {
    background: linear-gradient(
            225deg,
            #231557 0%,
            #44107a 29%,
            #ff1361 67%,
            #fff800 100%
    ) 0% 0% / 200% auto;
    color: transparent;
    animation: textclip 25s linear infinite reverse;
    font-size: 40px;
    display: table;
    table-layout: fixed;
    width: 100%;
}

.overlay-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: -webkit-linear-gradient(
            225deg,
            rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80) 29%, rgba(255, 255, 255, 0.80) 67%, rgba(255, 255, 255, 0.80) 100%
    ) 0% 0% / 500% auto;
    background: linear-gradient(
            225deg,
            rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80) 29%, rgba(255, 255, 255, 0.80) 67%, rgba(255, 255, 255, 0.80) 100%
    ) 0% 0% / 500% auto;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 11px;
    animation: textclip 50s linear reverse infinite;
}



.side-overlay-box {
    width: 30%;
    height: 80%;
    position: absolute;
    background-color: white;
    margin-left: 10%;
    margin-top: -10%;
}

.section-overlay-gradient {
    background: linear-gradient(
            225deg,
            rgba(35, 21, 87, 0.0) 0%,
            rgba(68, 16, 122, 0.0) 29%,
            rgba(9, 9, 9, 0.2) 67%,
            rgba(255, 255, 255, 0.93) 100%
    ) 0% 0% / 200% auto;
    animation: textclip 5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.section-overlay-gradient-static {
    background: linear-gradient(to right, rgba(9, 32, 63, 0) 50%, rgba(83, 120, 149, 0) 100%);
    animation: textclip 70s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}


.logo-inimation:hover {
    animation: glowLogo 3s linear infinite;
}

@keyframes glowLogo {
    0% {
        filter: brightness(100%);
    }
    50% {
        filter: brightness(150%);
    }
    100% {
        filter: brightness(100%);
    }
}


.pages-services-titel {
    font-size: calc(1rem + 1vw);
}

.page-motto-text {
    font-size: calc(1.5rem + 1vw);
}

.mini-icons-column-adjustment {
margin-bottom: 20%;
}

/**MEDIA TYPE**/

@media screen and (min-width: 2500px) {
    .main-titel {
        font-size: 50px;
    }

    .page-title {
        font-size: 70px;
        position: relative;
        margin-top: 2%;
    }

    .page-box {
        margin-top: 7%;
        height: 140px;

    }

    .pages-padding {
        padding-bottom: 15%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: 14rem;
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 70px;
        margin-top: 5%;
    }

    .mini-icons {
        width: 40%;
        padding-bottom: 10%;
    }

    .section-adjust {
        padding-top: 2%;
        padding-bottom: 2%;
        margin-top: 2%;
        margin-bottom: 2%;

    }

    .pages-W-T {
        color: var(--primary-color);
        margin-bottom: 2%;
        text-align: left;
        letter-spacing: 3px;
        font-size: 70px;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 50%;
        margin-bottom: 4%;
    }

    #cookieDialog {
        position: fixed;
        bottom: 2%;
        left: 50%;
        transform: translateX(-2%);
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        padding: 15px;
        text-align: center;
    }

    .standard-margin {
        margin-bottom: 7%;
        margin-top: 1%;
    }

    .expend-button {
        display: none;
    }


}

.mini-icons-subtitle-uberuns
{
    color: white;
    margin-bottom: -16px;
    margin-top: -4%;
    text-justify: auto;
}
.page-title {
    font-size: calc(3vw);
    position: relative;
    margin-top: 2%;
}

@media screen and (min-width: 2200px) and (max-width: 2500px) {
    .main-titel {
        font-size: 50px;
    }


    .page-box {
        margin-top: 10%;
        height: 140px;
    }

    .pages-padding {
        padding-bottom: 10%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: 14rem;
        margin-bottom: 3%

    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%;


    }

    .section-font {
        font-size: 70px;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;

    }


    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 50%;
        margin-bottom: 4%;
    }

    .standard-margin {
        margin-bottom: 3%;
        margin-top: 3%;
    }

}

@media screen and (min-width: 1900px) and (max-width: 2200px) {
    .main-titel {
        font-size: 50px;
    }

    .page-box {
        margin-top: 10%;
        height: 140px;
    }

    .pages-padding {
        padding-bottom: 10%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: calc(14rem + 0vw);
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 60px;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;
    }


    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 50%;
        margin-bottom: 4%;
    }

    .standard-margin {
        margin-bottom: 3%;
        margin-top: 3%;
    }
}

@media screen and (min-width: 1500px) and (max-width: 1900px) {
    .main-titel {
        font-size: 40px;
    }


    .page-box {
        margin-top: 12%;
        height: 140px;
    }

    .pages-padding {
        padding-bottom: 10%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: calc(14rem + 0vw);
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 60px;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;
    }


    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 55%;
        margin-bottom: 4%;
    }

    .standard-margin {
        margin-bottom: 3%;
        margin-top: 3%;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1500px) {
    .main-titel {
        font-size: 40px;
    }

    .page-box {
        margin-top: 12%;
        height: 140px;
    }

    .pages-padding {
        padding-bottom: 10%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: calc(14rem + 0vw);
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 50px;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;
    }


    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 55%;
        margin-bottom: 4%;
    }

    .standard-margin {
        margin-bottom: 3%;
        margin-top: 3%;
    }
}

@media screen and (min-width: 500px) and (max-width: 1000px) {
    .main-titel {
        font-size: 40px;
    }


    .page-box {
        margin-top: 12%;
        height: 140px;
    }

    .pages-padding {
        padding-bottom: 10%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: calc(14rem + 0vw);
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 50px;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;
    }


    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .overlay-box-adjustment {
        margin: -4% auto;
        text-align: center;
        width: 55%;
        margin-bottom: 4%;
    }

    .standard-margin {
        margin-bottom: 3%;
        margin-top: 3%;
    }
}

@media screen and  (max-width: 500px) {

    #featured-image {
        content: url('../source/images/arvr-square.png');

    }

    .main-titel {
        font-size: 30px;
    }

    .page-title {
        font-size: 3vw;
        position: relative;
        margin-top: 3%;
    }

    .page-box {
        margin-top: 22%;
        height: 50px;
        width: 80%;
    }

    .adjust {
        flex: 1 1 48%;
    }

    .adjust-reflect {
        flex-direction: column-reverse;
        margin-left: 0;
        margin-right: 0;
    }


    .adjust-reflect-reverse {
        flex-direction: row;
        flex-direction: column;
    }

    .pages-padding {
        padding-bottom: 50%;
    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 900px;
    }

    .detail-under-main-position {
        padding-bottom: 5%;
        margin-bottom: -13px;
        margin-top: -4.7rem;
        margin-bottom: 3%
    }

    .detail-under-pages-position {
        padding-bottom: 3%;
        margin-bottom: -13px;
        margin-bottom: 3%
    }

    .section-font {
        font-size: 32px;
        margin-top: 10%;
    }

    .mini-icons {
        width: 30%;
        padding-bottom: 4%;
    }

    .icon-titel {
        padding-top: 5%;
        padding-bottom: 1%;
        color: white;
        letter-spacing: 3px;
        font-size: 15px;
    }

    .section-adjust {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;

    }

    .carousel-inner {
        width: 100%;
        max-height: 1000px !important;
        height: 600px;
    }

    .pages-W-T {
        color: var(--primary-color);
        margin-bottom: 5%;
        text-align: center;
        letter-spacing: 3px;
        font-size: 30px;
        margin-top: 10%;

    }

    .overlay-box-adjustment {
        margin-top: -7%;
        margin-left: 5%;
        text-align: center;
        width: 90%;
        height: 70%;
    }

    #cookieDialog {
        width: 50%;
        height: 50%;
        position: fixed;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        padding: 15px;
        text-align: center;
        overflow: scroll;
        z-index: 22;
    }

    .standard-margin {
        margin-bottom: 5%;
        margin-top: 5%;
        padding-bottom: 5%;

    }

    .dropdown-menu {
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus .dropdown-menu {
        display: block;
    }


    .collapsed-text {
        max-height: 100px;
        overflow: hidden;
        transition: all 2s ease; /* Adjusted transition duration */
    }

    .expanded-text {
        max-height: none;
        transition: all 2s ease; /* Adjusted transition duration */
    }

    .expend-button {
        display: block;
    }

    .sections-line {
        border-top: 1px solid;
        margin-bottom: 30px;
    }


}


/**END OF MEDIA TYPE**/


/**MOBILE**/

/**END OF MOBILE**/


/**BACKGROUNDS**/
.werbung-background {
    background-image: url('../source/images/backgrounds/full-color-2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
}

.insights-image-feed {
    width: 100%;
}

.resisable {
    font-size: calc(1.00rem + 2.2vw)
}

.carousel-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 20;
    color: white;
    width: 50%;
}

.main-bc-effect {
    height: 65%;
    width: 100%;
    position: absolute;
    background: radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100% /* Transparent #fff800 */
    ) 0% 0% / 200% auto;
    animation: textclip 15s linear infinite;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    clip-path: polygon(14% 0, 53% 0, 53% 100%, 14% 100%);
}


/**---COOCKIES---**/


#accept-btn {
    background-color: #131645;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px;
    margin-bottom: 3%;
}

#reject-btn {
    background-color: #131645;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px;
}

#accept-btn:hover {
    background-color: #E5C285FF;
}

#reject-btn:hover {
    background-color: #E5C285FF;
}

.hidden-coockies {
    display: none;
}

.branchen-text {
    margin-bottom: 5%;
}

.standard-color-hell {
    color: var(--secondary-color);
}

.standard-color-dark {
    color: var(--primary-color);
}

.standard-color-blue {
    color: var(--primary-button);
}

.circle {
    width: 10px; /* Set the width and height to create a square */
    height: 10px;
    background-color: #ffffff; /* Set the background color */
    border-radius: 50%; /* Make it circular with border-radius set to 50% */
}

.image-name-space {
    margin-bottom: 2%;
}




/**---COOCKIES---**/