/*
Primary color: #23d789 
Secondary color: #f62459
*/
/*//////////////////////////////////////////////*/
/* Reusable code */
/*//////////////////////////////////////////////*/
body {
	font-family: 'Ubuntu', sans-serif;
	background: #fafafa;
	color: #333;
	line-height: 1.7em;
	overflow-x: hidden; /* So that we will not have horizontal scrollbar */
	font-size: 14px;
}
section {
	background-color: #fafafa;
	position: relative;
	z-index: 100;
}
select {
	margin: 10px 0;
	width: 350px !important;
	height: 44px !important;
	border-radius: 22px !important;
	padding-left: 25px !important;
	font-size: 14px;
	font-weight: 700;
}
h1,h2,h3,h4,h5,h6 { font-family: "Ubuntu", serif; }
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
p {
	font-size: 16px;
	color: #555;
}
a, a:hover, a:active, a:focus {
	text-decoration: none;
	color: #fff;
	outline: none;
}
ul { 
	list-style-type: none;
	padding: 0;
 }
li {
	display: inline-block; /* Τα έβαλε σε οριζόντια γραμμή */
	text-align: center;
}
.primary-color { color: #b6c2bd; }
.button {
	display: inline-block;
	padding: 0;
	text-align: center;
	width: 220px;
	height: 44px;
	color: #fff;
	border-radius: 22px;
	font-size: 14px;
	font-weight: bold;
	line-height: 44px;
	text-transform: uppercase;
	/* background-color: #aaa; */
	margin-right: 10px;
	background: -webkit-gradient(linear, left top, right top, from(#797c7b), color-stop(50%, #797c7b), color-stop(50%, #cccfce), color-stop(52%, #cccfce), color-stop(52%, #959997));
	background: linear-gradient(90deg, #797c7b 0%, #797c7b 50%, #cccfce 50%, #cccfce 52%, #959997 52%);
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}
.button-primary:hover,
.button-secondary:hover,
.button-outline-primary:hover {
	background-position: 100%;
}
.button-outline-primary {
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, transparent), color-stop(50%, rgba(255,255,255,.7)), color-stop(52%, rgba(255,255,255,.7)), color-stop(52%, #333));
	background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.7) 52%, #333 52%);
	color: #333;
	border: #333 1px solid;
}
.button-white-outline-primary {
	background: linear-gradient(100deg, transparent 0%, transparent 50%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.7) 52%, #fff 52%);
	border: #fff 1px solid;
}
.button,
.button-outline-primary,
.button-white-outline-primary {
	background-size: 220%;
	background-position: 0;
}
.button-white-outline-primary:hover {
	background-position: 100%;
	color: #333;
}
.separator {
	width: 60px;
	height: 1px;
	background: #b6c2bd;
	margin: 30px auto;
}
.section-padding {
	padding-top: 130px;
	padding-bottom: 130px;
}
/*//////////////////////////////////////////////*/
/* Header */
/*//////////////////////////////////////////////*/
header {
	position: fixed;
	z-index: 200;
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	height: 100px;
	line-height: 100px; /* So that nav items will stay in the middle vertically */
	color: #fff;
	-webkit-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
.header-bg {
	background: rgba(0,0,0,.8);
	height: 60px;
	line-height: 60px;
}
.logo {
	padding: 0;
}
.logo a {
	width: 100%;
	height: 100%;
}
.logo a img {
	width: 100%;  /* Έκανε το logo μικρότερο */
	height: auto; /* To keep the aspect ratio of the image */
	-webkit-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
header .desktop-nav {
	padding-right: 0;
}
nav.nav {
	display: block;
	padding: 0;
}
nav ul {
	float: right;
}
nav ul li {
	position: relative;
	padding: 0 20px;
}
nav ul li a {
	text-transform: uppercase;
	font-size: 14px;
	padding: 0 !important;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
nav ul li a.active {
	color: #23d789;
}
nav ul li a:not(.social-link):not(.active):hover {
	color: #adadad;
}
li.socials {
	padding-right: 0;
}
.socials a {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	margin-right: 3px;
}
.socials a:last-child {
	margin-right: 0;
}
.socials a:hover {
	background: #23d789;
}
.socials a i {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	line-height: 36px; /* Exaclty as its parent height
						to make the icons place in the 
						middle vertically */
}
/*//////////////////////////////////////////////*/
/* Mobile Nav */
/*//////////////////////////////////////////////*/
.mobile-nav {
	position: absolute;
	height: 0;
	top: 0;
	left: 0;
	right: 0;
}
.nav-icon {
	position: relative;
	width: 60px;
	height: 60px;
	margin-right: 25px;
	margin-top: 20px;
	margin-left: auto;
	/* background: #23d789; */
	border-radius: 50%;
	padding: 15px 0;
	-webkit-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
.bars {
	cursor: pointer;
}
.bars .bar {
	display: block;
	width: 30px;
	height: 1px;
	margin: 7px auto;
	background: #fff;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.bar-top-rotated {
	-webkit-transform: translateY(8px) rotate(45deg);
	        transform: translateY(8px) rotate(45deg);
}
.bar-middle-disappeared {
	width: 0 !important;
}
.bar-bottom-rotated {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	        transform: translateY(-8px) rotate(-45deg);
}
.nav-bg {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 25px;
	top: 20px;
	opacity: 0;
	background: #003641;
	border-radius: 50%;
	-webkit-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
.nav-bg-active {
	-webkit-transform: scale(100);
	        transform: scale(100);
	opacity: 1;
}
.mobile-nav .nav {
	width: 100%;
	height: 100%;
}
.mobile-nav .nav ul {
	margin: 0 auto;
	z-index: 100;
	visibility: hidden;
}
.mobile-nav .nav-active ul {
	visibility: visible;
}
.mobile-nav .nav ul li {
	display: block;
	position: relaive;
	margin: 5px auto;
	padding: 0;
	width: 250px;
	height: 45px;
	line-height: 45px;
	opacity: 0;
	text-align: center;
	background: #00687c;
	-webkit-transform: translateX(300%) skew(80deg);
	        transform: translateX(300%) skew(80deg);
	-webkit-transition: -webkit-transform .5s cubic-bezier(.69,-0.12,.2,1.26);
	transition: -webkit-transform .5s cubic-bezier(.69,-0.12,.2,1.26);
	transition: transform .5s cubic-bezier(.69,-0.12,.2,1.26);
	transition: transform .5s cubic-bezier(.69,-0.12,.2,1.26), -webkit-transform .5s cubic-bezier(.69,-0.12,.2,1.26);
}
.mobile-nav .nav ul li:hover {
	background: #0088a3;
}
.mobile-nav .nav-active ul li {
	-webkit-transform: translateX(0) skew(0deg);
	        transform: translateX(0) skew(0deg);
	opacity: 1;
}
.mobile-nav .nav-active ul li:nth-child(2) {
	-webkit-transition-delay: 40ms;
	        transition-delay: 40ms;
}
.mobile-nav .nav-active ul li:nth-child(3) {
	-webkit-transition-delay: 80ms;
	        transition-delay: 80ms;
}
.mobile-nav .nav-active ul li:nth-child(4) {
	-webkit-transition-delay: 120ms;
	        transition-delay: 120ms;
}
.mobile-nav .nav-active ul li:nth-child(5) {
	-webkit-transition-delay: 160ms;
	        transition-delay: 160ms;
}
.mobile-nav .nav-active ul li:nth-child(6) {
	-webkit-transition-delay: 200ms;
	        transition-delay: 200ms;
}
.mobile-nav .nav-active ul li:nth-child(7) {
	-webkit-transition-delay: 240ms;
	        transition-delay: 240ms;
}
.mobile-nav .nav ul li a {
	padding: 0;
	width: 250px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 300;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.mobile-nav .nav ul li a.active {
	font-weight: bold;
	background-color: #0088a3;
}

/*//////////////////////////////////////////////*/
/* Hero */
/*//////////////////////////////////////////////*/
#hero-slider .h100 { /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
	height: 100vh;   /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
}
#hero-slider .slide1 {
	height: 100vh; /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .95)), color-stop(40%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.5))), url(../img/hero-bg1.jpg);
	background: linear-gradient(to bottom, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.5) 100%), url(../img/hero-bg1.jpg);
	background-size: cover;
	background-position: center;
}
.slide-left h1,
.slide-left p {
	color: #fff;
}
.slide-left h1 {
	font-size: 42px;
	margin-bottom: 30px;
}
.slide-left p {
	font-size: 18px;
}
.cta {
	margin-top: 40px;
}
.hero-image img {
	position: absolute;
	max-width: 100%;
	max-height: 88vh;
	right: 0;
	bottom: 0;
}
/*//////////////////////////////////////////////*/
/* About */
/*//////////////////////////////////////////////*/
.about {
	text-align: center;
}
.about .separator {
	margin-bottom: 60px;
}
.about-content i {
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 48px;
	background-color: #e7e7e7;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-bottom: 30px;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.about:hover i {
	background-color: black;
	color: #fff;
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.about p {
	font-size: 14px;
}
/*//////////////////////////////////////////////*/
/* Dimitra Vergi */
/*//////////////////////////////////////////////*/
.dimitra {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85))), url(../img/dimitra_bg.jpg);
	background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../img/dimitra_bg.jpg);
	background-size: cover;
	background-position: center;
}
.dimitra .text h1,
.dimitra .text h3,
.dimitra .text p {
	color: #fff;
}
.dimitra .text .separator {
	background-color: #fff;
	margin-left: 0;
}
.dimitra .text p {
	width: 90%;
	margin-bottom: 40px;
}
.dimitra-img {
	margin-top: -130px;
	margin-bottom: -130px;
}
.dimitra-img img {
	position: absolute;
	bottom: 0;
	right: 0;
	/* height: 80%; */
}
/*//////////////////////////////////////////////*/
/* Services */
/*//////////////////////////////////////////////*/
.services-parallax {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 800px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), color-stop(18%, rgba(255, 255, 255, 0.95)), color-stop(35%, rgba(255, 255, 255, 0.80)), to(rgba(255, 255, 255, 0.1))), url(../img/services-bg.jpg) fixed;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 18%, rgba(255, 255, 255, 0.80) 35%, rgba(255, 255, 255, 0.1) 100%), url(../img/services-bg.jpg) fixed;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	background-size: cover;
	background-position: center;
}
.services .services-header {
	text-align: center;
}
.services .services-header p {
	font-size: 22px;
	width: 85%;
	margin: 0 auto;
}
.services-cards {
	margin-top: 380px;
}
.service-card {
	position: relative; /* Beacause we will make its childs absolute */
	background-color: #fff;
	height: 466px;
	padding: 10px;
	margin-bottom: 35px;
	-webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.service-card:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
}
.service-card .card-img,
.service-card .card-text {
	position: absolute;
	height: 233px;
	left: 0;
	right: 0;
	border-radius: 0;
}
.service-card .card-img {
	top: 0;
	background-size: cover;
}
.service-card .card-text {
	bottom: 0;
	padding: 40px;
}
.card-text p {
	font-size: 12px;
	margin-bottom: 25px;
}
.card-text a {
	color: #12616b;
	font-weight: bold;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.card-text a:hover {
	color: #9c2e1a;
}
.full {
	background: url(../img/full.jpg);
}
.advisory {
	background: url(../img/advisory.jpg);
}
.rbnb {
	background: url(../img/rbnb.jpg);
}
.our-work {
	display: block; /* in order margins to have effect */
	margin: 25px auto 0 auto;
}

/*//////////////////////////////////////////////*/
/* Full Service */
/*//////////////////////////////////////////////*/
.full-service,
.advisory-service,
.rbnb-service {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8))), url(../img/full-service.jpg) fixed;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/full-service.jpg) fixed;
	background-size: cover;
	background-position: center;
}
.full-service .text h2,
.full-service .text p,
.advisory-service .text h2,
.advisory-service .text p,
.rbnb-service .text h2,
.rbnb-service .text p {
	color: #fff;
}
.full-service .text .separator,
.advisory-service .text .separator,
.rbnb-service .text .separator {
	background-color: #fff;
	margin-left: 0;
}
.full-service .text p,
.advisory-service .text p,
.rbnb-service .text p {
	width: 90%;
	margin-bottom: 40px;
}
.full-service-img {
	position: absolute;
	background: url(../img/full-service-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	-webkit-clip-path: polygon(30% 0,100% 0, 100% 100%, 0 100%);
	clip-path: polygon(30% 0,100% 0, 100% 100%, 0 100%);
}
/*//////////////////////////////////////////////*/
/* Advisory Service */
/*//////////////////////////////////////////////*/
.advisory-service-img {
	position: absolute;
	background: url(../img/advisory-service-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	-webkit-clip-path: polygon(0 0,100% 0, 100% 100%, 30% 100%);
	clip-path: polygon(0 0,100% 0, 100% 100%, 30% 100%);
}
/*//////////////////////////////////////////////*/
/* RBNB Service */
/*//////////////////////////////////////////////*/
.rbnb-service-img {
	position: absolute;
	background: url(../img/rbnb-service-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	-webkit-clip-path: polygon(30% 0,100% 0, 100% 100%, 0 100%);
	clip-path: polygon(30% 0,100% 0, 100% 100%, 0 100%);
}
/*//////////////////////////////////////////////*/
/* Our Work */
/*//////////////////////////////////////////////*/
.work {
	margin: 0;
	z-index: 89;
	background-color: #003641;
}
.work-text {
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
.carousel-item img {
	display: block;
	/* width: 100%; */
	height: 100vh;
	margin: 0 auto;
}
.carousel-control {
	width: 58px;
}
.arrow {
	position: absolute;
	/* width: 18px; */
	/* height: 34px; */
	/* background-color: #000; */
}
.arrow img {
	width: 100%;
	height: 100%;
}
.arrow-prev {
	right: 0;
}
.arrow-next {
	left: 0;
}
/*//////////////////////////////////////////////*/
/* Contact */
/*//////////////////////////////////////////////*/
.contact-form .form .form-checkbox {
	width: 30px !important;
}
input {
	width: 350px;
	height: 44px;
	border-radius: 22px;
	margin-right: 10px;
	border: none;
	padding-left: 25px;
	outline: none;
}
textarea {
	width: 350px;
	height: 300px;
	border-radius: 3px;
	padding-top: 15px;
	padding-left: 25px;
	border: none;
	outline: none; /* to disappear the blue outline when the area is focused */
}
.contact {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,54,65,0.85)), to(rgba(0,54,65,0.85))), url(../img/hero-bg2.jpg);
	background: linear-gradient(rgba(0,54,65,0.85), rgba(0,54,65,0.85)), url(../img/hero-bg2.jpg);
	background-size: cover;
	background-position: center;
	-webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.4);
	z-index: 90;
}
.contact .text {
	margin-bottom: 35px;
}
.contact h2,
.contact p {
	color: #fff;
	width: 90%;
}
.contact .separator {
	background-color: #fff;
	margin-left: 0;
}
.contact .info p {
	font-size: 14px;
}
.contact-form .form input,
.contact-form .form textarea {
	width: 100%;
	margin-bottom: 20px;
}
.contact-form .form textarea {
	height: 165px;
}
.contact-form .form button {
	cursor: pointer;
}
.contact-form .form button:hover {
	color: #003641;
}
/*//////////////////////////////////////////////*/
/* Footer */
/*//////////////////////////////////////////////*/
footer {
	background-color: #f2f2f2;
	z-index: 1;
}
footer .fixed-content {
	position: fixed;
	/* height: auto; */
	bottom: 0;
	padding: 0;
}
footer h6 {
	color: #333;
	font-weight: bold;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin-bottom: 20px;
}
footer p.socials {
	color: #333;
	font-size: 14px;
	font-weight: bold;
}
footer a:not(.social-link) {
	font-weight: bold;
	-webkit-transition: all .2s;
	transition: all .2s;
}
footer a:not(.social-link):hover {
	color: #017d96 !important;
}
footer p {
	margin-bottom: 10px !important;
}
footer p,
footer a,
footer p  a.email {
	font-size: 12px;
	color: #555;
	font-weight: 400;
}
.footer-nav ul {
	-webkit-column-count: 2;
	column-count: 2; /* devides an element into the specified number of column */
	padding-left: 0;
}
.footer-nav ul li {
	display: block;
	text-align: left;
	margin-bottom: 10px;
}
.footer-nav ul li a {
	color: #333;
	padding: 0;
}
footer div.socials {
	margin-left: 15px;
}
div.socials a.social-link {
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 14px;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
div.socials a.social-link:hover {
	background: #000;
}
.copyright{
	height: 50px;
	background-color: transparent;
	border-top: 1px solid #cecece;
}
.copyright p {
	float: left;
}
.copyright a {
	float: right;
}
.copyright p,
.copyright a {
	line-height: 50px; /* the exact height of .copyright */
	margin-bottom: 0 !important;
}

/*//////////////////////////////////////////////*/
/* Animation Styles */
/*//////////////////////////////////////////////*/
.feature:nth-child(2) {
	-webkit-animation-delay: 150ms;
	        animation-delay: 150ms;
}
.feature:last-child {
	-webkit-animation-delay: 300ms;
	        animation-delay: 300ms;
}

.animated-card:nth-child(2) {
	-webkit-animation-delay: 150ms;
	        animation-delay: 150ms;
}
.animated-card:last-child {
	-webkit-animation-delay: 300ms;
	        animation-delay: 300ms;
}