*{
	margin:0;
	padding:0;
	font-family: 'Arial';
}
#rawtext:hover{
	color:#555;
}
    
.header{
	min-height: 85vh;
	width:100%;
	background-position:center;
	background-size:cover;
	position:relative;
	animation: headeranimate 20s ease-in-out infinite;
}
/* Animacija headera */
@keyframes headeranimate{
	0%, 100%{
		background-image:url("imgs/header5.jpg");
	}
	20%{
		background-image:url("imgs/header2.jpg");
	}
	40%{
		background-image:url("imgs/header3.jpg");
	}
	60%{
		background-image:url("imgs/header4.jpg");
	}
	80%{
		background-image:url("imgs/header1.jpg");
	}
}

/* nav */
nav{
	display:flex;
	padding:1% 15%;
	justify-content: space-between;
	align-items:center;
}
.nav-links{
	flex:1;
	text-align:right;
}
.nav-links ul li{
	list-style:none;
	display:inline-block;
	padding:8px 12px;
	position: relative;	
}
.nav-links ul li a{
	color:#fff;
	text-decoration:none;	
	font-weight:700;
	font-size: 15px;
}
.nav-links ul li::after{
	content:'';
	width:0%;
	height:4px;
	background:#4f7dbf;
	display:block;
	margin:auto;
	transition:0.5s;
}
.nav-links ul li:hover::after{
	width:100%;
}

nav .icon{
	display: none;
}
/* nav */

.text-box{
	width:70%;
	color:#fff;
	position:absolute;
	top:45%;
	left:50%;
	transform:translate(-50%, -50%);
	text-align:center;
}

h1{
	font-size:62px;	
	font-weight:600;
}
.text-box p {
	margin:10px 0 40px;
	font-size:20px;
	color:#fff;
}

.hero-btn{
	display:inline-block;
	text-decoration:none;
	color:#fff;
	border:0px;
	padding:12px 34px;
	font-size:15px;
	font-weight:600;
	position:relative;
	cursor:pointer;
	border-radius: 10px;
	margin:0 10px;
	border:2px solid #fff;
}
.hero-btn:hover{
	background: #4f7dbf;
	transition: 0.5s;
	color: #fff;
	border:2px solid #4f7dbf;
}
.course{
	width:80%;
	margin:auto;
	text-align:center;
	padding-top:100px;
}
p, pre{
	color:#555;	
	font-size:17px;
	font-weight:300;
	line-height:22px;
	padding:10px;
}
pre{
	white-space: pre-wrap;       /* Since CSS 2.1 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;
}
.row{
	margin-top:5%;
	display:flex;
	justify-content:space-between;
}
.course-col{
	flex-basis:31%;
	background:#f5f5f5;
	border-radius:10px;
	margin-bottom:5%;
	padding:20px 15px;
	box-sizing:border-box;
	transition:0.5s;
}
.course-col img{
	width: 95%;
	border-radius: 10px;
}
.course-col p{
	padding-bottom: 0;
	text-align:left;
	border:none;
    font-weight: normal;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
h3{
	text-align:left;
	font-weight:600;
	margin:10px 0 0 5%;
}
@media(max-width:1200px){		
	html, body {
		overflow-x: hidden;
	}
	nav{
		padding:4% 15%;
	}
	.nav-links ul li{
		display:block;
	}
	.nav-links{
		position:absolute;
		background:#4f7dbf;
		height:100vh;
		width:200px;
		top:0;
		right:-200px;
		text-align:left;
		z-index:2;	
		transition:1s;
	}
	nav .icon{
		display:block;
		color:#fff;
		margin:10px;
		font-size:22px;
		cursor:pointer;
	}
	.nav-links ul{
		padding:30px;	
	}
	.hero-btn{
		margin:5px 0;
	}
	.text-box{
		width:80%;
	}
	.text-box h1{
		font-size:30px;
	}
	.row{
		flex-direction:column;
	}

}

/*-----------O NAMA------------*/
.about-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	animation: headeranimate 20s ease-in-out infinite;
}

.secondary-text-box{
	width:70%;
	color:#fff;
	position:absolute;
	top:27%;
	left:50%;
	transform:translate(-50%, -50%);
	text-align:center;
}
.secondary-text-box h1{
	font-size:63px;
}
.about-us{
	width:65%;
	margin:auto;
	padding-bottom:50px;
}
.tab{
	display:block;
	margin-left: 2%;
}
@media(max-width:1200px){
	.about-us{		
	width:90%;
	}
	.secondary-text-box h1{
		font-size: 30px;
	}
}
/*-----------Kontakt------------*/
.contact-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	animation: headeranimate 20s ease-in-out infinite;
}
.contact{
	width:65%;
	margin:auto;
	padding-bottom:50px;
}
.contact-col{
	flex-basis:48%;
	padding:30px 2px;
}
.contact-col p{
	color:#555;	
	font-size:18px;
	font-weight:300;
	line-height:22px;
	padding:10px;
}
.comment-box{
	border:1px solid #ccc;
	padding:10px 20px;
}
.comment-box h3{
	text-align:left;
}
.comment-form input, .comment-form textarea{
	width:100%;
	padding:10px;
	margin:15px 0;
	box-sizing:border-box;
	border:none;
	outline:none;
	background:#f0f0f0;
}
.comment-form button{
	margin:10px 0;
	color:#4f7dbf;
	background-color:#fff;
	border:2px solid #4f7dbf;
}

@media(max-width:1200px){
	.contact{		
	width:90%;
	}
}
/*-----------Usluge------------*/
.services-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	margin-bottom:30px;
	animation: headeranimate 20s ease-in-out infinite;
}
.services{
	width:65%;
	margin:auto;
	padding-bottom:10px;
}

.collapsible-btn {
  background-color: #fff;
  color:#555;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
}

.collapsible-active, .collapsible-btn:hover {
  background-color: #4f7dbf;
  color:#fff;
  transition:0.25s;
}
.services-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f5f5f5;
}

.collapsible-btn:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  float: right;
  margin-left: 5px;
  font-weight: bold;
}

.collapsible-active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
  color:#fff;
}

.carousel-image {
	display: block;
	height: 300px;
	/* set min-width,
	   allow images to determine cell width */
	min-width: 150px;
	max-width: 100%;
	margin-right: 10px;
}
.carousel{
	margin-bottom: 35px;
}
.carousel.is-fullscreen .carousel-image {
	height: auto;
	max-height: 100%;
}

@media(max-width:1200px){
	.services{		
	width:90%;
	}
}

/*-----------Dokumenti------------*/
.documents-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	margin-bottom:30px;
	animation: headeranimate 20s ease-in-out infinite;
}
.documents{
	width:65%;
	margin:auto;
	padding-bottom:10px;
}

.documents-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f5f5f5;
}
.documents-content a{
	text-decoration: none;
}
.documents-content p:hover{
	color:#4f7dbf;
}
.documents-content img{
	height: 30px;
	margin-right: 10px;
	margin-bottom: 5px;
	vertical-align: middle;
}
.collapsible-btn:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  float: right;
  margin-left: 5px;
  font-weight: bold;
}

.collapsible-active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
  color:#fff;
}

@media(max-width:1200px){
	.documents{		
	width:90%;
	}
}

/*---------------Obavijesti------------------*/

.news-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	animation: headeranimate 20s ease-in-out infinite;
}
.news{
	width:1200px;
	margin:auto;
	padding-bottom:50px;
}
.news-img-col{
	width:40%;
}
.news-img-col img{
	width:100%;	
	border-radius: 10px;
}
.news-p-col{
	width:60%;
	overflow-y: hidden;
}
.news-p-col h2{
	margin-left: 10px;
	margin-top: 5px;
}
.news-row{
	margin:2% 0 2%;
	display:flex;
	justify-content:space-between;
	background:#f5f5f5;
	border-radius:10px;
	padding:20px;
	box-sizing:border-box;
	transition:0.5s;
}
.news-row:hover{
	box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width:1200px){
	.news{		
		width:90%;
	}
	.news-img-col{
		width:70%;
		margin: auto;
	}
	.news-p-col{
		width:100%;
	}
	.news-row{		
		flex-direction:column;
	}
}
@media(max-width:700px){
	.news-img-col{
		width:100%;
	}
}

/*-----------Dokumenti------------*/
.procurement-header{
	height:50vh;
	width:100%;
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
	margin-bottom:30px;
	animation: headeranimate 20s ease-in-out infinite;
}
.procurement{
	width:65%;
	margin:auto;
	padding-bottom:10px;
}
.procurement-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f5f5f5;
}
.procurement-content a{
	text-decoration: none;
}
.procurement-content p:hover{
	color:#4f7dbf;
}
.procurement-content img{
	height: 30px;
	margin-right: 10px;
	margin-bottom: 5px;
	vertical-align: middle;
}

@media(max-width:1200px){
	.procurement{		
	width:90%;
	}
}
