@font-face {
    font-family: 'Gotham';
    src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: 0px;
    line-height: 1;
    box-sizing: border-box;
    font-family: 'Gotham', sans;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.section--overlay {
    padding: 0px;
}

.section--overlay .overlay {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.section .row {
    padding: 20px 10px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
}

.section .row .column {
    padding: 10px 30px;
}

.section .row .column--max {
    flex: 1;
}

.section .row .column--3 {
    width: 25%;
}

.section .row .column--4 {
    width: 33.3333333333%;
}

.section .row .column--6 {
    width: 50%;
}

.section .row .column--8 {
    width: 66.6666666666%;
}

@media screen and (max-width: 1100px) {
    .section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 10px;
    }

    .section--overlay {
        padding: 0px;
    }

    .section--overlay .overlay {
        padding: 40px 10px;
    }

    .section .row {
        padding: 10px;
        flex-direction: column;
    }

    .section .row .column {
        width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.35;
}

h1,
h2 {
    color: #005CA9;
}

p {
    color: #4E5B61;
    line-height: 1.5;
    text-align: justify;
}

a {
    color: #005CA9;
    text-decoration: none;
    z-index: 2;
    position: relative;
    display: inline-block;
    padding: 0 0.35em;
    line-height: 1.4;
    transition: color 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

a:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    opacity: 0.2;
    transform-origin: 0% 50%;
    transition: transform 0.5s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    background: #F0AD00;
}

a:hover:before {
    height: 100%;
    transform-origin: 0% 0%;
    opacity: 0.35;
}

.mouse_scroll {
    display: block;
    margin: 0 auto;
    width: 24px;
}

.arrows {
    margin: 0px 2px;
}

.m_scroll_arrows {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    margin: 0 0 3px 4px;
    width: 12px;
    height: 12px;
}

.unu {
    margin-top: 1px;
}

.unu,
.doi,
.trei {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
}

.unu {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    animation-delay: alternate;
}

.doi {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
    animation-delay: .2s;
    animation-direction: alternate;
    margin-top: -6px;
}

.trei {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;
    animation-delay: .3s;
    animation-direction: alternate;
    margin-top: -6px;
}

.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid #333333;
    top: 170px;
}

.wheel {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: #333333;
    position: relative;
    height: 4px;
    width: 4px;
    border: 2px solid #333333;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.wheel {
    -webkit-animation: mouse-wheel 0.6s linear infinite;
    -moz-animation: mouse-wheel 0.6s linear infinite;
    animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-moz-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-o-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/* Hero */
.hero {
    background-color: #ffffff;
    min-height: 100vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero .overlay {
    position: relative;
    background: #d5ecff;
    background: linear-gradient(325deg, rgba(213, 236, 255, 0.9) 0%, rgba(246, 246, 246, 0.9) 100%);
}

.hero .logo {
    width: 140px;
    height: auto;
    position: absolute;
    left: 48px;
    top: 48px;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero h3 {
    margin-bottom: 30px;
    color: #F0AD00;
}

.hero #device {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/IMG_1238.png);
    min-height: 300px;
}

.hero .mouse_scroll {
    position: absolute;
    bottom: 40px;
}

.walls {
    height: 300px;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-image: url(../img/Mauer-Vergleich-Grafik.jpg);
}

.walls .overlay h1 {
    padding: 20px 40px;
    background-color: #ffffff;
}

/* Info */
.info {
    background-color: #f3f3f3;
}

.info h3 {
    margin-bottom: 10px;
}

/* Kundenstimmen */
.kundenstimmen {
    background-color: #fef7ea;
}

.kundenstimmen cite h4,
.kundenstimmen cite p {
    text-align: left;
}

.kundenstimmen blockquote {
    line-height: 1.5;
    text-align: justify;
    position: relative;
}

.kundenstimmen blockquote:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 7px;
    width: 10px;
    height: 10px;
    background-image: url(../img/iconfinder_quote-mark_383084.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.kontakt form {
    width: 100%;
}

.kontakt .button {
    padding: 20px 30px;
    background-color: #005CA9;
    color: #ffffff;
    transition: all ease 300ms;
    font-size: 1em;
    font-weight: bold;
}

.kontakt .button:hover {
    background-color: #0078dc;
    cursor: pointer;
}

.kontakt fieldset {
    display: block;
    width: 100%;
}

.kontakt fieldset label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.kontakt fieldset input,
.kontakt fieldset textarea {
    display: block;
    width: 100%;
    border: 1px #ddd solid;
    padding: 20px;
    margin-bottom: 30px;
}

.fidler-immo {
    background-color: #fcfcfc;
}

.fidler-immo img {
    width: 100%;
}

.fidler-immo .logo {
    height: 60px;
    width: auto;
    margin-bottom: 40px;
}

.fidler-immo h2 {
    margin-bottom: 10px;
}

.fidler-immo h3 {
    margin-top: 40px;
    margin-bottom: 8px;
}

.footer {
    background-color: #f8f8f8;
    text-align: left;
}

.footer h3 {
    margin-top: 50px;
}

.footer p {
    text-align: inherit;
}

.footer p a {
    text-decoration: none;
}

.footer .row--datenschutz {
    font-size: 0.8em;
}

.footer .row--datenschutz h2 {
    margin-bottom: 10px;
}

.footer .row--datenschutz h3 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.footer .row--datenschutz h4 {
    margin-top: 20px;
    margin-bottom: 3px;
}

.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 1100px) {
    .section.hero .logo {
        position: static;
        padding-right: 40px;
        height: 80px;
        align-self: flex-end;
    }

    .mouse_scroll {
        display: none;
    }
}