/*
* HT - Bozicna akcija
* by TG Studio
*/

/* CSS Reset*/
html { margin:0;padding:0;border:0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline; list-style: none; }


/* Body setup*/
body {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: left    ;
    background: #ddd;
    color: #000;
    -webkit-font-smoothing:antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.animate {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

b,
strong { font-weight: 900; }

i,
em { font-style: italic; }

:focus { outline: none; }

img { display: block; max-width: 100%; height: auto; }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.main-container {
    overflow-x: hidden;
}

.container {
    max-width: 1260px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.cf:before,
.cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; /* IE 6/7 only */ }


.left   { float: left; }
.right  { float: right; }
.half   { width: 49.00%; }
.third  { width: 33.32%; }
.fourth { width: 24.99%; }
.sixth  { width: 16.65%; }
.two-thirds {
    width: 66.65%;
}

.retina {
    zoom: 0.5;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.invert {
    flex-direction: row-reverse;
}

h1, h2, h3 {
    line-height: 1.2em;
    padding-bottom: 15px;
}

h3 {
    font-weight: bold;
    font-size: 18px;
    color: #a2a2a2;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

h2 {
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
}

h1 {
    font-size: 52px;
    font-family: "Abril Fatface", serif;
}

li {
    padding-bottom: 15px;
    font-style: italic;
    list-style: circle;
    margin-left: 22px;
    font-weight: bold;
}

ul {
    padding-bottom: 15px;
}

.overtitle {
    font-family: "Hepta Slab", sans-serif;
    font-size: 24px;
    color: #fff;
    line-height: 1em;
    display: inline-block;
    margin: 0 0 10px;
}

.overtitle.fat {
    background: #da291c;
    padding: 7px 30px;
}

.partner-logo {
    width: 50px;
    background: white;
    float: right;
}

.partner {
    width: 220px;
    margin: 10px auto 20px;
    color: gray;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 10;
    color: white;
}

.portal-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
    padding: 20px 0 0;
}

.partner .txt {
    line-height: 1em;
    padding-right: 60px;
}

small {
    font-size: 12px;
}

p {
    padding-bottom: 25px;
}

.btn {
    background: #da291c;
    display: inline-block;
    color: white;
    line-height: 35px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 0 25px;
}

.btn:hover {
    background: #db2c1f;
    padding: 0 45px 0 25px;
}

.btn-gray {
    background: #ddd;
    border-color: #ccc;
    color: #666;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-hero {
    height: 100vh;
    position: relative;
}

.hero-text {
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 50px 0 30px;
    color: white;
}

.hero-text p {
    padding-top: 20px;
}

.hero-people {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 5;
    left: 0;
    bottom: 0;
    padding: 0 5%;
}

.downArrow {
    color: white;
    font-size: 36px;
}

.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.a1-logo {
    width: 100px;
}

.section-article.article-1 {
    background: #9bb2ac;
}

.section-article.article-2 {
    background: #9ba2b2;
}

.section-article.article-3 {
    background: #aeb29b;
}

.section-article .article-txt {
    padding: 100px 0;
}


.section-article .article-img {
    position: relative;
}

.section-article .article-img img {
    position: absolute;
    bottom: 0;
}

.section-article.article-2 .title {
    font-family: "PT Serif", serif;
    font-size: 40px;
}

.section-article.article-3 .title {
    font-family: "Ubuntu", serif;
    font-size: 40px;
}

.section.infographic {
    background: #b29ba8;
}

.footer {
    background: #da291c;
    color: white;
    padding: 40px 0;
}

.footer img {
    display: inline-block;
}

.footer .container div:last-child {
    text-align: right;
}

.footer .container div:first-child {
    line-height: 50px;
}

.footer .container div:first-child img {
    display: block;
    padding: 10px;
    background: white;
    float: left;
    margin-right: 30px;
}

.net-logo {
    width: 360px;
}


@media only screen and (max-width: 768px) {

    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 30px;
        margin-right: 30px;
    }

}

@media only screen and (max-width: 425px) {

    .half, .two-thirds, .third {
        width: 100%;
    }

    .frame-img {
        margin: 0 0 40px;
    }


    .footer {
        text-align: center;
    }

    .footer .container div:last-child {
        text-align: center;
        padding-top: 20px;
    }

    .partner-logo {
        bottom: auto;
        top: 20px;
    }

    .section-hero {
        height: 80vh;
        position: relative;
    }

    .hero-people {
        width: 120%;
        left: -10%;
        max-width: none;
        padding: 0;
    }

    .hero-text {
        top: 50px;
        bottom: auto;
    }


    .section-article .article-img img {
        position: static;
    }

    h1.title {
        font-size: 36px !important;
    }

    .article-1 h1.title {
        font-size: 40px !important;
    }

    .section-article .article-txt {
        padding: 100px 0 10px;
    }

    .partner {
        width: 100%;
        margin: 10px auto 20px;
        text-align: center;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        color: white;
    }

    .partner-logo {
        width: 30px;
        background: white;
        float: none;
    }

    .partner .txt {
        line-height: 1em;
       padding: 0;
    }

}
