html {
    scroll-behavior: smooth;
}

/**** Variables ****/

:root {
    --bg-mainGradientFb: #2F7AED;
    --bg-mainGradient: linear-gradient(90deg, rgba(47, 122, 237, 1) 0%, rgba(19, 224, 251, 1) 100%);
    --bg-mainGradientReverse: linear-gradient(90deg, rgba(19, 224, 251, 1) 0%, rgba(47, 122, 237, 1) 100%);
    --bg-white: #fff;
    --bg-lightblue: rgba(25, 201, 248, 1);
    --white: #fff;
    --black: #000;
    --primary: #2F7AED;
    --secondary: #2b2b2b;
    --title-font: "Alfa Slab One";
    --text-font: "Raleway";
}


/**** Body ****/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--text-font);
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    line-height: 1.5;
    color: #252a32;
    background: #ffffff;
}


nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
    justify-content: space-between;
    position: relative;
    background: transparent;
}

/*Styling logo*/
.logo {
    width: 211px;
    height: 40px;
    transition: 0.5s;
    filter: brightness(0) invert(1);
}

@media screen and (min-width: 768px) {
    .logo-mobile-menu {
        display: none;
    }
}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    text-transform: capitalize;
    justify-content: center;
}

.nav-links li a {
    text-decoration: none;
    margin-left: 1em;
}

.nav-links li a:last-of-type {
    margin-right: 0;
}

.nav-links li a:hover {
    color: #2F7AED;
}

.nav-links li .inactive-scroll {
    color: #767676;
}

.nav-links li .inactive-scroll:hover {
    color: #2F7AED !important;
}

.nav-links li .inactive-scroll::before {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    max-width: 50px;
    background-color: #2F7AED;
    position: absolute;
    transition: all ease-in-out 550ms;
    margin-top: 20px;
    margin-left: 16px;
}

.nav-links li .active {
    color: white;
    font-weight: bold;
}

.nav-links li .active-scroll {
    color: #2F7AED;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.5764705882);
}

.nav-links li a:hover {
    color: black;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    max-width: 50px;
    background-color: rgb(38, 38, 38);
    position: absolute;
    transition: all ease-in-out 550ms;
    margin-top: 20px;
    margin-left: 16px;
}

.nav-links li {
    position: relative;
}

.nav-links li a:hover::before {
    width: 100%;
}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        right: 5%;
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
        margin: 1em 0 !important;
    }

    .nav-links li a {
        margin: 0;
    }

    .nav-links li a::before {
        content: "";
        display: block;
        height: 2px;
        width: 0%;
        background-color: #2F7AED;
        position: absolute;
        transition: all ease-in-out 250ms;
        margin-top: 20px;
        margin-left: 0px;
    }

    .nav-links li {
        transition: all 3.5s ease 0.2s;
    }

    li.fade {
        opacity: 1;
    }
}

/** Hamburger Animation **/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navigation .container {
    max-width: 1340px;
    padding: 1em .6em;
}


/**** Component Classes ****/

.flex {
    display: flex;
}

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

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-noWrap {
    flex-wrap: nowrap;
}

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

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: flex-end;
}

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

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

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

.block {
    display: block;
}

.hidden {
    display: none !important;
}

.rm-invert {
    filter: none !important;
}

.invert-wh {
    filter: brightness(0) invert(1);
}

.alfa {
    font-family: 'alfa slab one';
}

.header-scroll {
    background: var(--bg-white) !important;
    box-shadow: 1px 1px 15px #00000012;
    -webkit-box-shadow: 1px 1px 15px #00000012;
}

.navbar-scroll {
    padding: 1.75em .75em !important;
}

.white {
    color: #fff;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
}

.container-fluid-100 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 99;
}

.title {
    font-family: var(--title-font);
    font-size: 40px;
}

.text {
    font-family: var(--text-font);
    color: var(--secondary);
}

.fw-bold {
    font-weight: bold;
}

.slider-text {
    font-family: var(--text-font);
    color: var(--white);
    font-size: 21px;
}

.slider-title {
    font-family: var(--title-font);
    font-size: 55px;
    font-weight: 100;
    max-width: 600px;
}

.menu-item a {
    color: var(--white);
    transition: .6s;
}

.menu-item a:hover {
    color: #000 !important;
}

.sub-description {
    font-family: var(--text-font);
    font-weight: 100;
    color: black;
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
    .menu-item a:hover {
        color: var(--primary) !important;
    }
}

.link-active {
    font-weight: 700 !important;
    color: var(--white) !important;
}


@media screen and (min-width: 1000px) {
    .link-scroll {
        color: #2b2b2ba3 !important;
    }
}

.link-activeScroll {
    color: var(--primary) !important;
}

.balk {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    top: -36px;
    height: 2px;
    background: white;
    opacity: .85;
}

.fw-container {
    max-width: 100%;
}

.mt-0 {
    margin-top: 0 !important;
}


.success-msg {
    position: fixed;
    background: rgba(7, 172, 7, 0.699);
    color: #fff;
    max-width: 80%;
    left: 0;
    right: 0;
    display: none;
    bottom: 150px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    padding: 1em 2em;
}

@media screen and (min-width: 1001px) {
    .success-msg {
        width: 85%;
        bottom: 15px;
    }
}

.closeButton {
    position: absolute;
    top: 5px;
    cursor: pointer;
    right: 25px;
    font-size: 25px;
    font-weight: bold;
}

/**** Header, Topbar, Navi ****/

.header {
    max-width: 100%;
    width: 100%;
    height: auto;
    background: transparent;
    margin-bottom: -9em;
    z-index: 9999;
    position: fixed;
    transition: 1s;
}

.topbar {
    padding: .75em 0em;
    font-size: 14px;
    font-family: "Raleway";
    transition: .6s;
    background: transparent;
    transition: 1s;
    z-index: 9999 !important;
    position: relative;
    display: flex;
    justify-content: center;
}


.topbar-scroll {
    background: rgb(44 136 239) !important;
}


.topbar-container {
    width: 1340px;
    display: flex;
    align-items: center;
}

.topbar-container div {
    width: 33.33%;
}

.topbar-mail {
    display: flex;
    align-items: center;
}

.topbar-mail i {
    margin-right: 6px;
}

.topbar-social {
    display: flex;
    justify-content: center;
}

.topbar-social a i {
    transition: .5s;
    font-size: 18px;
    margin: 0 3px;
}

.topbar-social a:hover i {
    color: #083970;
}

.topbar-phone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topbar-phone i {
    margin-right: 6px;
    color: #008AEE
}

.topbarGradientScroll {
    background: rgb(0, 138, 238);
    background: linear-gradient(90deg, rgba(0, 138, 238, 1) 008%, rgba(21, 147, 240, 1) 35%, rgba(25, 201, 248, 1) 100%);
}

.topbar-link {
    color: white;
    transition: .5s;
    text-decoration: none;
    margin-left: 6px;
}

.topbar-link:hover {
    color: #083970;
}

.topbar-gradient {
    background: rgb(0, 138, 238);
    background: linear-gradient(90deg, rgba(0, 138, 238, 1) 008%, rgba(21, 147, 240, 1) 35%, rgba(25, 201, 248, 1) 100%);
}

.header .navbar {
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-basis: auto;
    justify-content: space-between;
    align-items: center;
    max-width: 1340px;
    padding: 2.75em .75em;
    margin: 0 auto;
    transition: .6s;
}

.header .navbar .brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    text-transform: uppercase;
    color: #252a32;
    display: flex;
}

.logo {
    filter: brightness(0) invert(1);
    transition: .6s;
}

.header .navbar .menu {
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-basis: auto;
    justify-content: center;
    align-items: center;
}

.header .navbar .menu-item:not(:first-child) {
    margin-left: 2rem;
}

.header .navbar .menu-item a {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 200;
    line-height: inherit;
    color: #ffffff93;
}

.header .navbar .wrapper {
    transition: all 0.3s ease;
}


/**** Main ****/
.main {
    z-index: 1;
    position: relative;
}


/**** Slider ****/
.slider {
    max-width: 100%;
    padding: 2em .75em;
    position: relative;
    z-index: -1;
    padding-top: 12em;
    padding-bottom: 7em;
    background: var(--bg-mainGradient);
    position: relative;
    background: linear-gradient(49deg, blue, #169ce5, #cf15ff);
    background-size: 200% 100%;
    animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-animations {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.slider>.circle-right {
    opacity: .5;
    z-index: -1;
    position: absolute;
    right: 0;
    top: 20px;
    transform: scale(-1, -1);
    width: 600px;
}

.circle-left {
    display: none;
}


@media screen and (min-width: 992px) {
    .slider-right img {
        width: 95%;
    }
}


@media screen and (min-width: 1399px) {
    .slider .circle-left {
        position: absolute;
        bottom: -200px;
        left: 0;
        width: 1000px;
        display: block;
    }

    .slider>.circle-right {
        width: 1000px;
    }
}

@media screen and (min-width: 1200px) {
    .slider-left {
        padding-top: 3em;
    }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
    .slider-title {
        font-size: 35px;
    }

    .slider-left {
        padding-top: 2em;
    }

    .slider-image {
        max-width: 95%;
        height: auto;
    }

    .slider-right {
        text-align: right;
    }
}

@media screen and (max-width: 991px) {

    .slider .container {
        flex-direction: column;
    }

    .slider-left,
    .slider-right {
        width: 100% !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slider-right {
        margin-top: 2em;
        align-items: center;
    }

    .slider-right img {}

    .slider-text:nth-of-type(2) {
        display: none;
    }

    .slider {
        padding-top: 9em !important;
        padding-bottom: 12em;
    }

    .circle-right {
        opacity: .3 !important;
    }
}


.slider h1 {
    z-index: 9999 !important;
}

.slider-left,
.slider-right {
    width: 50%;
}

.slider-image {
    max-width: 100%;
    height: auto;
}


/**** CONTACT ****/
.contact-head {
    width: 100%;
    margin-bottom: 100px;
}

.contact-head h1 {
    font-weight: 100;
}

.contact-head h3 {
    font-weight: 100;
    margin: .5em 0em;
}

.contact-box {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5em;
    padding: 2em 0;
}

.contact-box p {
    text-align: center;
    color: white;
    margin: 1em 0 0 0;
}

.contact-social {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 99;
}

.contact-social div {
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.342);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.contact-social div:hover {
    background: rgba(255, 255, 255, 0.842);
}

.contact-social div:hover a svg {
    fill: var(--primary);
}

.contact-social div a {
    display: flex;
}

.contact-social>div>a>svg {
    max-width: 50px;
    height: auto;
    padding: .85em;
    fill: #fff;
}

@media screen and (min-width: 769px) {
    .contact-box:first-of-type {
        border-right: 1px dotted var(--primary);
    }

    .contact-box:nth-of-type(2) {
        border-left: 1px dotted #2b2b2b42;
        border-right: 1px dotted var(--primary);
    }

    .contact-box:nth-of-type(3) {
        border-left: 1px dotted #2b2b2b42;
    }
}


@media screen and (max-width: 768px) {
    .contact-head {
        margin-bottom: 0;
    }

    .contact-box:first-of-type {
        border-bottom: 1px dotted var(--primary);
    }

    .contact-box:nth-of-type(2) {
        border-top: 1px dotted #2b2b2b42;
        border-bottom: 1px dotted var(--primary);
    }

    .contact-box:nth-of-type(3) {
        border-top: 1px solid #2b2b2b42;
    }

    .contact-box {
        width: 100%;
        margin: 0;
    }

    .contact-head>div {
        flex-direction: column;
    }

    .contact-social {
        flex-direction: row !important;
    }
}

/**** PROTOTYPE SECTION ****/

.prototype {
    box-shadow: 1px 1px 15px #0000001a;
    margin-bottom: 3em;
    margin-top: -8em;
    z-index: 1 !important;
    position: relative;
    background-color: white;
    text-align: center;
    padding: 2em 2em;
}

.prototype h2 {
    font-family: "alfa slab one";
    font-size: 40px;
    color: black;
}

.prototype span {
    color: darkgray;
}

.form-container {
    margin-top: 1.5em;
}

.prototype-bg {
    position: absolute;
    font-family: "alfa slab one";
    font-size: 350px;
    opacity: .03;
    top: -170px;
    left: -100px;
}

.prototype-btn {
    background: white;
    border: 2px solid #006ebd;
    padding: 10px 20px !important;
    color: #006ebd;
    font-size: 17px;
    transition: .5s;
    text-transform: capitalize;
    font-weight: bold;
    cursor: pointer;
}

.prototype-btn:hover {
    background: #006ebd;
    color: white;
}

.form {
    flex-wrap: wrap;
}

.form-container {
    max-width: 900px;
    margin: 1em auto 0em auto;
    position: relative;
    z-index: 9999 !important;
}

.form div {
    width: 50%;
    padding: .25em;
}

.form div input {
    width: 100%;
    padding: 1em .45em;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Raleway";
}

.form div input:focus,
.form div textarea:focus {
    outline: 1px solid #008AEE;
}

.form div textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 1em .45em;
    font-size: 14px;
    font-family: "Raleway";
}

.form div:nth-of-type(5),
.form div:nth-of-type(6) {
    width: 100%;
}

.form div:last-of-type {
    width: 100%;
}



/** COMPANY VALUE SECTION **/


.company-value {
    margin-bottom: 6rem;
}

.company-value-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.company-value-box {
    padding: 1em 0;
    font-family: "alfa slab one";
    width: 25%;
    text-align: center;
    transition: .6s;
    font-size: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-value-box:hover {
    background: #008AEE !important;
    color: white;
}

.company-value-box:hover span {
    color: white;
}


.company-value-box span {
    color: white;
    font-family: "Raleway";
    color: gray;
    transform: .6s;
    font-size: 18px;
    font-weight: 300;
}


/**** ABOUT US SECTION ****/

.about-us {
    width: 100%;
    margin-bottom: 2em;
}

@media screen and (min-width: 992px) {
    .about-us {
        margin-bottom: 7em;
    }

    .wrapper-steps {
        margin-top: 4em;
        padding-top: 4em;
    }
}

.about-us-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
}

.about-us-bg {
    position: absolute;
    font-family: "alfa slab one";
    opacity: .03;
    font-size: 300px;
    top: -150px;
    left: 50px;
}

.about-us-left {
    width: 45%;
    font-family: "alfa slab one";
    font-size: 50px;
}

.about-us-left p {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: "Raleway";
    margin-top: 20px;
    max-width: 90%;
}

.about-us-right {
    width: 55%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-us-service-box {
    width: 50%;
    border: 1px solid rgb(201, 201, 201);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-family: "raleway";
    padding: 0 10px;
    transition: .6s;
}

.about-us-service-box:nth-of-type(2) {
    border-bottom: 0;
}

.about-us-service-box:nth-of-type(1) {
    border-bottom: 0;
    border-right: 0;
}

.about-us-service-box:nth-of-type(3) {
    border-right: 0;
}

.raleway {
    font-family: raleway;
}

.sz22 {
    font-size: 22px;
}

.about-us-service-box:hover {
    background: #008AEE;
    color: #fff;
}

.about-us-service-box svg {
    transition: .6s;
}

.about-us-service-box:hover svg {
    fill: #fff;
}

.all-services {
    margin-top: 1.5em;
    width: 100%;
    text-align: center;
}

/**** CONSULT US ****/

.consult-us {
    width: 100%;
    background: rgba(243, 243, 243, 0.481);
    padding: 3em 0;
    margin-bottom: 2em;
    z-index: 999;
    position: relative;
}

.consult-us-left {
    width: 70%;
    font-family: "alfa slab one";
    font-size: 44px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 25px;
}

.consult-us-left span {
    font-family: "Raleway";
    font-size: 18px;
    color: rgb(143, 143, 143);
}

.consult-us-right {
    width: 30%;
}

.macs {
    max-width: 100%;
    height: auto;
    margin-top: -11em;
}

.termin-btn {
    background: #006ebd;
    transition: 6s;
    font-family: "Raleway";
    font-size: 17px;
    max-width: max-content;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    color: white;
    margin-top: 12px;
    cursor: pointer;
    transition: .5s;
    border: 2px solid #006ebd;
}

.termin-btn:hover {
    background: white;
    color: #006ebd;
    border: 2px solid #006ebd;
}





/**** Steps ****/

.wrapper-steps {
    padding-top: 3em;
    margin-bottom: 2em;
}

.steps {
    margin-bottom: 3em;
    z-index: 1 !important;
    position: relative;
    background-color: white;
    text-align: center;
    padding: 2em 2em;
}

.steps-container {
    margin-top: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.steps-box {
    width: 33.33%;
    height: 150px;
    text-align: center;
    font-family: "raleway";
    position: relative;
}

.steps-box p {
    position: relative;
    margin-bottom: .5em;
}

.steps-bg {
    color: #008bee1f;
    font-size: 20px;
    font-family: var(--title-font);
}

@media screen and (max-width: 1200px) {
    .steps-box {
        width: 50%;
    }
}

@media screen and (max-width: 968px) {
    .steps-box {
        width: 100%;
    }
}

.drdsgvo-hide {
    display: none !important;
}


/**** COSTS ****/

.wrapper-costs {
    background-image: url(../img/consulting.jpg);
    background-size: contain;
    background-repeat: repeat-x;
    padding-top: 5em;
    margin-top: 4em;
    margin-bottom: 2em;
}

@media screen and (max-width: 968px) {
    .wrapper-costs {
        background-image: none !important;
        margin-top: -2em;
        padding-top: 0em;
    }

    .wrapper-steps {
        padding-top: 0;
    }

    .company-value {
        margin-bottom: 2rem;
    }
}

.costs {
    box-shadow: 1px 1px 15px #0000001a;
    margin-bottom: 3em;
    z-index: 1 !important;
    position: relative;
    background-color: white;
    text-align: center;
    padding: 2em 2em;
}

.costs-container {
    margin-top: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.costs-box {
    width: 25%;
    font-weight: bold;
    font-family: "raleway";
}

.costs-box {
    border-right: 1px dotted #dddddd;
}

.costs-box:last-of-type {
    border-right: none;
}

.price {
    color: #008AEE;
    display: block;
    margin-top: 10px;
}



/**** Referenzen ****/

.wrapper-reference {
    margin-bottom: 2em;
    margin-top: 5em;
    overflow: hidden;
}

.reference {
    z-index: 1 !important;
    position: relative;
    background-color: white;
    text-align: center;
}

.reference-container {
    padding-top: 2em;
    padding-bottom: 2em;
}

.reference-box {
    width: 20%;
    height: auto;
    transition: .5s;
    z-index: 1;
}

.reference-box:hover {
    transform: scale(1.05);
    z-index: 99999 !important;
}

.reference-box a:hover {
    background: #008AEE;
    z-index: 99999 !important;
}

.reference-box img {
    max-width: 100%;
    height: auto;
}

.img-overlay {
    position: relative;
    width: 100%;
}

.img-overlay-image {
    display: block;
    width: 100%;
    height: auto;
}



.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008beeb9;
}

.img-overlay:hover .overlay {
    opacity: 1;
}

.text-pr {
    color: white;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.button-pr {
    padding: 10px 20px;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    background: transparent;
    font-family: var(--text-font);
}

@media screen and (max-width: 768px) {
    .reference-box {
        width: calc(50% - 2em);
        margin-right: 1em;
        margin-bottom: 1em;
    }

    .reference-box:nth-of-type(even) {
        margin-right: 0;
        margin-bottom: 0;
    }

}



/**** Contact ****/

.wrapper-contact {
    margin-bottom: 2em;
    background: var(--bg-mainGradient);
    background: linear-gradient(49deg, blue, #169ce5, #cf15ff);
    background-size: 180% 180%;
    animation: gradient-animation 6s ease infinite;
    color: #fff;
}

.contact {
    margin-bottom: 3em;
    z-index: 1 !important;
    position: relative;
    text-align: center;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}


/**** Footer ****/
.wrapper-footer {
    width: 100%;
    height: auto;
    color: #fff;
}

.wrapper-footer .fw-container {
    padding: 1.5em 1em;
    background: linear-gradient(rgba(34, 34, 34, 0.70), rgba(34, 34, 34, 0.70)), #222222 url(../img/circles160.webp) right 150px/80% no-repeat scroll;
}


.wrapper-footer img {
    filter: brightness(0) invert(1);
}

.fw-container hr {
    margin: 1.5em 0em;
}

.footer-box {
    width: 33.33%;
}

.footer-us {
    color: #8f8f8f !important;
    display: block;
    max-width: 100%;
    margin-top: 5px;
}

.footer-contact {
    color: #8f8f8f !important;
    display: block;
    max-width: 100%;
    margin-top: 5px;
    font-size: 15px;
}

.footer-link {
    text-align: right;
    text-decoration: none;
    color: #a1a1a1;
    transition: .5s;
    display: inline-block;
    padding: .3em 0;
}

.footer-link:hover {
    color: #fff;
}

.bg-lg {
    background: #363636 !important;
    padding: 1.5em 0em;
}

.footer-c {}

.copyright {
    width: 100%;
}

.footer-impressum {
    width: 50%;
    text-align: right;
}

.footer-social {
    max-width: 36px !important;
    padding: 11px !important;
}

.footer .contact-social {
    margin-top: 1em;
}

.footer-line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #101010;
    margin: 1.5em 0 0 0;
}

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

.footer-content {
    border-top: 1px solid #2f2f2f;
    padding: 1.5em 0 0 0;
}

@media screen and (max-width: 1100px) {
    .footer-content {
        flex-direction: column !important;
    }

    .footer .contact-social {
        justify-content: center !important
    }

    .footer-box {
        margin-bottom: 1em;
        width: 100%;
        text-align: center !important;
    }

    .footer-link,
    .quick-links {
        text-align: center !important;
    }
}






/**** MENU ****/

.menu-logo,
.menu-bg {
    display: none;
}

.mobile-social,
.mobile-fb {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .header .navbar {
        margin: 0 auto;
        padding: 1em .75em;
    }

    .mobile-social {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin-top: 1em;
    }

    .mobile-fb {
        display: block;
        filter: brightness(0) invert(1);
    }

    .mobile-fb a img {
        width: 39px;
        height: 39px;
    }

    .menu-bg {
        position: relative;
    }

    .menu-bg img {
        position: absolute;
        filter: brightness(0) invert(1);
        top: 100px;
        width: 555px;
        opacity: 0.04;
    }

    .menu-bg {
        display: block;
    }

    .header .navbar .wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 100vh;
        z-index: -1;
        opacity: 0;
        overflow-y: auto;
        overflow-x: hidden;
        background: linear-gradient(301deg, blue, #169ce5, #cf15ff);
        background-size: 180% 180%;
        animation: gradient-animation 4s ease infinite;
    }

    .header .navbar .wrapper .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 360px;
        width: 100%;
        transform: translateY(-50%);
    }

    .menu-logo {
        position: relative;
        display: block;
    }

    .menu-brand {
        position: absolute;
        top: 69px;
        left: 12px;
        filter: brightness(0) invert(1) !important;
    }

    .header .navbar .wrapper .menu-item {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 1.5em 0 0 0;
    }

    .header .navbar .wrapper .menu-item:not(:first-child) {
        margin-left: 0;
    }

    .header .navbar .wrapper .menu-item a {
        opacity: 0;
        color: #252a32;
        font-size: 1rem;
        font-weight: 600;
        transform: translateX(-20px);
        transition: .5s;
    }

    .header .navbar .nav-toggle {
        display: block;
        position: relative;
        right: -12px;
        top: -3px;
        width: 2.5rem;
        height: 2.5rem;
        cursor: pointer;
        z-index: 999;
    }

    .header .navbar .nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        margin-left: 4px;
        transition: .6s;
    }

    .mobile-active {
        color: var(--primary) !important;
        background: white;
    }

    .burger-scroll {
        background: #000 !important;
    }

    .header .navbar .nav-toggle span:nth-child(1) {
        margin-top: 16px;
    }

    .header .navbar .nav-toggle span:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }

    .header .navbar .nav-toggle span:nth-child(3) {
        margin-top: 4px;
    }

    .header .navbar #nav:checked+.nav-toggle {
        transform: rotate(45deg);
    }

    .header .navbar #nav:checked+.nav-toggle span {
        background: #fff !important;
        transition: transform 0.5s ease;
    }

    .header .navbar #nav:checked+.nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(180deg);
    }

    .header .navbar #nav:checked+.nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header .navbar #nav:checked+.nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(90deg);
    }

    .header .navbar #nav:checked~.wrapper {
        z-index: 99;
        opacity: 1;
        width: 100vw;
    }

    .header .navbar #nav:checked~.wrapper .menu-item a {
        opacity: 1;
        transform: translateX(0);
        width: max-content;
        display: block;
        color: white;
        border-radius: 12px;
        padding: .5em 1.5em;
        margin-left: -8px;
    }

    .menu-bg img:nth-of-type(2) {
        right: -66px;
        width: 266px;
        top: 120px;
    }

    .header .navbar #nav:checked~.wrapper .menu-item a:hover {
        background: white;
    }

    .navbar-scroll {
        padding: 1em .75em !important;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1066px) {
    .header .navbar .menu-item a {
        font-size: 14px;
    }
}


/**** RESPONSIVE VALUES ****/

@media screen and (max-width: 991px) {

    .slider-title {
        font-size: 33px;
        max-width: 100%;
    }

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

    .description {
        max-width: 100% !important;
        padding: 5px 15px;
    }

    .costs-box {
        width: 50%;
    }

    .costs-box:nth-of-type(1),
    .costs-box:nth-of-type(2) {
        margin-bottom: 2.5em;
    }

    .costs-container {
        flex-wrap: wrap;
    }

    .costs-box:nth-of-type(2) {
        border-right: 0;
    }

    .termin-btn {
        margin: 10px auto;
    }

    .consult-us>.container {
        flex-direction: column !important;
        justify-content: center;
    }

    .consult-us-left,
    .consult-us-right {
        width: 100%;
        text-align: center;
        padding: 0 1em;
        font-size: 200%;
    }

    .macs {
        margin-top: 1em;
    }

    .about-us-left p {
        font-size: 18px;
        font-family: "Raleway";
        margin-top: 20px;
        max-width: 100%;
    }

    .about-us-wrapper {
        flex-direction: column;
    }

    .about-us-left,
    .about-us-right {
        width: 100%;
        padding: 16px;
        text-align: center;
    }

    .about-us-service-box {
        width: 100%;
        padding-top: 2em;
        padding-bottom: 2em;
    }


    .about-us-right {
        flex-direction: column;
    }

    .about-us-service-box:nth-of-type(1) {
        border-right: 1px solid rgb(201, 201, 201);
    }

    .about-us-service-box:nth-of-type(3) {
        border-right: 1px solid rgb(201, 201, 201);
        border-bottom: 0;
    }

    .main-content {
        position: relative;
    }

    .navbar {
        --bs-navbar-padding-y: 1rem;
    }

    .nav-link {
        text-align: center;
        transition: .5s;
    }

    .nav-link:hover {
        background: rgb(0, 138, 238);
        border-radius: 5px;
        color: white;
    }

    .nav-item .active:hover {
        color: white;
    }

    .navbar-nav {
        justify-content: center;
    }

    .nav-item button {
        min-width: 100%;
        margin-top: 7px;
    }

    .navbar-toggler:focus {
        box-shadow: unset !important;
    }

    .carousel-right {
        display: none;
    }

    .carousel-left {
        width: 100%;
        text-align: center !important;
        position: relative;
    }

    .carousel-item {
        height: 32rem !important;
    }

    .company-value-box {
        width: 50%;
    }

    .company-value-box:nth-of-type(1) {
        background: rgba(211, 211, 211, 0.144);
    }

    .company-value-box:nth-of-type(4) {
        background: rgba(211, 211, 211, 0.144);
    }
}

* {
    --bs-gutter-x: 0 !important;
}

@media screen and (max-width: 500px) {

    .prototype-bg,
    .about-us-bg {
        font-size: 35px !important;
    }

    .prototype h2 {
        font-size: 25px !important;
    }

    .company-value-box {
        font-size: 25px !important;
    }

    .about-us-left {
        font-size: 25px !important;
    }

    .consult-us-left,
    .consult-us-right {
        font-size: 25px !important;
    }

    .consult-us-left span {
        font-size: 18px !important;
    }

    .title {
        font-size: 25px;
    }

    .description {
        font-size: 18px;
    }
}

@media screen and (max-width: 1399px) {}

@media screen and (max-width: 600px) {
    .topbar-mail {}

    .topbar-social {
        display: none;
    }

    .topbar-container div {
        width: 50%;
    }
}

@media screen and (min-width: 992px) {
    .navbar-collapse {
        flex-basis: unset !important;
        flex-grow: unset !important;
        align-items: unset !important;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-item:last-of-type {
        margin-right: 0em;
    }

    .main-content {
        position: relative;
    }

    .company-value-box:nth-of-type(odd) {
        background: rgba(211, 211, 211, 0.144);
    }
}

@media screen and (max-width: 1199px) {
    .navbar-brand {
        margin-left: 7px;
    }

    .navbar-collapse {
        margin-right: 7px;
    }

    .navbar-toggler {
        margin-right: 10px;
    }
}

@media screen and (min-width: 3000px) {
    .circle-left {
        width: 1400px !important;
        top: 200px !important;
        bottom: unset !important;
    }

    .circle-right {
        width: 1700px !important;
    }
}

@media screen and (min-width: 1390px) {
    .header .navbar {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 1390px) {

    .about-us-wrapper,
    .consult-us>div,
    .topbar-container {
        padding: 0 .75em;
    }
}


@media screen and (min-width: 1001px) {
    .bottom-menu {
        display: none;
    }
}


@media screen and (max-width: 1000px) {
    .bottom-menu {
        width: 97%;
        position: fixed;
        bottom: 0;
        z-index: 9999 !important;
        background: var(--bg-mainGradient);
        box-shadow: 1px 1px 20px #00000038;
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto 6px auto;
        border-radius: 30px;
    }

    .bottom-menu ul {
        display: flex;
        flex-direction: row;
    }

    .bottom-menu ul li {
        font-size: 10px;
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: center;
        align-items: center;
        width: 25%;
    }

    .bottom-menu a {
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        padding: 1em .5em;
    }


    .bottom-menu li:first-of-type a {
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }

    .bottom-menu li:last-of-type a {
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .bottom-menu ul li:first-of-type a {
        border-right: 1px solid #2086e3;
    }

    .bottom-menu ul li:nth-of-type(2) a {
        border-left: 1px solid #299aff;
        border-right: 1px solid #1396d9;
    }

    .bottom-menu ul li:nth-of-type(3) a {
        border-left: 1px solid #30b8fb;
        border-right: 1px solid #0fb6e5;
    }

    .bottom-menu ul li:nth-of-type(4) a {
        border-left: 1px solid #38d3ff;
    }

    .bottom-menu-active {
        background: #0666b1;
        border: none !important;
    }

    .footer-c {
        padding-bottom: 60px;
        font-size: 13px;
    }
}

.get-offer div div form {
    min-width: 100%;
}

.get-offer div h1 {
    margin: 0 0 0 0;
}

.get-offer div p {
    margin: .3em 0 1em 0;
    color: #fff;
}

select {
    width: 100%;
    padding: 1em .45em;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Raleway";
}

@media screen and (max-width: 991px) {
    .get-offer div div form div div {
        min-width: 100%;
    }
}

.get-offer .send {
    display: flex;
    justify-content: center;
    margin: 1em 0 0 0;
}

.offer-btn {
    border: 2px solid #fff;
    color: var(--white);
    transition: .5s;
    padding: 10px 20px;
    background: transparent;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: bold;
    cursor: pointer;
}

.offer-btn:hover {
    background: #fff;
    color: var(--primary);
}

.offer {
    padding-bottom: 1em;
}

.offer .contact-head {
    margin-bottom: 2em;
}

.menu-logo .instagram {
    position: absolute;
    right: 15px;
    top: 300px;
    z-index: 99999;
}

.menu-logo .facebook {
    position: absolute;
    right: 15px;
    top: 360px;
    z-index: 99999;
}


#cookie-popup {
    position: fixed;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    width: 330px;
    padding: 20px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.85);
    color: #eee;
    font-family: arial;

}

#cookie-popup p:first-child {
    margin: 0;
    color: #eee;
    font-weight: 900;
    color: #00adef;
}

#cookie-popup p:nth-child(2) {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 25px;
}

#cookie-popup .link {
    color: #00adef;
    text-decoration: none;
}

#cookie-popup button {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    font-family: arial;
    padding: 8px 0;

    color: #fff;
    background-color: #00adef;


}

#cookie-popup button:hover {
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width: 450px) {
    #cookie-popup {
        max-width: 95%;
        right: 0;
        bottom: 20px;
        left: 0;
        margin: 0 auto;
    }
}

.cookie-link {
    background: none;
    border: none;
    font-family: 'Raleway';
    font-size: 17px;
    cursor: pointer;
}


.drdsgvo-col-lg-1,
.drdsgvo-col-lg-2,
.drdsgvo-col-lg-3,
.drdsgvo-col-lg-4,
.drdsgvo-col-lg-5,
.drdsgvo-col-lg-6,
.drdsgvo-col-lg-7,
.drdsgvo-col-lg-8,
.drdsgvo-col-lg-9,
.drdsgvo-col-lg-10,
.drdsgvo-col-lg-11,
.drdsgvo-col-lg-12,
.drdsgvo-col-md-1,
.drdsgvo-col-md-2,
.drdsgvo-col-md-3,
.drdsgvo-col-md-4,
.drdsgvo-col-md-5,
.drdsgvo-col-md-6,
.drdsgvo-col-md-7,
.drdsgvo-col-md-8,
.drdsgvo-col-md-9,
.drdsgvo-col-md-10,
.drdsgvo-col-md-11,
.drdsgvo-col-md-12,
.drdsgvo-col-sm-1,
.drdsgvo-col-sm-2,
.drdsgvo-col-sm-3,
.drdsgvo-col-sm-4,
.drdsgvo-col-sm-5,
.drdsgvo-col-sm-6,
.drdsgvo-col-sm-7,
.drdsgvo-col-sm-8,
.drdsgvo-col-sm-9,
.drdsgvo-col-sm-10,
.drdsgvo-col-sm-11,
.drdsgvo-col-sm-12,
.drdsgvo-col-xs-1,
.drdsgvo-col-xs-2,
.drdsgvo-col-xs-3,
.drdsgvo-col-xs-4,
.drdsgvo-col-xs-5,
.drdsgvo-col-xs-6,
.drdsgvo-col-xs-7,
.drdsgvo-col-xs-8,
.drdsgvo-col-xs-9,
.drdsgvo-col-xs-10,
.drdsgvo-col-xs-11,
..drdsgvo-col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.drdsgvo-col-xs-1,
.drdsgvo-col-xs-2,
.drdsgvo-col-xs-3,
.drdsgvo-col-xs-4,
.drdsgvo-col-xs-5,
.drdsgvo-col-xs-6,
.drdsgvo-col-xs-7,
.drdsgvo-col-xs-8,
.drdsgvo-col-xs-9,
.drdsgvo-col-xs-10,
.drdsgvo-col-xs-11,
..drdsgvo-col-xs-12 {
    float: left
}

..drdsgvo-col-xs-12 {
    width: 100%
}

.drdsgvo-col-xs-11 {
    width: 91.66666667%
}

.drdsgvo-col-xs-10 {
    width: 83.33333333%
}

.drdsgvo-col-xs-9 {
    width: 75%
}

.drdsgvo-col-xs-8 {
    width: 66.66666667%
}

.drdsgvo-col-xs-7 {
    width: 58.33333333%
}

.drdsgvo-col-xs-6 {
    width: 50%
}

.drdsgvo-col-xs-5 {
    width: 41.66666667%
}

.drdsgvo-col-xs-4 {
    width: 33.33333333%
}

.drdsgvo-col-xs-3 {
    width: 25%
}

.drdsgvo-col-xs-2 {
    width: 16.66666667%
}

.drdsgvo-col-xs-1 {
    width: 8.33333333%
}

.drdsgvo-col-xs-pull-12 {
    right: 100%
}

.drdsgvo-col-xs-pull-11 {
    right: 91.66666667%
}

.drdsgvo-col-xs-pull-10 {
    right: 83.33333333%
}

.drdsgvo-col-xs-pull-9 {
    right: 75%
}

.drdsgvo-col-xs-pull-8 {
    right: 66.66666667%
}

.drdsgvo-col-xs-pull-7 {
    right: 58.33333333%
}

.drdsgvo-col-xs-pull-6 {
    right: 50%
}

.drdsgvo-col-xs-pull-5 {
    right: 41.66666667%
}

.drdsgvo-col-xs-pull-4 {
    right: 33.33333333%
}

.drdsgvo-col-xs-pull-3 {
    right: 25%
}

.drdsgvo-col-xs-pull-2 {
    right: 16.66666667%
}

.drdsgvo-col-xs-pull-1 {
    right: 8.33333333%
}

.drdsgvo-col-xs-pull-0 {
    right: auto
}

.drdsgvo-col-xs-push-12 {
    left: 100%
}

.drdsgvo-col-xs-push-11 {
    left: 91.66666667%
}

.drdsgvo-col-xs-push-10 {
    left: 83.33333333%
}

.drdsgvo-col-xs-push-9 {
    left: 75%
}

.drdsgvo-col-xs-push-8 {
    left: 66.66666667%
}

.drdsgvo-col-xs-push-7 {
    left: 58.33333333%
}

.drdsgvo-col-xs-push-6 {
    left: 50%
}

.drdsgvo-col-xs-push-5 {
    left: 41.66666667%
}

.drdsgvo-col-xs-push-4 {
    left: 33.33333333%
}

.drdsgvo-col-xs-push-3 {
    left: 25%
}

.drdsgvo-col-xs-push-2 {
    left: 16.66666667%
}

.drdsgvo-col-xs-push-1 {
    left: 8.33333333%
}

.drdsgvo-col-xs-push-0 {
    left: auto
}

.drdsgvo-col-xs-offset-12 {
    margin-left: 100%
}

.drdsgvo-col-xs-offset-11 {
    margin-left: 91.66666667%
}

.drdsgvo-col-xs-offset-10 {
    margin-left: 83.33333333%
}

.drdsgvo-col-xs-offset-9 {
    margin-left: 75%
}

.drdsgvo-col-xs-offset-8 {
    margin-left: 66.66666667%
}

.drdsgvo-col-xs-offset-7 {
    margin-left: 58.33333333%
}

.drdsgvo-col-xs-offset-6 {
    margin-left: 50%
}

.drdsgvo-col-xs-offset-5 {
    margin-left: 41.66666667%
}

.drdsgvo-col-xs-offset-4 {
    margin-left: 33.33333333%
}

.drdsgvo-col-xs-offset-3 {
    margin-left: 25%
}

.drdsgvo-col-xs-offset-2 {
    margin-left: 16.66666667%
}

.drdsgvo-col-xs-offset-1 {
    margin-left: 8.33333333%
}

.drdsgvo-col-xs-offset-0 {
    margin-left: 0
}

@media (min-width:768px) {

    .drdsgvo-col-sm-1,
    .drdsgvo-col-sm-2,
    .drdsgvo-col-sm-3,
    .drdsgvo-col-sm-4,
    .drdsgvo-col-sm-5,
    .drdsgvo-col-sm-6,
    .drdsgvo-col-sm-7,
    .drdsgvo-col-sm-8,
    .drdsgvo-col-sm-9,
    .drdsgvo-col-sm-10,
    .drdsgvo-col-sm-11,
    .drdsgvo-col-sm-12 {
        float: left
    }

    .drdsgvo-col-sm-12 {
        width: 100%
    }

    .drdsgvo-col-sm-11 {
        width: 91.66666667%
    }

    .drdsgvo-col-sm-10 {
        width: 83.33333333%
    }

    .drdsgvo-col-sm-9 {
        width: 75%
    }

    .drdsgvo-col-sm-8 {
        width: 66.66666667%
    }

    .drdsgvo-col-sm-7 {
        width: 58.33333333%
    }

    .drdsgvo-col-sm-6 {
        width: 50%
    }

    .drdsgvo-col-sm-5 {
        width: 41.66666667%
    }

    .drdsgvo-col-sm-4 {
        width: 33.33333333%
    }

    .drdsgvo-col-sm-3 {
        width: 25%
    }

    .drdsgvo-col-sm-2 {
        width: 16.66666667%
    }

    .drdsgvo-col-sm-1 {
        width: 8.33333333%
    }

    .drdsgvo-col-sm-pull-12 {
        right: 100%
    }

    .drdsgvo-col-sm-pull-11 {
        right: 91.66666667%
    }

    .drdsgvo-col-sm-pull-10 {
        right: 83.33333333%
    }

    .drdsgvo-col-sm-pull-9 {
        right: 75%
    }

    .drdsgvo-col-sm-pull-8 {
        right: 66.66666667%
    }

    .drdsgvo-col-sm-pull-7 {
        right: 58.33333333%
    }

    .drdsgvo-col-sm-pull-6 {
        right: 50%
    }

    .drdsgvo-col-sm-pull-5 {
        right: 41.66666667%
    }

    .drdsgvo-col-sm-pull-4 {
        right: 33.33333333%
    }

    .drdsgvo-col-sm-pull-3 {
        right: 25%
    }

    .drdsgvo-col-sm-pull-2 {
        right: 16.66666667%
    }

    .drdsgvo-col-sm-pull-1 {
        right: 8.33333333%
    }

    .drdsgvo-col-sm-pull-0 {
        right: auto
    }

    .drdsgvo-col-sm-push-12 {
        left: 100%
    }

    .drdsgvo-col-sm-push-11 {
        left: 91.66666667%
    }

    .drdsgvo-col-sm-push-10 {
        left: 83.33333333%
    }

    .drdsgvo-col-sm-push-9 {
        left: 75%
    }

    .drdsgvo-col-sm-push-8 {
        left: 66.66666667%
    }

    .drdsgvo-col-sm-push-7 {
        left: 58.33333333%
    }

    .drdsgvo-col-sm-push-6 {
        left: 50%
    }

    .drdsgvo-col-sm-push-5 {
        left: 41.66666667%
    }

    .drdsgvo-col-sm-push-4 {
        left: 33.33333333%
    }

    .drdsgvo-col-sm-push-3 {
        left: 25%
    }

    .drdsgvo-col-sm-push-2 {
        left: 16.66666667%
    }

    .drdsgvo-col-sm-push-1 {
        left: 8.33333333%
    }

    .drdsgvo-col-sm-push-0 {
        left: auto
    }

    .drdsgvo-col-sm-offset-12 {
        margin-left: 100%
    }

    .drdsgvo-col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .drdsgvo-col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .drdsgvo-col-sm-offset-9 {
        margin-left: 75%
    }

    .drdsgvo-col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .drdsgvo-col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .drdsgvo-col-sm-offset-6 {
        margin-left: 50%
    }

    .drdsgvo-col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .drdsgvo-col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .drdsgvo-col-sm-offset-3 {
        margin-left: 25%
    }

    .drdsgvo-col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .drdsgvo-col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .drdsgvo-col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width:992px) {

    .drdsgvo-col-md-1,
    .drdsgvo-col-md-2,
    .drdsgvo-col-md-3,
    .drdsgvo-col-md-4,
    .drdsgvo-col-md-5,
    .drdsgvo-col-md-6,
    .drdsgvo-col-md-7,
    .drdsgvo-col-md-8,
    .drdsgvo-col-md-9,
    .drdsgvo-col-md-10,
    .drdsgvo-col-md-11,
    .drdsgvo-col-md-12 {
        float: left
    }

    .drdsgvo-col-md-12 {
        width: 100%
    }

    .drdsgvo-col-md-11 {
        width: 91.66666667%
    }

    .drdsgvo-col-md-10 {
        width: 83.33333333%
    }

    .drdsgvo-col-md-9 {
        width: 75%
    }

    .drdsgvo-col-md-8 {
        width: 66.66666667%
    }

    .drdsgvo-col-md-7 {
        width: 58.33333333%
    }

    .drdsgvo-col-md-6 {
        width: 50%
    }

    .drdsgvo-col-md-5 {
        width: 41.66666667%
    }

    .drdsgvo-col-md-4 {
        width: 33.33333333%
    }

    .drdsgvo-col-md-3 {
        width: 25%
    }

    .drdsgvo-col-md-2 {
        width: 16.66666667%
    }

    .drdsgvo-col-md-1 {
        width: 8.33333333%
    }

    .drdsgvo-col-md-pull-12 {
        right: 100%
    }

    .drdsgvo-col-md-pull-11 {
        right: 91.66666667%
    }

    .drdsgvo-col-md-pull-10 {
        right: 83.33333333%
    }

    .drdsgvo-col-md-pull-9 {
        right: 75%
    }

    .drdsgvo-col-md-pull-8 {
        right: 66.66666667%
    }

    .drdsgvo-col-md-pull-7 {
        right: 58.33333333%
    }

    .drdsgvo-col-md-pull-6 {
        right: 50%
    }

    .drdsgvo-col-md-pull-5 {
        right: 41.66666667%
    }

    .drdsgvo-col-md-pull-4 {
        right: 33.33333333%
    }

    .drdsgvo-col-md-pull-3 {
        right: 25%
    }

    .drdsgvo-col-md-pull-2 {
        right: 16.66666667%
    }

    .drdsgvo-col-md-pull-1 {
        right: 8.33333333%
    }

    .drdsgvo-col-md-pull-0 {
        right: auto
    }

    .drdsgvo-col-md-push-12 {
        left: 100%
    }

    .drdsgvo-col-md-push-11 {
        left: 91.66666667%
    }

    .drdsgvo-col-md-push-10 {
        left: 83.33333333%
    }

    .drdsgvo-col-md-push-9 {
        left: 75%
    }

    .drdsgvo-col-md-push-8 {
        left: 66.66666667%
    }

    .drdsgvo-col-md-push-7 {
        left: 58.33333333%
    }

    .drdsgvo-col-md-push-6 {
        left: 50%
    }

    .drdsgvo-col-md-push-5 {
        left: 41.66666667%
    }

    .drdsgvo-col-md-push-4 {
        left: 33.33333333%
    }

    .drdsgvo-col-md-push-3 {
        left: 25%
    }

    .drdsgvo-col-md-push-2 {
        left: 16.66666667%
    }

    .drdsgvo-col-md-push-1 {
        left: 8.33333333%
    }

    .drdsgvo-col-md-push-0 {
        left: auto
    }

    .drdsgvo-col-md-offset-12 {
        margin-left: 100%
    }

    .drdsgvo-col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .drdsgvo-col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .drdsgvo-col-md-offset-9 {
        margin-left: 75%
    }

    .drdsgvo-col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .drdsgvo-col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .drdsgvo-col-md-offset-6 {
        margin-left: 50%
    }

    .drdsgvo-col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .drdsgvo-col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .drdsgvo-col-md-offset-3 {
        margin-left: 25%
    }

    .drdsgvo-col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .drdsgvo-col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .drdsgvo-col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width:1200px) {

    .drdsgvo-col-lg-1,
    .drdsgvo-col-lg-2,
    .drdsgvo-col-lg-3,
    .drdsgvo-col-lg-4,
    .drdsgvo-col-lg-5,
    .drdsgvo-col-lg-6,
    .drdsgvo-col-lg-7,
    .drdsgvo-col-lg-8,
    .drdsgvo-col-lg-9,
    .drdsgvo-col-lg-10,
    .drdsgvo-col-lg-11,
    .drdsgvo-col-lg-12 {
        float: left
    }

    .drdsgvo-col-lg-12 {
        width: 100%
    }

    .drdsgvo-col-lg-11 {
        width: 100%
    }

    .drdsgvo-col-lg-10 {
        width: 83.33333333%
    }

    .drdsgvo-col-lg-9 {
        width: 75%
    }

    .drdsgvo-col-lg-8 {
        width: 66.66666667%
    }

    .drdsgvo-col-lg-7 {
        width: 58.33333333%
    }

    .drdsgvo-col-lg-6 {
        width: 50%
    }

    .drdsgvo-col-lg-5 {
        width: 41.66666667%
    }

    .drdsgvo-col-lg-4 {
        width: 33.33333333%
    }

    .drdsgvo-col-lg-3 {
        width: 25%
    }

    .drdsgvo-col-lg-2 {
        width: 16.66666667%
    }

    .drdsgvo-col-lg-1 {
        width: 8.33333333%
    }

    .drdsgvo-col-lg-pull-12 {
        right: 100%
    }

    .drdsgvo-col-lg-pull-11 {
        right: 91.66666667%
    }

    .drdsgvo-col-lg-pull-10 {
        right: 83.33333333%
    }

    .drdsgvo-col-lg-pull-9 {
        right: 75%
    }

    .drdsgvo-col-lg-pull-8 {
        right: 66.66666667%
    }

    .drdsgvo-col-lg-pull-7 {
        right: 58.33333333%
    }

    .drdsgvo-col-lg-pull-6 {
        right: 50%
    }

    .drdsgvo-col-lg-pull-5 {
        right: 41.66666667%
    }

    .drdsgvo-col-lg-pull-4 {
        right: 33.33333333%
    }

    .drdsgvo-col-lg-pull-3 {
        right: 25%
    }

    .drdsgvo-col-lg-pull-2 {
        right: 16.66666667%
    }

    .drdsgvo-col-lg-pull-1 {
        right: 8.33333333%
    }

    .drdsgvo-col-lg-pull-0 {
        right: auto
    }

    .drdsgvo-col-lg-push-12 {
        left: 100%
    }

    .drdsgvo-col-lg-push-11 {
        left: 91.66666667%
    }

    .drdsgvo-col-lg-push-10 {
        left: 83.33333333%
    }

    .drdsgvo-col-lg-push-9 {
        left: 75%
    }

    .drdsgvo-col-lg-push-8 {
        left: 66.66666667%
    }

    .drdsgvo-col-lg-push-7 {
        left: 58.33333333%
    }

    .drdsgvo-col-lg-push-6 {
        left: 50%
    }

    .drdsgvo-col-lg-push-5 {
        left: 41.66666667%
    }

    .drdsgvo-col-lg-push-4 {
        left: 33.33333333%
    }

    .drdsgvo-col-lg-push-3 {
        left: 25%
    }

    .drdsgvo-col-lg-push-2 {
        left: 16.66666667%
    }

    .drdsgvo-col-lg-push-1 {
        left: 8.33333333%
    }

    .drdsgvo-col-lg-push-0 {
        left: auto
    }

    .drdsgvo-col-lg-offset-12 {
        margin-left: 100%
    }

    .drdsgvo-col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .drdsgvo-col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .drdsgvo-col-lg-offset-9 {
        margin-left: 75%
    }

    .drdsgvo-col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .drdsgvo-col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .drdsgvo-col-lg-offset-6 {
        margin-left: 50%
    }

    .drdsgvo-col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .drdsgvo-col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .drdsgvo-col-lg-offset-3 {
        margin-left: 25%
    }

    .drdsgvo-col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .drdsgvo-col-lg-offset-1 {
        margin-left: 0
    }

    .drdsgvo-col-lg-offset-0 {
        margin-left: 0
    }
}

.drdsgvo-hide {
    display: none !important;
}

.drdsgvo_button {
    background-color: transparent !important;
    border-color: #fff !important;
}

.drdsgvo_button:hover {
    background-color: transparent !important;
    border-color: #000000 !important;
}

.drdsgvo_button {
    color: #ffffff !important;
}

.drdsgvo_button:hover {
    color: #000000 !important;
}

.wdrdsgvo_main_mess {
    color: #000000 !important;
}

.drdsgvo_ui {
    background-color: #ffffff !important;
}

.drdsgvo_cmp_showing {
    opacity: 1;
    visibility: visible;
}

.drdsgvo_ui:not(.drdsgvo_cmp_showing),
.drdsgvo_ui_con:not(.drdsgvo_cmp_showing) {
    opacity: 0;
    overflow-y: scroll;
    visibility: hidden;
    will-change: visibility, opacity;
}

@media screen and (min-height: 601px) and (min-width:1024px) {
    .drdsgvo-flex {
        display: flex;
    }

    .impds {
        position: absolute;
        bottom: 5px;
        left: 0px;
        right: 0px;
    }

}

@media screen and (max-height: 600px) {
    .drdsgvo-flex {
        display: block;
    }
}

.drdsgvo_ui.drdsgvo_cmp_showing {
    visibility: visible;
    opacity: 1;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: Arial, Verdana, sans-serif;
    justify-content: space-between;
    left: 0;
    max-height: 100vh;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    background-color: #ffffff !important;
}

.drdsgvo_ui_con:not(.dspag) {
    background: rgba(33, 41, 52, .85) !important;
}

.drdsgvo_ui_con.dspag {
    background: rgba(33, 41, 52, .15) !important;
}

.drdsgvo_ui_con {
    bottom: 0 !important;
    display: flex !important;
    left: 0 !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transition: opacity .15s ease;
    z-index: 2147483647 !important;
}

    {
    display: flex !important;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.drdsgvo_buttons .drdsgvo_button {
    min-width: 280px !important;
}

.drdsgvo_button {
    border: 2px solid #fff;
    border-radius: 3px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2);
    box-sizing: border-box;
    cursor: pointer !important;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    height: 55px !important;
    margin: 0 0 15px;
    line-height: 34px;
    padding: 0 13px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .drdsgvo_buttons {
        padding-left: 0px;
        text-align: center;
        display: block;
    }
}

@media screen and (max-width: 620px) {
    h2.drdsgvo_cmp_title {
        font-size: 22px;
    }
}

@media screen and (max-width: 380px) {
    .drdsgvo_button-small {
        min-width: 150px;
    }
}

@media screen and (min-width: 381px) {
    .drdsgvo_button-small {
        min-width: 180px;
    }
}

.drdsgvo_main_mess {
    font-size: 16px;
}

@media screen and (max-width: 480px) {
    .drdsgvo_main_mess {
        font-size: 13px;
    }
}

.drdsgvo_button {
    height: initial !important;
    height: auto !important;
}

.btnwww1 {
    min-width: 140px !important;
    text-align: center;
    margin-bottom: 8px;
    display: inline-block;
}

@media (min-width: 768px) {
    .btnwww1 {
        display: block;
    }

    .wwwbtns1 {
        margin-top: 32px;
    }
}

.drdsgvo_buttons .drdsgvo_button {
    min-width: 180px !important;
}

@media (max-width: 768px) {
    .drdsgvo_buttons .drdsgvo_button {
        min-width: 120px !important;
    }
}

.whatsapp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
}