/**

    VARIABLES


    --header-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);

 */
:root{
    --primary: #6AB75C;
    --secondary: #183153;
    --mobile-menu-background: rgba(24,49,83,0.8);
    --header-height: 125px;
    --header-shrink-height: 100px;
    --header-background: var(--secondary);
    --header-box-shadow: none;
    --header-font-color: white;
    --nav-brand-text-color: white;
    --nav-brand-text-weight: 700;
    --nav-brand-text-size: 30px;
}

/**

    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;
}
.content{
    flex-grow: 1;
}
.color-white{
    color: white;
}
.centered{
    margin: 0 auto;
}
.bg-primary{
    background-color: var(--primary) !important;
}
.bg-secondary{
    background-color: var(--secondary) !important;
}
.text-left{
    text-align: left;
}
.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;
}
.round-top-50{
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}
.round-bottom-50{
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.round-top-100{
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}
.round-bottom-100{
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}
@media(max-width: 575px){
    .privacy a,
    .imprint a{
        word-break: break-word;
    }
}

/**

    HEADER

 */
.header{
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--header-background);
    -webkit-box-shadow: var(--header-box-shadow);
    box-shadow: var(--header-box-shadow);
    height: var(--header-height);
    color: var(--header-font-color);
    transition: height 300ms;
    z-index: 10000;
}
.header .navbar-brand{
    color: var(--nav-brand-text-color);
    font-weight: var(--nav-brand-text-weight);
    font-size: var(--nav-brand-text-size);
}
.header.shrunk{
    height: var(--header-shrink-height) !important;
}
.header .navbar-brand{
    margin-right: 100px;
}
.header > .container-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header > .container-fluid > .navbar-collapse{
    flex-grow: 0;
}
.header .logoLink{
    margin-right: 100px;
}
.navbar-nav{
    flex-wrap: wrap;
}
.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: 500;
    font-size: 20px;
    text-transform: uppercase;
}
.navbar-nav .nav-item a:hover{
    color: #c2c2c2;
}
.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;
    }
}
@media(max-width: 510px){
    .header .navbar-brand{
        font-size: 24px;
    }
}



/**

    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;
}




/**

    FOOTER

 */
.footer{
    width: 100%;
    background-color: #000;
    padding: 30px 0;
}
.footer .logo{
    max-width: 100%;
}
.footer *,
.footer a:visited,
.footer a:hover{
    color: white !important;
    font-weight: 500;
    font-size: 16px;
}
.footer a{
    text-decoration: none;
}
.footer .socialIcon{
    width: 25px;
    height: 25px;
    cursor: pointer;
    user-select: none;
}
.footer .socialIcon:not(:first-child){
    margin-left: 25px;
}
.footer h4{
    font-size: 24px;
}


/**

    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{

    }
}
.contact-button-top{
    width:80%;
    font-size:32px;
    font-weight: bold;
    color: white !important;
}
.contact-button-top-2{
    width:80%;
    font-size:32px;
    font-weight: bold;
    background-color: white!important;
    color: var(--secondary)!important;
}

/**

    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.text-left > *{
    text-align: left !important;
}
.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;
    border-top: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
    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;
}

/**

    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{
    font-size: 20px;
}
.contactForm{

}
.contactForm textarea{
    resize: none;
}
.contactForm input::placeholder,
.contactForm textarea::placeholder{
    color: black;
}
.contactForm input,
.contactForm textarea,
.contactForm select,
.form-control {
    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;
    font-size: 26px;
    font-weight: 400;
}
.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: 1px solid black !important;
    border-radius: var(--faq-border-radius);
    background-color: white;
}
.faq .accordion-header button{
    font-size: 18px;
    font-weight: 500;
    border-radius: var(--faq-border-radius) !important;
    box-shadow: none !important;
}
.faq .accordion-header button:not(.collapsed){
    background-color: white;
    box-shadow: none;
    color: black;
}
.faq .accordion-header button:not(.collapsed):after{
    filter: grayscale(1) brightness(0);
}
.faq .accordion-collapse{
    font-size: 16px;
    font-weight: 400;
}

/**

    BRANDS

 */
.brands-wrapper{

}
.brands-wrapper .brand-item{

}
.brands-wrapper .brand-item:not(:last-child){
    margin-right: 15px;
}
.brands-wrapper .brand-item img{
    max-height: 75px;
    height: 75px;
}

/**

    SERVICECARDS

 */

section.service-row > div > .row{
    display: flex;
    align-items: center;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper{
    border-radius: 10px;
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-badge{
    text-align: center;
    font-size: 16px;
    font-weight: bolder;
    margin: 0 30% 5% 30%;
    padding: 5px 0px;
    border-radius: 15px;
    background-color: var(--primary);
    color:white !important;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-title{
    text-align: center;
    font-size: 24px;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-price{
    text-align: center;
    font-size: 64px;
    font-weight: bold;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-info{
    text-align: center;
    font-size: 16px;
    color: #454545;
    margin-bottom: 50px;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-items{
    padding-left: 20px;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-items > .service-item:before{
    content: "";
    display: inline-block;
    background-image: url("/icons/checkmark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-link:hover{
    background-color: rgba(24, 49, 83, 0.1);
    color: white !important;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-link:active,
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-link:visited{
    text-decoration: none !important;
    color: white !important;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-link{
    border: 2px solid var(--primary);
    border-radius: 5px;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 30px;
    display: inline-block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--primary)!important;
    color: white !important;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-items > .service-item{
    font-size: 20px;
    display: flex;
    align-items: center;
}
section.service-row > div > .row > .serviceCard > .serviceCardWrapper > .service-items > .service-item:not(:last-child){
    margin-bottom: 8px;
}
