*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}
html {
    font-size: 62.5%
}
body {
	font:400 1.6rem/1.5 'Open Sans', sans-serif;
	color:#000;
    min-height: 100vh;
    letter-spacing: 0.1rem;
}
.container {
	max-width: 1100px;
    margin: 0 auto;
}
.container-narrow {
	max-width: 930px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-banner {
    background: url(../img/nije-gotov.jpg) no-repeat;
    background-size: cover;
    position: relative;
    height: 70vh;
    color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
}
.main-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 1;
}
.main-banner .container {
    z-index: 2;
    position: relative;
    flex: 1;
    text-align: center;
}
h1 {
    font-weight: 800;
    font-size: 8rem;
    margin-bottom: 2rem;
}
h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}
.section-title::after {
    content: "";
    width: 84px;
    height: 8px;
    border-radius: 6px;
    background: #0C4076;
    display: block;
    margin: 2rem auto;
}
#list {
    list-style: none;
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin:2rem auto 6rem;
}
#list li {
        box-shadow: 3px 9px 28px rgb(43 55 104 / 9%);
    border-radius: 20px;
    font-weight: 600;
    padding: 15px 20px;
    margin-bottom: 4rem;
}
li.soon {
    position: relative;
    opacity: .5;
    margin-top: 8rem;
}
li.soon::before {
    content: "Uskoro";
    color: #fff;
    background: #0C4076;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.4rem;
    position: absolute;
    top: -30px;
    left: -10px;
}
.btn {
    text-decoration: none;
    color: #fff;
    background: #0C4076;
    border:2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 15px;
    transition: all .23s ease-in;
}
.btn:hover {
    background: #fff;
    color: #0C4076;
}

.footer {
    background: #0C4076;
    color: #fff;
    padding: 20px ;
    text-align: center;
}

#scroll-down {
    position: absolute;
    left: 50%;
    bottom: 90px;
    z-index: 155;
    color: #fff;
    transform: translateX(-50%); 
}
#scroll-down a {
  padding-top: 80px;
  cursor: pointer;
}
#scroll-down a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#scroll-down a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#scroll-down a span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#scroll-down a span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

body::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track
{
	background-color:#ddd;
}
body::-webkit-scrollbar,
.modal-content::-webkit-scrollbar
{
	width: 6px;
	background-color: #ddd;
}

body::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb
{
	background-color: #0C4076;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.delay1 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}
.delay2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.delay4 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.flex {
    display: flex;
}
