/*
	Projet : Maldoo
	Author: Bofa.de
*/

/* --------------------------------------------------

		SUMMARY     General
						Reset
						Presets

					Grid

					Contents
						Slider
						Compare
						Instagram
						Product

					Form

					Responsive

-------------------------------------------------- */




/* General
-------------------------------------------------- */

/* ---------- Reset ---------- */

* {
	margin: 0;
	padding: 0;
}

.clear {
	line-height: 0;

	clear: left;

	height: 0;
}

.clearfix:before,
.clearfix:after {
	display: table;

	content: '';
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font: inherit;
	font-size: 100%;

	margin: 0;
	padding: 0;

	vertical-align: baseline;

	border: 0;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}


/* ---------- Presets ---------- */

body {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 25px;
	line-height: 150%;

	color: #000;
	background: #fcd73b;
}

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

p {
	margin-bottom: 20px;
}

p.bottom {
	margin-top: 150px;
}

a {
	text-decoration: none;

	color: #000;
}

a:hover {
	color: #000;
}

.btn {
	font-size: 25px;

	display: inline-block;

	margin-top: 50px;
	padding: 15px 25px 15px 15px;

	text-transform: uppercase;

	color: #fff;
	-webkit-border-radius: 100px;
	   -moz-border-radius: 100px;
		-ms-border-radius: 100px;
		 -o-border-radius: 100px;
			border-radius: 100px;
}

.btn:hover {
	color: #fff;
}

.btn:before {
	display: block;
	float: left;

	width: 65px;
	height: 65px;
	margin-right: 15px;

	content: ' ';

	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
		-ms-border-radius: 50%;
		 -o-border-radius: 50%;
			border-radius: 50%;
	background-color: #fff;
}

.btn span {
	line-height: 65px;
}

.btn.center {
	margin: 0 auto;
}

.btn.ask {
	background: #2b3990;
}

.btn.ask:before {
	background: url(../images/btn-chat.png) no-repeat center center #fff;
}

.btn.contact {
	background: #282c96;
}

.btn.contact:before {
	background: url(../images/btn-contact.png) no-repeat center center #fff;
}

.btn.download {
	background: #c4c600;
}

.btn.download:before {
	background: url(../images/btn-download.png) no-repeat center center #fff;
}

h2 {
	font-size: 35px;
	font-weight: bold;

	margin-bottom: 30px;
	padding-bottom: 20px;

	text-transform: uppercase;

	background: url(../images/border-wave.png) repeat-x center bottom;
}

.square {
	position: absolute;
	z-index: 1;
	top: -8px;
	left: 0;

	width: 100%;
	height: 17px;

	background: url(../images/border-square.png) repeat-x center bottom;
}

.wave {
	position: absolute;
	z-index: 1;
	bottom: -6px;
	left: 0;

	width: 100%;
	height: 12px;

	background: url(../images/border-main-wave.png) repeat-x center bottom;
}

.list {
	margin-bottom: 30px;
}

.list li:before {
	display: inline-block;

	margin-right: 10px;

	content: '–';
}

.sublist {
	margin-left: 25px;
}

em {
	font-style: italic;

	text-transform: uppercase;
}

strong {
	font-weight: bold;

	text-transform: uppercase;
}

strong.small {
	font-weight: bold;

	text-transform: none;
}

strong em {
	text-transform: uppercase;
}

sup {
	font-size: .7em;
	line-height: .7em;

	position: relative;
	bottom: 1px;

	vertical-align: super;
	text-decoration: none;
}



/* Grid
-------------------------------------------------- */

.container {
	width: 1200px;
	margin: 0 auto;
}

.section {
	margin: 90px 0 30px 0;
}

.content {
	margin: 100px 0;
}

.col-1, .col-2, .col-3,
.col-4, .col-5, .col-6,
.col-7, .col-8, .col-9,
.col-10, .col-11, .col-12 {
	position: relative;

	float: left;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-12 {
	width: 100%;
}

.col-11 {
	width: 91.66666667%;
}

.col-10 {
	width: 83.33333333%;
}

.col-9 {
	width: 75%;
}

.col-8 {
	width: 66.66666667%;
}

.col-7 {
	width: 58.33333333%;
}

.col-6 {
	width: 50%;
}

.col-5 {
	width: 41.66666667%;
}

.col-4 {
	width: 33.33333333%;
}

.col-3 {
	width: 25%;
}

.col-2 {
	width: 16.66666667%;
}

.col-1 {
	width: 8.33333333%;
}



/* Header and Footer
-------------------------------------------------- */

/* Header */

header {
	position: relative;

	padding: 50px 0;

	background: #fff;
}

h1 {
	float: left;

	width: 300px;
}

a.instagram {
	display: block;
	overflow: hidden;

	width: 45px;
	height: 45px;

	text-indent: 50px;

	background: url(../images/instagram-logo.png) no-repeat center center;
}

a.en {
	display: block;
	overflow: hidden;

	width: 45px;
	height: 45px;

	text-indent: 100px;

	background: url(../images/lang-en.png) no-repeat left center;
}

a.de {
	display: block;
	overflow: hidden;

	width: 45px;
	height: 45px;

	text-indent: 100px;

	background: url(../images/lang-de.png) no-repeat left center;
}

header nav li {
	display: inline-block;
}

header .nav {
	position: relative;

	float: left;

	width: calc(100% - 300px);
	height: 61px;
}

header .main {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 200px;

	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
			transform: translateY(-50%);
}

header .main a {
	display: inline-block;

	margin: 0;
	padding: 5px 8px;

	text-transform: uppercase;

	border-bottom: 2px solid white;
}

header .main a.active {
	border-bottom: 2px solid black;
}

header .secondary {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 0;

	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
			transform: translateY(-50%);
}

.submenu > a:first-child {
	position: relative;

	padding-right: 35px;
}

.submenu > a:first-child:after {
	position: absolute;
	top: 16px;
	right: 0;

	display: block;

	width: 22px;
	height: 12px;

	content: ' ';

	background: url(../images/arrow-down.png) no-repeat center center;
}

header .submenu {
	position: relative;

	margin-left: 15px;
}

header .submenu ul {
	position: absolute;
	z-index: 2;
	top: 45px;
	right: 0;

	display: none;

	padding: 20px 0;

	background: #fff;
}

header .submenu li {
	display: block;

	padding: 10px 35px;

	text-align: center;
}

header .submenu:hover ul {
	display: block;
}

/* Footer */

footer {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;

	position: relative;

	margin-bottom: 50px;
	padding: 50px 0;

	background: #fff;
}

footer .main {
	font-weight: bold;
	line-height: 35px;

	display: inline-block;

	text-transform: uppercase;
}

footer .main li {
	display: inline-block;
}

footer .main li.nav-instagram {
	float: left;

	width: 35px;
	height: 35px;
	margin-right: 15px;
}

footer .main li.nav-instagram a {
	width: 35px;
	height: 35px;

	background-size: 35px;
}

footer .main li:after {
	margin: 0 5px;

	content: '//';
}

footer .main li.nav-instagram:after {
	display: none;
}

footer .main li:last-child:after {
	margin: 0;

	content: ' ';
}

footer .main li a {
	padding: 8px 0;
}

footer .main li.nav-instagram a {
	padding: 0;
}

footer .address {
	line-height: 35px;

	display: inline-block;
	float: right;
}

footer .address span {
	display: inline-block;

	margin: 0 5px;
}

footer .copyright {
	display: block;

	margin-top: 10px;

	text-align: center;
}

footer .copyright img {
	width: 57px;
}

footer .copyright a {
	color: #0f66c7;
}

.address {
	font-family: 'Roboto', sans-serif;
}

.address strong {
	font-weight: bold;

	text-transform: none;
}



/* Contents
-------------------------------------------------- */

/* ---------- Slider ---------- */

.slider,
.slides {
	position: relative;
}


/* ---------- Instagram ---------- */

.instagram {
	padding-bottom: 0;

	text-align: center;

	background-position: center center;
}

.instagram span {
	display: inline-block;
	overflow: hidden;

	width: 270px;
	height: 77px;

	text-indent: 300px;

	background: url(../images/instagram-title.png) no-repeat center center #fcd73b;
}


/* ---------- Instagram ---------- */

.instagram-galery {
	padding: 0 15px;
}


/* ---------- Product ---------- */

.product {
	margin: 100px 0;
}

.preview-small li,
.preview-small li a,
.preview-small li a img {
	display: block;

	margin: 0;
	padding: 0;
}

.preview-small li {
	margin-bottom: 10px;
}

.description {
	font-size: 35px;

	padding: 50px 25px;

	background: rgba(255, 255, 255, .6);
}

.description h3 {
	font-size: 75px;
	font-weight: bold;

	margin-bottom: 30px;

	text-align: center;
	text-transform: uppercase;
}

.description .actions {
	margin-top: 25px;
}



/* Form
-------------------------------------------------- */

.form-big {
	font-size: 30px;

	margin-top: 50px;
	margin-bottom: 20px;
}

.form-middle {
	font-size: 23px;

	margin-top: 40px;
}

.form-middle strong {
	text-transform: none;
}

.form-small {
	font-size: 18px;

	margin-top: 20px;
}

label,
input,
select,
textarea {
	display: block;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
	width: 100%;
}

input,
select,
textarea {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;

	border: 0;
	background: #fff;

	-webkit-appearance: none;
	   -moz-appearance: none;
		-ms-appearance: none;
		 -o-appearance: none;
			appearance: none;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
}

input {
	line-height: 40px;

	padding: 5px 20px;
}

textarea {
	height: 270px;
	padding: 15px 20px;
}

select {
	line-height: 45px;

	width: 320px;
	height: 45px;
	padding: 0 25px;

	-webkit-border-radius: 45px;
	   -moz-border-radius: 45px;
		-ms-border-radius: 45px;
		 -o-border-radius: 45px;
			border-radius: 45px;
	background: #c4c600 url(../images/arrows-select.png) no-repeat;
	background-position: top 5px right 5px;
}

input[type='file'] {
	line-height: 18px;

	padding: 0;

	background: none;
}

#send {
	margin-top: 50px;

	cursor: pointer;

	border: 0;
}



/* Responsive
-------------------------------------------------- */

@media screen and (max-width: 1300px) {
	.container {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
			 -o-box-sizing: border-box;
				box-sizing: border-box;
		width: 100%;
		padding: 0 50px;
	}

	h1 {
		display: block;
		float: none;
	}

	header .nav {
		position: static;

		float: none;

		width: 100%;
		height: auto;
		margin-top: 15px;
	}

	header .main {
		position: static;
		top: 0;
		right: 0;

		display: block;

		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
			-ms-transform: translateY(0);
			 -o-transform: translateY(0);
				transform: translateY(0);
		text-align: center;
	}

	header .secondary {
		top: 50px;
		right: 50px;

		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
			-ms-transform: translateY(0);
			 -o-transform: translateY(0);
				transform: translateY(0);
	}

	.description h3 {
		font-size: 60px;
	}

	.description .actions .btn {
		position: relative;

		width: calc(100% - 45px);
	}

	.description .actions .btn span {
		line-height: 100%;

		position: absolute;
		top: 50%;

		-webkit-transform: translateY(-50%);
		   -moz-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			 -o-transform: translateY(-50%);
				transform: translateY(-50%);
	}

	footer .main {
		display: block;

		text-align: center;
	}

	footer .main li.nav-instagram {
		float: none;
	}

	footer .address {
		display: block;
		float: none;

		margin-top: 10px;

		text-align: center;
	}
}

@media screen and (max-width: 1000px) {
	.product .col-1 {
		width: 130px;
	}

	.product .col-6 {
		width: calc(100% - 130px);
	}

	.product .col-5 {
		clear: both;

		width: 100%;
		margin-top: 25px;
		margin-left: -50px;
		margin-right: -50px;
		padding: 50px;

		box-sizing: content-box;
	}

	form .col-1, form .col-2, form .col-3,
	form .col-4, form .col-5, form .col-6,
    form .col-7, form .col-8, form .col-9,
	form .col-10, form .col-11, form .col-12 {
		float: none;

		width: 100%;
		padding: 0;
	}
}

@media screen and (max-width: 500px) {
	header {
		padding-top: 75px;
	}

	header .secondary {
		top: 15px;
		right: 15px;
	}

	header .secondary a {
		width: 35px;
		height: 35px;

		background-size: 35px;
	}

	header .submenu > a:first-child:after {
		top: 11px;
	}

	.slider,
	.main-visual {
		margin-right: -50px;
		margin-left: -50px;
	}

	.rslides_nav.prev {
		left: 15px !important;
	}

	.rslides_nav.next,
	.rslides_tabs {
		right: 15px !important;
	}

	.compare-item {
		float: none;

		width: 100%;
	}

	.product .col-1,
	.product .col-6 {
        float: none;

		width: 100%;
		padding: 0;
	}

	.product .preview-small li {
        float: left;

		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
			 -o-box-sizing: border-box;
				box-sizing: border-box;
		width: 50%;
		padding: 0 15px;

	}
}
