/* Fonts */

/* barlow-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/barlow-v12-latin-300.eot'); /* IE9 Compat Modes */
    src: url('fonts/barlow-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/barlow-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/barlow-v12-latin-300.woff') format('woff'), /* Modern Browsers */
    url('fonts/barlow-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/barlow-v12-latin-300.svg#Barlow') format('svg'); /* Legacy iOS */
}
/* barlow-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/barlow-v12-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/barlow-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/barlow-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('fonts/barlow-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/barlow-v12-latin-regular.svg#Barlow') format('svg'); /* Legacy iOS */
}
/* barlow-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/barlow-v12-latin-500.eot'); /* IE9 Compat Modes */
    src: url('fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/barlow-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/barlow-v12-latin-500.woff') format('woff'), /* Modern Browsers */
    url('fonts/barlow-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/barlow-v12-latin-500.svg#Barlow') format('svg'); /* Legacy iOS */
}
/* barlow-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/barlow-v12-latin-700.eot'); /* IE9 Compat Modes */
    src: url('fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/barlow-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('fonts/barlow-v12-latin-700.woff') format('woff'), /* Modern Browsers */
    url('fonts/barlow-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/barlow-v12-latin-700.svg#Barlow') format('svg'); /* Legacy iOS */
}

* {
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top:2.5rem;
    overflow-x: hidden;
}

body {
    background:#F8F8F8;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    line-height: 2rem;
    color:#444444;
    margin:0;
    padding:0;
    overflow: auto;
}

img {
    max-width:100%;
    vertical-align: top;
}

a {
    color:#2C4557;
    text-decoration:none;
}

a.text-link {
    box-shadow: inset 15px 0 0 0 #ededed;
    margin: 2rem -.25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    display:inline-block;
    padding:8px 0 8px 8px;
    text-transform:uppercase;
    font-weight:500;
}

a.text-link:hover {
    box-shadow: inset 100px 0 0 0 #ededed;
}


main header {
    position:relative;
}

#content {
    background:#fff;
    padding:4rem;
    max-width:780px;
    margin:0 auto;
}

.content-page {
    background:url(images/bg-immobilienmarkt3.jpg) no-repeat fixed;
    background-size:cover;
}

/* Frame */

#top, #bottom, #left, #right {
    background: #2C4557;
    position: fixed;
    z-index:10;
}
#left, #right {
    top: 0; bottom: 0;
    width: 20px;
}
#left { left: 0; }
#right { right: 0; }

#top, #bottom {
    left: 0; right: 0;
    height: 20px;
}
#top { top: 0; }
#bottom { bottom: 0; }

/*----------------Typography--------------*/

h1,h2,h3,h4,h5,h6 {
    font-weight:300;
}

h1 span,h2 span,h3 span,h4 span,h5 span,h6 span {
    font-weight:500;
}

h1 {
    font-size:4.5rem;
    line-height:6rem;
}

h2 {
    font-size:2.8rem;
    line-height:3rem;
}


/*----------------Header--------------*/


#main-header {
    align-items: center;
    position: fixed;
    transition: all .2s;
    top: 20px;
    left: 0;
    z-index:9;
    width:100%;
    text-transform:uppercase;
    padding-top:2rem;
    color:#fff;
}

.sticky #main-header {
    padding-top:0;
}

#main-header-inner .grid {
    align-items:center;
    justify-content:center;
    height:90px;
    max-width: 1640px;
    margin: 0 auto;
    font-size:1rem;
}

#main-header nav {
    grid-column: 1/5;
    text-align: left;
}

#main-header ul {
    display: inline-block;
    list-style-type: none;
}

#main-header ul li {
    display: inline;
    margin-right: 2rem;
}

#main-header a {
    text-decoration: none;
    color: #fff;
    position:relative;
}

#main-header nav a::after,  .contact-us a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom:-5px;
    left: 0;
    background:#fff;
    transition: transform 0.2s;
    transform: scaleX(0);
    transform-origin: center;
}

.sticky #main-header nav a::after, .sticky .contact-us a:hover::after {
background: #2C4557;
}

#main-header nav li a:hover::after, .contact-us a:hover::after {
    transform: scaleX(1);
    transform-origin: center;
}

.sticky #main-header a {
    text-decoration: none;
    color: #444;
}

.sticky #main-header ul li a:hover {
    color: #2C4557;
}

#logo {
    position:relative;
    grid-column: 5/9;
    text-align:center;
    width: 360px;
    margin:-55px auto 0 110px;
}

#logo img {
    max-width: 100%;
    position:absolute;
    top:0;
    left:0;
    right:0;
}

img#logo-dark, .sticky img#logo-white {
    opacity:0;
}

.sticky img#logo-dark {
    opacity:1;
}

#main-header aside {
    grid-column: 9/13;
    text-transform: uppercase;
    text-align:right;
}

#main-header aside li:last-of-type {
    margin-right:0;
}

.contact p {
    font-size: 0.9rem;
}

.sticky #main-header {
    background:#F8F8F8;
    border-bottom:1px solid #e1e1e1;
}

.sticky #main-header, .sticky #main-header a  {
    color:#000;
}

.header-icon {
    border:1px solid #fff;
    display:inline-block;
    width:42px;
    height:42px;
    line-height:42px;
    font-size:1.2rem;
    text-align:center;
    border-radius:200em;
    margin-right:5px;
    transition: all .15s;
}

a:hover .header-icon {
    background:#fff;
    color:#2C4557;
}

.sticky .header-icon {
    border:1px solid #e1e1e1;
}

.office .header-icon {
    margin-bottom: 50px;
    float: left;
    margin-right:10px;
}

.sticky a:hover .header-icon {
    background:#2C4557;
    border:1px solid #2C4557;
    color:#fff;
}


    /* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(25,42,52,1), rgba(44,69,87,0.9) 0% 100%);

}

.lightbox-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 900px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow:hidden;
}

.lightbox-image {
    float:left;
}

.lightbox-image:after {
    background: linear-gradient(90deg, rgba(25,42,52,1), rgba(44,69,87,1) 0% 100%);
    content: "";
    height:15px;
    width:150px;
    display:block;
}

.lightbox-content img {
    max-width:350px;
    margin-right:3rem;
}

.lightbox-content li {
   margin-bottom:0.7rem;
    list-style:none;
}

.lightbox-contact {
    border-top:1px solid #e1e1e1;
    padding-top:2rem;
}

.lightbox-contact .header-icon {
    border:1px solid #e1e1e1!important;
}

.signature {
    line-height:normal;
}

.signature span {
    display:block;
    font-size:0.8rem;
    opacity:0.7;
    margin-bottom:2rem;
}

.close {
    position: absolute;
    top: 0;
    right: 5px;
    color: #2C4557;
    font-size: 23px;
    font-weight: bold;
    cursor: pointer;
}


#scroll-down {
    border:1px solid #fff;
    border-radius:200rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    display: block;
    position: absolute;
    bottom: 50px;
    text-align: center;
    color: #fff;
    z-index: 3;
    transition: all .15s;
}

#scroll-down:hover {
    background:#fff;
    color:#2C4557;
}

/* image effect */


.reveal-holder {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.reveal-block {
    position: absolute;
    top: 0;
    width: 100%;
    height: 101%;
    background: #f8f8f8;
}

[data-aos="reveal-right"] {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    transition-property: transform;
    transition-delay: 0.5s;
}
[data-aos="reveal-right"].aos-animate {
    transform: scaleX(0);
}

/*--------------- Layout and Grid System-----------------*/

main {
    padding:20px;
}

.full-width {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
}

.grid {
    display:grid;
    grid-template-columns:repeat(12,1fr);
    grid-gap:2.5rem;
    position:relative;
    max-width:1640px;
    margin:0 auto;
}

.grid-four {
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap:2.5rem;
    max-width:1200px;
    margin:0 auto;
}

.v-center-content {
    align-self: center;
}

.col-1 {
    grid-column: span 1;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-8 {
    grid-column: span 8;
}

.col-9 {
    grid-column: span 9;
}

.col-10 {
    grid-column: span 10;
}

.col-11 {
    grid-column: span 11;
}

.col-12 {
    grid-column: span 12;
}


#image-grid-small-big {
    grid-row: 2/3;
    grid-column:3/13;
}

#image-grid-small-big .first-image {
    grid-column: 1/5;
    margin-top:6rem;
}

#image-grid-small-big .second-image {
    grid-column: 6/12;
}

/* Spacing */

.spacing-200 {
    padding:2rem 0;
}

.spacing-300 {
    padding:3rem 0;
}

.spacing-400 {
    padding:4rem 0;
}

.spacing-500 {
    padding:5rem 0;
}

.spacing-700 {
    padding:7rem 0;
}

.spacing-900 {
    padding:9rem 0;
}

/* Grid Layouts */

.grid-layout-one.grid .text-right {
    grid-row: 1/2;
    grid-column: 8 / 12;
}

.grid-layout-one.grid .image-left {
    grid-row: 1/2;
    grid-column: 1 / 7;
}

.grid-layout-one.grid .image-left .reveal-holder:after {
    background: linear-gradient(90deg, rgba(25,42,52,1), rgba(44,69,87,1) 0% 100%);
    content: "";
    height:15px;
    width:250px;
    display:block;
}


.grid-layout-one.grid .text-left {
    grid-row: 3/3;
    grid-column: 2 / 6;
}

.grid-layout-one.grid .image-right {
    grid-row: 3/3;
    grid-column: 7 / 13;
}

.grid-layout-two.grid .text-right {
    grid-row: 1/2;
    grid-column: 7 / 11;
}

.grid-layout-two.grid .text-left {
    grid-row: 1/3;
    grid-column: 3 / 7;
}

/*--------------- Banner -----------------*/

#banner {
    background:url(images/bg-immobilienmarkt.jpg) no-repeat;
overflow:hidden;
    position:relative;
    margin-top:-20px;
}

#banner:before {
    background: linear-gradient(90deg, rgba(44,69,87,1) 0%, rgba(25,42,52,1) 100%);
    content:"";
    width:100%;
    position:absolute;
    right:0;
    left:0;
    top:0;
    bottom:0;
    z-index:1;
    opacity:0.7;
    transition: .5s all;
}

.sticky #banner:after {
opacity:0.8;
}

#banner .grid {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    height: 90vh;
    max-height: 1080px;
    align-items: center;
    justify-content: center;
    position: relative;
}

#banner-content {
    grid-column: 2/10;
    color: #fff;
    z-index: 3;
    position:relative;
}

#banner-content p {
    font-size:1.2rem;
    font-weight:300;
    margin:5rem 0.5rem 0 15rem;
}

#banner-content p:before {
    content:"";
    width:5px;
    height:96px;
    background:#fff;
    display:inline-block;
    float:left;
    margin-right:0.7rem;
}

#video {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    width: 115%;
    transition: .5s all;
}


.sticky #video {
    width:100%;
    opacity:0.6;
}



#banner .vertical-lines {
    z-index:2;
    opacity:0.1;
    position:absolute;
    height:90vh;
}

.vertical-lines {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: flex;
}

.vertical-line {
    flex: 1;
    height: 100%;
    border-left: 1px solid #eaeaea;
}



/*Slider */

#banner .slider {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    object-fit: cover!important;
    height: 100%;
    width: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    animation: slide 12s infinite;
    -webkit-animation: slide 12s infinite;
    opacity: 0;
}

.slide .banner-image-1 {
    animation-delay: 0s;
}
.slide .banner-image-2 {
    animation-delay: 4s;
}
.slide .banner-image-3 {
    animation-delay: 8s;
}


.banner-image-1 {
    background:url(images/bg-immobilienmarkt.jpg) no-repeat;
}

.banner-image-2 {
    background:url(images/bg-immobilienmarkt2.jpg) no-repeat;
}

.banner-image-3 {
    background:url(images/bg-immobilienmarkt3.jpg) no-repeat;
}



@keyframes slide {

    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}

@-webkit-keyframes slide {

    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}



/* Header Styles */

.section-tag-left {
    position:relative;
}

.section-tag {
    transform: rotate(-0.25turn);
    text-align:right;
    position:absolute;
    top:110px;
    left:0;
    text-transform: uppercase;
    color:#2C4557;
    font-weight:500;
}

#kaeufer .section-tag {
    left: -130px;
    top:65px;
}

#verkaeufer .section-tag {
    left: -150px;
    top: 80px;
}

#kontakt .section-tag {
    top: 67px;
    left: -140px;
}

#immobilienmarkt .section-tag {
    color:#fff;
}

.section-tag:before {
    content:"";
    display:inline-block;
    height:1px;
    width:50px;
    background:#e1e1e1;
    margin-right:15px;
    position: relative;
    top: -5px;
}

.header-style-one h2 {
    grid-column: 3 / 9;
    font-size:3rem;
    line-height:3.2rem;
}

/*-----------------------------------Ueber Uns-----------------------------------*/


#ueber-uns {
    background:url(images/bg-top-left-squares.png) left top no-repeat;
    position:relative;
}

#ueber-uns:before {
    background: linear-gradient(90deg, rgba(44,69,87,1) 0%, rgba(25,42,52,1) 100%);
    content: "";
    height:25px;
    width:40%;
    display:block;
    position:absolute;
    right:-20px;
    top:0;
}


/*-----------------------------------Immobilienmarkt-----------------------------------*/


#immobilienmarkt {
    background:url(images/bg-immobilien-markt.jpg) no-repeat;
    background-size:cover;
    padding-top:7rem;
    height: 50%; /* Adjust the height of the parallax effect */
}

#immobilienmarkt .grid-layout-one.grid .text-left {
    background: linear-gradient(180deg, rgba(44,69,87,1) 0%, rgba(25,42,52,1) 100%);
    color:#fff;
    grid-column: 2 / 7;
    padding:4rem 4rem 4rem 8rem;
    margin-bottom:-7rem;
}

#immobilienmarkt .section-tag {
    top: 100px;
    left: -170px;
}

.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

/*-----------------------------------Käufer-----------------------------------*/

#kaeufer {
    background:url(images/bg-top-right-squares.png) right top no-repeat;
    padding-top:22rem;
}

/*-----------------------------------Selling Points-----------------------------------*/

#selling-points {
    text-align:center;
    max-width:1600px;
    margin:9rem auto 4rem auto;
}

#selling-points h2 {
    margin-top:0;
}

.bg-blue-gradient {
    background: linear-gradient(180deg, rgba(44,69,87,1) 0%, rgba(25,42,52,1) 100%);
}


.bg-grey-gradient {
    background: rgb(241,241,241);
    background: linear-gradient(180deg, rgba(241,241,241,1) 0%, rgba(227,227,227,1) 100%);
}

#selling-points ul {
    margin-top:4rem;
}

#selling-points li {
    display:inline-block;
    line-height:normal;
}

#selling-points img {
    max-width:120px;
}

/*-----------------------------------Contact-----------------------------------*/

#kontakt h2 {
    margin-top:0;
}

#kontakt li {
    margin-bottom:1rem;
    list-style:none;
}

/*-----------------------------------Footer-----------------------------------*/

footer {
    background:#f8f8f8;
    text-align:center;
    border-top:1px solid #e1e1e1;
    text-transform: uppercase;
    font-size:0.8rem;
    margin:0 -20px;
}

footer a, footer span {
    display:inline-block;
    margin:0 1rem;
    color:#333333;
}


/* Hide on Desktop */

.contact-us .header-icon {
    display:none;
}

/*-----------------------------------Responsive-----------------------------------*/


#responsive-nav {
    display:none;
 }

.menu-toggle {
    display: none;
    position:absolute;
    right: 10px;
    top: 16px;
    color:#fff;
}

#responsive-nav.active .menu-toggle {
    background:#fff;
    color:#2C4557;
    border:1px solid #fff;
}

.sticky #responsive-nav.active .menu-toggle {
    background:#2C4557;
    color:#fff;
    border:1px solid #2C4557;
}

.sticky .menu-toggle {
    color:#2C4557;
}

.menu {
    background:#f8f8f8;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
    top: 71px;
    position: absolute;
    width: 100%;
    left: 0;
    border-bottom: 1px solid #e1e1e1;
    box-shadow: 0 7px 7px rgba(0,0,0,0.1);
}

.menu li {
    float: left;
}

.menu li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
}

.menu li a:hover {
    background-color: #f1f1f1;
}

#responsive-nav {
    z-index: 99;
    position: fixed;
    width: 100%;

}


@media (max-width:1179px) {

    .page-frame, .vertical-lines, #scroll-down, #image-grid-small-big, #verkaeufer .image-left, #main-header-inner #main-nav,
    #main-header-inner .call-us .tel, .contact-text, .contact-us a::after, .lightbox-image {
        display:none;
    }

    main {
        padding:0;
    }

    #ueber-uns, #kaeufer, #verkaeufer, #kontakt {
        padding:1rem;
    }

    .grid, .grid-four, #responsive-nav {
        display:block;
    }

    .spacing-200, .spacing-300, .spacing-400, .spacing-500, .spacing-700, .spacing-900  {
        padding:3rem 0;
    }

    /* Images */

    .grid-layout-one.grid .image-left, .grid-layout-one.grid .image-right {
        margin:0;
    }

    /*----------------Header----------------*/

    #logo {
        width: 180px;
        margin:0;
        position:relative;
        top:20px;
        left:1rem;
    }

    #main-header {
        top:0;
        padding-top:0;
    }

    #main-header aside {
        margin-right:3.6rem;
    }

    #main-header-inner .grid {
        height:70px;
    }

    #main-header ul li {
        margin-right:0;
    }

    .contact-us .header-icon {
        display:inline-block;
    }

    .menu li {
        float: none;
    }

    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;

    }


    /*----------------Typography----------------*/

    h1 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    h2, h3, .header-style-one h2 {
        font-size: 1.7rem;
        line-height: 2.4rem;
    }

    .section-tag {
        transform:unset;
        text-align: unset;
        position: unset;
        top: unset;
        left:unset;
    }


    /*----------------Sections----------------------*/

    /* Banner */

    #banner .grid {
        height:unset;
    }

    #banner-content {
        padding:4rem 1rem;
    }

    #banner-content p {
        margin:0;
    }

    #banner-content p:before {
        content: "";
        width: 35px;
        height: 3px;
        background: #fff;
        display: block;
        margin-right: unset;
        margin-bottom:1rem;
        float:none;
    }

    /* Immobilienmarkt */

    #immobilienmarkt {
        background-position:unset!important;
        padding-top:0;
        background:none!important;
    }

    #immobilienmarkt .grid-layout-one.grid .text-left {
        padding:2rem;
        margin-bottom:2rem;
    }


    /* Kaeufer */

    #kaeufer {
        padding-top:0;
    }

    /* Selling Points */

    #selling-points {
        margin:0 auto;
        padding:2rem;
    }

    /* Kontakt */

    #kontakt {
        padding-top:3rem;
    }

    /* Footer */

    footer {
        margin:0;
    }

    footer a, footer span {
        margin: 0 0.3rem;
    }

    footer span {
        display:block;
    }

    #ueber-uns:before {
        left:0;
        right:unset;
    }


}


@media (min-width:1180px) and (max-width:1340px) {

    .page-frame, .vertical-lines, #scroll-down {
        display:none;
    }

    main {
        padding:0;
    }

    #ueber-uns, #kaeufer, #verkaeufer, #kontakt {
        padding:1rem;
    }



    .spacing-200, .spacing-300, .spacing-400, .spacing-500, .spacing-700, .spacing-900  {
        padding:5rem 0;
    }

    /* Images */

    .grid-layout-one.grid .image-left, .grid-layout-one.grid .image-right {
        margin:0;
    }

    /*----------------Header----------------*/

#main-header {
    top:0;
    padding:0 2rem;
}

    /*----------------Typography----------------*/


    h2, h3, .header-style-one h2 {
        font-size: 1.9rem;
        line-height: 2.4rem;
    }

/*---------------Grid----------------*/

    .grid-layout-one.grid .text-right {
        grid-row: 1/2;
        grid-column: 8 / 13;
    }

    #immobilienmarkt .grid-layout-one.grid .text-left {
        grid-column: 2 / 8;
    }

    .grid-layout-one.grid .text-left {
        grid-column: 2 / 7;
    }

    .grid-layout-two.grid .text-right {
        grid-column:7 / 12;
    }

    /*----------------Sections----------------------*/

    /* Banner */

#logo {
    width: 215px;
    grid-column: 6/9;
    margin-left:0;
}

    #banner-content p {
        margin:0 0 0 5rem;
    }

    #main-header nav {
        grid-column:1/6;
    }

    #main-header ul li {
        margin-right:1rem;
    }

    /* Immobilienmarkt */



    #immobilienmarkt .grid-layout-one.grid .text-left {
        padding:2rem;
        margin-bottom:2rem;
    }


    /* Kaeufer */

    #kaeufer {
        padding-top:0;
    }

    /* Selling Points */

    #selling-points {
        padding:2rem;
    }

    /* Kontakt */

    #kontakt {
        padding-top:3rem;
    }

    /* Footer */

    footer a, footer span {
        margin: 0 0.3rem;
    }


}
