* {
    margin: 0;
    padding: 0;
}

/* POCETNA CSS */

#header {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #242582;
	padding: 20px;
}

.header-logo {
	width: 20%;
	text-align: center;
}

.header-logo img {
	width: 125px;
	border-radius: 50%;
}

.header-meni {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	text-align: center;
}

.header-time {
	width: 20%;
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	color: #E6AF2E;
}
.header-time img{
	width: 310px;
}


#main-content {
	
}

.main-naslovna {
	display: flex;
	justify-content: center;
	width: 100%;
	background: #2F2FA2;
}

.main-video {
	display: inline-flex;
	width: 40%;
}

.main-video video {
	width: 100%;
}

.main-text {
	width: 60%;
	padding: 20px;
	color: #fff;
}

.main-text h2 {
	font-size: 30px;
}

.main-text p {
	font-size: 20px;
	padding-top: 20px;
	letter-spacing: 0.5px;
	word-spacing: 10px;
	text-align: justify;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
	
}

.main-aktivnost {

}

.aktivnost {
	display: flex;
	justify-content: center;
	margin: 20px;
}

.border-blue {
	border: 5px solid #2F2FA2;
	border-radius: 5px;
}

.border-yellow {
	border: 5px solid #E6AF2E;
	border-radius: 5px;
}

.aktivnost-slike {
	width: 70%;
	text-align: center;
}

.aktivnost-slike img {
	width: 300px;
	height: 240px;
	padding: 10px;
	object-fit: cover;
}

.aktivnost-text {
	width: 30%;
	padding: 10px;
}

.aktivnost-text h2 {

}

.aktivnost-text p {
	padding: 10px 0 10px 0;
}

.aktivnost-text a {
	display: inline-block;
	background-color: #E6AF2E;
	color: white;
	padding: 12px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 15px;
}
.aktivnost-text a:hover{
	color:bisque;
	cursor: pointer;
	
  }

.main-sponzori {
	padding: 20px;
}

#footer {
	
}

.footer-headers {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #242582;
	padding: 20px;
}

.footer-headers h3 {
	font-size: 26px;
}

.footer-lokacija {
	width: 33.33%;
	text-align: center;
	color: #fff;
}

.footer-invisible {
	width: 33.33%;
}

.footer-kontakt {
	width: 33.33%;
	text-align: center;
	color: #fff;
}

.footer-content {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #242582;
	padding: 0 20px 20px 20px;
}

.footer-map {
	width: 33.33%;
	text-align: center;
}

.footer-map iframe {
	width: 80%;
	height: 300px;
	border-radius: 50px;
}

.footer-logo {
	width: 33.33%;
	text-align: center;
}

.footer-logo img {
	width: 150px;
	border-radius: 50%;
}

.footer-links {
	display: flex;
	justify-content: center;
	width: 33.33%;
}

.footer-links ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	padding-top: 15px;
}

.footer-links a {
	color: #fff;
	font-size: 22px;
}

.footer-links i {
	margin-right: 10px;
	font-size: 30px;
}



/*DROPDOWN MENI*/

a {
    text-decoration: none;
}

.header-meni ul {
    background: #E6AF2E;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.header-meni li {
    color: #fff;
    background: #E6AF2E;
    display: block;
    float: left;
    padding: 1.5rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
    font-size: 20px;
}

.header-meni li:not(.dropdown li) {
    border: 1px solid #fff;
}

.header-meni li a {
    color: #fff;
}

.header-meni li:hover,
    li:focus-within:not(.footer-links li) {
    background: #aa7e17;
    cursor: pointer;
}

.header-meni li:focus-within a {
    outline: none;
}

.header-meni ul li ul {
    background: #E6AF2E;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1.5rem;
    left: 0;
    display: none;
}

.header-meni ul li:hover > ul,
    ul li:focus-within > ul,
    ul li ul:hover,
    ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block
}

.header-meni ul li ul li {
    clear: both;
    width: 100%;
}

.header-meni ul li ul li:after {
    content: "";
    display: block;
    margin: 0 auto ;
    width: 95%;
    border-bottom: solid 3px #fff;
    padding-bottom: 5px;
}

/*SLIDER*/


@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
	font-family: 'Poppins', sans-serif;
}

.slider {
	max-width: 1100px;
	display: flex;
}

.slider .card {
	flex: 1;
	margin: 0 10px;
	background: #fff;
}

.slider .card .img {
	height: 300px;
	width: 100%;
}

.slider .card .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.slider .card .content {
	padding: 10px 20px;
}

.card .content .title {
	font-size: 25px;
	font-weight: 600;
	text-align: center;
}

.card .content .sub-title {
	font-size: 20px;
	font-weight: 600;
	color: #E6AF2E;
	line-height: 20px;
	text-align: center;
}

.card .content p {
	text-align: justify;
	margin: 10px 0;
}



.no-js .owl-carousel, .owl-carousel.owl-loaded {
    margin: 0 auto;
}

/*Mobitel*/
@media (max-width: 767px){
	.main-naslovna{
		width: 100%;
		flex-wrap: wrap;
	  }
	  .main-video{
		width: 100%;
	  }
	  .main-text{
		width: 100%;
	  }
	  .main-text p{
		font-size: 20px;
		text-align: center;
	  }
	  .main-text h2{
		text-align: center;
	  }

	  #header {
		flex-wrap: wrap;
	  }

	  .header-logo {
		width: 100%;
	  }

	  .header-meni {
		width: 100%;
	  }

	  .header-time {
		width: 100%;
	  }

	  .header-meni li {
		float: none;
	  }

	  .footer-invisible {
		display: none;
	  }

	  .footer-kontakt {
		display: none;
	  }

	  .footer-content {
		flex-wrap: wrap;
	  }

	  .footer-map {
		width: 100%;
	  }

	  .footer-logo {
		width: 100%;
	  }

	  .footer-links {
		width: 100%;
	  }
	  .header-meni ul{
		z-index: 99999999999;
	  }
	  .aktivnost-text{
		width: 100%;
	  }
	  .aktivnost{
		flex-wrap: wrap;
	
	}
	.aktivnost-slike{
		width: 100%;
	}
	.slider .card .img{
		height: 100px;
	}
	.card .content .sub-title{
		font-size: 15px;
	}
	.card .content .title{
		font-size: 15px;
	}
	.header-logo img{
		width: 105px;
	}
	
}

/*Mobitel*/

@media (max-width: 320px){
	.aktivnost-slike img{
		width: 255px;
	}
	.header-time img {
		width: 290px;
	}
	.footer-links a{
		font-size: 18px;
	}
	.card .content .title{
		font-size: 15px;
	}
	.card .content .sub-title{
		font-size: 15px;
	}
	
}




/*Tablet*/

@media (min-width: 768px) and (max-width:1024px){
.main-video{
	width: 100%;
	padding-top: 10px;
}
.main-text{
  width: 100%;
}
.main-text p{
  font-size: 20px;
  text-align: center;
}
.main-text h1{
  text-align: center;
}
.main-naslovna{
  width: 100%;
  flex-wrap: wrap;
}
.header-time img {
	width: 160px;
}
.footer-invisible {
	width: 26.67%;
}
.footer-kontakt {
	width: 40%;
}
.footer-logo {
	width: 26.67%;
}
.footer-links {
	width: 40%;
}
.footer-links a {
	font-size: 18px;
}
.footer-links i {
	font-size: 20px;
}
.footer-map iframe {
	height: 200px;
}
.header-logo img {
width: 96px;
}
.header-meni li{
	padding: 10px;
}
.slider .card .img{
	height: 200px;
}
.aktivnost{
	display: block;
}
.aktivnost-slike{
	width: 100%;
}
.aktivnost-text{
	width: 100%;
}
.header-meni ul li ul{
	z-index: 1000;
}

}





