*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* General styles and layout */

body {
    background: #fff;
}
.container {
    overflow: hidden;
    /* we don't want the pseudo-elements sticking out */
}

.container svg {
    display: block;
}

section {
    position: relative;
    background: #fff;
    text-align: center;
}
.color {
    background: #f7f7f7;
}
.color h2{
    color: #58bac4;
}
.bg-3dp{
    background: url('../images/floorplan/bg3dp.png') no-repeat top center;
    background-size: cover;
    /*height: 75vh;*/
    background-color: #f7f7f7;
    color: #fff;
}
@media only screen and (max-width: 450px) {
    height: 100%;
}
.padding-bottom-100{
    padding-bottom: 100px;
}
/*** Individual section styles and separators ***/

/* Common style for pseudo-elements */
section::before,
section::after {
    position: absolute;
    content: '';
    pointer-events: none;
}
.ss-style-triangles::before,
.ss-style-triangles::after {
    left: 50%;
    width: 100px;
    height: 100px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.ss-style-triangles::before {
    top: -50px;
    background: #f7f7f7;
}

.ss-style-triangles::after {
    bottom: -50px;
    z-index: 10;
    background: inherit;
}

.ss-style-triangles-one::before,
.ss-style-triangles-one::after {
    left: 50%;
    width: 100px;
    height: 100px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.ss-style-triangles-one::before {
    top: -50px;
    background: #f7f7f7;
}

/* Double Diagonal line */

.ss-style-doublediagonal {
    z-index: 1;
    padding-top: 40px;
    background: #f7f7f7;
    margin-top: 0px;
}

.ss-style-doublediagonal::before,
.ss-style-doublediagonal::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: inherit;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.ss-style-doublediagonal::before {
    height: 50%;
    background: #e8eff3;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-transform-origin: 3% 0;
    transform-origin: 3% 0;
}
/* Double Diagonal line */

.ss-style-diagonal {
    padding-top: 40px;
    background: #f7f7f7;
    margin-top: 0px;
}

.ss-style-diagonal::before,
.ss-style-diagonal::after {
    top: 0;
    right: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: inherit;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.ss-style-diagonal::before {
    height: 50%;
    background: #e8eff3;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-transform-origin: 3% 0;
    transform-origin: 3% 0;
}
h2{
    font-family: 'Roboto Condensed',sans-serif !important;
}
.cbp-so-scroller p {
    font-family: 'Roboto Condensed',sans-serif !important;
     font-size: 18px;
    font-weight: 100;
}
/* -------------------------------- 

Primary style

-------------------------------- */

html, body {
  height: 100%;
}
@media only screen and (min-width: 1048px) {
  body {
    /* hide horizontal scroll bar in IE */
    overflow-x: hidden;
  }
}

/* -------------------------------- 

Main Components 

-------------------------------- */


.fixed-background {
  position: relative;
  padding: 3em 5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.fixed-background .content::after {
  /* phone image on small devices */
  content: '';
  display: block;
  width: 100%;
  padding: 60% 0;
  margin: 2em auto 0;
}
@media only screen and (min-width: 450px) {
  .fixed-background {
    height: 100%;
  }
}
@media only screen and (min-width: 1048px) {
  .fixed-background {
    background-attachment: fixed;
  }
  .fixed-background .content {
    width: 40%;
    left: 10%;
  }
}


.no-js .cd-vertical-nav {
  display: none;
}

/*
.parallaxParent {
    height: 66vh;
    overflow: hidden;
}

.parallax-background {
    height: 200%;
    position: relative;
    top: -100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.parallax-background .container .content-wrapper h2.section-heading{
    text-align: center;
}

img{
    width: 100%;
}

.parallax-background .container .content-wrapper {
    margin-top: 83%;
    width: 100%;
}

@media (min-width: 768px) {
    .parallax-background .container .content-wrapper {
        margin-top: 22%;
    }
    .parallaxParent {
        height: 100vh;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .parallax-background .container .content-wrapper {
        margin-top: 30%;
    }
}

@media (min-width: 1200px) {
    .parallax-background .container .content-wrapper {
        margin-top: 25%;
    }
}*/