/* FONT */
@font-face {
  font-family: simssans;
  src: url(fonts/sims_sans.otf);
}

/* SELECT */

::-moz-selection { /* Firefox */
  color: white;
  background: #a6e329;
}
::selection {
  color: white;
  background: #a6e329;
}

/* SCROLL BAR*/

::-webkit-scrollbar {
  width: 10px;
  background-color: #303030;
}
::-webkit-scrollbar-thumb {
  background-color: #a6e329;
}

* {
    margin: 0;
    padding: 0;
}

/* LOADING ANIMATION */
body {
	animation: fadeInAnimation ease 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
				background-color: #e1f2bd;
	}
	100% {
		opacity: 1;
	}
}

#main {
    background-color: #fff;
    padding-top: 100px;
}

/* SECTION */
section {
    padding: 50px 0;
}

section h1 {
    font-size: 30pt;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: simssans;
    color: #4276b7;
    text-align: center;
}

section p {
    font-family: 'Open Sans', sans-serif;
    color: #303030;
    background-color: #93ddf5;
    font-size: 13pt;
    padding: 50px;
}

.logo {
  float: left;
  padding: 10px;
  margin-top: 50px;
}

/* HEADER */
header {
    font-family: simssans;
    text-align: center;
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-image: linear-gradient(to right, #4276b7 , #3cb9e1);
  	box-shadow: 0 3px 6px rgba(0,0,0,0.30), 0 3px 6px rgba(0,0,0,0.30);
    -webkit-transition: height .3s;
    -moz-transition: height .3s;
    -ms-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
}

header nav a {
    color: #eee;
    line-height: 100px;
    margin-left: 50px;
    font-size: 25pt;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

header nav a:hover {
    color: #93ddf5;
    text-decoration: none;
}

/* FOOTER */
footer {
    background-image: linear-gradient(to right, #4276b7 , #3cb9e1);
    text-align: center;
    padding: 10px;
    position : relative;
    -webkit-box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.50);
    box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.50);
}

footer a {
    font-family: simssans;
    color: #eee;
    font-size: 13pt;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    padding: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

footer a:hover {
    color: #93ddf5;
}

/* VIDEO */
.clearfix:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
    padding: 10px;
}

/* RESPONZIVNOST NAVIGACIJE I FOOTERA*/
@media all and (max-width:600px) {
    footer a {
        display: block;
    }
}

@media all and (min-width:760px) {
  header.smaller {
      height: 65px;
  }

  header.smaller nav a {
      font-size: 20pt;
      line-height: 65px;
  }
}
