@charset "utf-8";
/* Svetlo zelena: #3ab890 */

/* Tamno zelena: #339999 */

html, body {
	margin: 0px;
	padding: 0px;
	scroll-behavior: smooth;
}
body {
	font-family: 'Merriweather', serif;
}
img {
	vertical-align: bottom;
}
h1 {
	font-family: 'Satisfy', cursive;
	font-size: 80px;
	text-align: center;
}
h2 {
	text-align: center;
	font-size: 25px;
}
.wrapper {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
#focus-div {
	visibility: hidden;
}
h2, #testimonials, #contact-info, #directions {
	margin: 30px 0px;
}
#buttonTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 2;
	font-size: 16px;
	border: none;
	outline: none;
	background-color: #3ab890;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 5px;
}
#buttonTop:hover {
	background-color: #107482;
}
#about-content h1, #gallery-content h1, #contact-content h1 {
	font-size: 70px;
}
#contact-content, #about-content, #homepage-content, #gallery-content {
	outline: none;
}
/**Header section**/

#header-contact {
	background-color: #3ab890;
}
#header-contact .wrapper {
	display: flex;
	justify-content: center;
}
#header-contact p {
	margin: 10px 0px;
	color: #fff;
}
#header-contact .wrapper p {
	margin-right: 20px;
}
#header-contact .wrapper a {
	text-decoration: none;
}
#header-contact .wrapper a:link, #header-contact .wrapper a:visited {
	color: #fff;
}
#header-contact .wrapper a:hover {
	color: #107482;
}
#nav-menu {
	display: flex;
	justify-content: space-around;
}
#nav-menu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
#nav-menu ul li {
	float: left;
}
#nav-menu ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: 25px 10px;
	padding: 15px;
	text-transform: uppercase;
}
#nav-menu ul li a:link, #nav-menu ul li a:visited {
	color: #000;
}
#nav-menu ul li a:hover {
	color: #fff;
	background-color: #3ab890;
	border-radius: 15px;
	transition: ease .3s;
}
#nav-menu #active {
	color: #fff;
	background-color: #3ab890;
	border-radius: 15px;
}
/****/

/**Main section**/

/*Homepage*/
#hero-image {
	background-image: url("../images/hero3.jpg");
}
#hero-image, #hero-image-about {
	height: 500px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
#hero-text {
	color: #fff;
}
#hero-text h1 {
	margin: 0px;
}
#hero-text h3 {
	text-align: center;
}
#hero-image::after, #hero-image-about::after {
	content: "";
	position: absolute;
	height: 500px;
	width: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
	z-index: 5;
}
#homepage-content .wrapper > p {
	text-align: center;
}
hr {
	border: 0;
	height: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#services {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 10px;
}
#services .services-box {
	flex-basis: 600px;
}
.services-box {
	display: flex;
	margin-bottom: 20px;
}
.services-box .services-icon {
	align-self: center;
}
.services-icon {
	padding: 10px;
}
.services-text {
	padding: 10px;
	border-left: 3px solid #3ab890;
}
/*About us*/
#hero-image-about {
	background-image: url(../images/hero-about2.jpg);
}
#about-us {
	text-align: center;
	margin: 30px 0px;
}
#testimonials {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
}
#testimonials .t-box {
	flex-basis: 500px;
	padding: 25px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 10px;
	border: 1px solid #BBBBBB;
}
.t-box {
	position: relative;
}
.t-box i {
	position: absolute;
	color: #107482;
}
.t-box .top-q {
	top: -30px;
	left: 10px;
}
.t-box .bottom-q {
	bottom: -30px;
	right: 10px;
}
.t-box p {
	margin: 0px;
}
/*Gallery*/

#gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 30px 0px;
}
#gallery div {
	flex-basis: 280px;
	margin: 10px 10px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 10px;
}
#gallery div img {
	border-radius: 10px;
	outline: none;
}
#gallery div img:hover {
	opacity: 0.7;
	transition: .3s;
	cursor: pointer;
}
/*Contact*/

iframe {
	width: 100%;
	height: 500px;
	vertical-align: bottom;
}
#contact-info {
	display: flex;
	justify-content: space-between;
}
#contact-info p {
	margin: 0px;
}
#contact-details {
	flex-basis: 300px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
	border-right: 2.5px solid #3ab890;
	border-radius: 10px;
	padding: 10px;
}
#contact-details p:nth-child(odd) {
	margin-top: 20px;
	margin-bottom: 5px;
}
#contact-form {
	flex-basis: 850px;
}
#contact-info div h3 {
	text-align: center;
}
#contact-info a {
	text-decoration: none;
}
#contact-info a:link, #contact-info a:visited {
	color: #3ab890;
}
#contact-info a:hover {
	color: #107482;
}
#directions {
	display: flex;
	justify-content: space-around;
}
#directions div {
	text-align: center;
	flex-basis: 540px;
}
input[type=text], textarea {
	font-family: 'Merriweather', serif;
	width: 100%;
	padding: 15px;
	border: 2.5px solid #3ab890;
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 15px;
	margin-top: 5px;
	resize: vertical;
}
button[type=submit] {
	background-color: #3ab890;
	padding: 10px 20px;
	border-radius: 5px;
	color: #fff;
	border: none;
}
button[type=submit]:hover {
	transition: ease .3s;
	background-color: #107482;
}
textarea:focus, input:focus {
	outline: none;
}
#directions i {
	color: #107482;
}
/*Confirmation*/

#confirmation {
	text-align: center;
}
#confirmation button {
	margin: 10px 0px;
	padding: 15px 40px;
	border-radius: 5px;
	background-color: #3ab890;
	border: none;
	outline: none;
}
#confirmation button a {
	text-decoration: none;
}
/****/

/**Footer section**/

#upper-section {
	background-color: #343434;
	color: #fff;
	padding: 30px 0px;
}
#upper-section .wrapper > h3 {
	font-family: 'Satisfy', cursive;
	font-size: 40px;
	margin-top: 0px;
}
#upper-section a:link, #upper-section a:visited {
	text-decoration: none;
	color: #3ab890;
}
#upper-section a:hover {
	color: #107482;
}
#footer-details {
	display: flex;
	justify-content: space-between;
}
#footer-details h3 {
	text-align: center;
}
#footer-details ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
#footer-details ul li {
	margin: 20px 0px;
}
#footer-details iframe {
	height: 250px;
	width: 350px;
}
#footer-details>div {
	padding: 0px 50px;
}
#footer-details>div:last-child {
	padding: 0px;
}
#footer-contact button {
	width: 100%;
}
#footer-contact button, #confirmation button {
	cursor: pointer;
	margin: 10px 0px;
	padding: 10px 30px;
	border-radius: 5px;
	background-color: #3ab890;
	color: #fff;
	border: none;
	outline: none;
	text-transform: uppercase;
}
#footer-contact button:first-child {
	margin-top: 0px;
}
#footer-contact button:hover, #confirmation button:hover {
	transition: ease .3s;
	background-color: #107482;
}
#copyright {
	text-align: center;
	background-color: #000;
}
#copyright p {
	margin: 0px;
	padding: 10px 0px;
	color: #fff;
}
#copyright a:link, #copyright a:visited {
	text-decoration: none;
	color: #3ab890;
}
#copyright a:hover {
	color: #107482;
}

/****/

/**Animacije**/

.slideLeft {
	animation: slideLeft 3s;
}
.slideRight {
	animation: slideRight 3s;
}

@keyframes slideRight {
	from {
		left: 0px;
		opacity: 0;
	}
	to {
		right: auto;
		opacity: 1;
	}
}

@keyframes slideLeft {
	from {
		right: 0px;
		opacity: 0;
	}
	to {
		left: auto;
		opacity: 1
	}
}

/**Responsive design**/

/****/
