@charset "UTF-8";



/* CUSTOM COLORS */


:root {
    --dark: #3b3b3b;
    --graphite: #4c4c4c;
    --red: #ef4135;
    --lightgrey: #eee;
    --midgrey: #ddd;
    --white: #fff;
    --selection: #ddd;
}


/* SELECTIONS  */


::-webkit-selection { background:var(--selection) }
::-moz-selection { background: var(--selection) }
::-o-selection { background: var(--selection) }
::selection { background: var(--selection) }




/* BODY */



body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	background-color: var(--white);
	color: var(--dark);
}



/* general tags and classes */

a { text-decoration: none; color: var(--orange); font-weight: 400; }
a.tel { color: inherit }
a:hover { color: var(--red) }


.clear { clear: both }
.ovf { overflow: hidden; }

.centered { text-align: center; }
.nowrap { white-space: nowrap; }
.noscroll { overflow: hidden }
.toleft { text-align: left }



/* transition */



.fluid {
	position: relative;
	max-width: 1040px;
	margin: 0 auto;
}

.fluid.slim {
	max-width: 860px;
}


.wrap {
	position: relative;
	margin: 0 40px;
}

.wrap-half, .wrap-half .wrap {
	margin: 0 20px;
}

.inline2 {
	float: left;
	width: 50%;
	text-align: left;
	vertical-align: top;
}

.inline3 {
	float: left;
	width: 33.3%;
	vertical-align: top;
	font-size: 15px;
}

.content { min-height: 500px }


section, footer {
	padding: 60px 0 80px;
}

section.grey { background: var(--lightgrey) }
section.dark { background: var(--dark); color: var(--white) }



h1, h2 {
	position: relative;
	font-weight: 400;
	font-size: 28px;
	line-height: 38px;
	margin-bottom: 36px;
}

h1 {
	font-size: 36px;
	line-height: 44px;
}

h2.redline, h1.redline {
	margin-bottom: 72px;
}

h2.redline:after, h1.redline:after {
	position: absolute;
	bottom: -24px;
	left: 50%;
	height: 4px;
	width: 80px;
	margin-left: -40px;
	background: var(--red);
	content: '';
}

h3 {
	margin-top: 0;
	font-weight: 400;
}


.button {
	display: inline-block;
	padding: 10px 24px 8px;
	text-transform: uppercase;
	margin-top: 24px;
	color: var(--white);
	background: var(--red);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 400;
}

.button:hover { 
	color: var(--white);
	background: var(--red);
}

.button.ghost {
	padding: 12px 48px 8px;
	color: var(--red);
	border: 2px solid var(--red);
	background: none;
}

.button.ghost:hover {
	background: none;
	color: var(--red);
}

.gallery {
	position: relative;
	margin: 0 -10px;
}

.gallery div {
	position: relative;
	float: left;
	width: 21%;
	margin: 2%;
}

.gallery img {
	display: block;
	width: 100%;
}

.gallery-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 1000;
	display: none;
}

.gallery-panel .port {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 450px;
	transform: translate(-50%,-50%);
	border: 6px solid var(--midgrey);
	background: var(--dark);
}

.gallery-panel .port img {
	display: block;
	width: 100%;
}

.gallery-panel .port .prev, .gallery-panel .port .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 2px solid var(--midgrey);
	border-radius: 24px;
	background: #666;
	line-height: 40px;
	color: var(--white);
	font-size: 36px;
	text-align: center;
	cursor: pointer;
}

.gallery-panel .port .prev {
	left: -26px;
}

.gallery-panel .port .next {
	right: -26px;
}

.gallery-panel .port .prev:hover, .gallery-panel .port .next:hover { background: var(--red) }

.bullets > div {
	position: relative;
	padding-left: 24px;
	margin: 4px 0;
	font-weight: 400;
}

.bullets > div:before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	content: '';
	background: var(--red);
	border-radius: 4px;
	transform: translateY(-50%);
}

.bullets.top > div:before {
	top: 6px;
	transform: none;
}

.bullets span {
}


.HEAD {
	background: var(--white);
	background: linear-gradient(180deg, rgba(203,203,203,1) 0%, rgba(237,237,237,1) 100%);
	text-align: right;
	border-bottom: 10px solid var(--red);
}

.HEAD .wrap {
	padding: 60px 0 40px;
}

.HEAD .logo {
	position: absolute;
	top: 30px;
	left: 0;
	width: 150px;
	height: 75px;
	background: url(../images/rapidagro/logo.png) no-repeat center;
	background-size: 100%;
}

.HEAD nav {
	display: inline-block;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 400;
}

.HEAD nav a {
	display: inline-block;
	padding: 6px 0 4px;
	border-radius: 4px;
	margin: 0 10px;
}

/*.HEAD nav a:hover { background: var(--white); color: var(--dark)  }*/
.MAIN .HEAD nav a.p-main { background: var(--red); color: var(--white); padding: 6px 18px 4px;  }
.SERV .HEAD nav a.p-serv { background: var(--red); color: var(--white); padding: 6px 18px 4px;  }
.ABUS .HEAD nav a.p-abus { background: var(--red); color: var(--white); padding: 6px 18px 4px;  }
.CONT .HEAD nav a.p-cont { background: var(--red); color: var(--white); padding: 6px 18px 4px;  }


.banner {
	color: var(--dark);
	position: relative;
	padding-top: 40px;
}

.banner .fluid .cnt {
	padding: 120px 0 100px;
	background: url(../images/rapidagro/banner5.jpg) no-repeat center top;
	background-size: contain;
	margin: 0 160px 0 -60px;
	
}

.banner .wrap {
	padding-left: 46%;
}

.banner-sub {
	margin: 24px 0 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.banner h1 {
	margin: 0;
	font-size: 28px;
	line-height: 38px;
	font-weight: 300;
	background: var(--red);
	color: var(--white);
	border-radius: 8px;
	padding: 20px 48px;
	margin-left: -120px;
}

.szechenyi {
	position: absolute;
	top: 0;
	right: 0;
	width: 319px;
	height: 224px;
	background: url(../images/rapidagro/szechenyi-terv-logo.png) no-repeat center;
	background-size: 100%;
}




.features .inline2 {
	margin: 20px 0;
}

.features .inline2 .wrap {
	min-height: 140px;
}

img.ico {
	display: block;
	width: 96px;
	height: 96px;
	border: 8px solid #999;
	border-radius: 96px;
	opacity: 0.7;
}

.features h3 {
	margin: -96px 0 12px 136px;
}

.features p {
	margin-left: 136px;
}



.warranty .wrap {
	padding-left: 40%;
}

.warranty img {
	position: absolute;
	top: 0;
	left: 4%;
	width: 36%;
	height: auto;
}

.steps {
	display: inline-block;
	text-align: left;
	max-width: 480px;
	font-size: 16px;
	font-weight: 400;
}

.step {
	display: inline-block;
	margin: 0 auto 16px;
	width: 48px;
	height: 48px;
	border: 6px solid #999;
	border-radius: 48px;
	color: var(--dark);
	line-height: 48px;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	background: var(--white);
	margin-right: 12px;
}





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






.breadcrumb {
	background: var(--red);
	color: var(--white);
	padding: 10px 0;
}




footer {
	position: relative;
	background: var(--midgrey);
	background: linear-gradient(180deg, rgba(237,237,237,1) 0%, rgba(180,180,180,1) 100%);
	border-top: 4px solid var(--red);
	padding: 80px 0 180px;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
}

footer:after {
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin-left: -100px;
	width: 200px;
	height: 104px;
	content: '';
	background: url(../images/rapidagro/logo-white.png) no-repeat center;
	z-index: 100;
}

footer h3 {
	text-transform: uppercase;
	font-size: 15px;
}

footer a {
	display: block;
}

.footcol {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

footer a.footnav {
	position: relative;
	padding-left: 24px;
	line-height: 30px;
}

footer .footline {
	position: relative;
	padding-left: 32px;
	line-height: 30px;
}

footer .footline.adr { background: url(../images/rapidagro/footer/icon_location.png) no-repeat left center }
footer .footline.tel { background: url(../images/rapidagro/footer/icon_phone.png) no-repeat left center }
footer .footline.emi { background: url(../images/rapidagro/footer/icon_mail2.png) no-repeat left center }
footer .footline.per { background: url(../images/rapidagro/footer/icon_open.png) no-repeat left center }

footer a.footnav:before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	content: '';
	background: var(--red);
	border-radius: 4px;
	transform: translateY(-50%);
}





form {
	margin: 0 auto;
	padding: 0;
	max-width: 560px;
	padding-left: 20px;
	border-left: 20px solid var(--lightgrey);
}
.iwrap {
	position: relative;
	margin-right: 22px;
	margin-top: 4px;
}

.iwrap input,
.iwrap textarea {
	display: block;
	position: relative;
	width: 100%;
	padding: 10px 8px;
	border: 1px solid #ddd;
	background: #fff;
	line-height: 24px;
	font-size: 16px;
	color: var(--dark);
}

.iwrap input:focus,
.iwrap textarea:focus,
.iwrap input.warning:focus,
.iwrap textarea.warning:focus {
	border-color: var(--dark);
	outline: none;
	z-index: 10;
	background: #fff;
}

.iwrap textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 96px;
	max-height: auto;
	overflow: hidden;
	font-family: 'Roboto';
}

.iwrap label {
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
	color: #999;
	z-index: 20;
}




.wrap.map {
	margin-top: -60px;
	border: 8px solid var(--midgrey);
	border-radius: 6px;
}


.proj {
	margin: 40px 0;
}

.projdata span {
	color: #999;
}


@media (max-width: 760px) {
	
	.fluid {
		max-width: 420px;
	}
	
	.wrap {
		margin: 0 20px;
	}
	
	.wrap-half .wrap {
		margin: 0;
	}
	
	.inline2, .inline3 {
		float: none;
		width: auto;
	}
	
	.inline3 { margin-bottom: 24px; }
	
	h1 {
		font-size: 30px;
		line-height: 38px;
	}
	
	h2 {
		font-size: 24px;
		line-height: 32px;
	}
	
	.HEAD nav a {
		display: block;
	}
	
	.MAIN .HEAD nav a.p-main { margin-right: -8px  }
	.ABUS .HEAD nav a.p-abus { margin-right: -8px  }
	.CONT .HEAD nav a.p-cont { margin-right: -8px  }
	
	.HEAD .wrap {
		padding: 20px 0;
	}
	
	.gallery-panel .port {
		max-width: 90%;
		height: auto;
	}
	
	.banner {
		padding-top: 100px;
		text-align: center;
	}
	
	.banner .fluid .cnt {
		padding: 280px 0 100px;
		background: url(../images/rapidagro/banner5.jpg) no-repeat left top;
		background-size: 200%;
		margin: 0;
		
	}
	
	.banner .wrap {
		padding-left: 0;
	}
	
	
	.banner h1 {
		margin: 0 -16px;
		font-size: 24px;
		line-height: 30px;
		padding: 20px 16px;
	}
	
	.szechenyi {
		position: absolute;
		top: 0;
		right: 0;
		width: 319px;
		height: 224px;
		background: url(../images/rapidagro/szechenyi-terv-logo.png) no-repeat right top;
		background-size: 80%;
	}
	
	img.ico {
		display: inline-block;
		width: 72px;
		height: 72px;
		border: 8px solid #999;
		border-radius: 72px;
		opacity: 0.7;
		margin-top: 12px;
	}
	
	.features, .features .inline2 { text-align: center }
	
	
	.features h3 {
		margin: 12px 0;
	}
	
	.features p {
		margin-left: 0;
	}
	
	section {
		padding: 60px 0;
	}
	
	.warranty h2 {
		text-align: center;
	}
	
	.warranty .wrap {
		padding-left: 0;
	}
	
	.warranty img {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
	}
	

	
	.steps span {
		display: inline-block;
		line-height: 24px;
		overflow: hidden;
		max-width: 70%;
		vertical-align: middle;
	}
	
	.footcol {
		display: block;
		margin-bottom: 24px;
	}
	
	.wrap.map {
		margin-top: 24px;
	}
	
	.szt {
		padding-top: 120px;
	}
	
	.CONT .button {
		margin-left: 0;
	}


}




