/* poppins-regular - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-italic - latin */
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */
        url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600italic - latin */
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600italic.eot'); /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-600italic.woff') format('woff'), /* Modern Browsers */
        url('../fonts/poppins-v20-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-600italic.svg#Poppins') format('svg'); /* Legacy iOS */
}


:root {
    --green: #003c27;
    --orange: #ed5e16;
}


body {
    background: #fff;
    color: #666666;
    font-family: "Poppins", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: var(--green);
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #1dc9ce;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(45deg, var(--green), var(--green));
    color: #fff;
    padding: 2px 20px 8px 20px;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    right: 15px;
    bottom: 0;
    transition: none;
}

.back-to-top:focus {
    background: linear-gradient(45deg, var(--green), var(--green));
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: var(--orange);
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 30px 0;
    height: 92px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background:#FFFFFF;
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: -4px 0 0 0;
    padding: 0;
    line-height: 1;
    display: inline-block;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    height: 55px;
    transform: translateY(-25%);
}

#header.header-fixed {
    background: white;
    padding: 20px 0;
    height: 80px;
    transition: all 0.5s;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, rgba(0, 149, 177, 0.5), rgba(29, 200, 205, 0.5));
    background-size: cover;
    position: relative;
}

.intro_small{
    height:50vh !important;
}


#intro .intro-text {
    position: absolute;
    left: 0;
    top: 160px;
    right: 0;
    height: calc(50% - 60px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 768px) {
    #intro .intro-text {
        top: 200px !important;
    }

    #intro h1{
        font-size: 36px !important;
    }

    h1, h2, h3, h4, h5, h6{
        word-wrap: break-word !important;
    }

    .h2_main{
        display:none;
    }
}


#intro h1{
    margin: 40px 0 10px 0;
    padding: 0 15px;
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    color: #fff;
    text-transform: uppercase;
}

#intro h2 {
    margin: 30px 0 10px 0;
    padding: 0 15px;
    font-size: 36px;
    font-weight: 800;
    line-height: 56px;
    color: #fff;
}


#intro p {
    color: #fff;
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
}

#intro .btn-get-started {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#intro .btn-get-started:hover {
    color: #1dc8cd;
    background: #fff;
}

#intro .product-screens {
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
    top: 20px;
}

#intro .product-screens img {
    box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#intro .product-screens .product-screen-1 {
    position: absolute;
    z-index: 30;
    left: calc(50% + 54px);
    bottom: 0;
    top: 30px;
}

#intro .product-screens .product-screen-2 {
    position: absolute;
    z-index: 20;
    left: calc(50% - 154px);
    bottom: 0;
    top: 90px;
}

#intro .product-screens .product-screen-3 {
    position: absolute;
    z-index: 10;
    left: calc(50% - 374px);
    bottom: 0;
    top: 150px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 5px 8px 5px 8px;
    text-decoration: none;
    display: inline-block;
    color: #1d1d1b;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    outline: none;
}

.nav-menu > li {
    margin-left: 0px;
}

@media (min-width: 1200px) {
    .nav-menu > li {
        margin-left: 10px;
    }

}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #000;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: var(--green);
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 28px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: var(--green);
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: var(--green);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #1dc8cd;
}

#mobile-nav ul .menu-item-active {
    color: #1dc8cd;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header .section-title {
    font-size: 36px;
    color: #111;
    text-align: center;
    font-weight: 800;
    text-decoration: uppercase;
}

.section-header .section-title-two {
    font-size: 24px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #777;
}

.section-header .section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: none;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* Section with background
--------------------------------*/

.section-bg {
    background: #eff5f5;
}

/* About Us Section
--------------------------------*/

#about, #das-konzept {
    padding: 60px 0;
    overflow: hidden;
}

#about .about-img, #das-konzept .about-img {
    height: 510px;
    overflow: hidden;
}

#about .about-img img, #das-konzept .about-img img {
    margin-left: -15px;
    max-width: 100%;
}

#about .content .h2, #das-konzept .content .h2 {
    color: #333;
    font-weight: 300;
    font-size: 24px;
}

#about .content h3, #das-konzept .content h3 {
    color: #777;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p, #das-konzept .content p {
    line-height: 26px;
}

#about .content p:last-child, #das-konzept .content p:last-child {
    margin-bottom: 0;
}

#about .content i, #das-konzept .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #1dc8cd;
}

#about .content ul, #das-konzept .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li, #das-konzept .content ul li {
    padding-bottom: 10px;
}


/* Product Featuress Section
--------------------------------*/

#features, #vorteile {
    background: #fff;
    padding: 60px 0 60px 0;
    overflow: hidden;
}

#features .features-img, #vorteile .features-img {
    text-align: center;
    padding-top: 20px;
}

#features .features-img img, #vorteile .features-img img {
    max-width: 100%;
}

#features .box, #vorteile .box {
    margin-bottom: 15px;
    text-align: center;
}

#features .icon, #vorteile .icon {
    margin-bottom: 10px;
}

#features .icon i, #vorteile .icon i {
    color: #666666;
    font-size: 40px;
    transition: 0.5s;
}

#features .icon i:before, #vorteile .icon i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, rgba(0, 149, 177, 0.8), rgba(29, 200, 205, 0.8));
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#features .title, #vorteile .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
}

#features .title a, #vorteile .title a {
    color: #111;
}

#features .description, #vorteile .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

#features .section-description, #vorteile .section-description {
    padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/

#advanced-features, #mietpoolsystem, #anbieter {
    overflow: hidden;
}

#advanced-features .features-row, #mietpoolsystem .features-row, #anbieter .features-row {
    padding: 60px 0 30px 0;
}

#advanced-features h2, #advanced-features h3, #mietpoolsystem h2, #mietpoolsystem h3, #anbieter h2, #anbieter h3, #contact h2, #map h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--green);
}

#advanced-features h3, #anbieter h3{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    color: #999;
}

#advanced-features p, #mietpoolsystem p, #anbieter p {
    line-height: 24px;
    color: #777;
    margin-bottom: 30px;
}

#advanced-features i, #mietpoolsystem i, #anbieter i {
    color: #666666;
    transition: 0.5s;
    padding: 0 15px 0px 0;
    line-height: 1;
}

#advanced-features i:before, #mietpoolsystem i:before, #anbieter i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, #0195b0 0%, #0195b0 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right, #mietpoolsystem .advanced-feature-img-right, #anbieter .advanced-feature-img-right {
    max-width: 100%;
    float: right;
    padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left, #mietpoolsystem .advanced-feature-img-left, #anbieter .advanced-feature-img-left {
    max-width: 100%;
    float: left;
    padding: 0 30px 30px 0;
}

/* More Features Section
--------------------------------*/

#more-features, #know-how {
    padding: 60px 0 60px 0;
    overflow: hidden;
}

#more-features .box, #know-how .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    transition: 0.4s;
}

#more-features .icon, #know-how .icon {
    float: left;
}

#more-features .icon i, #know-how .icon i {
    color: #666666;
    font-size: 80px;
    transition: 0.5s;
    line-height: 0;
}

#more-features .icon i:before, #know-how .icon i:before {
    background: #1dc8cd;
    background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#more-features h4, .more-featuresh4 {
    text-align:center;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#more-features h4 a, #know-how h4 a {
    color: #111;
}

#more-features p, #know-how p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

/* Clients Section
--------------------------------*/

#clients {
    padding: 30px 0;
    background: #fff;
    overflow: hidden;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

/* Pricing Section
--------------------------------*/

#pricing {
    padding: 60px 0 60px 0;
    overflow: hidden;
}

#pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
}

#pricing h3 {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 28px;
}

#pricing h4 {
    font-size: 46px;
    color: #1dc8cd;
    font-weight: 300;
}

#pricing h4 sup {
    font-size: 20px;
    top: -20px;
}

#pricing h4 span {
    color: #bababa;
    font-size: 20px;
}

#pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

#pricing ul li {
    padding-bottom: 12px;
}

#pricing ul i {
    color: #1dc8cd;
    font-size: 18px;
    padding-right: 4px;
}

#pricing .get-started-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", Arial, sans-serif;
}

#pricing .featured {
    border: 2px solid #1dc8cd;
}

#pricing .featured .get-started-btn {
    background: linear-gradient(45deg, #1de099, #1dc8cd);
}

/* Frequently Asked Questions Section
--------------------------------*/

#faq {
    padding: 60px 0;
    overflow: hidden;
}

#faq #faq-list {
    padding: 0;
    list-style: none;
}

#faq #faq-list li {
    border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
    padding: 18px 0;
    display: block;
    position: relative;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    padding-right: 20px;
}

#faq #faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
}

#faq #faq-list p {
    margin-bottom: 20px;
}

#faq #faq-list a.collapse {
    color: #1dc8cd;
}

#faq #faq-list a.collapsed {
    color: #000;
}

#faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important;
}

/* Our Team Section
--------------------------------*/

#team, #magazin {
    padding: 60px 0;
    overflow: hidden;
}

#team .member, #magazin .member {
    text-align: left;
    margin-bottom: 20px;
}

#team .member .pic, #magazin .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
}

#team .member .pic img, #magazin .member .pic img, #team .member .pic video {
    max-width: 100%;
}

@media (max-width: 769px) {
    #team .member .pic video{
        height: 100% !important;
    }
}

#team .member .pic video{
    height: 160px;
}

#team .member h4, #magazin .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    height: 65px;
}

.magazin_link{
    color: #666666 !important;
}

.magazin_link_article{
    color: #1dc9ce !important;
}

#team .member span, #magazin .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    min-height: 60px;
}

#team .member .social, #magazin .member .social {
    margin-top: 15px;
}

#team .member .social a, #magazin .member .social a {
    color: #b3b3b3;
}

#team .member .social a:hover, #magazin .member .social a:hover {
    color: #1dc8cd;
}

#team .member .social i, #magazin .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Gallery Section
--------------------------------*/

#gallery {
    background: #fff;
    padding: 60px 0 0 0;
    overflow: hidden;
}

#gallery .container-fluid {
    padding: 0px;
}

#gallery .gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

#gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    width: 100%;
}

#gallery .gallery-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/

#contact {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
    color: #333333;
}

#contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1dc8cd;
}

#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Poppins", Arial, sans-serif;
    color: #333333;
}

#contact .social-links {
    padding-bottom: 20px;
}

#contact .social-links a {
    font-size: 12px;
    display: inline-block;
    background: #fff;
    color: var(--green);
    line-height: 1;
    padding: 4px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 24px;
    height: 24px;
    transition: 0.3s;
    border: 1px solid var(--green);
}

#contact .social-links a:hover {
    background: var(--green);
    color: #fff;
}

#contact .info {
    color: #333333;
}

#contact .info i {
    font-size: 22px;
    color: #1dc8cd;
    line-height: 1;
}

#contact .info p {
    text-align:center;
    line-height: 20px;
    font-size: 14px;
}

#contact .form #sendmessage {
    color: #1dc8cd;
    border: 1px solid #1dc8cd;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    box-shadow: none;
    font-size: 16px;
}

#contact .form button[type="submit"] {
    background: linear-gradient(45deg, var(--green), var(--green));
    border: 0;
    border-radius: 20px;
    padding: 8px 30px;
    color: #fff;
}

#contact .form button[type="submit"]:hover {
    cursor: pointer;
}

#contact .form-group select {
    color: #6c757d;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #333;
    font-size: 14px;
}

#footer .credits {
    font-size: 13px;
    color: #888;
}

#footer .footer-links a {
    color: #666;
    padding-left: 15px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    color: #1dc8cd;
}

#footer a{
    color: #333 !important;
}

@media (min-width: 769px) {
    #features .features-img {
        padding-top: 120px;
        margin-top: -200px;
    }

    #call-to-action .cta-btn-container, .call-to-action .cta-btn-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (min-width: 1025px) {
    #intro {
        background-attachment: fixed;
    }
}

@media (max-width: 1025px) {
    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
}

@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
        margin-top: 0;
    }

    #header #logo img {
        max-height: 92px;
    }

    #intro h2 {
        font-size: 28px;
        line-height: 36px;
    }

    #intro p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    #about .about-img, #das-konzept .about-img {
        height: auto;
    }

    #about .about-img img, #das-konzept .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 50%;
    }

    #faq #faq-list a {
        font-size: 18px;
    }

    #faq #faq-list i {
        top: 13px;
    }
}

@media (max-width: 767px) {
    #intro .product-screens .product-screen-1 {
        position: static;
        padding-top: 30px;
    }

    #intro .product-screens .product-screen-2,
    #intro .product-screens .product-screen-3 {
        display: none;
    }

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 100%;
        float: none;
        padding: 0 0 30px 0;
    }

    #more-features .box {
        margin-bottom: 20px;
    }

    #more-features .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #more-features h4,
    #more-features p {
        margin-left: 0;
        text-align: center;
    }
}

.height0{
    height: auto !important;
}


.width100{
    width:100%;
}

.width90{
    width:90%;
}

.width60{
    width:60%;
}

.width40{
    width:40% !important;
}

.maxwidth350px{
    max-width: 350px !important;
}

.standard_ul {
    list-style: none;
    padding: 0;
}

.standard_ul li {
    padding-bottom: 10px;
}

.standard_ul li i {
    font-size: 20px !important;
    padding-right: 4px  !important;
    color:     #1dc8cd !important;
}

.paddingbottom0{
    padding-bottom: 0px !important;
}

.paddingtop120px{
    padding-top:120px !important;
}

.boxshadownone{
    box-shadow: none !important;
}

.bg-white{
    background: #FFFFFF !important;
}

.menu-active a{
    font-weight: bold !important;
}

.fontweightbold{
    font-weight: bold !important;
}

.error_input, .fail{
    border: 2px solid #e5acb1;
}

.width40_mag{
    width:100% !important;
}

@media (min-width: 769px) {
    .width40_mag{
        width:40% !important;
    }
}

.pflichtfeld{
    font-size:12px;
}

.info_business{
    padding-top: 20px;
    font-size:12px;
}

#main_video {
    right: 0;
    bottom: 0;
    top: 0;
    min-width: 100%;
    max-height: 100%;
    height: 100vh;
    z-index:-1;
    position:absolute;
    object-fit: fill;
}
.hyphens_auto{
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

#fountainG{
    position:relative;
    width:168px;
    height:20px;
    margin:auto;
}

.fountainG{
    position:absolute;
    top:0;
    background-color:rgb(255,255,255);
    width:20px;
    height:20px;
    animation-name:bounce_fountainG;
    -o-animation-name:bounce_fountainG;
    -ms-animation-name:bounce_fountainG;
    -webkit-animation-name:bounce_fountainG;
    -moz-animation-name:bounce_fountainG;
    animation-duration:1.5s;
    -o-animation-duration:1.5s;
    -ms-animation-duration:1.5s;
    -webkit-animation-duration:1.5s;
    -moz-animation-duration:1.5s;
    animation-iteration-count:infinite;
    -o-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    animation-direction:normal;
    -o-animation-direction:normal;
    -ms-animation-direction:normal;
    -webkit-animation-direction:normal;
    -moz-animation-direction:normal;
    transform:scale(.3);
    -o-transform:scale(.3);
    -ms-transform:scale(.3);
    -webkit-transform:scale(.3);
    -moz-transform:scale(.3);
    border-radius:13px;
    -o-border-radius:13px;
    -ms-border-radius:13px;
    -webkit-border-radius:13px;
    -moz-border-radius:13px;
}

#fountainG_1{
    left:0;
    animation-delay:0.6s;
    -o-animation-delay:0.6s;
    -ms-animation-delay:0.6s;
    -webkit-animation-delay:0.6s;
    -moz-animation-delay:0.6s;
}

#fountainG_2{
    left:21px;
    animation-delay:0.75s;
    -o-animation-delay:0.75s;
    -ms-animation-delay:0.75s;
    -webkit-animation-delay:0.75s;
    -moz-animation-delay:0.75s;
}

#fountainG_3{
    left:42px;
    animation-delay:0.9s;
    -o-animation-delay:0.9s;
    -ms-animation-delay:0.9s;
    -webkit-animation-delay:0.9s;
    -moz-animation-delay:0.9s;
}

#fountainG_4{
    left:63px;
    animation-delay:1.05s;
    -o-animation-delay:1.05s;
    -ms-animation-delay:1.05s;
    -webkit-animation-delay:1.05s;
    -moz-animation-delay:1.05s;
}

#fountainG_5{
    left:84px;
    animation-delay:1.2s;
    -o-animation-delay:1.2s;
    -ms-animation-delay:1.2s;
    -webkit-animation-delay:1.2s;
    -moz-animation-delay:1.2s;
}

#fountainG_6{
    left:105px;
    animation-delay:1.35s;
    -o-animation-delay:1.35s;
    -ms-animation-delay:1.35s;
    -webkit-animation-delay:1.35s;
    -moz-animation-delay:1.35s;
}

#fountainG_7{
    left:126px;
    animation-delay:1.5s;
    -o-animation-delay:1.5s;
    -ms-animation-delay:1.5s;
    -webkit-animation-delay:1.5s;
    -moz-animation-delay:1.5s;
}

#fountainG_8{
    left:147px;
    animation-delay:1.64s;
    -o-animation-delay:1.64s;
    -ms-animation-delay:1.64s;
    -webkit-animation-delay:1.64s;
    -moz-animation-delay:1.64s;
}



@keyframes bounce_fountainG{
    0%{
        transform:scale(1);
        background-color:rgb(255,255,255);
    }

    100%{
        transform:scale(.3);
        background-color:rgb(255,255,255);
    }
}

@-o-keyframes bounce_fountainG{
    0%{
        -o-transform:scale(1);
        background-color:rgb(255,255,255);
    }

    100%{
        -o-transform:scale(.3);
        background-color:rgb(255,255,255);
    }
}

@-ms-keyframes bounce_fountainG{
    0%{
        -ms-transform:scale(1);
        background-color:rgb(255,255,255);
    }

    100%{
        -ms-transform:scale(.3);
        background-color:rgb(255,255,255);
    }
}

@-webkit-keyframes bounce_fountainG{
    0%{
        -webkit-transform:scale(1);
        background-color:rgb(255,255,255);
    }

    100%{
        -webkit-transform:scale(.3);
        background-color:rgb(255,255,255);
    }
}

@-moz-keyframes bounce_fountainG{
    0%{
        -moz-transform:scale(1);
        background-color:rgb(255,255,255);
    }

    100%{
        -moz-transform:scale(.3);
        background-color:rgb(255,255,255);
    }
}

@media (max-width: 767px) {
    .padding-top-xs {
        padding-top: 20px !important;
    }
}

.margin3{
    margin: 3px !important;
}

.paddingleft0px{
    padding-left:0px;
}

.padding0{
    padding: 0px !important;
}

.padding015015{
    padding: 0px 15px 0px 15px !important;
}

.paddingleft20{
    padding-left: 20%;
}

.paddingleft20px{
    padding-left: 20px;
}

.referenzimmobilie {
    position: relative;
    display: inline-block;
}
.overlay {
    position: absolute;
    transition: all .9s ease;
    opacity: 0;
    background: rgb(0, 0, 0, 0.4);
}
.referenzimmobilie:hover .overlay {
    opacity: 1;
}
.referenzimmobilie-text {
    color: white;
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.overlay {
    position: absolute;
    transition: all .9s ease;
    opacity: 0;
    background: rgb(0, 0, 0, 0.4);
}
.overlayBottom {
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
}
.referenzimmobilie:hover .overlayBottom {
    height: 100%;
}

.zitat{
    font-style:italic;
    font-size:16px;
    font-weight: 400;
    line-height:24px;
    color: #999 !important;
}

.youtube_container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.youtube_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube_modal{
    min-height: 300px;
}

.gmap3{
    width: 100%;
    height: 600px;
}

.datenschutz{
    height:300px;
    overflow-y:scroll;
    width:100%;
}

.datenschutz h3, .datenschutz h4{
    font-size: 22px;
    text-align: center;
}

.datenschutz_final{
    padding: 20px !important;
    font-weight: 600;
    background: #e9e9e9;
    margin-top:25px;
    opacity:0.9;
}

.modal {
    pointer-events: none;
}

.modal-header{
    cursor: pointer;
}
.modal-backdrop {
    display: none;
}

.renovierungskonzept{
    font-size: 10px;
    color: #000;
}

.footer_socials{
    height: 22px;
    text-align:center;
}

.kundenstimmenh4 {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.magazinh4{
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    height: 65px;
}

.ct-map__section .container {
}
.ct-u-padding-bottom-40 {
    padding-bottom: 40px;
    padding-top: 40px;
}
.ct-map {
    position: relative;
    width: 562px;
    -webkit-transition: all 250ms cubic-bezier(0.55, 0, 0.1, 1);
    transition: all 250ms cubic-bezier(0.55, 0, 0.1, 1);
}
.ct-city.stone {
    top: -10%;
    left: 42%;
}
.ct-city {
    position: absolute;
    width: 334px;
    height: 334px;
}
.ct-city__button .ct-close {
    display: none;
}
.ct-city.active .ct-city__button .ct-close {
    display: block;
}
.ct-city.active .ct-city__button .ct-plus, .ct-city.active .ct-city__button {
    display: none;
}
.ct-city.map_rhein_main {
    top: 35%;
    left: 20%;
}
.ct-city {
    position: absolute;
    width: 334px;
    height: 334px;
}
.ct-city__button {
    background: none;
    border: none;
    z-index: 30;
    position: absolute;
    top: 46%;
    left: 12px;
    outline: none;
}
.ct-city.map_rhein_ruhr {
    top: 24%;
}
.ct-city.map_rhein_ruhr {
    top: 20%;
    left: 5%;
}
.ct-city.leipzig {
    top: 24%;
    right: -15%;
}
.ct-city.berlin {
    top: 7%;
    right: -24%;
}
.ct-content {
    width: 100%;
    max-width: 537px;
    margin-left: auto;
    margin-right: auto;
}
.ct-map__section .container .ct-section-header {
    padding-bottom: 10px;
}
.ct-content .ct-section-header {
    margin-top: 0;
    padding-top: 83px;
    letter-spacing: 0.35px;
}
.ct-section-header {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #101f1d;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 45px;
    letter-spacing: 1.25px;
    margin-bottom: 5px;
}
.ct-content .ct-section-header small {
    margin-bottom: -4px;
    padding-top: 12px;
    letter-spacing: 0px;
}
.ct-section-header small {
    color: #303030;
    font-size: 22px;
    display: block;
    font-weight: 600;
    padding-top: 10px;
    margin-bottom: -12px;
    text-transform: none;
}
.ct-city.active {
    z-index: 30;
}
.ct-city.active .ct-popup {
    opacity: 1;
    display: inline-table;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    position: relative;
    z-index: 20;
}
.ct-content li {
    font-weight: 700;
    font-size: 17px;
    padding-left: 4px;
}
.ct-content li:before {
    content: '\f0da';
    font-family: 'FontAwesome';
    color: #f59331;
    padding-right: 13px;
}
.ct-content .btn {
    margin-top: 30px;
}
@media (min-width: 1399px) {
    .ct-map__image {
        max-width: none;
        width: 562px;
        margin-top: -3px;
        position: relative;
        left: 11px;
    }
}
@media only screen and (min-width: 1024px) {
    .ct-content .btn {
        margin-top: 55px;
    }
    .ct-section-header {
        padding-top: 77px;
    }
    .ct-map__section .container {
        padding-bottom: 71px;
    }
}
@media only screen and (min-width: 768px){
    .ct-popup__content {
        position: relative;
        text-align: center;
        letter-spacing: 0.15px;
        line-height: 1.25;
    }
}
@media only screen and (max-width: 767px) {
    .ct-map {
        margin-top: 40px;
        width: 100%;
    }
    .ct-city.active {
        width: 100%;
        height: 100%;
        top: 0 !important;
        left: 0 !important;
        margin: 0;
        z-index: 40;
    }
    .ct-city.active .ct-popup {
        width: 100%;
        height: 100%;
    }
}
@media only screen and (max-width: 479px) {
    .ct-city.stone {
        top: -30%;
        left: 42%;
    }
    .ct-city {
        top: -5%;
        left: 15%;
    }
    .ct-city.map_rhein_main {
        top: 23%;
        left: 40%;
    }
}
@media (max-height: 766px) {
    .ct-section-header {
        padding-top: 35px;
    }
    .ct-map__section .container {
        padding-bottom: 0px;
    }
}

.rotate {
    overflow: hidden;
    transition-duration: 0.8s;
    transition-property: transform;
}
.rotate:hover {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}

.ajax_success{
    font-weight: bold;
    color: var(--green);
}

.speichern_link{
    font-weight:bold !important;
    color: #000000 !important;
    cursor: pointer;
}

.legende{
    text-align:center;
}

.legende > img{
    width:25px;
}

.pointer{
    cursor:pointer;
}

.information_tooltip{
    cursor: pointer;
    color: var(--green);
}

.ui-tooltip{
    font-size:12px !important;
}

.nowrap{
    white-space: nowrap;
}

.cc_dialog.simple{
    max-width:100% !important;
    padding: 1rem !important;
}

/* main blue var(--green) */

.cc_dialog.simple {
    max-width:100% !important;
    padding:1rem !important
}
.privacypolicies-com---nb {
    max-width:100% !important;
}
.cc-nb-main-container{
    padding:1rem !important;
}


.copyright{
    text-align: center;
    font-size: 12px;
}
.fixed{
    margin: 18px 20px 0 0 !important;
}
#tmp_ajax {
    padding: 5px 0;
}
#tmp_ajax img{
    transform: translateY(-15%);
}