﻿.auto-style4 {
	color: #FFFFFF;
}


/*FONT */

h1 {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: xx-large;
	color: #333333;
	line-height:35px;
}

h2 {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: x-large;
	color: #003C56;
	padding-top:10px;
}
h3 {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: large;
	color: #333333;
}
h4 {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: medium;
	color: #333333;
}
h5 {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: x-large;
	color: #FFFFFF;
}
p {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: medium;
	color: #333333;
}


.masthead_text  {
   	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: large;
	color: #FFFFFF;

	
}
.auto-style3 {
	text-decoration: none;
}

/* GOOGLE REVIEW */

.review_text  {
   	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: large;
	color: #000000;	
}
/* CLOSE GOOGLE REVIEW */

.pulsetxt  {
	
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: xx-large;
	color: #FFFFFF;
	line-height:35px;
}

.footertxt {
	font-family: 'Fira Sans Extra Condensed', sans-serif;
	font-size: small;
	color: #FFFFFF;
}


/* Service page bg images */

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:800px;
  
}


.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:800px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:600px;
  
}
 
.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:800px;
  
}

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:800px;
  
}


.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:800px;
  
}




/* Animations */




 .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  } 


.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes pulse {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  50% {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  }
  @keyframes pulse {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  50% {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
} 


   .slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInRight {
  0% {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }
  @keyframes slideInRight {
  0% {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }



/* SCROLL BACK UP CODE link page */

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #003C56 url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }  
  
}

/* CLOSE REQUIRED CODE */



/* Button */

#box-wrapper .button {
    background-color: #438FBB; 
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 50%;
}

#box-wrapper .button1 {
    background-color: #034260; 
    color: white; 

}

#box-wrapper .button1:hover {
    background-color: #519D49;
    color: white;
}


#reviews1 .button {
    background-color: #438FBB; 
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 50%;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
}

#reviews1 .button1 {
    background-color: #034260; 
    color: white; 

}

#reviews1 .button1:hover {
    background-color: #519D49;
    color: white;
}



/* LEFT CONTENT */

#left-content .button {
    background-color: #438FBB; 
    border: none;
    color: white;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 25%;
    margin-right:4%;
}

#left-content .button1 {
    background-color: #034260; 
    color: white; 


}

#left-content .button1:hover {
    background-color: #519D49;
    color: white;
}

.button2 {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
   transition-duration: 0.4s;

}

.button4 {
  background-color: transparent;
  color: white;
  border: 2px solid #e7e7e7;
}
.button4:hover {
	background-color:white;
	color:black;
}



/* SLIDER */

.testimonial{
    text-align: center;
}
.description{
    color:#656565;
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 30px;
    padding:0px 11%;
    position: relative;
}
.description:before{
    content: "\f10d";
    font-family: 'FontAwesome';
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 2%;
    color:#3498db;
    font-size: 36px;
}
.description:after{
    content: "\f10e";
    font-family: 'FontAwesome';
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 2%;
    color:#3498db;
    font-size: 36px;
}
.pic{
    width: 94px;
    height: 1px;
    margin: 0 auto;
}
.pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.testimonial-title{
    font-size: 18px;
    color:#333;
    font-weight: bolder;
    text-transform: capitalize;
}
.testimonial-title > small{
    display: block;
    color:#656565;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 5px;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #3498db;
}
.owl-theme .owl-controls .owl-page span{
    opacity: 1;
}
@media screen and (max-width: 480px) {
    .description{
        font-size:19px;
        line-height: 29px;
    }
    .description:before,
    .description:after{
        font-size: 25px;
    }
}

/* THE NEW RESPONSIVE PART  11/09/20 */



/* MOBILE MEDIA QUERIES iPad portrait */

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

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}
.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}
.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:307px;
  
}


}


/* MOBILE MEDIA QUERIES Nexus 7 Android portrait / Galaxy Tab */

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

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}
.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}

.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:242px;
  
}


}


/* MOBILE MEDIA QUERIES Mobile iPhone 6plus */

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

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}
.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}

.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}
.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:166px;
  
}


}



/* MOBILE MEDIA QUERIES Mobile iPhone 6 */

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

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}
.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}

.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}

.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:150px;
  
}


}



/* MOBILE MEDIA QUERIES Mobile Anroid */

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


.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}
.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}

.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:144px;
  
}

}


/* MOBILE MEDIA QUERIES Mobile Lumia */

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

.renovations  {
	
  background: url(../images/renovation1.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;  
}

.extensions  {
	
  background: url(../images/extensions.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;
  
}

.loft  {
	
  background: url(../images/loft-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;
  
}

.garage  {
	
  background: url(../images/garage-conversion.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;
  
}

.kitchen  {
	
  background: url(../images/kitchen.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;
  
}
.building  {
	
  background: url(../images/general-building.jpg) no-repeat center center scroll; 
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  height:128px;
  
}


}


