
	
/**** MENU ******/
@import url(reset.css);
h1, h2, h3 {
  font-family: "Exo", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
  color: #1d1d1d;
  line-height: 1.3;
  word-break: break-word;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #1d1d1d;
}

p strong{
    font-weight: bold;
}

.logoholder {
  position: fixed;
  z-index: 500;
  left: 5em;
  top: 5em;
}

.logo.svg {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  max-width: 200px;
  min-width: 200px;
}

.logo.svg.active path {
  fill: #1d1d1d;
}


.menu-button {
  -webkit-transition: all ease-in-out .1s;
  -o-transition: all ease-in-out .1s;
  transition: all ease-in-out .1s;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #1d1d1d;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: fixed;
  right: 5em;
  top: 5em;
  z-index: 700;
  -webkit-box-shadow: -3px 7px 13px rgba(19, 19, 19, 0.12), -3px 7px 13px rgba(0, 0, 0, 0.12);
  box-shadow: -3px 7px 13px rgba(19, 19, 19, 0.12), -3px 7px 13px rgba(0, 0, 0, 0.12);
}

.menu-button:hover {
  -webkit-box-shadow: -3px 7px 20px rgba(19, 19, 19, 0.22), -3px 7px 20px rgba(0, 0, 0, 0.22);
  box-shadow: -3px 7px 20px rgba(19, 19, 19, 0.22), -3px 7px 20px rgba(0, 0, 0, 0.22);
}

.menu-wrapper {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  right: 0;
  margin: auto;
  top: -100vh;
  background: #dcd7c9;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-wrapper.active {
  top: 0;
}

.menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 1100px;
}

.half {
  width: 50%;
}

.menu-text {
  font-family: "Exo", sans-serif;
  font-weight: bold;
  font-size: 150px;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-items {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in .5s;
  -o-transition: all ease-in .5s;
  transition: all ease-in .5s;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.menu-items.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.menu-items a,
.menu-title {
  list-style: none;
  font-size: 22px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0.5em;
  font-family: "Exo", sans-serif;
  color: #1d1d1d;
}

.menu-items .parent-1 a,
.menu-items .parent-2 a,
.menu-items .parent-3 a{
    margin: 0.2em 0.5em;
}

.menu-items a {
  line-height: 0;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  padding: 0.8em;
  margin: 0.5em;
  display: block;
  font-weight: 600;
}

.menu-items a:hover {
  background: #1d1d1d;
  color: #dcd7c9;
}

.parent-1 > a,
.parent-2 > a,
.parent-3 > a {
  pointer-events: none;
}

.sub-menu {
  margin-left: 1.7em;
  position: relative;
  margin-bottom: 2em;
}

.sub-menu a {
  font-size: 18px;
}

.sub-menu:before {
  content: '';
  height: 100%;
  width: 4px;
  background: #1d1d1d;
  position: absolute;
  top: 0;
  left: 0.5em;
  border-radius: 999px;
  margin: auto;
  z-index: 52;
}

.flags{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1em;
}

.flags img{
    width: 30px;
}

.flags a:hover{
    background: none;
}

.flags a{
    padding: 0px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.creator{
    position: absolute;
    bottom: 20px;
    font-size: 13px;
    left: 0;
    right: 0;
    text-align: center;
    text-decoration: none;
    color: #1d1d1d;
    font-family: "Titillium Web", sans-serif;
}

/**** BURGER MENU ****/
.hamburger .line {
  width: 50px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 10px auto;
  border-radius: 999px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-11 {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
  -webkit-animation: smallbig 0.6s forwards;
  animation: smallbig 0.6s forwards;
}

@-webkit-keyframes smallbig {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes smallbig {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

#hamburger-11.active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-11.active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-11.active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

/**** START PAGE ******/
.start-page-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**/
.main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  z-index: 3;
}

.intro-block {
  min-height: 700px;
  background: rgba(204, 105, 4, 0.18);
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-aside {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  -webkit-transform: translateX(900px);
  -ms-transform: translateX(900px);
  transform: translateX(900px);
  position: fixed;
  top: 0;
  right: 0;
  width: 900px;
  height: 100vh;
  background: #E6E4DE;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-aside.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: -17px 3px 104px rgba(19, 19, 19, 0.12), -17px 7px 73px rgba(0, 0, 0, 0.12);
  box-shadow: -17px 3px 104px rgba(19, 19, 19, 0.12), -17px 7px 73px rgba(0, 0, 0, 0.12);
}

.animatecontent {
  -webkit-transition: all ease-in .3s;
  -o-transition: all ease-in .3s;
  transition: all ease-in .3s;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.animatecontent.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.text-aside h2 {
  font-size: 35px;
  text-transform: uppercase;
}

.title-main {
  text-align: center;
  font-weight: lighter;
  color: #fff;
  font-size: 60px;
  line-height: 1.4;
  margin-bottom: 0.7em;
}

.title-main .bold {
  font-weight: bold;
}

.title-main .block {
  display: block;
}

/**** CONTACT FORM ****/


.wpcf7-form {
  min-width: 600px;
  margin-top: 3em;
}

.wpcf7-form-control {
  height: auto;
}

 .wpcf7-form .form-style textarea, .wpcf7-form .form-style input {
  -webkit-appearance: none;
  -webkit-border-radius:0px;
 width: 100%;
  margin-bottom: 2em;
  padding: 0.2em;  
	border: 0px;
 background: none;
  border-bottom: 2px solid #1d1d1d;
 font-size: 20px;
  font-family: "Titillium Web", sans-serif;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
}

body span.wpcf7-not-valid-tip {
  color: #fb7f7f;
}

body div.wpcf7-response-output {
  padding: 0px;
  margin: 0px;
}

body div.wpcf7-validation-errors {
  font-size: 18px;
  font-family: "Titillium Web", sans-serif;
  border: none;
  line-height: 1.6;
}

.wpcf7-form textarea {
  padding: 1em 0em;
} 

/****/
.button,
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #1d1d1d;
  cursor: pointer;
  border-radius: 999px;
  padding: 1.5em 0.5em;
  border: 2px solid #1d1d1d;
  font-family: "Exo", sans-serif;
  font-weight: regular;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 0;
}

.button:hover,
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
  -webkit-box-shadow: inset 0 200px #1d1d1d;
  box-shadow: inset 0 200px #1d1d1d;
  color: #fff;
}

.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  width: 200px;
}

.button.button-main {
  border: 2px solid #fff;
  width: 200px;
  margin: 0 auto;
  color: #fff;
}

.button.button-main:hover {
  -webkit-box-shadow: inset 0 200px #fff;
  box-shadow: inset 0 200px #fff;
  color: #1d1d1d;
}

.button.button-small {
  width: 200px;
}

.button.button-small.button__close {
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 2em;
  width: 150px;
}


/*******************************/
.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 700px;
}

.content-wrapper.information .content-left {
  background: #7D808A;
}

.content-left .content,
.content-left .house-content{
    width: 80%;
}

.content-left {
  position: fixed;
  height: 100vh;
  width: 50vw;
  background-image: url("images/test2.jpg");
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-left h1 {
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

.content-right {
  width: 100%;
  min-height: 100vh;
  width: 100vw;
  background: #E6E4DE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.content-right img{
    width: 100%;
    height: auto;
}

.content-right .content {
  margin-bottom: 4em;
}

.half {
  width: 50%;
}

.content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 300px;
}

.content,
.house-content {
  padding: 0em 6em;
  max-width: 700px;
  margin: 0 auto;
  display: none;
}

.content h2,
.house-content h2,
.content-area .content h1{
  font-size: 35px;
  margin-bottom: 0.2em;
}

.content h3,
.house-content h3 {
  font-size: 24px;
  margin-bottom: 0.2em;
}

.content ul,
.house-content ul {
  list-style: none;
}

.content li,
.house-content li {
  font-family: "Exo", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.4em;
  list-style: circle;
  margin-left: 1em;
  color: #1d1d1d;
}

.content a,
.house-content a {
  font-weight: bold;
  color: #1d1d1d;
  text-decoration: none;
}

.house-content {
  display: block;
}

.content-slide {
  -webkit-transition: ease-in .5s;
  -o-transition: ease-in .5s;
  transition: ease-in .5s;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

/**** PAGE HOUSETYPES ****/
.arrow-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow-nav-container p {
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrow-nav-container img {
  cursor: pointer;
}

.arrow-nav {
  width: 40px;
}

.arrow-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.house-drawing img {
  width: 100%;
  height: auto;
}


/*** 404 ***/
.main-404 {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("images/404.jpg");
  background-position: center center;
  background-attachment: cover;
}

.main-404 h1, .main-404 p {
  color: #fff;
}

.main-404 h1 {
  font-size: 85px;
}

.main-404 .button {
  margin-top: 1em;
}


/*******************************/

@media screen and (min-width: 1200px){
  .page-template-page-story  .logo.svg path{
    fill: #1d1d1d;
    }
}

@media screen and (max-width: 1620px) {
  .wpcf7-form {
    min-width: 400px;
    margin-top: 3em;
  }
}

@media screen and (max-width: 1500px){
    /*.title-main{
        font-size: 50px;
    }*/
        .title-main{
        font-size: 45px;
    }
    
    .content-left h1,
    .content h2,
    .house-content h2,
    .content-area .content h1{
    font-size: 30px;
    }
    
    .content h3, .house-content h3{
        font-size: 22px;
    }
    
    .arrow-nav-container p{
        font-size: 20px;
    }
    
    
    .text-aside{
        width: 700px;
    }
    .content, .house-content{
        padding: 0em 4em;
    }

   .logoholder{
    left: 2em;
    top: 1em;
   } 
   
   .menu-button{
   top: 2em;
   right: 2em;
   }

}

@media screen and (max-width: 1300px){
/*     .title-main{
        font-size: 45px;
    }
    
    .content-left h1,
    .content h2,
    .house-content h2 {
    font-size: 35px;
    font-size: 35px;
    }*/
    .menu-button{
        top: 1em;
        right: 1em;
    }
}

@media screen and (max-height: 750px){
    .text-aside .content{
        padding-top: 100px;
        padding-bottom: 100px;
        overflow-y: scroll;
    }
}

@media screen and (min-width: 1200px) and (max-height: 750px) {
    

    
  
    .menu-items a{ 
        padding: 0.5em;
    }
    
    .flags{
        padding: 0px;
    }
    
    .flags a{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    .sub-menu:before{
        left: 0em;
    }
    
    .sub-menu a{
        font-weight: 400;
    }
    
    .menu-text{
        margin-top: 80px;
    }
    
    .menu-items .parent-1 a,
    .menu-items .parent-2 a,
    .menu-items .parent-3 a{
        margin: 0.6em 0.5em;
    }
    
    .menu-button{
        top: 1em;
        right: 1em;
    }
    
    .logoholder{
        left: 2em;
        top: 1em;
    }
    
    .content-area{
        margin-top: 200px;
    }
    
    
    .menu-text{
        font-size: 110px;
    }

}



@media screen and (max-width: 1200px) {
    
    .page-template-page-story .content-left{
        margin-top: 80px;
    }
    
    .menu-items .parent-1 a,
    .menu-items .parent-2 a,
    .menu-items .parent-3 a{
    margin: 0.5em;
    }

    .content-left .content,
    .content-left .house-content{
    width: 60%;
    }
    
  .wpcf7-form {
    min-width: 600px;
    margin-top: 3em;
  }
  .logoholder {
    background: #bbb39c;
    width: 100%;
    height: 80px;
    top: 0em;
    left: 0em;
  }
  .logoholder.active,
  .page-template-homepage .logoholder {
    background: none;
  }
  .logo.svg {
    max-width: 150px;
    min-width: 150px;
    margin-left: 1em;
    margin-top: 0.7em;
  }
  .menu-button {
    width: 60px;
    height: 60px;
    top: 0.6em;
    right: 1em;
  }
  .hamburger .line {
    width: 30px;
    margin: 7px auto;
  }
  
  #hamburger-11.active .line:nth-child(1){
     -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  
  #hamburger-11.active .line:nth-child(3){
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .content-left .title-alone {
    padding: 2em 0em;
    text-align: left;
  }
  .menu-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-text {
    display: none;
  }
  .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  /*.content-wrapper.information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .content-wrapper.information .content-right {
    padding-top: 5em;
  }*/
  .content-left,
  .content-right {
    width: 100%;
    height: auto;
  }
  .half__first {
    display: none;
  }
  .half {
    width: 100%;
  }
  .content,
  .house-content {
    padding: 3em 3em;
  }
  .content li,
  .house-content li {
    font-size: 18px;
  }
  .content-right {
    min-height: 50vh;
  }
  .content-left {
    position: static;
    padding-top: 5em;
    min-height: 40vh;
  }
  .content-left h1 {
    color: #fff;
    margin-bottom: 0px;
    font-size: 35px;
  }
/*
  .page-template-page-smart-homes .content-left {
    background-image: none;
    background: #b3aa93;
  }
  .page-id-15 .content-left {
    background-image: none;
    background: #b3aa93;
  }
  */
  .content-area {
    margin: 3em 0em;
  }
  .arrow-nav-container{
    margin: 1em auto;
  }
  
  .house-drawing{
    margin: 2em auto;
  } 
  
  .arrow-nav-container {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) {
  .title-main {
    font-size: 35px;
    line-height: 1.6;
    margin-bottom: 1em;
    padding: 0em 0.5em;
  }
	
}

.content-left .title-alone{
    text-align: center;
}

@media screen and (max-device-width: 1200px) and (orientation : landscape){
    .content-left{
        min-height: 60vh;
    }
    
    .content-left .content, .content-left .house-content{
        width: 40%;
    }
}

@media screen and (max-width: 1024px) {

    .content-left .content,
    .content-left .house-content{
    width: 80%;
    }
        
    
  .parent-1 > a,
  .parent-2 > a,
  .parent-3 > a{
    pointer-events: initial;
  }
  .content-left h1 {
    font-size: 28px;
  }
  .button.button-small.button__close {
    margin: 1.5em auto;
    margin-bottom: 5em;
  }
  .text-aside {
    width: 100vw;
    -webkit-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    transform: translateX(100vw);
  }
    .text-aside .content::-webkit-scrollbar { 
    display: none; 
        
  }
  
  .text-aside .content {
    min-width: 0px;
    overflow-y: scroll;
  }
  .text-aside .content h2 {
    padding-top: 4em;
  }
  p,
  .content li{
    font-size: 17px;
  }
  
  .content,
  .house-content {
    min-width: 0px;
    padding: 0.5em 1.2em;
  }
  .menu-text {
    font-size: 40px;
  }
  .menu-items {
    margin: 0 auto;
    /*padding-top: 3em;*/
    padding-top: 1em;
  }
  .menu-items a {
    font-size: 20px;
  }
  
  .menu-items .menu-menu-2-english-container a {
      font-size: 17px;
  }
  
    .menu-items .menu-menu-2-english-container .sub-menu a {
      font-size: 16px;
  }
  
  .menu-items a:hover {
    background: none;
    color: #1d1d1d;
  }
  .sub-menu {
    margin-left: 1em;
  }
  .sub-menu a {
    font-size: 16px;
  }
  .parent-1 .sub-menu,
  .parent-2 .sub-menu,
  .parent-3 .sub-menu{
    display: none;
  }
  .parent-1.active .sub-menu,
  .parent-2.active .sub-menu,
  .parent-3.active .sub-menu{
    display: block;
  }
  .parent-1,
  .parent-2,
  .parent-3{
    position: relative;
  }
  .parent-1 > a::after,
  .parent-2 > a::after,
  .parent-3 > a::after{
    -webkit-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
    content: '+';
    color: black;
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    float: right;
    margin-left: 50px;
  }
  .parent-1.active > a::after,
  .parent-2.active > a::after,
  .parent-3.active > a::after{
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .flex {
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
  }
}

@media screen and (max-device-width: 1024px) and (orientation : landscape){
    
    .content-left .content, .content-left .house-content{
        width: 40%;
    }
}

@media screen and (max-width: 750px) {
    
    .sub-menu {
  margin-bottom: 1em;
}
    
    .creator{
    bottom: 10px;
    font-size: 12px;
    }
    
    .content-left .content,
    .content-left .house-content{
    width: 90%;
    }
    
    
    .menu-items a:hover,
    .menu-items a:focus{
    background: none;
    color: none;
  }
  .wpcf7-form {
    min-width: 0px;
    margin-top: 3em;
  }
  .house-drawing {
    padding: 0em 1.2em;
  }
  .arrow-nav-container {
    width: 100%;
  }
  .arrow-nav-container p {
    font-size: 15px;
  }
  .arrow-nav {
    width: 30px;
  }
  
}

@media screen and (max-device-width: 750px) and (orientation : landscape){
    
    .content-left .content, .content-left .house-content{
        width: 60%;
    }
}



/**** ADJUSTMENTS 1910******/
.news-category {
    text-align: center;
    color:#fff;
    font-family: "Titillium Web", sans-serif;
    font-size:20px;
    letter-spacing:2px;
}
.news-date {
	padding-bottom:16px;
	font-family: "Titillium Web", sans-serif;
	font-size:12px;
	}
	
.news-more-link {
	padding-top:16px;
	font-family: "Titillium Web", sans-serif;

	}
	
	.single-news-image {
	padding-top:16px;
	max-width: 150px;
	}
	
	
span.wpcf7-list-item {
	margin: 0 1em 0 0!important;
}

.wpcf7-form input[type="checkbox"]{

}


.subtitle-main {
  text-align: center;
  font-weight: lighter;
  color: #fff;
  font-size: 60px;
  line-height: 1.4;
  margin-top: 1.2em; 
	margin-bottom:0.2em;
}

.subtitle-main .bold {
  font-weight: bold;
}

.subtitle-main .block {
  display: block;
}



#startpage-content {
	width: 800px; 
	margin-bottom:1.4em;
}



.homepage-banner {
	width: 100%;
text-align: center;
background-color: black;
  flex-direction: column;
  justify-content: space-between;
	color:#ffffff;
	height: 30px;
	}


@media screen and (max-width: 1500px){
	
	   .subtitle-main{
        font-size: 35px;
		   margin-top:1.4em;
    }
	 }

@media screen and (max-width: 1200px) {	
  .subtitle-main {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 0em;
    padding: 0em 0.5em;
  }
}

@media screen and (max-width: 1024px){
    
#startpage-content {
	min-width: 0px;
	width: 80%; 
	padding: 0.5em 1.2em;
	}
}

        
   @media screen and (min-width: 768px){
            .rwd-break { display: none; }
        }

	@media screen and (max-width: 768px){
			.parent-1 a { line-height: 24px; }
			.sub-1 a { line-height: 24px; }
			.parent-1 .sub-menu a { line-height: 0px; }
			#startpage-content .block p { line-height: 1.4; }
			.button{font-size: 12px;}
			.button.button-main {width: 100px; }
			.subtitle-main { font-size: 18px; font-weight: bold;}

		}

@media screen and (max-width: 750px){
    
#startpage-content {min-width: 0px;width: 90%; padding: 0em 1.2em;}
	.title-main{line-height: 1.3;  margin-bottom: 0.6em; font-size: 23px; }
	#startpage-content .block p { line-height: 1.1; }
}


