/* 
This Gal's Design Wordpress Framework Stylesheet
v1.0.2
Last Updated: 2015-05-01
Author: Michelle Thompson - http://thisgals.com 
*/

/** LAYOUT **/

* {
	box-sizing: border-box;
}

body,html {
	overflow: auto !important;
	line-height: 1.42857;
	color: #333;
	background-color: #FFF;
}

.inner {
	width:80%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.inner:before,.inner:after {
	content: " ";
	display: table;
}

#site-wrapper {
	width: 100%;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

#logo {
	display:inline-block;
}

header nav {
	height: 100%;
	display:inline-block;
}

header nav ul, footer .menu {
	height: 100%;
	list-style: outside none none;
	float: left;
	margin: 0px;
	padding: 0px;
}

header nav ul li, footer .menu li {
	float: left;
	height: 100%;
	position: relative;
}


header nav ul li ul {
	width: 100%;
	height: auto;
	visibility: hidden;
	z-index: -1;
	position: absolute;
	top: auto;
	left: 50%;
	transform: translate3d(-50%, 25px, 0px);
	-webkit-transform: translate3d(-50%, 25px, 0px);
	-moz-transform: translate3d(-50%, 25px, 0px);
	-ms-transform: translate3d(-50%, 25px, 0px);
	-o-transform: translate3d(-50%, 25px, 0px);
	border-radius: 3px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.075);
	-webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.075);
	-webkit-transition: all 0.25s ease 0s;
	-o-transition: all 0.25s ease 0s;
	transition: all 0.25s ease 0s;
	opacity: 0;
}

header nav ul li ul > li > a {
	width: 100%;
	line-height: 1;
	padding: 20px;
}

.footer-cta {
	
}

.footer-cta .text {
	max-width: 70%;
	font-size: 14px;
	float: left;
}

.footer-cta .button {
	float:right;
}

.footer-cta .button a {
	padding: 0px 35px;
	display: inline-block;
	height: 55px;
	line-height: 55px;
	font-size: 16px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.footer-cta .button a:before {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	background: none repeat scroll 0% 0% transparent;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.footer-cta .button a:hover::before {
	background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.2);
	width: 100%;
	height: 100%;
	border-radius: 5px;
}


footer {
	width: 100%;
	height: auto;
	padding: 30px 0px;
	position: relative !important;
	clear: both;
	z-index: 4;
}

footer a.to-top {
	float: left;
	position: absolute;
	z-index: 1;
	top: -45px;
	left: 50%;
	margin-left: -40px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0px 40px 45px;
	border-color: transparent transparent #000;
	text-align: center;
	line-height: 70px;
	font-size: 18px;
}

footer a.to-top i {
	margin-left: -9px;
}

footer a.to-top:hover {
	line-height: 45px;
}

footer .menu {
	float:left;
}

.copyright {
	text-align:right;
}

.contact-us {
	position: fixed;
	z-index: 125;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 350px;
	background: none repeat scroll 0% 0% #222;
	transform: translateX(350px);
	-webkit-transform: translateX(350px);
	-moz-transform: translateX(350px);
	-ms-transform: translateX(350px);
	-o-transform: translateX(350px);
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.contact-us.activate {
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
}

.contact-us .open-contact {
	width: 70px;
	height: auto;
	position: absolute;
	top: 50%;
	left: -70px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	text-align: center;
	padding: 10px 0px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.contact-us .open-contact span {
	font-size: 10px;
	text-transform: uppercase;
	color: #F5F5F5;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.25s ease 0s;
	-webkit-transition: all 0..25s ease 0s;
	-o-transition: all 0.25s ease 0s;
}

.contact-us .open-contact span:before {
	content: "";
	font-family: "FontAwesome";
	display: block;
	font-size: 20px;
	line-height: 1;
	animation: 2s ease 0s normal none infinite running #CCC;
}

.contact-us .contact-form {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-right: 60px;
}

.contact-us .contact-form .contact-inner {
	width: 330px;
	overflow: hidden;
	padding: 15px;
}

.content-area {

}

.entry-header {
	width: 100%;
	height: auto;
	position: relative;
}

.box {
	background: none repeat scroll 0% 0% #F9F9F9;
	padding: 20px 60px 60px;
	position: relative;
	text-align:center;
}

.full-row {
	margin:30px 0;
}

.animate-button {
	width: 100%;
	height: auto;
	background-size: cover;
	background-position: center center;
	float: left;
	overflow: hidden;
	position: relative;
}

.animate-button:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	top: 0px;
	left: 0px;
	opacity: 0.75;
	transition: all 0.25s ease 0s;
	-webkit-transition: all 0.25s ease 0s;
	-o-transition: all 0.25s ease 0s;
}

.animate-button:after {
	content: "";
	position: absolute;
	z-index: 3;
	width: 45%;
	height: 100%;
	top: 0px;
	right: 0px;
	transition: all 0.25s ease 0s;
	-webkit-transition: all 0.25s ease 0s;
	-o-transition: all 0.25s ease 0s;
}

.animate-button a {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	z-index: 5;
	padding: 15px;
}

.animate-button:hover:before {
	opacity: 0.45;
	filter: alpha(opacity=45);
	-webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.75);
	box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.75);
}

.animate-button:hover:after {
	-webkit-transform: translateX(150%);
	-moz-transform: translateX(150%);
	-ms-transform: translateX(150%);
	-o-transform: translateX(150%);
	transform: translateX(150%);
}

.animate-button .inside {
	width: 100%;
	height: auto;
	float: left;
	padding: 30px 20px;
	position: relative;
}

.animate-button .leftright-border:before, .animate-button .leftright-border:after, .animate-button .topbottom-border:before, .animate-button .topbottom-border:after {
	transition: all 0.25s ease-in-out 0s;
	-webkit-transition: all 0.25s ease 0s;
	-o-transition: all 0.25s ease 0s;
}

.animate-button .leftright-border:before, .animate-button .leftright-border:after {
	content: "";
	width: 2px;
	position: absolute;
	top: 0px;
	bottom: 0px;
}

.animate-button .topbottom-border:before, .animate-button .topbottom-border:after {
	content: "";
	height: 2px;
	position: absolute;
	left: 0px;
	right: 0px;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.animate-button .leftright-border:before {
	left: 0px;
}

.animate-button .leftright-border:after {
	right: 0px;
}

.animate-button .topbottom-border:before {
	top: 0px;
}

.animate-button .topbottom-border:after {
	bottom: 0px;
}

.animate-button:hover .leftright-border:before {
	-webkit-transform: translateY(-125%);
	-moz-transform: translateY(-125%);
	-ms-transform: translateY(-125%);
	-o-transform: translateY(-125%);
	transform: translateY(-125%);
}

.animate-button:hover .leftright-border:after {
	-webkit-transform: translateY(125%);
	-moz-transform: translateY(125%);
	-ms-transform: translateY(125%);
	-o-transform: translateY(125%);
	transform: translateY(125%);
}

.animate-button:hover .topbottom-border:before {
	-webkit-transform: translateX(125%);
	-moz-transform: translateX(125%);
	-ms-transform: translateX(125%);
	-o-transform: translateX(125%);
	transform: translateX(125%);
}

.animate-button:hover .topbottom-border:after {
	-webkit-transform: translateX(-125%);
	-moz-transform: translateX(-125%);
	-ms-transform: translateX(-125%);
	-o-transform: translateX(-125%);
	transform: translateX(-125%);
}

/** TYPOGRAPHY **/
a {
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
    text-decoration:none;
    background-color: transparent;
    cursor: pointer;
}

a.link-button {
	margin-top: 20px;
	display: inline-block;
	padding: 13px 35px;
	box-shadow: 0px 0px 0px 2px #454545;
	-webkit-box-shadow: 0px 0px 0px 2px #454545;
	font-size: 12px;
	border-radius: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.1;
}

h1, h2, h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

.title-box {
	display: inline-block;
	text-align:center;
	margin: 30px auto;
	padding: 12px 60px;
	font-weight:bold;
}

.box h3.title-box {
	width:100%;
	padding:12px;
}

p {
	margin: 0px 0px 10px;
}

/** TESTIMONIALS **/

.nav-left, .nav-right {
	padding:12px;
	border: 3px solid #000;
}

.nav-left i, .nav-right i {
	top:8px;
	position:relative;
}

.nav-left {
	margin-left:30px;
}

.nav-right {
	margin-left:10px;
}

.testimonial {
	height: auto;
	width:100%;
	padding: 80px 30px 30px;
	position: relative;
	border: 1px solid #111;
	border-radius: 3px;
	text-align: center;
	float: left;
	margin: 15px;
}

.testimonial .image {
	width: 100px;
	height: 100px;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -50px;
	border-radius: 50%;
	border: 1px solid #111;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
}

/**  COLUMNS **/

.col-10, .col-20, .col-25, .col-30, .col-33, .col-40, .col-50, .col-60, .col-66, .col-70, .col-75, .col-80, .col-90 {
	float:left;
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}
.col-10 {width:10%;}
.col-20 {width:20%;}
.col-25 {width:25%;}
.col-30 {width:30%;}
.col-33 {width:33.333%;}
.col-40 {width:40%;}
.col-50 {width:50%;}
.col-60 {width:60%;}
.col-66 {width:66.1818%;}
.col-70 {width:70%;}
.col-75 {width:75%;}
.col-80 {width:80%;}
.col-90 {width:90%;}

.col-50.left .inside {
	width:70%;
	float:right;
	text-align:left;
	padding:30px 0;
}

.col-50.right .inside{
	width:70%;
	float:left;
}

.col-33.transform-y {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
