.main_h {
    position: fixed;
    max-height: 60px;
    z-index: 999;
    width: 100%;
    padding: 0;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    top: -100px;
    font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 766px) {
    .main_h {
        padding-top: 20px;
    }
}

.open-nav {
    max-height: 350px !important;
}

.open-nav .mobile-toggle {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.sticky {
    /* background: #74ACDF; */
    background: url(../images/bg_ca2020.jpg);
    opacity: 1;
    top: 0;
    /* border-bottom: solid #003893 3px; */
}

nav {
    float: left;
    width: 100%;
    padding-right: 20px;
}

@media only screen and (max-width: 766px) {
    nav {
        width: 100%;
    }
}

nav ul {
    list-style: none;
    overflow: hidden;
    text-align: right;
    float: right;
}

@media only screen and (max-width: 766px) {
    nav ul {
        padding-top: 30px;
        margin-bottom: 30px;
        float: left;
        text-align: left;
        width: 100%;
    }
}

nav ul li {
    display: inline-block;
    margin-left: 15px;
}

@media only screen and (max-width: 766px) {
    nav ul li {
        width: 100%;
        padding: 3px 0;
        margin: 0;
    }
}

nav ul a {
    color: #FFF;
    text-transform: uppercase;
    font-size: 0.95em;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 22px;
    top: 0;
    width: 30px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

@media only screen and (max-width: 766px) {
    .mobile-toggle {
        display: block;
    }
}

.mobile-toggle span {
    width: 30px;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 1000px;
    background: #FFF;
    display: block;
}

.row {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    /* color: #8AE3FF; */
    color: #74ACDF;
}

.hero {
    position: relative;
    /* 
  background: #333 url(https://srdjanpajdic.com/slike/2.jpg) no-repeat center center fixed;
  */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background: #F3DFD4;
    text-align: center;
    color: #fff;
    padding-top: 10px;
    height: auto;
    font-family: "Montserrat", sans-serif;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.li_active {
    color: #F9DC29;
    font-weight: 600;
    font-style: italic;
}


