/* open-sans-300 - latin */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: url('../fonts/open-sans-v17-latin-300.eot'); /* IE9 Compat Modes */
src: local('Open Sans Light'), local('OpenSans-Light'),
    url('../fonts/open-sans-v17-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/open-sans-v17-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/open-sans-v17-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../fonts/open-sans-v17-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/open-sans-v17-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('../fonts/open-sans-v17-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url('../fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/open-sans-v17-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/open-sans-v17-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/open-sans-v17-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: url('../fonts/open-sans-v17-latin-700.eot'); /* IE9 Compat Modes */
src: local('Open Sans Bold'), local('OpenSans-Bold'),
    url('../fonts/open-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/open-sans-v17-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/open-sans-v17-latin-700.woff') format('woff'), /* Modern Browsers */
    url('../fonts/open-sans-v17-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/open-sans-v17-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}


html {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

* {
    box-sizing: border-box;
    position: relative;
}

a {
    color: #ff3b00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* General */

.section {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 6rem;
}

@media(max-width: 1300px) {
    .section {
        width: 96%;
    }
}

@media(max-width: 1048px) {
    .section {
        width: 80%;
    }
}

@media(max-width: 640px) {
    .section {
        width: 90%;
    }
}

.section h1 {
    font-size: 3rem;
    padding-top: 5rem;
    margin-bottom: 4rem;
    text-align: center;
}

@media(max-width: 560px) {
    .section h1 {
        padding-top: 0;
        margin-top: 5rem;
    }
}

.section h1 .title {
    display: block;
}

.section h1 .title-line {
    width: 155px;
    height: 4px;
    background-color: #333;
    display: block;
    margin: 0.75rem auto 0 auto;
}

@media(max-width: 1048px) {
    .section h1 {
        font-size: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .section h1 .title-line {
        margin: 0.75rem 0 0 0;
    }
}

.label-in-entwicklung {
    display: inline-block;
    background-color: #ff3b00;
    padding: 0.1rem 0.325rem;
    border-radius: 3px;
    color: white;
    font-size: 0.8rem;
    vertical-align: middle;
    margin-top: -0.1rem;
    margin-right: 0.325rem;
    margin-left: -3px;
    user-select: none;
}

/* Image carousel */

.image-carousel {
    width: 580px;
    height: auto;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.image-carousel-wrapper {
    overflow: hidden;
    position: relative;
    background: #222;
    z-index: 1;
}

.image-carousel-items {
    width: 10000px;
    position: relative;
    top: 0;
    left: -580px;
}

.image-carousel-items.shifting {
    transition: left .2s ease-out;
}

.image-carousel-slide {
    width: 580px;
    height: auto;
    cursor: pointer;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 1s;
    position: relative;
}

.image-carousel-slide img {
    width: 100%;
    height: 100%;
}

[class^="image-carousel-control-"] {
    position: absolute;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 1.25rem;
    margin-top: -1.25rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: none;
}

.image-carousel:hover [class^="image-carousel-control-"] {
    display: block;
}

.image-carousel-control-prev,
.image-carousel-control-next {
    background-size: 1.375rem;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.image-carousel-control-prev {
    background-image: url(../resources/arrow-left.png);
    left: -1.25rem;
}

.image-carousel-control-next {
    background-image: url(../resources/arrow-right.png);
    right: -1.25rem;
}

.image-carousel-control-prev:active,
.image-carousel-control-next:active {
    transform: scale(0.8);
}

.image-carousel-control-prev:hover,
.image-carousel-control-next:hover {
    background-color: #eee;
}

.image-carousel-new-tab {
    position: absolute;
    top: 0.325rem;
    right: 0.325rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: none;
    background-image: url(../resources/open-link.png);
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.image-carousel:hover .image-carousel-new-tab {
    display: block;
}

.image-carousel-new-tab:active {
    transform: scale(0.8);
}

.image-carousel-new-tab:hover {
    background-color: #eee;
}

/* Image overlay */

.image-overlay {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-overlay img {
    max-width: 80vw;
    max-height: 80vh;
    height: auto;
}

/* Hero */

.hero-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background-image: url(../resources/hero-background.jpg);
    background-size: cover;
    background-color: #222;
}

.hero-background-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    opacity: .75;
}

.hero-logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.hero-logo-wrapper img {
    padding: 1.5rem 2rem;
    width: 13rem;
}

.hero-header-wrapper {
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-header-wrapper h1 {
    color: white;
    font-weight: 300;
    font-size: 5rem;
    padding: 0 2rem;
    margin: 0;
    max-width: 80rem;
}

@media(max-width: 1300px) {
    .hero-header-wrapper h1 {
        font-size: 4rem;
    }
}

@media(max-width: 900px) {
    .hero-header-wrapper h1 {
        font-size: 3rem;
    }
}

@media(max-width: 560px) {
    .hero-header-wrapper h1 {
        font-size: 2em;
    }
}

.hero-header-wrapper button {
    font-size: 1.4rem;
    padding: 0.325rem 2.5rem;
    border: 1px solid #ff3b00;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    background-color: #ff3b00;
    color: white;
    margin-top: 3rem;
    margin-bottom: 2rem;
    display: block;
    cursor: pointer;
}

.hero-header-wrapper button:focus,
.hero-header-wrapper button:active,
.hero-header-wrapper button:hover {
    border: 1px solid #dd3400;
    background-color: #dd3400;
}

.hero-image-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.hero-image-wrapper img {
    width: 80vh;
    max-width: 80%;
    max-height: 50vh;
    box-shadow: 0 0 5rem 1rem black;
}

/* Header */

.header-wrapper {
    height: 4rem;
}

.header-fixed {
    height: 4rem;
    background-color: #DDD;
    width: 100%;
}

.header-fixed.fixed {
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(167, 167, 167, 0.8);
}

.header-wrapper header {
    height: 4rem;
    display: flex;
    align-items: center;
}

.header-wrapper img.logo {
    height: 40%;
}

.header-wrapper nav {
    margin-left: auto;
    height: 100%;
}

.header-wrapper nav a {
    color: #333;
    text-decoration: none;
    height: 100%;
    padding: 0 1rem;
    display: inline-block;
}

.header-wrapper nav a:hover {
    background-color: #E9E9E9;
}

.header-wrapper nav a div {
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width: 700px) {
    .header-wrapper nav {
        display: none;
    }
}

/* Promise */

.promise-wrapper {}

.promise-wrapper h1 {
    margin-top: 3rem;
}

@media(max-width: 1048px) {
    .promise-wrapper h1 {
        margin-top: 0;
    }
}

.promises {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.promise {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.promise-image-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-image-wrapper img {
    max-width: 60%;
    max-height: 100%;
}

@media(max-width: 1048px) {
    .promise {
        width: calc(100% / 3);
        flex: none;
    }
}

@media(max-width: 900px) {
    .promise {
        width: calc(100% / 2);
        flex: none;
    }
}

@media(max-width: 640px) {
    .promise {
        width: 100%;
        flex: none;
    }
}

/* Features */

.features-wrapper {}

.feature-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-row-wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.feature-row-wrapper:first-child {
    padding-top: 0;
}

.feature-row-wrapper:last-child {
    padding-bottom: 10rem;
}

@media(max-width: 1048px) {
    .feature-row-wrapper {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .feature-row-wrapper:last-child {
        padding-bottom: 10rem;
    }
}

.feature-row-wrapper:first-child .feature-row {
    margin-top: 0;
}

.feature-row-wrapper .section {
    margin-bottom: 0;
}

/* 
.feature-row:last-child {
    margin-bottom: 0;
} */

@media(min-width: 1049px) {
    .feature-row-wrapper:nth-child(even) .feature-row {
        flex-direction: row-reverse;
    }
}

.feature-row-wrapper:nth-child(even) {
    background-color: #f7f7f7;
}

.feature-column-images,
.feature-column-text,
.feature-column-call-to-action {
    width: 50%;
    max-width: 50%;
    padding: 0 2rem;
}

@media(max-width: 1048px) {
    .feature-row {
        flex-direction: column-reverse;
        padding: 0;
    }

    .feature-column-images,
    .feature-column-text,
    .feature-column-call-to-action {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 0;
    }
}

.feature-column-images-wrapper {
    width: 100%;
    height: auto;
}

.feature-column-text h2 {
    margin-top: 0;
}

.feature-column-text li {
    margin-bottom: 0.75rem;
}

.feature-column-text ul {
    list-style-type: none;
    padding-left: 2.25rem;
}

.feature-column-text ul li:before {
    content: '';
    display: inline-block;
    height: 0.625rem;
    width: 0.625rem;
    background-size: 0.625rem;
    background-image: url(../resources/list-icon.svg);
    background-repeat: no-repeat;
    margin-left: -1.25rem;
    margin-right: 0.625rem;
}

@media(min-width: 1048px) {
    .feature-column-call-to-action {
        display: flex;
        justify-content: center;
    }
}

.feature-column-call-to-action a {
    font-size: 1.4rem;
    padding: 0.325rem 2.5rem;
    border: 1px solid #ff3b00;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    background-color: #ff3b00;
    color: white;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.feature-column-call-to-action a:focus,
.feature-column-call-to-action a:active,
.feature-column-call-to-action a:hover {
    border: 1px solid #dd3400;
    background-color: #dd3400;
}

/* Price */

.price-wrapper {
    background-color: #f0f0f0;
    overflow: auto;
}

.price-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../resources/price-background.jpg);
    background-size: cover;
    background-color: #f0f0f0;
    filter: blur(2px);
}

.price-background-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f0f0f0;
    opacity: .85;
}

.price-wrapper .section {
    margin-bottom: 6rem;
    overflow: hidden;
}

@media(max-width: 900px) {
    .price-wrapper .section {
        margin-bottom: 4rem;
    }
}

.price-row {
    width: calc(100% + 4rem);
    margin: 0 -2rem;
    display: flex;
    flex-wrap: wrap;
}

[class^="price-column"] {
    margin: 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-column-hero {
    margin: 0 3rem 0 2rem;
}

.price-column-info {
    margin: 0 2rem 0 3rem;
}

.price-column-info ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.price-column-info li:not(:last-child) {
    margin-bottom: 2rem;
}

.price-hero {
    font-weight: 700;
    font-size: 4.5rem;
    text-transform: uppercase;
    text-align: right;
}

@media(max-width: 1048px) {
    .price-row {
        width: calc(100% + 2rem);
        margin: 0 -1rem;
    }

    [class^="price-column"] {
        margin: 0 1rem;
    }

    .price-hero {
        font-size: 3.5rem;
    }
}

@media(max-width: 900px) {
    .price-row {
        width: 100%;
        margin: 0;
    }

    [class^="price-column"] {
        width: 100%;
        flex: none;
        margin: 0;
    }

    .price-column-hero {
        margin-bottom: 2rem;
    }

    .price-hero {
        text-align: center;
        margin-top: 1rem;
    }
}


@media(max-width: 560px) {
    .price-hero {
        font-size: 2.5rem;
    }
}

/* Contact */

.contact-wrapper {
    margin-bottom: 7rem;
}

.contact-wrapper h1 {
    margin-top: 3rem;
}

.contact-wrapper h3 {
    text-align: center;
    margin: 0 0 4rem 0;
}

@media(max-width: 1048px) {
    .contact-wrapper h3 {
        text-align: left;
    }
}

.contact-form {
    width: 100%;
}

.contact-form-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contact-form-column {
    margin: 0 2rem;
    flex: 1;
}

@media(max-width: 1048px) {
    .contact-form-row {
        width: calc(100% + 2rem);
        margin: 0 -1rem;
    }

    .contact-form-column {
        margin: 0 1rem;
    }
}

@media(max-width: 900px) {
    .contact-form-column {
        width: 100%;
        flex: none;
        margin: 0;
    }
}

@media(max-width: 640px) {
    .contact-form-row {
        margin: 0;
        width: 100%;
    }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid lightgray;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border: 1px solid darkgray;
    box-shadow: 0px 0px 5px rgba(123, 122, 122, 0.3);
}

.contact-form button {
    width: 35rem;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    border: 1px solid lightgray;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    background-color: #DDD;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}

.contact-form button:focus,
.contact-form button:active,
.contact-form button:hover {
    background-color: #AAA;
    border: 1px solid darkgray;
    box-shadow: 0px 0px 5px rgba(123, 122, 122, 0.3);
}

@media(max-width: 900px) {
    .contact-form button {
        width: 100%;
    }
}

.contact-form-label {
    font-weight: 700;
    font-size: 0.825rem;
    margin-bottom: 0.25rem;
    display: block;
    position: absolute;
    left: 0;
    top: -1.3rem;
    opacity: 0;
    transition: opacity ease-in-out 0.3s;
}

.contact-form input:not(:placeholder-shown)+.contact-form-label,
.contact-form textarea:not(:placeholder-shown)+.contact-form-label {
    opacity: 1;
}

/* Custom checkboxes */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 2.25rem;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    margin-bottom: 2.5rem;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
}

.custom-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #E9E9E9;
}

.custom-checkbox:hover input~.custom-checkbox-checkmark {
    background-color: lightgray;
}

.custom-checkbox input:checked~.custom-checkbox-checkmark {
    background-color: #ff3b00;
}

.custom-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.custom-checkbox-checkmark:after {
    display: block;
}

.custom-checkbox .custom-checkbox-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Team */

.team-wrapper {
    background-color: #f0f0f0;
    overflow: auto;
}

.team-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../resources/team-background.jpg);
    background-size: cover;
    background-color: #f0f0f0;
    filter: blur(2px);
}

.team-background-image:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f0f0f0;
    opacity: .875;
}

.team-wrapper .section {
    margin-bottom: 6rem;
    overflow: hidden;
}

@media(max-width: 900px) {
    .price-wrapper .section {
        margin-bottom: 4rem;
    }
}

@media(max-width: 1048px) {
    .team-wrapper h1 {
        margin-top: 3rem;
    }
}

.team-wrapper p {
    text-align: center;
    width: 100vh;
    max-width: 90%;
    margin: 4rem auto;
    font-weight: 700;
    line-height: 1.8;
}

@media(max-width: 1048px) {
    .team-wrapper p {
        text-align: left;
        max-width: 100%;
        margin: 0 0 2rem 0;
    }
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.team-member-image-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image-wrapper img {
    max-height: 100%;
}

@media(max-width: 1048px) {
    .team-member {
        width: calc(100% / 3);
        flex: none;
    }
}

@media(max-width: 900px) {
    .team-member {
        width: calc(100% / 2);
        flex: none;
    }
}

@media(max-width: 640px) {
    .team-member {
        width: 100%;
        flex: none;
    }
}

/* Footer */

.footer-wrapper {
    background-color: #333;
    color: #222;
    overflow: auto;
}

.footer-wrapper .section {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-wrapper nav {
    display: inline-block;
}

.footer-wrapper nav a {
    color: white;
    padding: 0.5rem;
    user-select: none;
}

a.button-to-top {
    color: white;
    float: right;
}