/* GLOBALNI STILOVI */
.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    filter: brightness(100%);
}
/* HEADER */
header {
    padding: 25px 0;
}
.menu {
    padding: 0;
    margin: 0 ;
}

.menu > li {
    padding: 0 15px;
    display: inline-block;
    margin: 0;
    position: relative;
    line-height: 40px;
}

/* :last-child je pseudo klasa koja gadja zadnji element u roditelju */
.menu  > li:last-child {
    padding-right: 0px;
}

.menu a {
    color: #4A4949;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s; /* Animira sve propertije na elementu u trajanju od pola sekunde */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.menu a:hover {
    color: #6BA9F2; /* animacija na navigacionim elementima */
}
.menu .has-sub:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 35px;
}

.sub-menu {
    padding: 10px 0;
    background: #ffffff;
    width: 200px;
    text-align: center;
    position: absolute;
    top: 55px;
    left: 50%;
    margin-left: -100px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s; /* Animira sve propertije na elementu u trajanju od pola sekunde */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    border-radius: 15px;
}

.sub-menu li {
    padding: 0;
    margin: 12px 0;
    list-style: none; /* simboli ispred svake stavke u listi */
    line-height: 1.0; /* razmak izmedju stavki liste po visini */

}

.sub-menu li a {
    font-weight: bold;
    font-size: 14px;
}


/* SLIDER */
.slider {
    position: relative;
    margin-bottom: 120px;
    z-index: -1;
    opacity: 0.98;

  }


.slider-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); /* podesavanje reference nivoa na sredinu texta po horizontali*/
    -webkit-transform: translateY(-50%); /* prefiks za transform svojstvo za chrome i safari */
    -moz-transform: translateY(-50%); /* prefiks za transform svojstvo za mozilu */
    -ms-transform: translateY(-50%); /* prefiks za transform svojstvo za IE */
    font-size: 30px;
    opacity: 1;
}
/* MAIN */
main {
    margin-bottom: 180px;
}
main h1::before {
  content: "*";
  color: red;
  align-items: center;
    justify-content: center;   

}
main h1::after {
  content: "-";
  color: red;

}
h1 {
    text-align: center;
    margin-bottom: 100px;
}
.title{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50px;
    color: black;
    font-style: italic;
    font-size: 40px;
 }
.img-wrapper {
    margin-bottom: 24px;
    position: relative;
}
.manu  {

  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 0.2s;
  animation-iteration-count: infinite;
}
.manu span  {
    display: block;
    width: 50px;
    height: 2px;
    margin-bottom: 5px;
    background: #6BA9F2;
}
.monu  {

  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
}
.monu span  {
    display: block;
    width: 50px;
    height: 2px;
    margin-bottom: 5px;
    background: #6BA9F2;
}
@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
    25%  {background-color:yellow; left:1100px; top:0px;}

  100% {background-color:red; left:0px; top:0px;}

}
/* FOOTER */
footer {
    background: #0D304F;
}
p {
    font-size: 25px;
}
