/*
Theme Name: Bridgeview Painting Theme
Author: Joel Brauer
Version 1.0
*/

* {
	margin: 0;
	padding: 0;
	border: 0;
}


/*---font stuff---*/


body { 	font-size: 16px; font-size: 1.6rem; 
		font-family: Arial, sans-serif;
		color: black;

	}



h1 { font-size: 32px; font-size: 3.2rem; }






a:link {

	color: #ECECEC;
	text-decoration: none;
}

a:link,
a:visited {
	color: #00a7ca;
}

p {
	line-height: 1.65;
}

a:hover {
	color: #FF2A03;
}

a:active {
	color: #aaf200;

}



/* General Layout */

.container {

	background-color: none;
	z-index: 99999;
	position: relative;
	
}

.container-border {

	border-right: 12vw solid #ffffff;
	border-left: 12vw solid #ffffff;
	border-top: 50px solid #ffffff;
	border-bottom: 0px solid #ffffff;
	 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
 z-index: 99999;
position: relative;
}


/* Header */


.header-container {

	background-color: #ffffff;
	height: 0px;
	width: 100%;
	margin-left: 0%;
	opacity: 0.95;
	
	
}



head.site-header {
	z-index: 99999;

}





/*---logo---*/
#header-image {
	padding-right: 0px;
	padding-left: 0px;
	margin top: 0px;
	padding-top: 2px;
	text-align: center;
	
}


/*---phoone number---*/

.phone-number {

	width: 132%;
	height: 37px;
	background-color: #000000;
	font-family: 'bebas_neue', sans-serif;
  	font-style: normal;
	text-align: center;
	color: #fcf403;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: -16%;
	padding-top: 7px;
	font-size: 100%;
	letter-spacing: 9px;

text-shadow: 
				0px 15px 5px rgba(255,255,0,0.0125),
                 10px 20px 5px rgba(255,255,0,0.0125),
                 -10px 20px 5px rgba(255,255,0,0.0125),

               0 6px 1px rgba(0255,255,0,.025),
               0 0 5px rgba(255,255,0,.025),
               0 1px 3px rgba(255,255,0,.08),
               0 3px 5px rgba(255,255,0,.05),
               0 5px 10px rgba(255,255,0,.065),
               0 10px 10px rgba(255,255,0,.05),
               0 20px 20px rgba(0255,255,0,.04);
}

.phone-number a {
	color: #fcf403;
}


.color-band {
	height: 4px;
	background-color: #aaf200;
	width: 132%;
	margin-left: -16%;
}




.socialmediabuttons {
margin-left: 1%;
margin-top: -32px;

float: left;
}

.email-icon {
margin-left: 0%;
margin-top: -30px;
float: right;  
-webkit-animation-name: tada;
  animation-name: tada;
  animation-duration: 1s;
}


#quote:hover img{
-webkit-animation-name: tada;
  animation-name: tada;
  animation-duration: 1s;
}




@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}




.services-top-links {
	animation-name: slideRight;
	-webkit-animation-name: slideRight;	

	animation-duration: 4s;	
	-webkit-animation-duration: 4s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

		visibility: visible !important;
}

@keyframes slideRight {
	0% {
		transform: translateX(-150%);
	}
	50%{
		transform: translateX(8%);
	}
	65%{
		transform: translateX(-4%);
	}
	80%{
		transform: translateX(4%);
	}
	95%{
		transform: translateX(-2%);
	}			
	100% {
		transform: translateX(0%);
	}	
}

@-webkit-keyframes slideRight {
	0% {
		-webkit-transform: translateX(-150%);
	}
	50%{
		-webkit-transform: translateX(8%);
	}
	65%{
		-webkit-transform: translateX(-4%);
	}
	80%{
		-webkit-transform: translateX(4%);
	}
	95%{
		-webkit-transform: translateX(-2%);
	}			
	100% {
		-webkit-transform: translateX(0%);
	}
}

.page-name {
margin-top: -13px;

}


/* Site Header Menu */

.site-header-2 {
	background-color: #373737;
	width: 100%;
	margin-left: 0%;
	border-left: 12vw;
	border-right: 12vw;
}



/*navigation menu*/


.parent-link {
	font-style: none;
}



.site-header-2 nav ul{
	text-align: center;

}


.site-header-2 nav ul li {

	font-family: 'bebas_neue';
	
	font-size: 21px;
	letter-spacing: 2.5px;
	display: inline-block;
	padding-right: 15px;

	padding-top: 3px;
	line-height: 20px;
	margin: 2px 0;
	padding-bottom: 1px;
}

.site-header-2 nav ul li a:link,
.site-header-2 nav ul li a:visited {
	display: block;
	text-decoration: none;
	color: #ececec;
	border-bottom: 2px solid #373737;
}




.site-header-2 nav ul li a:hover {
	background-color: ;
	color: ;
	border-bottom: 2px solid #ececec;
	}

.site-header-2 nav ul li a:active {

	background-color: ;
	color: #00a7ca;

}

.site-header-2 nav ul li.current-menu-item a:link,
.site-header-2 nav ul li.current-menu-item a:visited,
.site-header-2 nav ul li.current-page-ancestor a:link,
.site-header-2 nav ul li.current-page-ancestor a:visited {

	color: #ececec;
	border-bottom: 2px solid #00a7ca;

}





/* Footer Menu */






.footer-info {

	background-color: #373737;
	padding-top: 6px;
	padding-bottom: 7px;

}

#footernumber {
	color: #ececec;
}

#footernumber:hover {
	color: #00a7ca;
}

.footer-info ul {
	list-style: none;
	line-height: 25px;

}


.footer-info ul li {
	letter-spacing: 1.3px;
	font-size: 15px;
	font-family: 'roboto';
	text-align: center;
	color: #ececec;
	list-style: none;
	
}

.site-footer {
	padding-top: 4px;
	padding-right: 0%;
	padding-left: 0%;
	background-color: #aaf200;
	border-bottom: ;
	text-align: center;
}




.site-footer nav ul{
	text-align: center;

}

.site-footer nav ul {
padding-left: 25px;
}

.site-footer nav ul li {

	font-family: 'bebas_neue';
	
	font-size: 21px;
	letter-spacing: 2.5px;
	display: inline-block;
	padding-right: 25px;
	
	padding-top: 3px;
	line-height: 20px;
	margin: 2px 0;
	padding-bottom: 1px;
    
}

.site-footer nav ul li a:link,
.site-footer nav ul li a:visited {
	display: block;
	text-decoration: none;
	color: black;
	border-bottom: 2px solid #aaf200;
}




.site-footer nav ul li a:hover {
	background-color: ;
	color: #000000;
	border-bottom: 2px solid #000000;
	}

.site-footer nav ul li a:active {

	background-color: ;
	color: #00a7ca;

}

.site-footer nav ul li.current-menu-item a:link,
.site-footer nav ul li.current-menu-item a:visited,
.site-footer nav ul li.current-page-ancestor a:link,
.site-footer nav ul li.current-page-ancestor a:visited {

	color: #000000;
	border-bottom: 2px solid #00a7ca;

}



.footer-legal-line {
	background-color: #ffffff;
	text-align: center;
	font-family: 'roboto', sans-serif;
	letter-spacing: 1.2px;
	font-size: 80%;
}


/* Footer */






/* childrenLinks */
.children-links {



}






/* Post Styles */


/*post info*/

.index-container {

	padding-top: 40px;
	
}
.blog-content p {
line-height: 1.3;
}


.blog-content {

	
	
	font-family: 'roboto', sans-serif;
	font-size: 85%;
	padding-top: 15px;
	padding-bottom: 15px;
}

.post {

	
	font-family: 'roboto', sans-serif;
	font-size: 100%;
	
	
}

.post h5 {
	margin-top: 0px;
	margin-bottom: 0px;

	


	
	font-family: 'roboto', sans-serif;
	font-size: 100%;
	padding-top: 0px;
	padding-bottom: 0px;
}


.post-title {
font-size: 100%;
}

.post-title h2 {
border-bottom: 2px solid #aaf200;
}

.INFO {
	margin-top: 0px;
	padding-bottom: 75px;
	background-color: #ffffff;


	
	font-family: 'roboto', sans-serif;
	font-size: 70%;
	font-style: italic;

}

.post h2 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 100%;

}








/*---start parallax and background images---*/



/*-- home page bacground image--*/
body.page-id-49 {
    background-image: url("images/residential-background5.png");
    background-attachment: fixed;
    background-position: 50% 75px;
    background-repeat: no-repeat;
    background-size: 96% 96%;
}


/*-- commercial page bacground image--*/

body.page-id-41 {
    background: url("images/commercial-background.png");
    background-attachment: fixed;
    background-position: 50% 40px;
    background-repeat: no-repeat;
    background-size: 80% 95%;


}


/*-- about us page bacground image--*/

body.page-id-36 {
    background-image: url("images/residential-background.png");
    background-attachment: fixed;
    background-position: 0% 78px;
    background-repeat: no-repeat;
 	background-size: 98% 98%;

}



/*-- residential page bacground image--*/

body.page-id-43 {
    background-image: url("images/residential-background2.png");
    background-attachment: fixed;
    background-position: 50% 78px;
    background-repeat: no-repeat;
 	background-size: 99% 99%;
}



/*-- blog page bacground image--*/

body.page-id-38 {

    background-image: url("images/blog4.png");
    background-attachment: fixed;
    background-position: 50% 32px;
    background-repeat: no-repeat;
 	background-size: 96% 96%;

}


/*-- contact page bacground image--*/

body.page-id-45 {
    background-image: url("images/blog.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*-- portfolio page bacground image--*/

body.page-id-47 {
    background-image: url("images/about-us-background.png");
    background-attachment: fixed;
    background-position: 50% 40px;
    background-repeat: no-repeat;
 	background-size: 96% 96%;
}

/*-- page stuff--*/

.services-top-links {
	font-size: 80%;
	font-family: 'roboto', sans-serif;
	display: inline-block;
	
	margin-top: 0px;
	letter-spacing: 2px;
	text-align: center;
	float: right;
	margin-right: -118px;

	text-shadow: 
				0px 15px 5px rgba(0,0,0,0.0125),
                 10px 20px 5px rgba(0,0,0,0.0125),
                 -10px 20px 5px rgba(0,0,0,0.0125),

               0 6px 1px rgba(0,0,0,.025),
               0 0 5px rgba(0,0,0,.025),
               0 1px 3px rgba(0,0,0,.08),
               0 3px 5px rgba(0,0,0,.05),
               0 5px 10px rgba(0,0,0,.065),
               0 10px 10px rgba(0,0,0,.05),
               0 20px 20px rgba(0,0,0,.04);
}


.services-top-links a {

	color: #fcf403;

}

.paintbrush {
	letter-spacing: 0;
}

.services-bottom-links {
	font-size: 100%;
	font-family: 'roboto', sans-serif;
	display: inline-block;
	background-color: #373737;
	
	letter-spacing: 2px;
	text-align: center;
	float: right;
	padding-left: 4px;
	margin-top: 0px;
	padding-bottom: 2px;

	text-shadow: 
				0px 15px 5px rgba(255,255,0,0.0125),
                 10px 20px 5px rgba(255,255,0,0.0125),
                 -10px 20px 5px rgba(255,255,0,0.0125),

               0 6px 1px rgba(0255,255,0,.025),
               0 0 5px rgba(255,255,0,.025),
               0 1px 3px rgba(255,255,0,.08),
               0 3px 5px rgba(255,255,0,.05),
               0 5px 10px rgba(255,255,0,.065),
               0 10px 10px rgba(255,255,0,.05),
               0 20px 20px rgba(0255,255,0,.04);
}

.services-bottom-links a {

	
	color: #fcf403;

}

.services-fix {
	margin-top: -580px;
}




.space {
	margin-bottom: -5px;
	text-align: center;
	background-color: #ffffff;
}

.parallax {
	padding-right: 0%;
	padding-left: 0%;
	background-color: transparent;
	padding-bottom: 0px;
	text-align: center;
	
} 

/*-- page intro --*/

.parallax-inner {
	padding-left: 0%;
	padding-top: 315px;
	padding-bottom: 315px;
	height: 0px;
	font-size: 375%;
	font-style: italic;
	
}

.parallax-banner {
	padding-right: 0%;
	padding-left: 0%;
	background-color: transparent;
	padding-bottom: 120px;
	text-align: center;
	
}

.parallax-banner-inner {

	font-size: 200%;
	text-align: center;
	background-color: #ffffff;
	padding-top: 200px;
	padding-bottom: 200px;
	width: 100%;
	
}

.parallax-inner-2-wrapper {
	background-color: #ffffff;

}

.parallax-inner-2 {
	padding-left: 6.51%;
	width: 87%;
	padding-top: 0px;
	padding-bottom: 0px;
	

	text-align: center;
	
}




.tagline-box {
	
	height: 200px;
	font-family: 'roboto', sans-serif;
	font-size: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #ececec;
}


.tagline-box p {
	
	line-height: 2;
}


.the-content {
	margin-left: 6.5%;
	width: 87%;

	text-align: justify;
	font-family: 'roboto', sans-serif;
	font-size: 80%;
	padding-top: 80px;
	padding-bottom: 80px;
	list-style: none;
}




/*---end parallax---*/








/*--- sticky header---*/


#sticky {

    top: 0;
	left: 0;
    right: 0;
    z-index: 10000;
}

#sticky.stick {
    position: fixed;
    top: 0;
	left: 0;
    right: 0;
    z-index: 10000;
    	border-left: 12vw solid #ffffff;
	border-right: 12vw solid #ffffff;
}










/*---random stuff and fixes---*/


.thumbnail-links {
	
	text-align: center;
	font-size: 0;
	background-color: #ffffff;
}


.blankspacefix {
	margin-top: -160px;
}




.portfolio-images {
}


.gallery-index {

text-align: center;
padding-left: 10px;
}











/*---font stuff---*/



@font-face {
    font-family: 'bebas_neue';
    src: url('fonts/bebasneue.eot');
    src: url('fonts/bebasneue.eot?#iefix') format('embedded-opentype'),
         url('fonts/bebasneue.woff2') format('woff2'),
         url('fonts/bebasneue.woff') format('woff'),
         url('fonts/bebasneue.ttf') format('truetype'),
         url('fonts/bebasneue.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'roboto';
    src: url('RobotoCondensed-Regular.eot');
    src: url('RobotoCondensed-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/robotocondensed-regular.woff2') format('woff2'),
         url('fonts/robotocondensed-regular.woff') format('woff'),
         url('fonts/robotocondensed-regular.ttf') format('truetype'),
         url('fonts/robotocondensed-regular.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;

}




h1.page-title {

	text-shadow: 
				0px 15px 5px rgba(0,0,0,0.066),
                 10px 20px 5px rgba(0,0,0,0.066),
                 -10px 20px 5px rgba(0,0,0,0.066),
				0 1px 0 #ccc, 
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.132),
               0 0 5px rgba(0,0,0,.132),
               0 1px 3px rgba(0,0,0,.4),
               0 3px 5px rgba(0,0,0,.266),
               0 5px 10px rgba(0,0,0,.334),
               0 10px 10px rgba(0,0,0,.266),
               0 20px 20px rgba(0,0,0,.2);

  	color: #ECECEC;
  	font-family: 'bebas_neue', arial;
  	font-style: normal;
 	font-size: 100%;
 	font-variant: small-caps;
	
  	letter-spacing: 13px;
 
}



/*--- media queries ---*/

@media only screen and (max-width: 1145px) {

.resize-blog {font-size: 85%;  margin-bottom: -40px;}


}



@media only screen and (max-width: 1075px) {

.resize-home-cantact {font-size: 85%; margin-bottom: -40px;}

}


@media only screen and (max-width: 1024px) {

.the-content {

	font-size: 70%;
	
}	

.container-border {

    border-right: 0vw solid #ffffff;
    border-left: 0vw solid #ffffff;
}
.phone-number {

    width: 100%;
    margin-left: 0;}

#sticky.stick {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
        border-left: 0vw solid #ffffff;
    border-right: 0vw solid #ffffff;
}

body.page-id-49 {
    background-image: url("images/residential-background5.png");
    background-attachment: fixed;
    background-position: 50% 75px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/*-- commercial page bacground image--*/

body.page-id-41 {
    background: url("images/commercial-background.png");
    background-attachment: fixed;
    background-position: 50% 40px;
    background-repeat: no-repeat;
    background-size: 100% 100%;


}


/*-- about us page bacground image--*/

body.page-id-36 {
    background-image: url("images/residential-background.png");
    background-attachment: fixed;
    background-position: 0% 78px;
    background-repeat: no-repeat;
    background-size: 100% 100%;

}



/*-- residential page bacground image--*/

body.page-id-43 {
    background-image: url("images/residential-background2.png");
    background-attachment: fixed;
    background-position: 50% 78px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



/*-- blog page bacground image--*/

body.page-id-38 {

    background-image: url("images/blog4.png");
    background-attachment: fixed;
    background-position: 50% 32px;
    background-repeat: no-repeat;
    background-size: 100% 100%;

}


/*-- contact page bacground image--*/

body.page-id-45 {
    background-image: url("images/blog.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*-- portfolio page bacground image--*/

body.page-id-47 {
    background-image: url("images/about-us-background.png");
    background-attachment: fixed;
    background-position: 50% 40px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.color-band {
    
    width: 100%;
    margin-left: 0%;
}

}

@media only screen and (max-width: 764px) {

.site-footer nav ul {
padding-left: 11px;
}

.site-footer nav ul li {
	font-size: 18px;
padding-right: 11px;
	   
}
    



}
    



@media only screen and (max-width: 735px) {

.resize-blog {font-size: 80%;  margin-bottom: -75px;}




	
    
    .footer-legal-line {
	
	letter-spacing: 1.2px;
	font-size: 70%;
}}






@media only screen and (max-width: 705px) {

.parallax-inner { font-size: 275%}

}



@media only screen and (max-width: 684px) {

.socialmediabuttons {
margin-top: 0px;
	
}

.email-icon {
margin-top: 0px;
}

.services-top-links {
	margin-top: 34px;
}

.index-container {

	padding-top: 60px;
	
}}


@media only screen and (max-width: 675px) {

.resize-cantact {font-size: 80%;  margin-bottom: -75px;}
.resize-residential {font-size: 80%;  margin-bottom: -75px;}
.resize-blog {font-size: 75%;  margin-bottom: -75px;}
}

@media only screen and (max-width: 650px) {


    
     .footer-legal-line {
	
	letter-spacing: 1.2px;
	font-size: 65%;

    
}}

@media only screen and (max-width: 645px) {

.resize-home {font-size: 80%;  margin-bottom: -75px;}
.resize-commercial {font-size: 80%;  margin-bottom: -75px;}
.resize-portfolio {font-size: 80%;  margin-bottom: -40px;}
}

@media only screen and (max-width: 635px) {

.resize-blog {font-size: 70%;  margin-bottom: -85px;}
}

@media only screen and (max-width: 615px) {

.parallax-inner { font-size: 250%;}

}

@media only screen and (max-width: 600px) {


     .footer-legal-line {
	
	letter-spacing: 1.2px;
	font-size: 65%;

    
}}


@media only screen and (max-width: 590px) {


    
     .footer-legal-line {
	
	letter-spacing: 1.1px;
	font-size: 62.5%;

    
}}



@media only screen and (max-width: 574px) {

.resize-blog {font-size: 70%;  margin-bottom: -40px;}
}

@media only screen and (max-width: 550px) {

.resize-residential {font-size: 75%; margin-bottom: -75px;}
.resize-cantact {font-size: 70%; margin-bottom: -85px;}
.resize-about-us {font-size: 85%;  margin-bottom: -75px;}
}

@media only screen and (max-width: 515px) {

.parallax-inner { 
	font-size: 225%;}
h1.page-title {
  	letter-spacing: 10px;

}


}

@media only screen and (max-width: 510px) {
.resize-commercial {font-size: 70%;  margin-bottom: -75px;}
.resize-residential {font-size: 70%;  margin-bottom: -75px;}
.resize-portfolio {font-size: 75%;  margin-bottom: -75px;}
}

@media only screen and (max-width: 505px) {

.resize-home {font-size: 70%;  margin-bottom: -80px;}
}

@media only screen and (max-width: 481px) {

.resize-home {font-size: 70%;  margin-bottom: -40px;}

.the-content {
	font-size: 60%;
	padding-top: 50px;
	padding-bottom: 50px;
	
}

.index-container {

	padding-top: 80px;
	
}

.parallax-inner-2 {
	padding-left: 0%;
	width: 100%;
}

.resize-page-image-banner {
	width: 100%;
	margin-left: 0%;
}

.resize-page-image-banner img {
	width: calc(100%/3);
}

.thumbnail-links img {
	width: calc(100%/3);
}
.parallax-inner { 
	font-size: 170%}
	
	h1.page-title {
  	letter-spacing: 8px;


}
}



@media only screen and (max-width: 415px) {

.resize-blog {font-size: 70%;  margin-bottom: -20px;}
}

@media only screen and (max-width: 409px) {

}

@media only screen and (max-width: 408px) {
.resize-residential {font-size: 70%;  margin-bottom: -50px;}
.resize-portfolio {font-size: 70%;}
}

@media only screen and (max-width: 391px) {
.resize-cantact {font-size: 70%; margin-bottom: -55px;}
}

@media only screen and (max-width: 387px) {

.site-header-2 nav ul li {

	font-family: 'bebas_neue';
	
	font-size: 18px;
	letter-spacing: 1.5px;
	display: inline-block;
	padding-right: 8px;
	padding-top: 3px;
	line-height: 20px;
	margin: 2px 0;
	padding-bottom: 1px;
}
} 


@media only screen and (max-width: 381px) {
.resize-about-us {font-size: 70%;  margin-bottom: -90px;}
}

@media only screen and (max-width: 380px) {
.resize-portfolio { margin-bottom: -35px;}
}

@media only screen and (max-width: 379px) {
.resize-commercial { margin-bottom: -50px;}
.resize-home {font-size: 70%;  padding-bottom: 65px;}

}

@media only screen and (max-width: 331px) {
.resize-commercial { margin-bottom: -30px;}
}


@media only screen and (max-width: 330px) {
.resize-residential { margin-bottom: -30px;}
}















