@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=greek,greek-ext,latin-ext');

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	margin: 0;
	padding: 0;
}

a {
	color: #f4a100;
	text-decoration: none;
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-o-transition: all ease .5s;
	-ms-transition: all ease .5s;
	transition: all ease .5s;
}
a:hover,
a:active,
a:focus {
	color: #45bbd7;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}

#loader {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	background: #fff;
}
.load-wrapper {
	width: 280px;
	height: 280px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -140px;
	margin-left: -140px;
	text-align: center;
}
.load-wrapper img {
	width: 150px;
	height: auto;
}
.spinner {
	margin: 20px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}
.spinner > div {
	background-color: #f4a100;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
	20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
	0%, 40%, 100% { 
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% { 
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}

header {
	border-top: 4px solid #45bbd7;
	width: 100%;
	margin: 0;
	padding: 15px 0;
	background: rgba(255,255,255,1);
}

header.fixed {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
}

.logo img {
	width: 100%;
	max-width: 229px;
	height: auto;
}
@media (max-width: 991px) {
	.logo {
		display: table;
		margin: 0 auto;
	}
}

header ul {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: table;
	float: right;
}
@media (max-width: 991px) {
	header ul {
		margin: 10px auto 0;
		float: none;
	}
}

header ul li {
	display: inline-block;
	margin-right: 15px;
}
header ul li:last-child {margin-right: 0;}

#scrollTop {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 99;
	color: #45bbd7;
	font-size: 40px;
	opacity: .8;
}
#scrollTop:hover {color: #45bbd7;}

#company {
	position: relative;
	z-index: 1;
	background: url(../images/about.jpg) no-repeat center right;
	background-size: cover;
}

.content {
	width: 50%;
	padding: 160px 0;
	background: rgba(33,130,153,.9);
	text-align: center;
	color: #fff !important;
}
@media (max-width: 600px) {
	.content {width: 100%;}
}

.content .rte {
	display: table;
	width: 80%;
	text-align: justify;
	margin: 15px auto 0;
}

#products {
	margin: 50px 0;
}
#products .container-fluid {margin-top: 30px;}

.icon-wrapper {
	width: 80px;
	height: 80px;
	text-align: center;
	display: block;
	margin: 15px auto;
	border: 2px solid #45bbd7;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	position: relative;
}

.icon-wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
}

#contact {
	background: #f2f2f2;
	padding: 50px 0;
}

#contact em {
	display: block;
	margin-bottom: 40px;
}

input,
textarea {
	border-radius: 0 !important;
	margin-bottom: 15px !important;
	resize: none;
}
input[type="submit"] {margin-bottom: 0 !important;}

#contact p {
	position: relative;
	border-bottom: 1px dashed #ccc;
	margin: 0 0 15px;
	padding: 0 0 15px;
}
#contact span {
	display: block;
	padding-left: 30px;
}
#contact i {
	font-size: 18px;
	position: absolute;
	top: 3px;
	left: 0;
	color: #333 !important;
}

footer {
	position: relative;
	padding: 15px 0;
	background: #e5e5e5;
	font-size: 12px;
	font-style: italic;
	color: #999;
}