/**

    VARIABLES

 */
:root {
    --primary: #6AB75C;
    --green1:var(--primary);
    --green2:var(--primary);
    --mobile-menu-background: rgba(255, 255, 255, 0.8);
    --danger: #b00020;
    --gray: #b2b2b2;
    --header-height: 125px;
    --header-shrink-height: 100px;
}

/**

    HUGO FIXES

 */
p:empty {
    display: none !important;
}


/**

    FONTS

 */

/* Thin (Hairline) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 100;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Thin.ttf) format('truetype');
}

/* Extra Light (Ultra Light) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 200;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-ExtraLight.ttf) format('truetype');
}

/* Light */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Light.ttf) format('truetype');
}

/* Normal (Regular) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Regular.ttf) format('truetype');
}

/* Medium */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Medium.ttf) format('truetype');
}

/* Semi Bold (Demi Bold) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-SemiBold.ttf) format('truetype');
}

/* Bold */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Bold.ttf) format('truetype');
}

/* Extra Bold (Ultra Bold) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 800;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-ExtraBold.ttf) format('truetype');
}

/* Black (Heavy) */
@font-face {
    font-family: 'Encode Sans';
    font-style: normal;
    font-weight: 900;
    font-stretch: normal;
    font-display: swap;
    src: url(/fonts/encodesans/EncodeSans-Black.ttf) format('truetype');
}

/**

    GENERAL

 */
* {
    font-family: 'Encode Sans', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.text-w-400 {
    font-weight: 400;
}

img {
    max-width: 100%;
}

.youtube-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.f-20 {
    font-size: 20px;
}

.content {
    flex-grow: 1;
}

.color-white {
    color: white;
}
.color-red {
    color: var(--danger);
}

.centered {
    margin: 0 auto;
}

.bg-primary {
    background-color: var(--primary) !important;
}
.bg-danger {
    background-color: var(--danger) !important;
}
.bg-gray {
    background-color: var(--gray) !important;
}

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

.hidden {
    display: none;
}

.no-p-margins p {
    margin-bottom: 0 !important;
}

.scrollAnchor {
    width: 0;
    height: 0;
    opacity: 0;
    margin-top: calc(var(--header-height) * -1);
    position: absolute;
}

#scrollTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    transition: opacity 0.3s;
    text-align: center;
    cursor: pointer;
}

#scrollTop:before {
    content: '\2191';
    font-weight: 600;
    color: var(--primary);
    font-size: 50px;
    line-height: 50px;
    display: inline-block;
}

#scrollTop.scroll-hidden {
    opacity: 0;
    pointer-events: none;
}

.question-block {
    font-size: 50px;
    font-weight: 600;
}

.question-block p {
    margin-bottom: 0 !important;
}

.border-primary {
    border: 3px solid var(--primary) !important;
    font-size: 20px;
}

.card {
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    color: black;
}

.card.bg-dark {
    background-color: rgba(28, 25, 38, 0.94);
    color: white;
    border: 0;
}

.card.bg-grey {
    background-color: rgb(219, 219, 219);
}

.card.bg-light-grey {
    background-color: rgb(242, 242, 242);
}

.card ul {
    padding: 0;
}

.card ul li {
    position: relative;
    padding-left: 2.5em;
    font-size: 16px;
    font-weight: 600;
}

.card ul li:not(:last-child) {
    margin-bottom: 24px;
}

.card ul li::marker {
    content: '';
}

.card ul li::before {
    content: '';
    display: inline-block;
    width: 2em;
    height: 2em;
    top: -0.25em;
    left: 0;
    position: absolute;
    background: url('/icons/checkmark.svg') no-repeat center / contain;
}

.card.cross-list ul li::before {
    background: url('/icons/cross-mark.svg') no-repeat center / contain;
}

@media (max-width: 575px) {
    .privacy a,
    .imprint a {
        word-break: break-word;
    }
}

/**

    HEADER

 */
.header {
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: white;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: height 300ms;
    z-index: 10000;
}

.header.shrunk {
    height: var(--header-shrink-height) !important;
}

.header .navbar-brand {

}

.header > .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header > .container-fluid > .navbar-collapse {
    flex-grow: 0;
}

.header .logoLink {
    margin-right: 100px;
}

.header .navbar-brand .logo {
    max-width: 220px;
}

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

.navbar-nav:hover .nav-item:not(:hover) {
    color: rgba(0, 0, 0, 0.4) !important;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav .nav-item a {
    color: unset;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.navbar-nav .nav-item a:hover {
}

.navbar-nav .nav-item a.active {
    text-decoration: underline;
}

#home {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 991px) {
    .navbar-expand-lg .container-fluid {
        justify-content: space-between;
    }

    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 10px;
        background-color: var(--mobile-menu-background);
    }

    .header > .container-fluid {
        background-color: var(--mobile-menu-background);
    }
}

@media (max-width: 381px) {
    #header > .container-fluid {
        justify-content: center;
    }

    #header .logo {
        max-width: 100%;
    }

    #header {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    #header {
        padding-left: 0;
        padding-right: 0;
    }

    .header .navbar-brand {
        margin-right: 20px;
    }
}


/**

    PAGES

 */
section {
    padding: 4rem 0;
}

section.bg-image1 {
    background-image: url(https://venturebeat.com/wp-content/uploads/2021/05/GettyImages-1291886933-e1624308433688.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.gradient-dark {
    background-color: rgb(28, 25, 38);
    background-image: radial-gradient(circle at 0% 0%, rgba(28, 25, 38, 1) 0%, transparent 70%), radial-gradient(circle at 95% 9%, rgba(64, 52, 77, 1) 0%, transparent 17%);
    color: white;
}


/**

    FOOTER

 */
.footer {
    width: 100%;
    background-color: var(--primary);
    padding: 30px 0;
}

.footer .logo {
    max-width: 100%;
}

.footer *,
.footer a:visited,
.footer a:hover {
    color: white !important;
    font-weight: 500;
}

.footer a:hover {
    color: rgb(82, 156, 67) !important;
}

.footer a {
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(82, 156, 67) !important;
    transition: color .3s ease;
}

.footer .socialIcon {
    width: 25px;
    height: 25px;
    cursor: pointer;
    user-select: none;
}

.footer .socialIcon:not(:first-child) {
    margin-left: 25px;
}


/**

    COMPONENTS

 */

/**

    SLIDER

 */
.carousel .carousel-item {
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel .carousel-item .carousel-caption {
    bottom: 1.25rem;
    top: 1.25rem;
}

.carousel .carousel-item .carousel-caption .slideTitle {
    font-weight: 700;
    font-size: 72px;
    line-height: 90px;
}

.carousel .carousel-item .carousel-caption .slideContent {
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 45px;
}

.carousel .carousel-item .carousel-caption .slideButton {
    margin-top: 20px;
    background: var(--primary);
    border-radius: 10px;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 575px) {
    .carousel .carousel-item .carousel-caption .slideTitle {
        font-size: 33px;
        line-height: 50px;
    }

    .carousel .carousel-item .carousel-caption .slideContent {
        font-size: 20px;
        line-height: 35px;
    }

    .carousel .carousel-item .carousel-caption .slideButton {

    }
}

/**

    FLIPCARD

 */
.flipCard {
    width: 100%;
    perspective: 1000px;
}

.flipCard > .flipCardInner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flipCard:hover > .flipCardInner {
    transform: rotateY(180deg);
}

.flipCard > .flipCardInner > .front,
.flipCard > .flipCardInner > .back {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 27px;
}

.flipCard > .flipCardInner > .front > img {
    width: 100%;
    height: auto;
    border-radius: 27px;
}

.flipCard > .flipCardInner > .front .caption {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px;
    color: black;
    font-size: 36px;
    font-weight: 400;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
}

.flipCard > .flipCardInner > .back {
    transform: rotateY(180deg);
    background-color: var(--primary);
    color: white;
    font-size: 20px;
    position: absolute;
    top: 0;
    padding: 10px;
}

.flipCard > .flipCardInner > .back .cardLink:visited,
.flipCard > .flipCardInner > .back .cardLink {
    color: white !important;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 10px;
    text-decoration: none;
}

.flipCard > .flipCardInner > .back > .title {
    font-weight: 700;
}

.flipCard > .flipCardInner > .back > .techstack {
    font-size: 15px;
}

@media (max-width: 575px) {
    .flipCard > .flipCardInner > .front .caption {
        font-size: 16px;
    }

    .flipCard > .flipCardInner > .back p {
        margin-bottom: .5rem;
        font-size: 12px;
    }

    .flipCard > .flipCardInner > .back a {
        font-size: 12px;
        padding: 3px 10px !important;
    }

    .flipCard > .flipCardInner > .back p.techstack {
        font-size: 10px;
    }
}

/**

    TILES

 */
.tiles .tile {
    margin-bottom: 24px;
}

.tiles .tileWrapper {
    border: 2px solid var(--primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
}

.tiles .tileWrapper h3 {
    text-align: center;
    margin: 0;
}

/**

    SPECIALTITLE

 */
.specialTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.specialTitle h1,
.specialTitle h2,
.specialTitle h3,
.specialTitle h4,
.specialTitle h5,
.specialTitle h6 {
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.specialTitle.left:before {
    content: '';
    flex-grow: 1;
    margin-right: 10px;
}

.specialTitle.right:after {
    content: '';
    flex-grow: 1;
    border-top: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
    margin-left: 10px;
}

@media (max-width: 575px) {
    .specialTitle h1,
    .specialTitle h2,
    .specialTitle h3,
    .specialTitle h4,
    .specialTitle h5,
    .specialTitle h6 {
        font-size: var(--fontSizeMobile) !important;
    }
}

/**

    BUTTON

 */
.buttonWrapper {
    margin-top: 20px;
}

.buttonWrapper .btn {
    background-color: var(--primary);
    color: white !important;
}

/**

    IMAGE

 */
img.leftOut {
    border-radius: 100%;
}

@media (min-width: 992px) {
    img.leftOut {
        width: calc(100% * (1 + (1 / 12)));
        margin-left: calc(100% / 12 * -1);
    }
}

@media (max-width: 991px) {
    img.leftOut {
        width: 100%;
    }
}

/**

    TEXTTILES

 */
.text-tile .contentWrapper {
    border: 2px solid var(--primary);
    border-radius: 5%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-tile .contentWrapper .numeration {
    font-size: 30px;
    font-weight: 500;
}

.text-tile .contentWrapper .title {
    font-size: 24px;
    font-weight: 600;
    height: 72px;
}

.text-tile .contentWrapper .content {
    font-size: 18px;
    font-weight: 500;
}

/**

    CONTACT-FORM

 */
.contactTitle {

}

.contactForm {

}

.contactForm textarea {
    resize: none;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: black;
}

.contactForm input,
.contactForm textarea {
    border-color: black !important;
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: none !important;
}

.contactForm input.invalid,
.contactForm textarea.invalid {
    border-color: red !important;
}

.contactPrivacy input[type="checkbox"].invalid {
    box-shadow: 0 0 0 1px red !important;
}

.contactPrivacy a {
    color: var(--primary);
}

.contactPrivacy input {

}

#contactSubmit {
    margin-top: 20px;
    background: var(--primary);
    border-radius: 10px;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

.contactH {
    height: 0;
    width: 0;
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 100%;
    left: 0;
    right: 100%;
}

#contactSuccessMessage {
    color: white;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    border-radius: 10px;
    user-select: none;
    cursor: default;
}

/**

    FAQ

 */
.faq {
    --faq-border-radius: 10px;
}

.faq .accordion-item {
    border-width: 1px 0 0;
    border-style: solid;
    border-color: black;
    border-radius: 0;
    background-color: transparent;
    padding-bottom: 16px;
}

.faq .accordion-item:last-child {
    border-bottom-width: 1px;
}

.faq .accordion-item .accordion-body {
    padding: 0 0 1rem 0;
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
}

.faq .accordion-header button {
    font-size: 22px;
    font-weight: 500;
    border-radius: var(--faq-border-radius) !important;
    box-shadow: none !important;
    padding: 32px 0 16px;
}

.faq .accordion-header button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: black;
}

.faq .accordion-header button:after {
    width: 14px;
    height: 14px;
    background-size: contain;
}

.faq .accordion-header button:not(.collapsed):after {
    filter: grayscale(1) brightness(0);
}

.faq .accordion-collapse {
    font-size: 16px;
    font-weight: 400;
}


/**

            stepper

 */
.stepper-wizard .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: grid;
    place-items: center;
}

.stepper-wizard .modal {
    background: #fff;
    width: min(900px, 98vw);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    height: min(650px, 98vh);
    display: block;
    position: relative;
    color: black;
}

.stepper-wizard .stepper {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.stepper-wizard .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.stepper-wizard .dot.active {
    background: #333;
}

.stepper-wizard p {
    font-size: 14px;
}

.stepper-wizard li {
    font-size: 14px;
}

.stepper-wizard .buttons {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.stepper-wizard .hidden {
    display: none;
}

.stepper-wizard .error {
    color: var(--danger); /*#b00020;*/
    font-size: .9rem;
}

.stepper-wizard .flex-center {
    display: flex;
    justify-content: center;
}

.stepper-wizard .category-icon {
    cursor: pointer;
    user-select: none;
}
.stepper-wizard .category-icon .button-wrapper {
    font-size: 14px;
    border: 2px solid var(--gray);
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.stepper-wizard .category-icon .button-wrapper:hover,
.stepper-wizard .category-icon.selected .button-wrapper {
    border-color: var(--primary);
    color: var(--primary);
}

.stepper-wizard .category-icon.selected path{
    fill: var(--primary);
}
.stepper-wizard .category-icon.selected {
    color: var(--primary);
}

.stepper-wizard .category-icon:hover path{
    fill: var(--primary);
}
.stepper-wizard .category-icon input{
    height: 0;
    width: 0;
    opacity: 0;
}
.stepper-wizard .category-icon svg{
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}
.stepper-wizard section {
    padding-bottom: 0;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
}
.stepper-wizard .radio-wrapper input{
    height: 0;
    width: 0;
    opacity: 0;
}
.stepper-wizard .radio-wrapper label{
    cursor: pointer;
    font-size: 45px;
}
.stepper-wizard .radio-wrapper label:not(:last-child){
    margin-bottom: 25px;
}
.stepper-wizard .radio-wrapper label.selected{
    color: var(--primary);
    text-decoration: underline;
}
.stepper-wizard .radio-wrapper label:hover{
    color: var(--primary);
}
.stepper-wizard .radio-wrapper label:hover .button-wrapper,
.stepper-wizard .radio-wrapper label.selected .button-wrapper{
    border-color: var(--primary);
}

.stepper-wizard .radio-wrapper label .button-wrapper{
    border: 2px solid var(--gray);
    font-size: 45px;
    border-radius: 5px;
    display: block;
    padding: 5px 10px;
}

.stepper-wizard .btn.color-white:hover,
.stepper-wizard .btn.color-white:active,
.stepper-wizard .btn.color-white:focus,
.stepper-wizard .btn.color-white:focus-within,
.stepper-wizard .btn.color-white:focus-visible{
    color: white !important;
    border-color: white !important;
}

.stepper-wizard textarea {
    resize: none;
}
.stepper-wizard label span {
    font-size: 12px;
}
@media (max-width: 575px) {
    .stepper-wizard .radio-wrapper label{
        font-size: 32px;
    }
}

.stepper-button.shake {

    animation: autoLoop 2.000s linear infinite;
    transform-origin: center center;
    will-change: transform, opacity;

}
.stepper-button.color-white:hover {
    color: white !important;
    border-color: white !important;
}


@keyframes autoLoop {
    0%, 40%, 100% {
        transform: scale(1)
    }
    50%, 55% {
        transform: scale(0.9) rotate(-3deg)
    }
    60%, 70%, 80%, 90% {
        transform: scale(1.1) rotate(3deg)
    }
    65%, 75%, 85% {
        transform: scale(1.1) rotate(-3deg)
    }
}