/*
Theme Name: Premium Painters
Author: Joshua Esmero 
Author URI: clixpert.com.au
Description: Custom theme developed for premiumpainters.com.au.
Version: 1.0
*/

@import url(css/reset.css);

/* GENERAL */
/* Fonts */
@font-face {
    font-family: 'Open Sans';
    src: url( 'fonts/OpenSans-Light.ttf' ) format( 'truetype' );
	font-weight: 300;
	font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url( 'fonts/OpenSans-Regular.ttf' ) format( 'truetype' );
	font-weight: 400;
	font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url( 'fonts/OpenSans-Semibold.ttf' ) format( 'truetype' );
	font-weight: 600;
	font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url( 'fonts/OpenSans-Bold.ttf' ) format( 'truetype' );
	font-weight: 700;
	font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url( 'fonts/OpenSans-ExtraBold.ttf' ) format( 'truetype' );
	font-weight: 800;
	font-style: normal;
}
body {
	font-family: 'Open Sans', sans-serif;
}
/* Display */
.hide {
	display:none !important;
}
.show {
	display:block !important;
}
/* Layout */
.centre-wrap {
	max-width:1024px;
	margin:0 auto;
	padding:0 8px;
}
.centre-wrap-880 {
	max-width:880px;
	margin:0 auto;
	padding:0 8px;
}
.clear-after:after {
	clear:both;
	content:"";
	display:block;
}
/* Links */
a {
	text-decoration:none;
	color:#000;
}
a:hover {
	color:#000;
}
/* Social */
.icon-facebook {
	background: url( 'images/interface/icon-facebook.png' ) no-repeat;
}
.icon-twitter {
	background: url( 'images/interface/icon-twitter.png' ) no-repeat;
}
.icon-googleplus {
	background: url( 'images/interface/icon-googleplus.png' ) no-repeat;
}

/* ==================== */

/* BODY ELEMENTS */
/* Headings */
.body-element h2 {
	padding: 20px 0;
	font-size: 2rem;
	font-weight: 400;
	color: #0981a6;
}
.body-element h3 {
	padding: 12px 0;
	font-size: 1.5rem;
	font-weight: 400;
	color: #0981a6;
}
/* Paragraph */
.body-element p {
	margin: 0 0 16px;
	line-height:1.5rem;
}
.body-element p:last-child {
	margin: 0;
}
.body-element .break-word {
	word-break: break-all;
}
/* Links */
.body-element a {
	color: #0981a6;
}
.body-element a:hover {
	color: #FF964B;
}
/* Lists */
.body-element ul,
.body-element ol {
	margin: 0 0 16px;
}
.body-element ul:last-child,
.body-element ol:last-child {
	margin: 0;
}
.body-element ul > li > ul,
.body-element ol > li > ol {
	margin: 8px 0 !important;
}
.body-element ul > li,
.body-element ol > li {
	line-height: 1.25rem;
	margin: 0 0 8px 24px;
}
.body-element .two-column {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
}
.body-element .three-column {
	-webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
}
/* Table */
.body-element table {
	margin: 0 0 16px;
}
.body-element table th,
.body-element table td {
	padding: 0 16px;
	line-height: 1.5rem;
}
.body-element .table-header-left th:first-child {
	text-align: right;
}
/* Images */
.img-fullwidth {
	display: block;
	margin: 32px 0;
	width: 100%;
}
.img-3-col {
	margin: 0 0 16px;
	text-align: center;
	font-size: 0;
}
.img-3-col > img {
	display: inline-block;
	margin: 0 2%;
	width: 29.333%;
}
/* Buttons */
.button-contact {
	display: block;
	margin: 48px auto;
	width: 100%;
	max-width: 345px;
	cursor: pointer;
}

@media only screen and (max-width:800px) {

	.body-element .three-column {
		-webkit-column-count: 2; /* Chrome, Safari, Opera */
    		-moz-column-count: 2; /* Firefox */
    		column-count: 2;
	}

}
@media only screen and (max-width:640px) {

	/* Lists */
	.body-element .two-column {
		-webkit-column-count: 1; /* Chrome, Safari, Opera */
		-moz-column-count: 1; /* Firefox */
		column-count: 1;
	}
	.body-element .three-column {
		-webkit-column-count: 1; /* Chrome, Safari, Opera */
    		-moz-column-count: 1; /* Firefox */
    		column-count: 1;
	}
	/* Images */
	.img-3-col > img {
		margin: 0 7.5%;
		width: 35%;
	}
	
}
@media only screen and (max-width:480px) {
	
	/* Images */
	.img-3-col > img {
		display: block;
		margin: 0 auto 16px;
		width: 60%;
	}
	
}

/* ==================== */

/* FORM POPUP */
.form-popup-wrap {
	display: none;
	position: fixed;
	z-index: 900;
	padding: 96px 0 0;
	width: 100%;
	height:100%;
	background-color:rgba(0, 0, 0, 0.5);
}
.form-popup-wrap > .form-1 {
	position: relative;
	margin: 0 auto;
}
.form-popup-wrap > .form-1 > span {
	display: block;
	position: absolute;
	z-index: 910;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url( 'images/interface/icon-form-close.png' ) no-repeat;
	cursor: pointer;
}

/* ==================== */

/* FORM 1 */
.form-1 {
	overflow: hidden;
	border-radius: 8px;
	width: 100%;
	max-width: 300px;
	background-color: #FFF;
}
/* Heading */
.form-1 > header {
	background-color: #0981a6;
}
.form-1 > header > div {
	padding: 8px 16px;
	font-size: 1.5rem;
	color: #FFF;
}
/* Wrap */
.form-1 > div {
	padding:16px !important;
}
/* Fields */
.form-1 span,
.form-1 input {
	display: block;
	font-size: 1rem;
}
.form-1 .form-element {
	margin:0 0 8px;
}
.form-1 .form-element > span > input {
	margin: 0;
	padding: 3px 2%;
	border: none;
	border: 1px solid #000;
	border-radius: 8px;
	width: 96%;
	width: calc( 96% - 2px );
}
.form-1 .form-element > span > textarea {
	display: block;
	margin: 0;
	border: none;
	border: 1px solid #000;
	border-radius: 8px;
	padding: 3px 2%;
	max-width: 96%;
	max-width: calc( 96% - 2px );
	height: 3rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
}
/* Error Message */
.form-1  .form-element > span > span {
	padding:4px 0 8px;
}
/* Captcha */
.form-1 .form-captcha {
	margin:0 0 8px;
}
.form-1 .form-captcha > img {
	display:block;
	float:left;
	height:24px;
	width:80px;
}
.form-1 .form-captcha > span {
	float:right;
	width:80px;
	width:calc(100% - 96px);
}
.form-1 .form-captcha > span > input {
	margin:0;
	border: none;
	border: 1px solid #000;
	border-radius: 8px;
	padding:3px 2%;
	width:96%;
	width: calc( 96% - 2px );
}
.form-1 .form-captcha > span > span {
	padding:4px 0 8px;
}
/* Submit */
.form-1 .form-submit {
	margin:0;
}
.form-1 .form-submit > input {
	display: block;
	margin: 0;
	border: none;
	border-radius: 8px;
	padding: 8px 16px;
	background-color:#2BD965;
	text-transform:uppercase;
	font-size:1.5rem;
	color:#fff;
	cursor:pointer;
}
.form-1 .form-submit > img {
	display:none;
}

/* ==================== */

/* HEADER */
#header-wrap {
	position: relative;
	padding-top: 16px;
	padding-bottom: 8px;
}
/* Title */
#header-title {
	float: left;
}
#header-title > a {
	display: block;
	padding: 22px 0 22px 84px;
	background: url( 'images/premium-painters-logo.png' ) no-repeat;
	font-size: 2.25rem;
}
#header-title > a > span {
	display: inline-block;
	font-weight: 700;
}
/* Social */
#header-social {
	position: absolute;
	margin: 0 0 0 407px;
	padding: 24px 0;
	width: calc( 100% - 692px );
	text-align: center;
	font-size: 0;
}
#header-social > a {
	display: inline-block;
	margin: 0 8px;
	width: 32px;
	height: 32px;
}
/* Phone */
#header-phone {
	float: right;
	padding: 22px 0;
}
#header-phone > a {
	display: block;
	padding: 0 0 0 40px;
	background: url( 'images/interface/icon-phone.png' ) 0 2px no-repeat;
	font-size: 2.25rem;
}

@media only screen and ( max-width:960px ) {
	
	/* Title */
	#header-title > a {
		padding: 26px 0 26px 84px;
		font-size: 1.75rem;
	}
	/* Social */
	#header-social {
		margin: 0 0 0 328px;
		width: calc( 100% - 583px );
	}
	/* Phone */
	#header-phone {
		padding: 22px 0;
	}
	#header-phone > a {
		font-size: 1.75rem;
		padding: 4px 0 4px 40px;
	}
	

}
@media only screen and ( max-width:800px ) {
	
	/* Title */
	#header-title {
		float: none;
	}
	#header-title > a {
		margin: 0 auto;
		max-width: 244px;
	}
	/* Social */
	#header-social {
		float: left;
		position: static;
		margin: 0;
		padding: 8px 0;
		width: auto;
	}
	#header-social > a {
		display: inline-block;
		margin: 0 8px;
		width: 48px;
		height: 48px;
		background-size: 48px 48px;
	}
	/* Phone */
	#header-phone {
		padding: 14px 0;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	/* Social */
	#header-social {
		float: none;
	}
	/* Phone */
	#header-phone {
		float: none;
		text-align: center;
	}
	#header-phone > a {
		display: inline-block;
		font-weight: 800;
	}
	
}
@media only screen and ( max-width:400px ) {
	
	#header-title > a > span {
		display: block;
	}
	
}

/* ==================== */

/* HEADER NAV */
/* Button */
#header-menu-button {
	display: none;
}
/* Level 1 */
#header-menu {
	position: relative;
	text-align: center;
	font-size: 0;
}
#header-menu > li {
	display: inline-block;
	text-align: left;
	font-size: 1rem;
}
#header-menu > li::after {
	display: inline-block;
	content: "-";
}
#header-menu > li:last-child::after {
	display: none;
}
#header-menu > li > a {
	display: inline-block;
	padding: 10px 30px;
}
#header-menu > li > a:hover {
	color: #0983A5;
}
#header-menu > .current-menu-item > a {
	font-weight: 800;
}
/* __level 2 */
#header-menu > .menu-item-has-children > ul {
	position: absolute;
	z-index: 520;
	display: none;
	border-style:solid;
	border-top-width:1px;
	border-left-width:1px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-color:#CCC;
	background-color: #FFF;
}
#header-menu > .menu-item-has-children:hover > ul {
	display: block;
}
#header-menu .sub-menu > li > a {
	display: block;
	padding: 12px 30px;
}
#header-menu .sub-menu > li:hover > a {
	color: #0983A5;
}
#header-menu .sub-menu > .current-menu-item > a {
	font-weight: 800;
}

@media only screen and ( max-width:960px ) {
	
	#header-menu > li > a {
		display: inline-block;
		padding: 8px 16px;
	}
	
}
@media only screen and ( max-width:800px ) {
	
	#header-nav-wrap {
		border-top-style: solid;
		border-bottom-style: solid;
		border-width: 1px;
		border-color: #CCC;
	}
	/* Button */
	#header-menu-button {
		display: block;
		width: 48px;
		height: 48px;
		background: url( 'images/interface/icon-menu-button.png' ) no-repeat;
		cursor: pointer;
	}
	/* Level 1 */
	#header-menu {
		display: none;
		position: absolute;
		z-index: 500;
		right: 8px;
		border-style:solid;
		border-top-width:1px;
		border-left-width:1px;
		border-right-width:1px;
		border-color:#c6c7c2;
		width: 75%;
	}
	#header-menu > li {
		display: block;
		margin:0;
		padding: 0;
		border-bottom-style:solid;
		border-bottom-width:1px;
		border-bottom-color:#c6c7c2;
	}
	#header-menu > li::after {
		display: none;
	}
	#header-menu > li > a {
		display: block;
		padding:16px;
		background-color: #FFF;
	}
	#header-menu > .current-menu-item {
		
	}
	#header-menu > .current-menu-item > a {
		border-bottom-style: none;
	}
	/* Level 2 */
	#header-menu > .menu-item-has-children {
		position:relative;
	}
	#header-menu > .menu-item-has-children > .sub-menu-button {
		position:absolute;
		z-index:510;
		right:0;
		width:48px;
		height:48px;
		background: url( 'images/interface/icon-menu-arrow.png' ) no-repeat;
	}
	#header-menu > .menu-item-has-children > ul {
		position:absolute;
		width:75%;
		right:0;
		border-top-width:0;
		border-color:#666163;
	}
	#header-menu > .menu-item-has-children:hover > ul {
		display:none;
	}
	#header-menu .sub-menu > li {
		border-top-style:solid;
		border-top-width:1px;
		border-top-color:#666163;
	}
	#header-menu .sub-menu > li > a {
		display:block;
		padding:16px;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	/* Level 1 */
	#header-menu {
		width: calc( 100% - 18px );
	}
	
}

/* ==================== */

/* BANNER */
#banner-wrap {
	min-height: 627px;
	background: url( 'images/premium-painters-banner.png' ) center top no-repeat;
}
#banner-wrap > div {
	position: relative;
}
/* Text */
#banner-wrap p {
	position: absolute;
	letter-spacing: 1px;
	line-height: 4rem;
	font-size: 3rem;
	color: #FFF;
	text-shadow: 
			0px -1px 0px rgba(0, 0, 0, 1),
			1px 0px 0px rgba(0, 0, 0, 1),
			0px 1px 0px rgba(0, 0, 0, 1),
			-1px 0px 0px rgba(0, 0, 0, 1);
}
#banner-wrap p:first-of-type {
	top: 40px;
	left: 96px;
}
#banner-wrap p:last-of-type {
	top: 40px;
	right: 112px;
	text-align: center;
}
#banner-wrap p > .blue {
	display: inline-block;
	color:#0CD0F6;
	font-weight: 700;
}
#banner-wrap p > .large-text {
	display: block;
	padding: 20px 0 0;
	letter-spacing: 4px;
	line-height: 4.5rem;
	font-size: 4.5rem;
	font-weight: 600;
}
#banner-wrap p > .large-text:last-of-type {
	padding: 0;
	line-height: 5rem;
	font-size: 5rem;
}
/* Button */
#banner-wrap .form-button {
	display: block;
	position: absolute;
	top: 328px;
	right: 68px;
	width: 100%;
	max-width: 400px;
	cursor: pointer;
}

@media only screen and ( max-width:800px ) {
	
	/* Text */
	#banner-wrap p {
		position: static;
		text-align: center;
	}
	#banner-wrap p:first-child {
		padding: 32px 0 0;
	}
	/* Button */
	#banner-wrap .form-button {
		position: static;
		top: auto;
		right: auto;
		margin: 32px auto 0;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	#banner-wrap {
		min-height: 440px;
	}
	/* Text */
	#banner-wrap p {
		line-height: 3rem;
		font-size: 2rem;
	}
	#banner-wrap p > .large-text {
		line-height: 3.5rem;
		font-size: 3.5rem;
	}
	#banner-wrap p > .large-text:last-of-type {
		line-height: 4rem;
		font-size: 4rem;
	}
	
}

/* ==================== */

/* TESTIMONIAL */
#testimonial-wrap {
	position: relative;
}
#testimonial-wrap > div {
	position: absolute;
	bottom: -48px;
	width: 100%;
}
#testimonial {
	position: relative;
	margin: 0 auto;
	border-radius: 75px;
	max-width: 768px;
	min-height: 150px;
	background: #FFF url( 'images/premium-painters-testimonial.png' ) left center no-repeat;
}
#testimonial > p {
	padding: 20px 80px 0 168px;
	line-height: 1.5rem;
	font-style: italic;
}
#testimonial > header {
	padding: 20px 80px 20px 168px;
	font-weight: 700;
}
#testimonial > a {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 100%;
	background: url( 'images/interface/icon-testimonial-arrow.png' ) center center no-repeat;
}

@media only screen and ( max-width:800px ) {
	
	#testimonial-wrap > div {
		position: static;
		bottom: auto;
		width: auto;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	#testimonial {
		background: none;
	}
	#testimonial > p {
		padding: 20px 48px 0 40px;
		line-height: 1.25rem;
	}
	#testimonial > header {
		padding: 20px 48px 20px 40px;
	}
	#testimonial > a {
		width: 48px;
	}
	
}

/* ==================== */

/* SERVICES */
#services-wrap {
	margin-top: 80px;
	margin-bottom: 60px;
	text-align: center;
	font-size: 0;
}
#services-wrap > a {
	display: inline-block;
	margin: 0 28px;
	max-width: 260px;
}
#services-wrap > a > img {
	width: 100%;
}
#services-wrap > a > header {
	line-height: 4rem;
	font-size: 2rem;
	color: #0e82a7;
}

@media only screen and ( max-width:800px ) {
	
	#services-wrap {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#services-wrap > a {
		margin: 0 12px;
		max-width: 200px;
	}
	
}

/* ==================== */

/* BODY HOME */
#body-home-wrap > header {
	position: relative;
	margin: 40px 0 30px;
	text-align: center;
	color: #404040;
}
#body-home-wrap > header:first-of-type {
	margin: 0 0 40px;
}
#body-home-wrap > header > div,
#body-home-wrap > header > h1 {
	display: inline-block;
	padding: 0 40px;
	background-color: #FFF;
	font-size: 2.5rem;
	font-weight: 400;
}
#body-home-wrap > header > hr {
	position: absolute;
	top: 20px;
	z-index: -10;
	margin: 0;
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: #404040;
	width: 100%;
}

/* ==================== */

/* BODY INNER */
#body-inner-wrap {
	margin-top: 48px;
	margin-bottom: 64px;
}
/* Form */
#body-inner-form {
	float: right;
	width: 100%;
	max-width: 260px;
}
#body-inner-form > .form-button {
	display: block;
	width: 100%;
	cursor: pointer;
}
/* Main */
#body-inner-main {
	float: left;
	width: calc( 100% - 292px );
}
#body-inner-main > header {
	position: relative;
	margin: 0 0 48px;
	text-align: center;
	color: #404040;
}
#body-inner-main > header > h1 {
	display: inline-block;
	padding: 0 40px;
	background-color: #FFF;
	font-size: 3rem;
	font-weight: 400;
}
#body-inner-main > header > hr {
	position: absolute;
	top: 23px;
	z-index: -10;
	margin: 0;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: #404040;
	width: 100%;
}
/* Post */
#body-inner-main .post-wrap {
	padding:32px 0;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: #CCC;
}
#body-inner-main .post-wrap > header {
	margin:0 0 24px;
}
#body-inner-main .post-wrap > header > h2 {
	margin:0 0 8px;
	padding: 0;
}
#body-inner-main .post-wrap > header > span {
	display:block;
	font-size:0.9rem;
	color:#999;
}

#body-inner-main .post-wrap > a {
	display: inline-block;
	background-color: #2BD965;
	padding: 16px 24px;
	margin: 24px 0 0;
	border-radius: 5px;
	text-transform: uppercase;
	color: #FFF;
}
/* Side */
#body-inner-side {
	float: right;
	margin: 16px 0 0;
	width: 100%;
	max-width: 260px;
}
#body-inner-side > .side-service {
	display: block;
	padding: 16px 24px;
}
#body-inner-side > .side-service > img {
	display: block;
	width: 100%;
}
#body-inner-side > .side-service > header {
	margin: 8px 0 0;
	text-align: center;
	font-size: 1.5rem;
}
/* Widgets */
.widget-wrap {
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: #CCC;
	padding: 24px;
}
.widget-wrap header {
	margin: 0 0 8px;
	font-size: 1.5rem;
	color: #0981a6;
}

@media only screen and ( max-width:800px ) {
	
	/* Form */
	#body-inner-form {
		float: none;
		margin: 0 0 32px;
		max-width: none;
	}
	#body-inner-form > .form-button {
		margin: 0 auto;
		max-width: 255px;
	}
	/* Main */
	#body-inner-main {
		float: none;
		width: auto;
	}
	/* Side */
	#body-inner-side {
		float: none;
		max-width: none;
		text-align: center;
		font-size: 0;
	}
	#body-inner-side > .side-service {
		display: inline-block;
		margin: 0 2.5%;
		padding: 16px 0;
		width: 28%;
	}
	/* Widgets */
	.widget-wrap {
		margin: 0 auto;
		max-width: 300px;
		text-align: left;
		font-size: 1rem;
	}
	.widget-wrap:first-of-type {
		margin-top: 64px;
	}
	
}
@media only screen and ( max-width:640px ) {
	
	/* Side */
	#body-inner-side > .side-service {
		margin: 0 5%;
		width: 40%;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	/* Side */
	#body-inner-side > .side-service {
		display: block;
		margin: 0 auto;
		width: 50%;
	}
	
}

/* ==================== */

/* FOOTER NAV */
#footer-nav-wrap {
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: #CCC;
	padding: 20px 0 8px;
}
/* Level 1 */
#footer-menu {
	position: relative;
	text-align: center;
	font-size: 0;
}
#footer-menu > li {
	display: inline-block;
	text-align: left;
	font-size: 1rem;
}
#footer-menu > li::after {
	display: inline-block;
	content: "-";
}
#footer-menu > li:last-child::after {
	display: none;
}
#footer-menu > li > a {
	display: inline-block;
	padding: 10px 30px;
}
#footer-menu > li > a:hover {
	color: #0983A5;
}
#footer-menu > .current-menu-item > a {
	font-weight: 800;
}

@media only screen and ( max-width:960px ) {
	
	#footer-menu > li > a {
		display: inline-block;
		padding: 8px 16px;
	}
	
}
@media only screen and ( max-width:800px ) {
	
	/* Level 1 */
	#footer-menu > li {
		width: 25%;
		text-align: center;
	}
	#footer-menu > li::after {
		display: none;
	}
	#footer-menu > li > a {
		padding: 16px;
	}
	
}
@media only screen and ( max-width:640px ) {
	
	/* Level 1 */
	#footer-menu > li {
		width: 33%;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	#footer-nav-wrap {
		border-top-style: none;
	}
	/* Level 1 */
	#footer-menu > li {
		display: block;
		border-top-style: solid;
		border-top-width: 1px;
		border-top-color: #CCC;
		width: auto;
	}
	#footer-menu > li:last-child {
		border-bottom-style: solid;
		border-bottom-width: 1px;
		border-bottom-color: #CCC;
	}
	#footer-menu > li > a {
		display: block;
	}
}

/* ==================== */

/* FOOTER */
#footer-wrap {
	position: relative;
	padding-top: 8px;
	padding-bottom: 16px;
}
/* Title */
#footer-title {
	float: left;
}
#footer-title > a {
	display: block;
	padding: 22px 0 22px 84px;
	background: url( 'images/premium-painters-logo.png' ) no-repeat;
	font-size: 2.25rem;
}
#footer-title > a > span {
	display: inline-block;
	font-weight: 700;
}
/* Social */
#footer-social {
	position: absolute;
	margin: 0 0 0 407px;
	padding: 24px 0;
	width: calc( 100% - 692px );
	text-align: center;
	font-size: 0;
}
#footer-social > a {
	display: inline-block;
	margin: 0 8px;
	width: 32px;
	height: 32px;
}
/* Phone */
#footer-phone {
	float: right;
	padding: 22px 0;
}
#footer-phone > a {
	display: block;
	padding: 0 0 0 40px;
	background: url( 'images/interface/icon-phone.png' ) 0 2px no-repeat;
	font-size: 2.25rem;
}

@media only screen and ( max-width:960px ) {
	
	/* Title */
	#footer-title > a {
		padding: 26px 0 26px 84px;
		font-size: 1.75rem;
	}
	/* Social */
	#footer-social {
		margin: 0 0 0 328px;
		width: calc( 100% - 583px );
	}
	/* Phone */
	#footer-phone {
		padding: 22px 0;
	}
	#footer-phone > a {
		font-size: 1.75rem;
		padding: 4px 0 4px 40px;
	}
	

}
@media only screen and ( max-width:800px ) {
	
	/* Title */
	#footer-title {
		float: none;
	}
	#footer-title > a {
		margin: 0 auto;
		max-width: 244px;
	}
	/* Social */
	#footer-social {
		float: left;
		position: static;
		margin: 0;
		padding: 8px 0;
		width: auto;
	}
	#footer-social > a {
		display: inline-block;
		margin: 0 8px;
		width: 48px;
		height: 48px;
		background-size: 48px 48px;
	}
	/* Phone */
	#footer-phone {
		padding: 14px 0;
	}
	
}
@media only screen and ( max-width:480px ) {
	
	/* Social */
	#footer-social {
		float: none;
	}
	/* Phone */
	#footer-phone {
		float: none;
		text-align: center;
	}
	#footer-phone > a {
		display: inline-block;
	}
	
}
@media only screen and ( max-width:400px ) {
	
	#footer-title > a > span {
		display: block;
	}
	
}

/* ==================== */

/* FOOTER COPYRIGHT */
#footer-copyright-wrap {
	padding: 8px 0;
	color: #4D4D4D;
}
#footer-copyright-wrap > p {
	float: left;
}
#footer-copyright-wrap > a {
	display: block;
	float: right;
	color: #4D4D4D;
}

@media only screen and ( max-width:640px ) {
	
	#footer-copyright-wrap > p {
		float: none;
		margin: 0 0 8px;
		text-align: center;
	}
	#footer-copyright-wrap > a {
		float: none;
		text-align: center;
	}
	
}

/* ==================== */

/* MICRODATA */
#micro-data {
	display:none;
}