﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	background: #fff;
	color: #666666;
	font-family: "Open Sans", sans-serif;
}

a {
	color: #2dc997;
}

a:hover, a:active, a:focus {
	color: yellow;
	outline: none;
	text-decoration: none;
}

p {	
	padding: 0;
	margin: 0 0 30px 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", sans-serif;  
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	padding: 30px 0;
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 997;
}

#header #logo {  
	float: left;
}

#header #logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 6px 0;
	line-height: 1;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
	color: #fff;
}

#header #logo img {
	padding: 0;
	margin: 0;
}

@media (max-width: 768px) {
	#header #logo h1 {
		font-size: 26px;
}
	#header #logo img {
		max-height: 40px;
	}
}

#header.header-fixed {
	background: rgba(52, 59, 64, 0.9);
	padding: 20px 0;
	height: 72px;
	transition: all 0.5s;}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {	
	
	
}

#hero .hero-container {
	background: rgba(0, 0, 0, 0);
	display: table-cell;
	margin: 0;
	padding: 0 10px;
	text-align: center;
	vertical-align: middle;
}

#hero h1 {
	margin: 30px 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
}

#hero h2 {
	color: #eee;
	margin-bottom: 50px;
	font-size: 24px;
}

@media (max-width: 768px) {
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
}

#hero .btn-get-started {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid #fff;
	color: white;
}

#hero .btn-get-started:hover {
	background: yellow;
	border: 2px solid yellow;
	color:black;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/ 
/* Nav Menu Essentials */

.nav-menu, .nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	
}

.nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
	
}

.nav-menu > li {
	float: left;
	
}

.nav-menu li:hover > ul, .nav-menu li.sfHover > ul {
	display: block;
	
}

.nav-menu ul ul {
	top: 0;
	left: 100%;
}

.nav-menu ul li {
	min-width: 180px;
}



/* Nav Menu Container */

#nav-menu-container {
	float: right;
	margin: 0;
}

@media (max-width: 768px) {
	#nav-menu-container {
		
	}
}

/* Nav Meu Styling */

.nav-menu a {
	padding: 0 8px 10px 8px;
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 13px;
	outline: none;
	
}

.nav-menu > li {
	margin-left: 10px;
}
.nav-menu > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #F7C409;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.nav-menu ul {
	margin: 4px 0 0 0;
	border: 1px solid #e7e7e7;
}

.nav-menu ul li {
	background: #fff;
}

.nav-menu ul li:first-child {
	border-top: 0;
}

.nav-menu ul li a {
	padding: 10px;
	color: #333;
	transition: 0.3s;
	display: block;
	font-size: 13px;
	text-transform: none;
}

.nav-menu ul li a:hover {
	background: yellow;
	color: #fff;
}

.nav-menu ul ul {
	margin: 0;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/

.section-header .section-title {
	font-size: 32px;
	color: #111;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	margin-bottom: 5px;
}

.section-header .section-description {
	text-align: center;
	padding-bottom: 40px;
	color: #999;
}

/* About Us Section
--------------------------------*/

#about {
	background: #f7f7f7;
	padding: 80px 0;
    border:1px black solid;
    border-top-left-radius:20px; 
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin:7% 5% 0 5%;
}

#about .about-container .background {
	min-height: 300px;
	
	margin-bottom: 10px;
}

#about .about-container .content {
	background: #fff;
}

#about .about-container .title {
	color: #333;
	font-weight: 700;
	font-size: 32px;
}

@media (max-width: 768px) {
	#about .about-container .title {
		padding-top: 15px;
	}
}

#about .about-container p {
	line-height: 26px;
}

#about .about-container p:last-child {
	margin-bottom: 0;
}





/* Services Section
--------------------------------*/

#services {
	background: white;
	background-size: cover;
	padding: 80px 0 60px 0;
	height:100%
	
}

#services .box {
	padding: 50px 20px;
	margin-bottom: 50px;
	text-align: center;
	border: 1px solid #e6e6e6;
	height: 450px;
	position: relative;
	background: #fafafa;
}



#services .title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#services .title a {
	color: #111;
}

#services .description {
	font-size: 14px;
	line-height: 24px;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
	background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)), url(https://www.hceamericas.com/wp-content/uploads/2016/11/30D-9-Feature-1-e1482325348746.png) fixed center center;
	background-size: cover;
	padding: 80px 0;
	height: 40vh;
}

#call-to-action .cta-title {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}

#call-to-action .cta-text {
	color: #fff;
}





/* Contact Section
--------------------------------*/

#contact {
	background: #f7f7f7;
	padding: 80px 0 40px 0;
}



#contact .info {
	color: #333333;
}

#contact .info i {
	font-size: 32px;
	color: #2dc997;
	float: left;
}

#contact .info p {
	padding: 0 0 10px 50px;
	margin-bottom: 20px;
	line-height: 22px;
	font-size: 14px;
}

#contact .info .email p {
	padding-top: 5px;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/ 
#footer {
	background: #343b40;
	padding: 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .copyright {
	text-align: center;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #ccc;
}

#footer ul li {
	display:inline;
	text-align: center;
	font-size: 13px;
	color: #ccc;
	margin:10px;
}



.tab {
    overflow: hidden;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: black;
	color:white;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #F7C409;
    color:black;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;

	text-align: left;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.tabcontent {
	background-color:#F7C409;
	color:black;
	
}

.tabela {
	border: 1px solid black; 
	border-top-left-radius:20px; 
	border-top-right-radius:20px;
	width:100%;

}


@-moz-document url-prefix() {
    #slika {
        display:cover;
	
	height:100%;
    }
}