html {
      scroll-behavior: smooth;
    }

body{
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 200;
}
header{
  background-color: darkkhaki;
  color: white;
  height: 100px;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  z-index: 1;
}

#header-logo{
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
}

header h2{
  padding: 0!important;
  font-weight: lighter;
  font-size: 27px;
  text-align: left;
}

header h3{
  margin: 0;
  font-weight: lighter;
  font-size:16px;
  text-align: left;
}

#header-logo img{
  width: 50px;
  height: 50px;
}

#header-contact{
  position: absolute;
  top: 10px;
  right: 20px;
  text-align: right;
}

#header-contact p{
  margin: 0 0 5px 0;
}

section{
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
section#sec-1{
  height: 100vh;
  background-image: url("../images/header-bg.png");
}
#sec-1 div{
  background-color: #5A678E;
  color: white;
  width: 100%;
  padding-bottom: 40px;
  text-align: center;
  margin-top: 40vh;
  position: absolute;
  box-shadow:  0 20px 25px -5px rgb(90,103,142, 0.2), 0 10px 10px -5px rgb(90,103,142, 0.2);
}
h1{
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 30px;
}
h1 span{
  display: block;
  font-size: .7em;
}
a{
  padding: 10px 15px;
  border: 1px solid white;
  border-radius: 2px;
  cursor:pointer;
  transition: all linear .2s .1s;
  text-decoration: none;
  color: white;
}
a:hover{
  color: #5A678E;
  border: 1px solid #5A678E;
  background-color: white;
}

section#sec-2{
  background-image: url("../images/about-bg.jpg");
  height:auto;
}

#sec-2 div{
  padding: 20px;
}

#about{
  background-color: white;
  color: darkgrey;
  margin-bottom: 50px;
  color: #4d5d80;
}

#about span{
  display: block;
  text-align: center;
  font-weight: 400;
}

.citation{
  background-color: darkkhaki;
  color: white;
}

h2{
  font-weight: 200;
  text-align: center;
  margin: 0;
  padding: .2em;
}

section#sec-3{
  background-image: url("../images/tkm-bg.jpg");
  padding: 40px 0;
}

#s3-wrap div{
  background-color: #5A678E;
  color: white;
}

.s3-div{
	padding: 0 20px;
}

#sec-3 img{
  display: none;
}


section#sec-4{
  background-image: url("../images/tkm-bg-2.jpg");
  padding: 40px 0;
}

#sec-4 div{
  background-color: white;
  padding: 0 20px 20px;
  color: #4d5d80;
}


footer, #faq{
  background-color: #5A678E;
  color: white;
}

#faq{
  padding: 20px 10px;
}

.bottom-cit-wrap{
  padding: 20px 20px 40px;
}

#sec-5 {
  background-image: url("../images/tkm-bg-3.jpg");
  text-align: center;
  padding: 20px 0;
}

#sec-5 h2{
  background-color: #5A678E;
  color: white;
  padding-top: 20px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer{
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

#lokacija{
	background-image: url(../images/location.png);
    width: 100%;
    height: 250px;
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 500px;
}

#lokacija a{
	background-color: transparent;
	border: none;
}

.location-title{
	margin-top: 20px;
	margin-bottom: 10px;
}

.accordion {
  background-color: #5A678E;
  color: white;
  border: none;
  border-bottom: 1px lightgrey solid;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#sec-6 {
  background-image: url("../images/tkm-bg-4.jpg");
}

#s6-wrap{
  background-color: white;
  text-align: center;
  margin-top: 20px;
    padding: 0 20px 20px;
    color: #4d5d80;
}

h2.tagline{
  background-color: darkkhaki!important;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  #sec-2,
  #sec-3,
  #sec-4,
  #sec-5,
  #sec-6
  {
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
  }

  #sec-2 #s2-wrap,
  #sec-3 #s3-wrap,
  #sec-4 #s4-wrap,
  #sec-5 #s5-wrap,
  #sec-6 #s6-wrap
  {
    width: 66.6667%;
  }

  .bottom-cit-wrap{
    margin-top: 30px;
  }
	


}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
 main{
   width: 100%;
   max-width: 1920px;
   margin: auto;
   line-height: 1.4;
 }
 h2{
      font-size: 42px;
 }

 #sec-2 #s2-wrap{
   width: 80%;
   height: 100vh;
 }

 #s2-wrap{
   display: flex;
   justify-content: space-between;
 }

 .citation, #about{
   height: fit-content;
   margin: 30px;
   padding: 40px!important;
 }

 #sec-2 .citation{
   margin-top: 500px;
 }

 #sec-3 img{
   display: block;
   width: 33.333%;
   height: 100%;
   object-fit: cover;
 }

 #s3-wrap{
   width: 100%!important;

   display: flex;
 }

 #s3-wrap div{
   width: 66.6667%!important;
 }

 section#sec-3 {
   padding: 0;
 }

 #s3-wrap h2{
   display: block;
   margin: 60px 0 20px 0!important;
 }

 .tkm-copy p{
   margin: 0;
 }

 #sec-3 .tkm-copy{
   -webkit-column-count: 2; /* Old Chrome, Safari and Opera */
-moz-column-count: 2; /* Old Firefox */
column-count: 2;
width: 100%!important;
 }

 #sec-4{
   height: 100vh;
 }

 #s4-wrap{
   height: fit-content;
   width: 50%!important;
   padding-top: 20px;
   margin-top:100px;
 }

 #s5-wrap{
   display: flex;
   width: 80%!important;
   justify-content: space-between;
 }

 #s5-wrap .citation {
   width: 410px;
   padding: 0 20px!important;
   margin-top:500px;
   margin-right: 0;
 }

 #s5-wrap h2 {
   font-size: 28px;
 }

 #faq{
   width: 100%;
   max-width: 650px;
   height: fit-content;
   text-align: left;
 }



}
