
body,html, .mainContent {
    width:100%;
    margin:0;
    min-height: 400px;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    min-width: 320px;
}
body,html {
  height:100%;
}

.nav {
    width:100%;
    height: 50px;
    position: fixed;
    z-index: 1000;
    margin:0;
    padding: 0;
    top:0;
    left:0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.brand {
  width: 158px;
  height: 37px;
  /*border: 1px solid #bdc3c7;*/
  margin-top: 5px;
  margin-left: 10px;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  position: relative;
  background: url('../images/logo.svg') no-repeat center center;
  background-size: cover;
}
.company-name{
  margin: 0;
  margin-right: 0px;
  padding: 0;
  padding-left: 0px;
  margin-right: 5px;
  height: 23px;
  margin-top: 10px;
  position: absolute;
  bottom: 0px;
  padding-left: 0px;
  font-size: 21px;
  font-weight: 100;
  right:0px;
}
.hamburger {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.display-grid {
  display:grid;
}
.toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .toggle input {
    display: none;
  }
  .toggle input + div {
    width: 20px;
    height: 20px;
    position: relative;
  }
  .toggle input + div div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
  }
  .toggle input + div div span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
  }
  .toggle input + div div span:first-child {
    top: 0;
  }
  .toggle input + div div span:first-child:before, .toggle input + div div span:first-child:after {
    top: 0;
  }
  .toggle input + div div span:last-child {
    bottom: 0;
  }
  .toggle input + div div span:last-child:before, .toggle input + div div span:last-child:after {
    bottom: 0;
  }
  .toggle input + div div span:before, .toggle input + div div span:after {
    content: '';
    display: block;
    width: 66%;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    position: absolute;
    -webkit-backface-visibility: hidden;
    transition: border-radius .3s ease, -webkit-transform .5s ease;
    transition: transform .5s ease, border-radius .3s ease;
    transition: transform .5s ease, border-radius .3s ease, -webkit-transform .5s ease;
  }
  .toggle input + div div span:before {
    left: 0;
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transform: translate(-4px, 0) scaleX(1.1);
            transform: translate(-4px, 0) scaleX(1.1);
  }
  .toggle input + div div span:after {
    right: 0;
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
    -webkit-transform: translate(4px, 0) scaleX(1.1);
            transform: translate(4px, 0) scaleX(1.1);
  }
  .toggle input + div svg {
    display: block;
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
    width: 44px;
    height: 44px;
    stroke-linecap: round;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -22px 0 0 -22px;
    stroke-dasharray: 0 82.801 14 82.801;
    stroke-dashoffset: 82.801;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, -webkit-transform .5s ease;
    transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, transform .5s ease;
    transition: stroke-dashoffset .5s ease, stroke-dasharray .6s ease, transform .5s ease, -webkit-transform .5s ease;
  }
  .toggle input + div svg:nth-child(3) {
    -webkit-transform: rotate(180deg) scale(1);
            transform: rotate(180deg) scale(1);
  }
  .toggle input:checked + div div {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .toggle input:checked + div div span:first-child:before {
    -webkit-transform: rotate(45deg) translate(1px, -1px) scaleX(1.05);
            transform: rotate(45deg) translate(1px, -1px) scaleX(1.05);
  }
  .toggle input:checked + div div span:first-child:after {
    -webkit-transform: rotate(-45deg) translate(-1px, -1px) scaleX(1.05);
            transform: rotate(-45deg) translate(-1px, -1px) scaleX(1.05);
  }
  .toggle input:checked + div div span:last-child:before {
    -webkit-transform: rotate(-45deg) translate(1px, 1px) scaleX(1.05);
            transform: rotate(-45deg) translate(1px, 1px) scaleX(1.05);
  }
  .toggle input:checked + div div span:last-child:after {
    -webkit-transform: rotate(45deg) translate(-1px, 1px) scaleX(1.05);
            transform: rotate(45deg) translate(-1px, 1px) scaleX(1.05);
  }
  .toggle input:checked + div svg {
    stroke-dashoffset: 62;
    stroke-dasharray: 0 82.801 62 82.801;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .toggle input:checked + div svg:nth-child(3) {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .menu{
      position: absolute;
      width: 100%;
      height: calc(100vh - 51px);
      
      left: -100%;
      top: 51px;
      
      -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }
  .menu .ul {
      width: 70%;
      height:100%;
      margin: 0;
      margin-left: 15%;
      padding:0;
      text-decoration: none;
      list-style: none;
      display:flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      
  }
  .menu .ul .li {
      width: 100%;
      height: 50px;
      margin-bottom: 30px;
      border-bottom: 1px solid #95a5a6;
  }
  .menu .ul .li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .menu .ul .li a{
      display:inline-block;
      width:100%;
      height:30px;
      color: inherit;
      text-decoration:none;
      text-align:center;
  }
  .menu .ul .li a:hover {
      color: #c0392b;
  }
  .menu.horizTranslate {
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    left: 0% ;
  }
.mainContent {
  padding-top: 20px;
}
.hero {
    width: 100%;
    /* height: 100%;
    min-height: 400px; */
    
     
  
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 50px;
}
.paintingBackground {
  background: url(../images/paintingwall.jpg) no-repeat center center ;
}
.drywallBackground {
  background: url(../images/drywallceiling-large.jpg) no-repeat center center ;
}
.hero .heading {
  width: 313px;
  margin-left: 5%;
  
  font-weight: 100;
}
.hero-left {
  position: relative;
  display: -webkit-box; 
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex; 
display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-basis: 45%;
}
.hero-right{
  display: grid;
  flex-grow: 1;
  padding: 20px;
  grid-template-columns: 50% 50%;
}
.one {

grid-column: 1/span 1;

grid-row: 1/4;
}
.two {
  
  grid-column: 2/span 1;

grid-row:1/4;
}
.three {
  
  grid-column: 1/span 2;

grid-row: 4/9;
}
.one,.two,.three{
  display:flex;
  flex-basis:1;
  padding: 10px;
}

.homepage .one .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0052.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.homepage .two .image-container {
  background: url(../images/portfolio/wooden/wooden-wendy-house_0002.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.homepage .three .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0003.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.nutecpage .one .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0003.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.nutecpage .two .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0035.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.nutecpage .three .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0011.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.woodenpage .one .image-container {
  background: url(../images/portfolio/wooden/wooden-wendy-house_0002.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.woodenpage .two .image-container {
  background: url(../images/portfolio/wooden/wooden-wendy-house_0014.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.woodenpage .three .image-container {
  background: url(../images/portfolio/wooden/wooden-wendy-house_0016.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.about-us .one .image-container {
  background: url(../images/portfolio/nutec/nutec-wendy-house_0035.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.about-us .two .image-container {
  background: url(../images/portfolio/interiors/interior_0003.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.about-us .three .image-container {
  background: url(../images/portfolio/wooden/wooden-wendy-house_0018.jpg) no-repeat center center ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.image-container {
  padding-top: 65%;
  
  flex-grow: 1;
  box-shadow: 5px 5px 15px 2px rgba(0,0,0,0.4);

}
.welcome, .process, .contactBlock {
  display:grid;
}
.welcome-mainblock {
  flex-direction: column;
  display: -webkit-box; 
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex; 
display: flex;
  max-width: 450px;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.welcome h5 {
  font-size: 16px;
}
.intext-link {
  text-decoration: none;
  color: #c0392b;
}
.intext-link:hover {
  color: #2c3e50;
}
.contactDetails {
  min-height: 90vh;
  margin-top: 0px;
}
.contactDetails .innerContainer {
  padding-top: 80px;
}

.innerContainer {
  width: 90%;
  margin-left:5%;
}
.electricbackground {
  background: url(../images/electricalinstall.jpg) no-repeat center center ; 
  min-height: 90%;
}
.electricbackground .col {
  margin-bottom: 20px;
  background-color: white;
}
.equal-content .col-content{
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}
.equal-content .col-content .img-responsive {
  margin-top:auto;
}
.banner {
  font-weight: 100;
  font-size: 32px;
  padding: 19px;
  width: 100%;
  margin-left: -6%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}
.small-banner {
  font-weight:100;
  font-size: 28px;
  padding: 10px 0px 12px 0px;
  width:100%;
  margin:0px;
  border-radius: 30px;
  text-align: center;
}
.picture-grid {
  display:flex;
  width:90%;
  flex: 1 1 100%;
  margin-left: 5%;
}
.t {
 
  padding: 10px;
  display:flex;
  align-items:start;
}
.flex-align-end{
  align-items: end;
}
.contactBlock {
  margin-top:80px;
  padding-top: 60px;
  padding-bottom: 80px;
  margin-bottom: 100px;
  text-align: center;
  background: url(../images/contactpanelback.jpg) no-repeat center center;
  background-size: cover;
}
.contactBlock h3 {
  font-weight: 100;
  text-align: center;
  
  
}
.galleryBlock {
  margin-top: 60px;
  margin-bottom: 100px;
}
footer {
  min-height:100px;
  margin-top: 20px;
  padding-top: 30px;
  background: url(../images/contactpanelback.jpg) no-repeat center center;
  background-size: cover;

}
footer a {
  text-decoration: none;
}
footer .credits {
  margin-top: 30px;
}
footer .credits a {
  font-size: 12px;
  display:block;
}
.portfolio {
  padding-top: 100px;
}
.portfolio .col {
  margin-bottom: 30px;
}
.thankyoucontainer {
  padding-top: 100px;
  min-height: calc(100vh - 250px);
}
.thankyoutext {
  justify-content:center;
}
.thankyoutext .fixedwidth {
  max-width: 400px;
}
.brochure-opening {
  width: 90%;
  margin-left:5%;
}
.table {
  width: 360px;
}
.table th, .table td {
  width:25%;
}
.finishTable p, .info-block p{
  color: #555;
}
.finishTable img, .info-block img{
  width: 50%;
  float: left;
  margin-right: 20px;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.6);
  border: 1px solid #999999;
}
.pricesrow {
  border-bottom: 1px solid #95a5a6;
  padding-bottom: 50px;
}
.prices-button {
  width: 133px;
height: 36px;
position: fixed;
top: 50px;
right: 0px;
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
border-top: 0;
  
border-bottom-left-radius: 24px;
border-right: 0;
  
  
}
.prices-button:hover {
  background-color: #27ae60;
}
.prices-button:hover .h4pb {
  color: #2c3e50 !important;
}
.prices-button .h4pb {
  margin:0;
  padding:0;
  font-size: 14px;
}
.contact-buttons-container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.button-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin-right: 5px;

}
.button-icon img {
  width: 100%;
}
@media (min-width: 600px){
  .welcome h3 {
    font-size: 26px;
    font-weight: 100;
  }
  .contactBlock h3 {
    font-size: 26px;
  }
  .brochure-opening {
    width: 60%;
    margin-left:20%;
  }
  .prices-button {
    width: 170px;
    height:45px;
    
    
    
  }
  .prices-button .h4pb {
    font-size: 18px;
  }
}
@media (min-width: 800px){
  .hero {
    width: 100%;
    height: 56%;
    min-height: 400px;
    display: -webkit-box; 
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex; 
display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .image-container {
    padding-top:0px;
  }
}
@media (min-width:968px){
  .hamburger {
    display: none;
  }
  .menu{
    position: absolute;
    width: auto;
    height: auto;
    left: unset;
    right: 10px;
    top: 0px;

  }
  .menu .ul {
      width: 684px;
      height:50px;
      margin: 0;
      margin-left: 0;
      
      flex-direction: row;
      align-items: center;
      justify-content: center;

      
  }
  .menu .ul .li {
      width: auto;
      height: 30px;
      margin-bottom: 0px;
      border-bottom: 0px;
      box-sizing: border-box;
      padding: 10px;
  }

  
  
}
@media (min-width: 1000px){
  .hero {
    height: 80%;
    min-height: 450px;
  }
  .hero .heading {
    font-size: 40px;
    width: 480px;
  }
  .picture-grid {
    width: 80%;
    margin-left: 10%;
  }
}