/* 
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 {
	max-width:100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.inner:before,.inner:after {
	content: " ";
	display: table;
}

#site-wrapper {
	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{
	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-widgets {
	background: none repeat scroll 0% 0% #363636;
	padding: 60px 0px;
}

footer.site-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;
}

.content-area {

}

.entry-header {
	width: 100%;
	height: auto;
	position: relative;
}

.full-row {
	margin:30px 0;
}

/** TYPOGRAPHY **/
a {
    text-decoration:none;
    background-color: transparent;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.1;
}

h1, h2, h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h1.entry-title {
	width: 100%;
	text-align: center;
	display: block;
	z-index:3;
	position:relative;
}

p {
	margin: 0px 0px 10px;
}


/**  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%);
}


/** TABLES **/
table {
	width:100%;
}

table tr td {
	padding:.5em 0;
}

tr:nth-child(even) td{
	background:#eee;
}