/* General */

body {
	min-width: 320px;
	background: #fff;
	color: #000;
	font-size: 1em;
	font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
	line-height: 1.5em;
}

a {
	color: #00ae00;
}

a:hover {
	color: #000;
}

h1 {
	margin: 0 0 10px;
	color: #00ae00;
	font-family: 'Fira Sans', sans-serif;
	font-size: 48px;
	line-height: 1.4em;
	font-weight: 300;
	text-transform: uppercase;
}

h2 {
	margin: 0 0 10px;
	color: #555555;
	font-family: 'Fira Sans', sans-serif;
	font-size: 34px;
	line-height: 1.4em;
	font-weight: 300;
	text-transform: uppercase;
}

h3 {
	margin: 0 0 10px;
	color: #00ae00;
	font-family: 'Fira Sans', sans-serif;
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 300;
	text-transform: uppercase;
}

p {
	margin: 0 0 20px;
}

ul {
	margin: 20px 0;
}

ul li {
	margin: 0 0 5px;
	padding: 0 0 0 25px;
	background: url(../images/bullet-list.png) no-repeat left top 5px;
}

ol {
	list-style-type: decimal;
    list-style-position: inside;
}

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

.container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

/* END General */

/* Header */

header {
	position: relative;
	z-index: 9;
}

.header-top {
	padding: 20px 0;
}

.header-top .container {
	text-align: justify;
}

.header-top .container:after {
	content: '';
	display: inline-block;
	width: 100%;
}

#logo {
	display: inline-block;
	vertical-align: middle;
}

#logo img {
	width: 350px;
}

#header-right {
	display: inline-block;
	vertical-align: middle;
}

#header-phone {
	display: inline-block;
	vertical-align: middle;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#header-phone:hover {
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
}

#header-phone a {
	position: relative;
	display: inline-block;
	padding: 4px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #333;
	color: #fff;
	font-size: 20px;
	line-height: 1.2em;
	text-align: center;
	
}

#header-phone a span {
	display: inline-block;
	vertical-align: middle;
}

#header-phone a span.icon {
	width: 24px;
	height: 24px;
	margin-right: 5px;
	background: url(../images/phone-icon.png) no-repeat center transparent;
	background-size: contain;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* #header-phone a:hover span.icon {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
} */

#header-lang {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	z-index: 9;
}

#header-lang:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
	margin-left: 1px;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: #333333 transparent transparent transparent;
}

#header-lang a.current-lang {
	display: inline-block;
	vertical-align: middle;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#header-lang:hover a.current-lang {
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
}

#header-lang ul {
	position: absolute;
	left: 0;
	top: 100%;
	margin: 0;
	padding: 10px;
	width: 52px;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #333;
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

#header-lang ul:before {
	content: '';
	position: absolute;
	right: 5px;
	bottom: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 6px 5px;
	border-color: transparent transparent #333333 transparent;
}

#header-lang:hover ul {
	margin: 5px 0 0;
	opacity: 1;
	visibility: visible;
}

#header-lang ul li {
	margin: 0;
	padding: 0;
	background: none;
}

#header-lang ul li a {
	display: block;
}

#header-iso {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: -20px 0 -20px 20px;
}

#header-iso figure {
	overflow: hidden;
	position: relative;
}

#header-iso figure a {
}

#header-iso figure a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 128px 88px 0 0;
	border-color: #fff transparent transparent transparent;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

#header-iso figure a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 128px 88px 0 0;
	border-color: rgba(0,0,0,0.2) transparent transparent transparent;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

#header-iso figure:hover a:before,
#header-iso figure:hover a:after {
	left: -128px;
}

#header-iso figure img {
	height: 128px;
}

.header-bottom {
	border-bottom: 2px solid #00ae00;
	background: #333;
	clear: both;
}

#main-nav .mobile-trigger {
	display: none;
	position: relative;
	padding: 10px;
    background: #333;
	color: #fff;
	font-size: 24px;
	line-height: 1em;
	text-transform: uppercase;
	cursor: pointer;
}

#main-nav .mobile-trigger:before {
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	width: 34px;
	height: 24px;
	background: url(../images/menu-trigger.png) no-repeat center;
}

#main-nav > ul {
	display: block;
	text-align: justify;
}

#main-nav > ul:after {
	content: '';
	display: inline-block;
	width: 100%;
}
#main-nav ul,
#main-nav li {
	margin: 0;
	padding: 0;
	background-image: none;
}
#main-nav > ul > li {
	position: relative;
	display: inline-block;
}

#main-nav > ul > li > a {
	position: relative;
	display: block;
	padding: 15px 30px;
	color: #fff;
	font-size: 22px;
	line-height: 1.2em;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#main-nav > ul > li > a:before, #main-nav > ul > li > a:after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

#main-nav > ul > li > a:before {
    margin-right: 10px;
    content: '/';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

#main-nav > ul > li > a:after {
    margin-left: 10px;
    content: '/';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

#main-nav > ul > li > a:hover::before, #main-nav > ul > li > a:hover::after, #main-nav > ul > li > a:focus::before, #main-nav > ul > li > aa:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

#main-nav > ul > li > a:hover {
	color: #00ae00;
}

#main-nav > ul > li > a.active {
	color: #00ae00;
}

#main-nav > ul > li.has-children > a:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 10px;
	width: 12px;
	height: 7px;
	margin: 0 0 0 -6px;
	background: url(../images/dropdown-arrow.png) no-repeat center transparent;
}

#main-nav > ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 0;
	background: #333;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#main-nav > ul > li:hover ul {
	height: 100px;
}

#main-nav > ul > li.foraje ul {
	min-width: 200px;
}

#main-nav > ul > li.foraje:hover ul {
	height: 285px;
}

#main-nav > ul ul li + li {
	border-top: 1px solid #282828;
}

#main-nav > ul ul li a {
	display: block;
	padding: 8px 10px;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#main-nav > ul ul li a:hover {
	color: #00ae00;
}

#main-nav > ul ul li a.active {
	color: #00ae00;
}

/* END Header */

/* Main */

main {
	margin: 30px 0;
	padding: 0 10px;
}

main:after {
	content: '';
	display: table;
	clear: both;
}

input, textarea {
	width: 100%;
	margin: 0 0 20px;
	padding: 8px 10px;
	border: none;
	background: #eee;
	color: #222;
	font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
	font-size: 18px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-appearance: none;
	
}

input:focus,
textarea:focus {
	background: #fff;
}

textarea {
	min-height: 150px;
}

input[type="submit"] {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	padding: 10px 40px;
	background: #00ae00;
	color: #fff;
	font-family: 'Fira Sans', sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	cursor: pointer;
}

input[type="submit"]:hover {
	background: #00c700;
}

input[type="submit"]:active {
	top: 1px;
}

.form-container {
	padding: 40px;
	border-top: 2px solid #00ae00;
	border-bottom: 2px solid #00ae00;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #333;
}

.form-field {
	position: relative;
}

div.label {
	font-family: 'Fira Sans', sans-serif;
	font-size: 20px;
}

label.error {
	position: absolute;
	right: 0px;
	bottom: 10px;
	padding: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background: #00ae00;
	color: #fff;
	font-size: 12px;
	line-height: 1em;
	box-shadow: 0 2px 3px 1px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 1px 4px 1px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 4px 1px rgba(0,0,0,.2);
}

.grid-wrapper:after {
	content: '';
	display: inline-block;
	vertical-align: top;
}

.grid-50 {
	display: inline-block;
	vertical-align: top;
	width: 49%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.grid-50.left {
	padding-right: 20px;
}

.grid-50.right {
	padding-left: 20px;
}

.green-underline {
	border-bottom: 1px solid #00ae00;
}

figure.overlay {
	position: relative;
}

figure.overlay:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.3) 0%, rgba(255,255,255,0.3) 50%, rgba(128,128,128,0) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(0,0,0,0.3)), color-stop(49%,rgba(255,255,255,0.3)), color-stop(50%,rgba(128,128,128,0)), color-stop(100%,rgba(255,255,255,0)));
	background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.3) 0%,rgba(255,255,255,0.3) 50%,rgba(128,128,128,0) 50%,rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(-45deg,  rgba(0,0,0,0.3) 0%,rgba(255,255,255,0.3) 50%,rgba(128,128,128,0) 50%,rgba(255,255,255,0) 100%);
	background: -ms-linear-gradient(-45deg,  rgba(0,0,0,0.3) 0%,rgba(255,255,255,0.3) 50%,rgba(128,128,128,0) 50%,rgba(255,255,255,0) 100%);
	background: linear-gradient(135deg,  rgba(0,0,0,0.3) 0%,rgba(255,255,255,0.3) 50%,rgba(128,128,128,0) 50%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00ffffff',GradientType=1 );
}

figure.intext {
	display: inline-block;
	padding: 5px;
	background: rgb(255,103,14);
	background: -moz-linear-gradient(-45deg,  rgba(255,103,14,1) 21%, rgba(255,103,14,1) 50%, rgba(165,74,9,1) 50%, rgba(165,74,9,1) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(21%,rgba(255,103,14,1)), color-stop(50%,rgba(255,103,14,1)), color-stop(50%,rgba(165,74,9,1)), color-stop(100%,rgba(165,74,9,1)));
	background: -webkit-linear-gradient(-45deg,  rgba(255,103,14,1) 21%,rgba(255,103,14,1) 50%,rgba(165,74,9,1) 50%,rgba(165,74,9,1) 100%);
	background: -o-linear-gradient(-45deg,  rgba(255,103,14,1) 21%,rgba(255,103,14,1) 50%,rgba(165,74,9,1) 50%,rgba(165,74,9,1) 100%);
	background: -ms-linear-gradient(-45deg,  rgba(255,103,14,1) 21%,rgba(255,103,14,1) 50%,rgba(165,74,9,1) 50%,rgba(165,74,9,1) 100%);
	background: linear-gradient(135deg,  rgba(255,103,14,1) 21%,rgba(255,103,14,1) 50%,rgba(165,74,9,1) 50%,rgba(165,74,9,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ae00', endColorstr='#a54a09',GradientType=1 );
}

figure.left {
	float: left;
	margin-right: 20px;
}

figure.right {
	float: right;
	margin-left: 20px;
}

/* END Main */

/* Footer */

footer {
	padding: 0 10px;
}

footer .container {
	padding: 5px;
	border-top: 2px solid #e5e5e5;
	color: #838383;
	font-size: 14px;
}

/* END Footer */

.constructii-drumuri figure {
	width: 48%;
	margin: 0;
}

.constructii-drumuri figure img {
	width: 100%;
}

/* Acasa */

body.acasa main {
	padding-left: 0;
	padding-right: 0;
}

.bio {
	margin: 50px 0;
	overflow: hidden;
}

.bio figure img {
	width: 180px;
}

.bio h3 {
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: inherit;
	font-weight: bold;
}

.bio h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 180px;
	height: 2px;
	background: #00ae00;
}

.bio article {
	overflow: hidden;
}

/* Clients */

section.clients h2 {
	text-align: center;
}

section.clients .home-carousell {
	padding: 10px;
}

section.clients .home-carousell .owl-carousel {
	position: relative;
	padding: 0 45px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

section.clients .home-carousell .owl-carousel .owl-wrapper {
	display: table !important;
}

section.clients .home-carousell .owl-item {
	display: table-cell;
	vertical-align: middle;
	float: none;
	text-align: center;
}

section.clients .home-carousell .owl-item img {
	max-width: 100%;
	max-height: 80px;
}

section.clients .home-carousell .owl-carousel .owl-controls .owl-buttons div {
	position: absolute;
	top: 50%;
	left: 0;
	width: 42px;
	height: 32px;
	margin: -19px 0 0;
	background-image: url(../images/carousel-arrow-left.png);
	background-repeat: no-repeat;
	background-position: right center;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

section.clients .home-carousell .owl-carousel:hover .owl-controls .owl-buttons div {
	background-position: left center;
}

section.clients .home-carousell .owl-carousel .owl-controls .owl-buttons div.owl-next {
	left: auto;
	right: 0;
	background-image: url(../images/carousel-arrow-right.png);
	background-position: left center;
}

section.clients .home-carousell .owl-carousel:hover .owl-controls .owl-buttons div.owl-next {
	background-position: right center;
}

/* END Clients */

/* END Acasa */

/* Utile */

body.utile main a.green-underline {
	color: #000;
}

body.utile main a.green-underline:hover {
	border-bottom-color: #000;
}

/* END Utile */

/* Contact */

body.contact main,
body.contact-us main {
	margin-top: 0;
	padding: 0;
}

body.contact main .grid-50.left a,
body.contact-us main .grid-50.left a {
	color: #000;
}

body.contact main .grid-50.left a:hover,
body.contact-us main .grid-50.left a:hover {
	color: #00ae00;
}

.contact-map {
	margin: 0 0 30px;
}

#map {
	height: 350px;
}

/* END Contact */

/* Media Queries */

@media all and (max-width: 1024px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 20px;
	}
	#logo a {
		margin-left: 0;
	}
	#main-nav > ul {
		padding: 0 15px;
	}
	#main-nav > ul > li > a {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 20px;
	}
	figure.left img,
	figure.right img {
		width: 280px;
	}
	.contact-content {
		padding: 0 10px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	.header-top {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media all and (max-width: 767px) {
	header {
		padding: 0;
	}
	.header-top {
		position: relative;
		padding: 20px 10px;
	}
	.header-top .container {
		text-align: center;
	}
	.header-top .container:after {
		content: none;
	}
	#logo {
		display: block;
	}
	#logo a {
		display: inline-block;
		margin: 0 0 20px;
	}
	#header-right {
		display: block;
	}
	#header-lang {
		margin-left: 15px;
	}
	#header-iso {
		margin: 0 0 0 15px;
		box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
	}
	#header-iso figure a:before,
	#header-iso figure a:after {
		content: none;
	}
	#header-iso figure img {
		height: 32px;
	}
	#main-nav .mobile-trigger {
		display: block;
	}
	#main-nav > ul {
		display: none;
		padding: 0;
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		text-align: left;
	}
	#main-nav > ul > li {
		display: block;
		border-top: 1px solid #4E4E4E;
	}
	#main-nav > ul > li > a {
		padding: 10px;
	}
	#main-nav > ul > li > a:before,
	#main-nav > ul > li > a:after {
		content: none;
	}
	#main-nav > ul > li.has-children > a:after {
		top: 20px;
		left: auto;
		right: 15px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#main-nav > ul > li.has-children.show > a:after {
		transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
	}
	#main-nav > ul ul {
		position: static;
	}
	#main-nav > ul > li.foraje:hover ul {
		height: 0;
	}
	#main-nav > ul > li.foraje.show ul {
		height: 314px;
	}
	#main-nav > ul ul li,
	#main-nav > ul ul li + li {
		border-top: 1px solid #4E4E4E;
	}
	#main-nav > ul ul li a {
		padding: 10px 20px;
	}
	main {
		margin: 15px 0;
	}
	footer .container {
		text-align: center;
	}
	.acasa main {
		margin-top: 0;
	}
	section.slider {
		height: 280px;
		margin: 0 0 20px;
	}
	section.slider figure {
		padding: 0 10px;
	}
	section.slider .container {
		padding-top: 20px;
	}
	section.slider .container h2 {
		font-size: 24px;
	}
	section.slider .container ul {
		margin: 10px 0;
		font-size: 16px;
	}
	section.slider .slideLeft, section.slider .slideRight {
		display: none;
	}
	section.slider figure .image {
		display: none;
	}
	section.home-boxes {
		padding: 0 10px;
	}
	section.home-boxes .container .box {
		width: 100%;
		margin: 0 0 20px;
		background-size: cover;
	}
	section.home-boxes .container .box.box-2 {
		background-position: center bottom;
	}
	section.home-boxes .container .box.box-3 {
		background-position: center top;
	}
	section.home-boxes .container .box .slide-in {
		margin: -40px 0 0;
	}
	section.home-boxes .container .box:hover .slide-in,
	section.home-boxes .container .box:focus .slide-in {
		top: 100%;
	}
	section.home-boxes .container .box.active .slide-in {
		top: 40px;
	}
	section.home-boxes .container .box:hover .slide-in .top span,
	section.home-boxes .container .box:focus .slide-in .top span {
		opacity: 1;
	}
	section.home-boxes .container .box.active .slide-in .top span {
		opacity: 0;
	}
	section.home-boxes .container .box .slide-in .content {
		padding-top: 10px;
		font-size: 16px;
	}
	.home-about {
		margin: 0 0 20px;
	}
	section.clients .home-carousell .owl-carousel:hover .owl-controls .owl-buttons div {
		left: 1%;
	}
	section.clients .home-carousell .owl-carousel:hover .owl-controls .owl-buttons div.owl-next {
		left: auto;
		right: 1%;
	}
	div.portofolio .item {
		width: 49%;
	}
	body.contact main {
		margin: 0;
	}
	.contact-map {
		margin: 0 0 15px;
	}
	.grid-50 {
		width: 100%;
	}
	.grid-50.left, .grid-50.right {
		padding: 0;
	}
	.grid-50 form {
		max-width: 550px;
	}
}

@media all and (max-width: 520px) {
	#logo {
		display: block;
		text-align: center;
	}
	#header-phone {
		float: none;
		margin: 0;
		text-align: center;
	}
	figure.hidden-mobile{
		display: none;
	}
	figure.right, figure.left {
		width: 100%;
		float: none;
		margin: 0 0 10px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	figure.right img, figure.left img {
		width: 100%;
	}
	section.slider .container {
		padding-top: 10px;
	}
	section.slider .container h2 {
		margin: 0;
		font-size: 20px;
	}
	section.slider .container ul {
		font-size: 15px;
	}
	section.slider .container ul li {
		padding: 5px 10px;
		background: rgba(255,255,255,0.9);
		line-height: 1.5em;
	}
	div.portofolio .item {
		width: 100%;
		margin: 0 0 10px;
	}
	.grid-50 form input[type="submit"] {
		width: 100%;
	}
}

/* END Media Queries */

/* Extra */

@keyframes wiggle {
	0% {transform: rotate(0deg);}
	25% {transform: rotate(-5deg);}
	50% {transform: rotate(0deg);}
	75% {transform: rotate(-5deg);}
	100% {transform: rotate(0deg);}
}

@-webkit-keyframes wiggle {
	0% {-webkit-transform: rotate(0deg);}
	25% {-webkit-transform: rotate(-5deg);}
	50% {-webkit-transform: rotate(0deg);}
	75% {-webkit-transform: rotate(-5deg);}
	100% {-webkit-transform: rotate(0deg);}
}

@-moz-keyframes wiggle {
	0% {-moz-transform: rotate(0deg);}
	25% {-moz-transform: rotate(-5deg);}
	50% {-moz-transform: rotate(0deg);}
	75% {-moz-transform: rotate(-5deg);}
	100% {-moz-transform: rotate(0deg);}
}

@-o-keyframes wiggle {
	0% {-o-transform: rotate(0deg);}
	25% {-o-transform: rotate(-5deg);}
	50% {-o-transform: rotate(0deg);}
	75% {-o-transform: rotate(-5deg);}
	100% {-o-transform: rotate(0deg);}
}

@keyframes fadeinout {
	0% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
	50% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter:alpha(opacity=0);
		opacity: 0;
	}
	100% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
}

@-webkit-keyframes fadeinout {
	0% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
	50% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter:alpha(opacity=0);
		opacity: 0;
	}
	100% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
}

@-moz-keyframes fadeinout {
	0% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
	50% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter:alpha(opacity=0);
		opacity: 0;
	}
	100% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
}

@-o-keyframes fadeinout {
	0% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
	50% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter:alpha(opacity=0);
		opacity: 0;
	}
	100% {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter:alpha(opacity=100);
		opacity: 1;
	}
}