@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=greek');

html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
	background: #000;
}
a:focus, a:hover {
    color: #fff;
	text-decoration: none;
}
img {
	max-width:100%;
}
.logo {
	margin: auto;
	display:table;
	background: #fff;
}
.family {
	margin: auto;
	display:table;
	background: #fff;
}
.tag {
	position: absolute;
    right: 15%;
    margin-top: -50px;
	z-index: 99;
}
.elements {
	background-image: url(./../images/elements.png);
	background-repeat: no-repeat;
	background-position: right;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
	column-count: 3;
	padding: 25px 25% 25px 0;
}
.elements p {
	font-size: 22px;
	color: #fff;
}
.address {
	color: #000;
	font-size: 18px;
	text-align: center;
	padding: 0px 15px 40px 15px;
	background: #fff;
}
.address a {
	color: #000;
}
.address p {
	color: #000;
	font-weight: 500;
}
.address h1 {
	text-transform: uppercase;
	font-size: 24px;
}
hr {
    border-top: none;
}
.fa:before {
    color: #949494;
	padding: 0 15px;
	font-size: 28px;
	transition: all .5s;
}
.fa:hover:before {
    color: #fff;
}
.address .fa:hover:before {
    color: #000;
}
.social-links {
	color: #949494;
	padding: 20px 15px;
	text-align: center;
}
.copyright {
	color: #949494;
	font-size: 13px;
	text-align: center;
	padding: 15px;
}
.copyright a {
	color: #fff;
}
.carousel {
	margin-bottom: 20px;
	height: 160px;
	overflow: hidden;
}
.slideshow .images {
  background: url(./../images/carousel.jpg);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 300%;
  animation: slideshow 20s linear infinite;
}
@keyframes slideshow {
  0%    { left: 0; }
  100%  { left: -200%; }
}


@media only screen and (max-width: 992px) {
.tag {
    right: 15px;
	width: 100%;
    margin-top: -25px;
}
.tag img {
    width: 50%;
	float: right;
}
.elements {
	column-count: 2;
}
.elements p {
	font-size: 18px;
}
.slideshow .images {
  animation: slideshow 10s linear infinite;
}
}

@media only screen and (max-width: 768px) {
.carousel {
	height: 120px;
}
.elements {
	background-size: 50%;
}
.elements p {
	font-size: 14px;
}
.address p {
	margin-bottom: 15px;
}
.address p a {
	display: block;
}
.address h1 {
	font-size: 22px;
}
}