* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family:'TT_Fors', sans-serif;
    font-weight:300;

}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    line-height: 1.6;
    background: #090d19;
    color:#d4e4ff;
    overflow-x:hidden;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    height:100vh;
}

[data-aos] {
    will-change: transform, opacity;
}

h1,h2,h3,h4 {
    line-height:2.75rem;
    font-weight:400;
}

.bg-light {
    background:white;
}

.bg-light h2 {
    color:#090d19;
}

.container {
    max-width:1500px;
    margin:auto;
    position: relative;
    padding:0 15px;
}

.lang-menu {
    position: fixed;
    right:1rem;
    top:2.5rem;
    z-index:9999;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    animation: animate-down  1s forwards;
    animation-timing-function: ease-in-out;
    animation-delay:1s;
    opacity:1;
    color: #003054;
}

.lang-menu.active {

}

.lang-menu.active:after {
    /*filter: invert(88%) sepia(100%) saturate(1%) hue-rotate(232deg) brightness(108%) contrast(101%);*/
}

.lang-menu:after {
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:25px;
    height:25px;
    background:url("../images/lang-globe.svg") no-repeat;
    background-size:contain;
    transform: translate(-50%,-50%);
}

.lang-menu-wrapper {
    position: fixed;
    right:1rem;
    top:3rem;
    z-index:999;
    background:#fff;
    width:auto;
    height:auto;
    border-radius:5px;
    cursor:pointer;
    color: #003054;
    padding:0.5rem 1.5rem;
    opacity:0;
    transition: ease all 0.5s;

}

.lang-menu-wrapper ul li:last-child {
    padding-right:0;
}

.lang-menu-wrapper ul li a {
    text-decoration: none;
    color:#003054;
    padding:0.25rem 0;
    display:block;
    transition: ease all 0.5s;
}

.lang-menu-wrapper ul li.active a {
    color:#0000ff;
    font-weight:600;
}

.lang-menu-wrapper ul li a:hover {
    color:#0000ff;
}

strong {
    font-weight:500;
}

video {
    border-radius: 1rem;
}

.video-bubble {
    width:100%;
    max-width:350px;
    margin-bottom:2rem;
}

#section1 { overflow:hidden; z-index:5; margin-top: -70px; position:relative;}
/*#section2 { overflow:hidden; z-index:1 }*/
#section3 { background:white; }
#section4 { position: relative;
    overflow-x:hidden; }
#section5 { position: relative;
    overflow-x:hidden; }
#section6 { position: relative;
    overflow-x:hidden; }
#section7 { position: relative;
    overflow-x:hidden; }

.spacer {
    padding:20rem 0;
}

.spacer-small {
    padding:10rem 0;
}

.spacer-top {
    padding-top:10rem;
}

.text-center {
    text-align:center;
}

h2 {
    font-size:2.5rem;
    max-width:800px;
    margin:auto;
}

nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 500;
    right: -60px;
    transition: right 0.5s ease;
}

nav a {
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
}

nav a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(0, 88, 255);
    background-color: none;
    border-radius: 50%;
    transition: all 0.3s;
}

nav a.active::before {
    background-color: rgb(0, 88, 255);
    transform: scale(1.3);
}

nav a::after {
    content: attr(data-title);
    position: absolute;
    right: 150%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 88, 255, 1);
    color: #d4e4ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight:400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

nav a:hover::after {
    opacity: 1;
    right: 200%;
}

nav a:hover::before {
    border: 1px solid #d4e4ff;
}

nav.visible {
    right: 25px;
}

nav.hidden {
    right:-60px;
}

img {
    width:100%;
}

header {
    position:relative;
    max-width:1750px;
    left:50%;
    width:100%;
    transform:translate(-50%,0);
    padding:3rem 1rem 0 1rem;
    display:flex;
    z-index:1000;
}

header img {
    margin-right:5rem;
}

.logo {
    position: relative;
    max-width: 200px;
    z-index: 1100;
    object-fit: contain;
}

.fix-logo-wrapper {
    position: relative;
    margin-left:1%;
    width:150px;
    display:block;
    transition:ease all 0.5s;
    opacity: 1;
}

.fix-logo-wrapper.visible {
    opacity:1;
}

.bildmarke {
    width:30px;
    object-fit: contain;
    position: fixed;
    z-index:999;
    top:-100px;
    transition:ease all 0.5s;

}

.bildmarke.visible {
    top:15px
}

.wortmarke {
    width:175px;
    mix-blend-mode: difference;
    object-fit: contain;
    position:fixed;
    z-index:999;
    margin-left:30px;
    top:-100px;
    transition:ease all 0.5s;
}

.wortmarke.visible {
    top:15px
}

header li a {
    color:inherit;
    transition: ease all 0.5s;
}

header li a:hover {
    color:#0000ff;
}

.burger-wrapper {
    background:#d4e4ff;
    padding:1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    width:40px;
    height:40px;
    border-radius: 50%;
    cursor: pointer;
    display:none;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.burger span {
    height: 2px;
    width: 100%;
    background: #0000ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Burger Animation */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
    margin-left:6px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
    margin-left:6px;
}

.menu-gradient {
    display:none;
}

ul {

}

li {
    float:left;
    list-style:none;
    padding-right:2rem;
}

.image-wrapper {
    width:100%;
    margin:auto;
    position:relative;
    max-height:1100px;
}

.image-wrapper .lines {
    position: absolute;
    mix-blend-mode: unset;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: contain;
}

.lines-wrapper {
    opacity:0.75;
}

.image-wrapper img {
    opacity: 0.35;
    width:105%;
    height:105%;
    margin-left:-2.5%;
    max-height:1100px;
    object-fit: contain;
    mix-blend-mode: lighten;
    margin-top:-5vh;
}

.gradient {
    position: absolute;
    top: 0;
    /*left: -650px;*/
    width: 50%;
    height: 100%;
    /*background:
            radial-gradient(circle at center, #1B62FF 0%, transparent 70%);*/
    background-repeat: repeat;
    background-size: cover;
    opacity: 1;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: transform 0.05s ease-out;
}

.gradient img {
    max-height:1100px;
}

.parallax {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-content {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:80%;
    text-align:center;
}

.hero-content h1 {
    font-size:3.75rem;
    font-weight:400;
}

.hero-content p {
    font-size:3rem;
    font-weight: 200;
}

a {
    text-decoration:none;
}

.button {
    position: relative;
    display: inline-block;
    padding: .75em 3.5em;
    border: none;
    border-radius: 50px;
    background-color: #0000ff;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 300;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin-top:2rem;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}

.button:hover::before {
    animation: shine 0.8s ease-out;
}

.button:hover {
    box-shadow: 0 0 12px rgba(27, 98, 255, 0.6);
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


.hero-content .btn {
    font-size:1.25rem;
    margin-top:10rem;
    display:inline-block;
    color:#a457ff;
}

#section2 h2 {
    position:relative;
}

.only-mobile {
    display:none;
}

.only-desktop {
    display:block;
}

.swiper {
    width: 100%;
    margin:auto;
    padding: 40px 0;
}
.swiperSolutions .swiper-slide, .panel .swiper-slide{
    display: flex;
    justify-content: center;
    gap: -20px;
}
.swiperSolutions {
    padding-top:7.5rem;
    position: relative;
}

.panel .swiper-slide{
    height:auto;
    margin-top:-15%;
}

.bg-gradient-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.bg-dark .bg-gradient-wrapper {
    /*top:10%;*/
}
.bg-gradient {
    content:'';
    position:absolute;
    top: 52.5%;
    left: 50%;
    width: 2000px;
    height: 1200px;
    background:url('../images/bg-gradient.jpg') no-repeat;
    background-size: cover;
    transform: translate(-50%,-50%);
}
.card {
    width: 500px;
    height: auto;
    padding: 20px;
    color: #0000ff;
    background: #d4e4ff;
    border-radius: 20px;
    transform: perspective(800px) rotateY(25deg);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card.left {
    margin-right:-40px;
}
.card.right {
    background: #0000ff;
    color: #d4e4ff;
    transform: perspective(800px) rotateY(-25deg);
    margin-left:-40px;
}
.card.right:after {
    content:'';
    position:absolute;
    top: -37.5px;
    right: 20%;
    width: 75px;
    height: 75px;
    background:url('../images/proof-icon.svg') no-repeat;
    background-size: contain;
}
.card h3 {
    margin: 0 0 10px;
    font-size:1rem;
    text-transform: uppercase;
    font-weight:600;
}
.card p {
    font-size:1.75rem;
    padding:0 3rem;
    line-height:2rem;
    margin-bottom:1rem;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    background: #090d19;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4e4ff;
    font-size: 24px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: none;
}

.swiper-button-next, .swiper-button-prev {
    color: #0000ff;
}

/* Pagination-Styling */
.swiper-pagination {
    position: relative;
    margin-top: 5rem;
    text-align: center;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d4e4ff;
    opacity:1;
    transition: ease all 0.5s;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0000ff;
}

.featureSwiper {
    margin-top:5rem;
}

.featureSwiper .swiper-slide {
    background:rgba(212,228,255,0.25);
    color:#0000ff;
    border-radius:20px;
}

.featureSwiper .swiper-slide img {
    border-top-right-radius:20px;
    border-top-left-radius:20px;
}

.featureSwiper .swiper-slide .slide-content {
    padding:3.5rem 4.5rem;
    text-align: center;
    position:relative;
}

.featureSwiper .swiper-slide .slide-content p {
    position: relative;
    font-size:1.5rem;
}

.featureSwiper .swiper-slide .slide-content:before {
    content:'';
    position:absolute;
    top: 2rem;
    left: 1.5rem;
    width: 35%;
    height: 100%;
    background:url('../images/quote.svg') no-repeat;
    background-size: contain;
}

.featureSwiper .button {
    background:none;
    border:1px solid #0000ff;
    color:#0000ff;
    font-size:1.1rem;
}

.horizontal-scroll-section {
    position: relative;
    height: 300vh;
}

.text-block {
    max-width:550px;
    color:#000;
    font-size:1.25rem;
    font-weight:400;
    margin-top:5rem;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.scroll-container {
    display: flex;
    width: 260vw;
    height: 100%;
    /*transition: transform 0.1s ease-out;*/
}

.panel {
    flex: 0 0 80vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    box-sizing: border-box;
    background: white;
}

.bg-dark .panel {
    background: none;
}

.bg-dark .panel:first-child {
    margin-left:4%;
}

.panel:first-child {
    margin-left:2.5%;
}

.text {
    width: 35%;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    margin-right: -15%;
    color:#0000ff;
    display:flex;
    align-items: center;

}

.text span {
    font-size:20rem;
    color:#0000ff;
    font-weight:100;
}

.text .funktion-content p {
    font-size:1rem;
    color:#090d19;
    line-height:1.5rem;
    padding-top:1rem;
    font-weight:400;
}

.text .funktion-content {
    line-height:2.25rem;
    font-weight:400;
}

.image {
    width: 70%;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-feature-section {
    padding: 10vh 5vw;
    display: flex;
    justify-content: center;
    max-width:1750px;
    margin:auto;
}

.circle-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    width: 100%;
    flex-wrap: wrap;
}

.circle-center {
    z-index: 1;
}

.circle-center img {
    width: 50vw;
    height: auto;
    max-width:800px;
}

.circle-title {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:15vw;
    text-align:center;
    font-size:2rem;
    max-width: 300px;
}

.circle-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
    position: relative;
    z-index: 2;
}

.circle-side.left {
    margin-right: -45px;
    align-items: flex-end;
    text-align: right;
    width:15vw;
    max-width:350px;
}

.circle-side.right {
    margin-left: -45px;
    align-items: flex-start;
    text-align: left;
    width:15vw;
    max-width:350px;
}

.feature {
    display: block;
    text-align:center;
    gap: 12px;
    width:70%;
}

.feature img {
    width: 50%;
    max-width:64px;
    height: auto;
}

.feature-middle-left {
    margin-right:30%;
}

.feature-middle-right {
    margin-left:30%;
}

#section6 {
    display: flex;
    flex-wrap: wrap;
    background: #d4e4ff;
    width: 100%;
    height:auto;
    position: relative;
}

#section6 .left, #section6 .right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
#section6 .right {
    padding:0;
    position: relative;
    overflow:hidden;
}
#section6 .icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
#section6 .icon-block img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
#section6 .icon-block p {
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    color: #000;
    max-width:400px;
}
#section6 .right img {
    max-width: 100%;
    height: 100%;
}
#section6 .button {
    position: absolute;
}

:root {
    --rect-w: 25px;
    --rect-h: 25px;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    gap: 0;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    margin-top:3rem;
}

.image-column,
.text-column {
    width: 50%;
    padding: 20px;
}

.image-column {
    position: relative;
    height: 650px;
    max-width: 100%;
}

.image-column img {
    position: absolute;
    width: 85%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.2s ease-out;
}

.image1 {
    top: 0;
    left: -50px;
    z-index: 2;
}

.image2 {
    top: 240px;
    left: 90px;
    z-index: 99;
}

.text-column {
    max-width: 600px;
    margin-top:3rem;
}

.text-column .slide-content {
    padding:3.5rem 4.5rem;
    text-align: center;
    position:relative;
}

.text-column .slide-content p {
    position: relative;
    font-size:1.75rem;
    color:#0000ff;
}

.text-column .slide-content:before {
    content:'';
    position:absolute;
    top: -2rem;
    left: 1.5rem;
    width: 35%;
    height: 100%;
    background:url('../images/quote.svg') no-repeat;
    background-size: contain;
}

.text-column .slide-content .button {
    margin-top:3rem;
}

@media (max-width: 991px) {
    .testimonial-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .image-column,
    .text-column {
        width: 100%;
        padding: 10px;
    }

    .image-column {
        height: auto;
    }

    .image-column img {
        position: relative;
        left: 0;
        top: 0;
        transform: none !important;
        margin-bottom: 20px;
    }

    .text-column {
        max-width: 100%;
    }

    .image-column img.image1 {
        width:100%;
        border-radius: 8px;
    }

    .image-column img.image2 {
        margin-top:-5rem;
        width:80%;
        border-radius: 8px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid #888;
    max-width: 900px;
    border-radius: 10px;
    color:#000;
    overflow:scroll;
    height:80vh;
    max-height:1000px;
}

.modal-content h1 {
    font-size:2rem;
    margin-bottom:1rem;
}

.modal-content h2 {
    margin:unset;
    font-size:1.5rem;
    margin-top:2.5rem;
    margin-bottom:1rem;
}

.modal-content h3 {
    margin-top:1.5rem;
    line-height:1.5rem;
    margin-bottom:0.5rem;

}

.close {
    color: #aaa;
    float: right;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
}

.close:hover {
    color: black;
}

.faq-container {
    max-width: 1050px;
    margin: 0 auto;
    margin-top:5rem;
    position: relative;
    padding:0 1rem;
}
.faq-item {
    background: #1A2032;
    color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
    /*clip-path: polygon(0 0,calc(100% - var(--rect-w)) 0,calc(100% - var(--rect-w)) var(--rect-h),100% var(--rect-h),100% 100%,0 100%);*/
}
.faq-item:hover {
    background:#fff;
    color:#000;
}
.faq-question {
    padding: 1rem 25px;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
}
.faq-question::after {
    content: '';
    position: absolute;
    background:url('../images/arrow_down.svg') no-repeat;
    right: 20px;
    top:calc(50% - 12.5px);
    transition: transform 0.3s;
    width:17px;
    height:17px;
    background-size: contain;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    color: black;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 25px;
}
.faq-answer p {
}
.faq-item.active {
    background: white;
    color: #0000ff;
}
.faq-item.active .faq-question {
    color: #0000ff;
    font-weight:500;
}
.faq-item.active .faq-answer {
    padding: 0 25px;
}
.faq-item.active .faq-question::after {
    content: '';
    background:url('../images/arrow_up.svg') no-repeat;
    transform: rotate(180deg);
}

.faq-item:hover .faq-question::after {
    background:url('../images/arrow_up.svg') no-repeat;
}

#section7 {
    position: relative;
    z-index:5;
    overflow:hidden;
}

#section7 .lines-wrapper {
    position: absolute;
    top:0;
}

#section7 h2 {
    position: relative;
}

footer {
    display:flex;
    position: relative;
    color:#fff;
    margin-top:-15rem;
}

.footer-logo {
    position: relative;
    width:65%;
}

.footer-logo img {
    height:100%;
}

.footer-content {
    left:22.5%;
    position: absolute;
    bottom:15%;
    z-index:5;
}

.footer-newsletter {
    position: relative;
    width:45%;
}

.footer-newsletter img {
    width:150%;
    height:auto;
    position: absolute;
    right:0;
    bottom:0;
    mix-blend-mode: lighten;
}

.footer-newsletter .button {
    position: absolute;
    right: 50%;
    bottom: 35%;
    width:max-content;
}

footer .footer-content a {
    color:#fff;
    position: relative;
}

footer .footer-content .footer-mail:before {
    content:'';
    width:100%;
    height:1px;
    background: #0000ff;
    position: absolute;
    left:0;
    bottom:-1px;
    transition: ease all 0.5s;
}

footer .footer-content .footer-mail:hover:before {
    width:50%;
}

footer .logo-white {
    width:175px;
    margin-bottom:1rem;
}

footer .linkedin img {
    width:35px;
    margin:2rem 0;
}

@media (max-width: 1400px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size:1.75rem;
    }
    .button {
        font-size:1rem;
    }
    .circle-title {
        font-size:1.5rem;
    }
    .circle-side.left {
        width:20vw;
    }
    .circle-side.right {
        width:20vw;
    }

    .circle-side p {
        font-size:0.85rem;
    }
}

@media (max-width:1024px) {
    .logo {
        position: absolute;
        top:1.25rem;
        left:1.5rem;
        max-width:200px;
        width:60%;
    }

    .burger-wrapper {
        display:block;
    }

    .burger {
        display: flex;
    }

    .lang-menu {
        right: 4rem;
        top: 1rem;
    }

    #nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: #1A2032;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        overflow: hidden;
    }

    #nav-menu.open {
        transform: translateY(0);
    }

    #nav-menu li {
        list-style: none;
        margin: 1rem 0;
        position: relative;
        z-index: 999;
    }

    #nav-menu a {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
    }

    #nav-menu img {
        max-width: 120px;
        margin-bottom: 2rem;
    }

    #nav-menu .menu-gradient {
        position: absolute;
        bottom: 0;
        transform: rotate(-90deg);
        max-width: 100%;
        margin-bottom: 0;
        left: 0;
        opacity:0;
        transition: ease all 2s;
        display:block;
    }

    #nav-menu.open .menu-gradient {
        opacity:1;
    }

    #section1 {
        height:100vh;
        max-height:750px;
    }

    .image-wrapper, .gradient {
        top: 50%;
        transform: translate(0,-50%);
        height:auto;
    }
    h2 {
        font-size:1.75rem;
        max-width: 650px;
        padding:0 1.5rem;
    }
    .modal-content h2 {
        padding:0;
    }
    .spacer {
        padding:10rem 0;
    }

    .spacer-small {
        padding:5rem 0;
    }

    .panel {
        padding:4rem 1.5rem;
    }

    .text {
        font-size: 1.5rem;
    }

    .text span {
        font-size: 10rem;
    }

    .circle-title {
        font-size:1.15rem;
    }
    .circle-side.left {
        width:20vw;
    }
    .circle-side.right {
        width:20vw;
    }

    .circle-side p {
        font-size:0.75rem;
    }

    .feature img {
        width:30%;
    }
    #section6 {
        overflow:hidden;
    }
    #section6 .icon-block img {
        width: 40px;
        height: 40px;
    }
    #section6 .icon-block p {
        font-size: 1rem;
        max-width: 250px;
    }
    .bg-gradient {
        width: 1400px;
        height: 800px;
    }
    #section7 .lines-wrapper {
        width: 150%;
        left: -15%;
    }
    footer {
        margin-top:0;
    }
}

@media (max-width: 991px) {
    h1,h2,h3,h4 {
        line-height:2.25rem;
        font-weight:400;
    }
    .hero-content {
        /*top:30%;*/
    }
    .hero-content h1 {
        font-size: 1.75rem;
    }
    .hero-content p {
        font-size:1.25rem;
        line-height:1.75rem;
    }
    #section1 {
        height: 75vh;
        max-height: 850px;
    }
    .swiperSolutions .card {
        width:45%;
    }
    .swiperSolutions .card.right {
        margin-left:-3%;
    }
    .swiperSolutions .card.left {
        margin-right:-3%;
    }
    .swiperSolutions .card h3 {
        font-size:0.85rem;
    }
    .swiperSolutions .card p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    .swiperSolutions .arrow-circle {
        width:30px;
        height:30px;
        font-size: 12px;
    }
    .swiperSolutions .card.right::after {
        right: 15%;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {

    html {
        scroll-padding-top: 80px;
    }

    header {
        position:fixed;
        background:#090d19;
        padding: 3rem 1rem 1.5rem 1rem;
        top:0;
    }
    #nav-menu a {
        color: #d4e4ff;
        font-size: 1.25rem;
        text-decoration: none;
    }
    nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        background: #fff;
        padding: 10px 15px;
        border-radius: 30px;
        gap: 25px;
        display:none;
    }

    nav a::after {
        top: -30px;
        right: 50%;
        transform: translateX(50%);
    }

    nav.visible {
        right:50%;
    }

    .only-mobile {
        display:block;
    }
    .only-desktop {
        display:none;
    }
    .bg-gradient-wrapper {
        top:10%;
    }
    .sticky-wrapper {
        position: static;
        height: auto;
    }

    .scroll-container {
        flex-direction: column;
        width: 100vw;
        transform: none !important;
    }

    .panel {
        flex: none;
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 2rem;
    }

    .text,
    .image {
        width: 100%;
        margin: 0;
    }

    .text {
        font-size: 1rem;
    }

    .text span {
        font-size: 7.5rem;
        margin-right:1rem;
    }

    .feature {
        justify-content: center;
    }

    .gradient {
        width:100%;
    }

    footer {
        display:flex;
        flex-wrap:wrap;
        overflow:hidden;
        padding-bottom:3rem;
    }

    .footer-logo {
        display:none;
    }

    .footer-content {
        left: 1rem;
        position: relative;
        bottom: 15%;
    }

    .footer-newsletter {
        position: relative;
        width: 100%;
    }

    .footer-newsletter img {
        width: 130%;
        height: auto;
        position: absolute;
        right: 0;
        bottom: -80px;
    }

    .footer-newsletter .button {
        position: relative;
        right: unset;
        bottom: unset;
        width: max-content;
        left: 50%;
        transform: translate(-50%,0);
    }

    #section6 .icon-block:last-child {
        margin-bottom:0;
    }

}

@media (max-width: 660px) {
    .left, .right {
        flex: unset !important;
        width: 100%;
    }

    #section6 .left {
        padding:5rem;
    }

    .image-wrapper {
        width:300%;
    }

    .circle-content {
        display:block;
    }

    .circle-center {
        position:relative;
    }

    .circle-title {
        width: 30vw;
    }
    .circle-center img {
        width: 100%;
    }
    .circle-side {
        height:auto;
        flex-direction: row;
    }

    .circle-side.left {
        width:100%;
        margin:0;
        max-width:100%;
    }

    .circle-side.right {
        width:100%;
        margin:0;
        max-width:100%;
    }

    .feature {
        width:100%;
    }

    .feature-middle-left,.feature-middle-right {
        margin:0;
    }

    .modal-content {
        padding:1rem;
    }

    /*.gradient {
        top:45%;
        width:150%;
    }*/

    .faq-question {
        padding:0.75rem 25px;
        font-size: 0.9rem;
        padding-right:50px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .spacer-small {
        padding: 2.5rem 0;
    }

    .circle-feature-section {
        padding:5vw;
    }

    .text-column .slide-content {
        padding-bottom:0;
    }
}

@media (max-width:500px) {
    html {
        overflow-x:hidden;
    }
    #section1 {
        max-height:600px;
    }
    #section2 {
        padding-top:5rem;
    }
    .hero-content h1 {
        margin-bottom:1rem;
    }
    .swiperSolutions .card p {
        padding: 0;
        line-height:1.4rem;
    }
    .circle-title {
        font-size:1rem;
    }
    /*.image-wrapper {
        top:70%;
    }
    .hero-content {
        top:75%;
    }*/
    .featureSwiper .swiper-slide .slide-content {
        padding: 3.5rem 2.5rem;
    }
    .featureSwiper .swiper-slide .slide-content p {
        font-size:1rem;
    }
    .featureSwiper .button {
        font-size:0.85rem;
    }


    h2 {
        font-size:1.5rem;
    }

    .horizontal-scroll-section.bg-dark.spacer-top {
        padding-top: 0;
    }

    .text-column .slide-content {
        padding:1.5rem;
    }

    .text-column .slide-content p {
        font-size: 1.25rem;
    }

    .video-bubble {
        max-width: 200px;
        margin-bottom: 0rem;
        margin-top:5rem;
    }
}

@media (max-width: 440px) {
    .circle-side {
        /*flex-direction: column;*/
    }
    .circle-side.left, .circle-side.right {
        align-items: center;
    }

    .circle-side.right {
        margin-top:2rem;
    }

    .feature {
        max-width:175px;
        margin-bottom:2rem;
        padding: 0 0.5rem;
    }

    .circle-side p {
        font-size: 0.65rem;
    }

    .text-block {
        font-size: 1rem;
        margin-top:2.5rem;
    }

    .testimonial-wrapper {
        margin-top:0;
    }

    .image-wrapper img {
        margin-top: 5vh;
    }

    .hero-content {
        top:60%;
    }
}
