/*
Theme Name: Lime Design
Theme URI: http://limedesign.com.au
Author: Nathan Winnall
Author URI: http://limedesign.com.au
Description: Theme for Lime Design
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: limedesign
*/

/* GLOBAL STYLES */
html {
	box-sizing: border-box;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
}

body {
	width:100%;
	min-height:100%;
	padding:0;
	margin:0;
	background: #f3f3f3;
	font-family: 'robotolight';
	color: #4d4d4d;
	font-size: .83em;
	line-height: 1.4em;
	overflow-x: hidden;
}

body.active-nav {
	overflow: hidden;
	position: fixed;
}

div,
img {
	display: block;
}

img {
	width: 100%;
	height: auto;
}

p {
	margin: 0;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 2em;
	font-family: 'nexa_light';
	line-height: 1.2em;
	margin-bottom: 15px;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.17em;
}

h4 {
	font-size: 1.12em;
}

h5 {
	font-size: .83em;
}

h6 {
	font-size: .75em;
}

a {
	color: #2F3640;
	text-decoration: none;
}

a:hover {
	color: #E0E327;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.btn {
	display: inline-block;
	position: relative;
	border: 1px solid #1e252b;
	padding: 7px 40px 7px	15px;
	color: #1e252b;
	border-radius: 5px;
	margin-top: 30px;
	font-family: 'aleoregular';
	transition: .3s ease;
}

.btn:after {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-family: 'reilly-icons';
	content: "\e905";
	font-size:.90em;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.marg-right-20 {
	margin-right: 20px;
}

/* COLOURS */
.dark-grey {
	color: #2F3640;
}

.light-grey {
	color: #F0F3F6;
}

.white {
	color: #ffffff;
}

/* BACKGROUND COLOURS */
.light-grey-bg {
	background: #F0F3F6;
}

.dark-grey-bg {
	background: #2F3640;
}

/* HEADER STYLES */
header.header {
	display: block;
	position: relative;
	width: 100%;
}

header .logo {
	position: relative;
	background: #2F3640;
	padding:35px;
	height:132px;
	box-sizing: border-box;
}

header .logo img {
	width: 100%;
	max-width: 300px;
	height: auto;
}

header .main-navigation {
	position: relative;
	background: #F0F3F6;
}

header .header-small {
	display: none;
	height: 100px;
}


/* NAVIGATION HOME */
nav {
	display: block;
	text-align: center;
}
	
nav #standard-menu-home {
	
}
	
nav #standard-menu ul.menu {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 20;
}
	
nav #standard-menu ul.menu > li {
	
}

nav #standard-menu ul.menu > li > a {
	display: block;
	position: relative;
	padding: 30px 0 0 80px;
	font-family: 'nexa_light';
	text-align: left;
	font-size:1.4em;
	color: #2F3640;
	letter-spacing: 1px;
	transition: .3s ease;
	text-transform: uppercase;
}

nav #standard-menu ul.menu > li > a:before {
	display: block;
	position: absolute;
	top: 28px;
	left: 35px;
	font-size: 26px;
	font-family: 'lime-icons';
	color: #2F3640;
	transition: .3s ease;
	-webkit-font-smoothing: antialiased;
}

nav #standard-menu ul.menu > li.home > a:before {
	content: '\e903';
}

nav #standard-menu ul.menu > li.service > a:before {
	content: '\e906';
}

nav #standard-menu ul.menu > li.portfolio > a:before {
	content: '\e904';
}

nav #standard-menu ul.menu > li.contact > a:before {
	content: '\e905';
}

nav #standard-menu ul.menu > li > a:hover {
	color: #1e252b;
}

nav #standard-menu ul.menu > li > a:hover:before {
	left: 40px;
}

nav #standard-menu ul.menu ul {
	visibility: hidden;
	position: absolute;
	height: 100%;
	z-index: 10;
	top: 0;
	left: 100%;
	width: 250px;
	background: #ededee;
	transition: .3s ease;
}

nav #standard-menu ul.menu li:hover > ul {
	visibility: visible;
}


/* SITE INFO */
.site-info {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	padding:35px;
	width: 100%;
	box-sizing: border-box;
}

.site-info .social-icons {
	border-bottom: 1px solid #2F3640;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.site-info .social-icons a {
	color: #2F3640;
	font-size: 1.4em;
	margin-right: 5px;
}

.site-info .terms {
	margin-bottom: 10px;
}


/* OFF CANVAS SLIDE OUT */
.offcanvas-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	background: #2F3640;
	width: 250px;
	transform: translate3d(250px, 0, 0);
	transition: transform .3s ease;
	z-index: 1000;
	height: 100%;
	overflow-x: scroll;
	-webkit-overflow-x: scroll;
}

.active-nav .offcanvas-menu {
	transform: translate3d(0, 0, 0);
}

.content {
	transition: transform .3s ease;
}

.active-nav .content,
.active-nav .nav-toggle-btn {
	transform: translate3d(-250px, 0, 0);
	transition: transform .3s ease;
}

.active-nav .nav-toggle-btn span {
	right:8px!important;
}

.nav-toggle-btn {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: transparent;
	box-sizing: border-box;
	cursor: pointer;
	border: none;
	outline: none;
	z-index: 1000;
	transition: transform .3s ease;
}

.nav-toggle-btn span { 
	display: block;
	width: 30px;
	height: 4px;
	background: #ffffff;
	position: absolute;
	top: 45px;
	left:35px;
	transition: .3s ease;
}

.nav-toggle-btn span:before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #ffffff;
	transition: .3s ease;
}

.nav-toggle-btn span:after {
	content: '';
	position: absolute;

	top: 10px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #ffffff;
	transition: .3s ease;
}

.nav-toggle-btn.toggle span {
	background: transparent;
}

.nav-toggle-btn.toggle span:before {
	top:0;
	transform:rotate(45deg)
}

.nav-toggle-btn.toggle span:after {
	top:0;
	transform:rotate(-45deg)
}

.mobile-menu-logo {
	width: 200px;
	padding: 29px 25px;
	border-bottom: 1px solid #3d4653;
}

.mobile-site-info {
	padding: 25px;
}

.mobile-site-info .social-icons {
	margin-bottom: 20px;
}

.mobile-site-info .social-icons a {
	color: #F0F3F6;
	font-size: 1.4em;
	margin-right:10px;
}

.mobile-site-info .terms {
	margin-bottom: 5px;
}

.mobile-site-info .terms a {
	color: #4d4d4d;
}

.menu-overlay {
	display: block;
	width: 100%;
	height: 100vh;
	min-height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(0,0,0,0.8);
	transition: .3s opacity, .3s visibility;
	z-index: 900;
}

.active-nav .menu-overlay {
	top: 0;
	left: 0;
	opacity: 1;
	visibility: visible;
}

ul#mobile-menu li a {
	display: block;
    position: relative;
    padding: 20px 0 20px 70px;
    font-family: 'nexa_light';
    text-align: left;
    font-size: 1.4em;
    color: #F0F3F6;
    letter-spacing: 1px;
    transition: .3s ease;
    text-transform: uppercase;
	border-bottom: 1px solid #3d4653;
}

ul#mobile-menu li a:before {
	display: block;
    position: absolute;
    top: 16px;
    left: 25px;
    font-size: 26px;
    font-family: 'lime-icons';
    color: #F0F3F6;
    transition: .3s ease;
    -webkit-font-smoothing: antialiased;
}

ul#mobile-menu li.home a:before {
	content: '\e903';
}

ul#mobile-menu li.service a:before {
	content: '\e906';
}

ul#mobile-menu li.portfolio a:before {
	content: '\e904';
}

ul#mobile-menu li.contact a:before {
	content: '\e905';
}

/* MAIN SECTION */
main {
	background: #ffffff;
}

/* HOME PAGE */
.welcome {
	background: #2F3640;
	height: 30vh;
}

.home-desc {
	padding:30px 15px 30px 60px;
	color: #ffffff;
}

.home-desc h1 {
	color: #E0E327;
}

.services {
	padding: 30px 60px 30px 15px
}

.home-service {
	font-size:1.3em;
	font-family: 'nexa_light';
	color: #ffffff;
	letter-spacing: 1px;
}

.home-service .service {
	position: relative;
	padding:0 20px 20px 40px;
}

.home-service .service:before {
	display: block;
	position: absolute;
	top: 0;
	left:0;
	font-size:1.4em;
	color: #E0E327;
	font-family: 'lime-icons';
	text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.home-service .service.service-design:before {
	content: '\e907';
}

.home-service .service.service-website:before {
	content: '\e908';
}

.home-service .service.service-photo:before {
	content: '\e909';
}

/* PAGE STYLES */
.header-title {
	height: 100%;
	max-height: 132px;
	background: #F0F3F6;
	text-align:center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.header-title h1 {
	top: 50%;
	position: relative;
	transform: translateY(-50%);
	color: #2F3640;
}

/* PORTFOLIO */


/* SINGLE PORTFOLIO */
.single-portfolio-header-title {
	background-size:cover;
	background-position: center center;
	height: 300px;
	position: relative;
}

.single-portfolio-header-title .single-portfolio-title {
	position: relative;
	z-index: 10;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	padding-top: 130px;
}

.header-overlay {
	display: block;
	position: absolute;
	width:100%;
	height: 100%;
	background: #2F3640;
	opacity: .95;
	top: 0;
	left: 0;
	z-index: 1;
}

.single-portfolio-content {
	padding: 50px;
}

.portfolio-content {
	padding-left: 25px;
}

.portfolio-content .portfolio-btn {
	display: inline-block;
	padding: 15px 30px;
	background: #2F3640;
	color: #F0F3F6;
	margin-top: 30px;
	font-family: 'nexa_bold';
	text-transform: uppercase;
	transition: .3s;
	cursor: pointer;
}

.portfolio-content .portfolio-btn:hover {
	background: #F0F3F6;
	color: #2F3640;
}

.one-column-image {
	height: 50vh;
	background-size: cover;
	background-position: center center;
}

.two-column-image {
	height: 30vh;
	background-size: cover;
	background-position: center center;
}

/* SERVICES */
.services-cont {
	
}

.services-cont .service-content {
	border-top: 1px solid #3d4653;
	border-bottom: 1px solid #3d4653;
	padding: 25px 0;
}

.services-cont .service-content .service-item {
	
}

.services-cont .service-btn {
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 50px;
	padding: 15px 30px;
	background: #F0F3F6;
	border: 2px solid #F0F3F6;
	color: #2F3640;
	font-family: 'nexa_bold';
	text-transform: uppercase;
	transition: .3s;
	cursor: pointer;
}

.services-cont .service-btn:hover {
	border: 2px solid #F0F3F6;
	background: transparent;
	color: #F0F3F6;
}

.services-cont .service-items ul {
	text-align: left;
}

.services-cont .service-items ul li {
	display: inline-block;
	width: 48%;
	border-bottom: 1px solid #3d4653;
	padding: 5px 0;
	margin-right:4%;
	text-align: center;
}

.services-cont .service-items ul li:nth-child(even) {
	margin-right:0;
}

.services-cont .col-2 {
	position: relative;
	min-height: calc(50vh - 66px);
	text-align: center;
	padding:50px 50px 130px 50px;
}

.services-cont .col-2 .icon {
	margin-bottom:15px;
}

.services-cont .col-2 .icon i {
	font-size: 4em;
	color: #E0E327;
}

.services-cont .col-2 .service-title {
	font-size: 1.8em;
	font-family: 'nexa_light';
	margin-bottom: 25px;
	position: relative;
}

.services-cont .col-2 .service-title:before {
	display: inline-block;
	position: relative;
	top: 3px;
	left:0;
	font-size:1.4em;
	color: #E0E327;
	font-family: 'lime-icons';
	padding-right: 5px;
	text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.services-cont .col-2 .service-title.design:before {
	content: '\e907';
}

.services-cont .col-2 .service-title.website:before {
	content: '\e908';
}

.services-cont .col-2 .service-title.photo:before {
	content: '\e909';
}

/* CONTACT PAGE */
.contact-details-cont {
	min-height: calc(100vh - 132px);
}

.contact-details-cont .col-2 {
	min-height: calc(60vh - 66px);
}

.contact-details-cont .contact-details {
	padding:50px;
	color: #F0F3F6;
}

.contact-details-cont .contact-details .social-icons a {
	font-size: 1.5em;
	color: #F0F3F6;
	margin-right: 10px;
}

.contact-details-cont .contact-form {
	padding:50px;
	background: #ffffff;
}

.contact-details-cont .contact-details h1 {
	margin-bottom: 50px;
}

.contact-details-cont .contact-details .address,
.contact-details-cont .contact-details .phone,
.contact-details-cont .contact-details .email {
	position: relative;
	padding: 0 0 30px 60px;
	font-size: 1.4em;
	line-height: 1.5em;
}

.contact-details-cont .contact-details .email a {
	color: #F0F3F6;
}

.contact-details-cont .contact-details .address:before,
.contact-details-cont .contact-details .phone:before,
.contact-details-cont .contact-details .email:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'lime-icons';
	font-size: 2em;
	color: #E0E327;
	text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.contact-details-cont .contact-details .address:before {
	content: '\e90a';
	font-size: 2.2em;
}

.contact-details-cont .contact-details .phone:before {
	content: '\e905';
}

.contact-details-cont .contact-details .email:before {
	content: '\e900';
}

/* GOOGLE MAP */
#wpgmza_map {
	min-height: calc(40vh - 66px)!important;
}

/* SPLASH PAGE 

.logo {
	display: inline-block;
	width: 200px;
	border-right: 1px solid #2f3640;
	padding: 0 20px 0 0;
}

.icons {
	display: inline-block;
	font-size: 18px;
	color: #2f3640;
	margin: 3px 0 0 20px;
}

.backdrop {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#000000;
	opacity: .0;
	filter:alpha(opacity=0);
	z-index:2000;
	display:none;
}


.close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor:pointer;
	height: 30px;
	width: 30px;
}

.close:before {
	display: block;
	position: absolute;
	font-family: 'qxray-icons';
	content: "\e921";
	color: #ffffff;
	font-size: 20px;
}

.box {
	position:absolute;
	top:50%;
	margin-top: -200px;
	left:50%;
	margin-left: -250px;
	width:500px;
	height:300px;
	background:transparent;
	z-index:2001;
	display:none;
}

*/

/* NINJA FORM STYLES */
.nf-form-cont .nf-field .nf-field-element input,
.nf-form-cont .nf-field .nf-field-element textarea {
	font-family: Arial, "sans-serif";
	padding:10px;
	border-radius: 10px;
	border: 0;
	background: #F0F3F6;
	font-size:16px;
}

.nf-form-cont .nf-field .nf-field-element input::-webkit-input-placeholder,
.nf-form-cont .nf-field .nf-field-element input:-ms-input-placeholder,
.nf-form-cont .nf-field .nf-field-element input::-moz-placeholder,
.nf-form-cont .nf-field .nf-field-element input:-moz-placeholder,
.nf-form-cont .nf-field .nf-field-element textarea {
	color: #2F3640;
	opacity: 1;
}


.nf-form-cont .nf-field .nf-field-element select {
	font-family: Arial, "sans-serif";
	padding:10px;
	border-radius: 10px;
	border: 0;
	color: #2F3640;
	font-size:16px;
	background: #F0F3F6 url('https://limedesign.com.au/wp-content/themes/limedesign/images/arrow-down.svg') no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto auto;
	background-size: 16px;
	background-position: right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none;	
}

.nf-form-cont .nf-field .nf-field-element select option {
	color:#2f3640;
	background-color:#eff3f6;
}

.nf-form-cont .nf-field .nf-field-element input[type='button'] {
	padding:10px 15px;
	width:100%;
	border: 0;
	background: #2F3640;
	color: #F0F3F6;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	transition: .3s ease;
}

.nf-form-cont .nf-field .nf-field-element input[type='button']:hover {
	background: transparent;
	border: 0;
	color: #2F3640;
	background: #F0F3F6;
}

.nf-form-fields-required {
	display:none;
}



/* Large Devices, Desktops */
@media only screen and (min-width : 1161px) {
	
}

/* Medium Devices */
@media only screen and (max-width : 1160px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width: 960px) {
	header .header-small {
		display: block;
	}
	
	header .logo {
		padding: 29px 0 29px 20px;
		width: 220px;
		height: 100px;
	}
	
	/* NAVIGATION */	
	nav,
	header .header-large,
	.header .main-navigation {
		display:none;
	}
	
	.nav-toggle-btn {
		display: block;
	}
	
	.site-info {
		display: none;
	}
	
	/* HOME PAGE */
	.welcome {
		height: auto;
	}
	
	.home-desc {
		padding: 30px;
	}
	
	.services {
		padding: 30px;
	}
	
	/* PORTFOLIO */
	.portfolio article.col-4 {
		width: 33.333%;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width: 760px) {
	.box {
		width:auto;
		top:50px;
		margin-top: 0;
		left:0;
		right:0;
		margin-left: 0;
		box-sizing: border-box;
		margin:0 20px;
	}
	
	/* PORTFOLIO */
	.portfolio article.col-4 {
		width: 50%;
	}
	
	/* SERVICE */
	.services-cont .col-2 {
		min-height: auto;
	}
}