@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

:root {
    --primary-color: rgba(39, 74, 155, 0.6);
    --overlay-color: rgba(10, 37, 100, 0.8);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

body, #slider, .wrap, .slide-content {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100vh;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    z-index: 1;
    display: flex;
    width: 100%;    
    background: var(--primary-color);
    padding-top: .5rem;
    display: block;
    height: 50px;
}

.navbar .logo {
    background: url('../img/logo_white.png') no-repeat center center/cover;
    height: 40px;
    width: 200px;
}

.navbar ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.navbar ul li {
    margin: 0 2rem;
    height: 100%;    
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5rem;
    
}

.navbar ul li:hover a {
    border-bottom: #fff 3px solid;
    transition: .2s ease;
}

.navbar ul li:last-child a {
    background: var(--overlay-color);
    padding: .4rem;
    border-radius: 5px;
    text-transform: unset;
}

.navbar ul li:last-child:hover a {
    background: var(--primary-color);
    border: none;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: #fff;
}

section h1 {
    font-size: 4rem;
    margin-top: 3rem;
}

section p {
    font-size: 1.2rem;
}

.heading1, .sponsors h1 {
    font-size: 3rem;
    color: #fff;
    background-color: rgba(39, 74, 155, 0.4); /*#274a9b;*/
    padding: .5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

/* START OF SECTION HOME */

section#home {
    height: 0;
}

    .wrap {
        position: relative;
    }

    .slide {        
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .slide1 {
        background-image: url('../img/slideshow/showcase_naslovna_01.jpg');
    }
    .slide2 {
        background-image: url('../img/slideshow/showcase_naslovna_02.jpg');
    }
    .slide3 {
        background-image: url('../img/slideshow/showcase_naslovna_03.jpg');
    }
    .slide4 {
        background-image: url('../img/slideshow/showcase_naslovna_04.jpg');
    }
    .slide5 {
        background-image: url('../img/slideshow/showcase_naslovna_05.jpg');
    }
    .slide6 {
        background-image: url('../img/slideshow/showcase_naslovna_06.jpg');
    }
    .slide7 {
        background-image: url('../img/slideshow/showcase_naslovna_07.jpg');
    }
    .slide8 {
        background-image: url('../img/slideshow/showcase_naslovna_08.jpg');
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .slide-content span {
        width: 70%;
        font-size: 5rem;
        color: #fff;
        background-color: rgba(39, 74, 155, 0.4); /*#274a9b;*/
        padding: 1rem;
        border-radius: 15px;
    }

    .slide-content span span {
        width: 70%;
        font-size: 5rem;
        color: #fff;
        background-color: rgba(155, 39, 68, 0.4); /*#274a9b;*/
        padding: 1rem;
        border-radius: 15px;
    }

    .arrow {
        cursor: pointer;
        position: absolute;
        top: 50%;
        margin-top: -30px;
        width: 0;
        height: 0;
        border-style: solid;
    }

    #arrow-left {
        border-width: 30px 40px 30px 0;
        border-color: transparent #fff transparent transparent;
        left: 0;
        margin-left: 30px;
    }

    #arrow-right {
        border-width: 30px 0px 30px 40px;
        border-color: transparent transparent transparent #fff;
        right: 0;
        margin-right: 30px;
    }
    
    #arrow-top {
        border-width: 0px 30px 30px 40px;
        border-color: #fff transparent transparent transparent;
        right: 0;
        margin-right: 30px;
    }

/* END OF SECTION HOME */

/* START OF SECTION ABOUT */
    
section#about {
    background: url('../img/o_nama.jpg') no-repeat center center/cover;
    color: #16357E;
    /* height: 100vh; */
}
    .about-us {
        display: flex;
        background: rgba(255, 255, 255, 0.6);
        color: #16357E;
        width: 70%;
        margin-bottom: 5rem;
        padding: 2rem;
        border-radius: 15px;
    }

    .about-left {
        background: url('../img/o_nama_mala.jpg') no-repeat center center/cover;
        width: 300px;
        border-radius: 10px;
    }

    .about-right {
        width: 70%;
    }

    .about-right p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

/* END OF SECTION ABOUT */

/* START OF SECTION PROJECTS */

section#projects {
  background: #16357E;
}
    #projects h1 {
        color: #fff;
    }

    .gallery {
        margin-bottom: 5rem;
    }

    .gallery img {
        transition: .5s;
        padding: .5rem;
        width: 400px;
    }

    .gallery img:hover {
        filter: grayscale(100%);
        transform: scale(1.1);
    }

    .lb-data {
        display: none;
    }

/* END OF SECTION PROJECTS */

/* START OF SECTION PARTNERS */

.sponsors .sponsors-title {
    text-transform: uppercase;
    padding: 2rem;
    color: #036;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
}

.sponsors {
    text-align: center;
    padding-bottom: 5rem;
    background: #fff;
}

.sponsors>a, .sponsors>div, .sponsors>img {
    display: inline-block;
    vertical-align: top;
}

.sponsors a {
    /* margin-left: .5rem;
    margin-right: .5rem; */
    width: 200px;
}

.sponsors a img {
    width: 200px;
}


/* END OF SECTION PARTNERS */

/* START OF SECTION CONTACT-FORM */

section#contact {
    background: url('../img/projects/projects_background_01.jpg') no-repeat center center/cover;
    padding: 2rem 0 4rem;
}

/* END OF SECTION CONTACT-FORM */

/* START OF FOOTER */

footer {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1rem 0 .5rem;
    background: #333;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: .7rem
}

.buttonpdf {
    background: var(--primary-color);
    padding: .8rem 2rem;
    color: #fff;
    font-size: 1rem;
    border: 0;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, .5), 5px 5px 0px 0px rgba(0, 0, 0, .2);
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 550;
    margin: .5rem auto;
    outline: none;
}

.buttonpdf:hover {
    background: var(--overlay-color);
}

footer .mailphone {
      display: grid;
      padding: .5rem;
      width: 50%;
      grid-template-columns: 20% 20% 20% 20% 20%;
      grid-gap: .5rem;
}

footer .mailphone a {
      text-align: center;
}

footer .mailphone a:hover {
    color: #ccc;
}

footer h2 a:hover {
    color: #3b5998;
}

footer h2 {
    margin-bottom: 1rem;
}

footer h2 a {
    transition: all .1s ease-out;
}

.footerSpan {
    display: block;
}

/* END OF FOOTER */




/* media kveriji */

@media only screen and (max-width: 1160px) {
    section#about {
        padding: 3rem 0;
    }

    .about-us {
        width: 80%;
    }

    .about-left {
        padding: 0;
        width: 100%;
    }

    .about-right {
        width: 100%;
    }

    .about-right p {
        font-size: 1.2rem;
    }

    footer .mailphone {
        width: 80%;
    }

    .navbar ul li:last-child a {
        display: none;
    }
}

@media only screen and (max-width: 960px) {    

    .slide-content span {       
        font-size: 3rem;
    }

    .about-us {
        flex-direction: column;
    }

    .about-left {
        background: url('../img/o_nama_mala_wide.jpg') no-repeat center center/cover;
        height: 400px;
    }

    .about-right p {
        font-size: 1.1rem;
    }    

    footer .mailphone {
        width: 80%;
    }
}

@media only screen and (max-width: 760px) {
    .slide-content span {       
        font-size: 2rem;
    }

    .navbar {
        display: none;
    }

    .about-left {
        background: url('../img/o_nama_mala_wide.jpg') no-repeat center center/cover;
        height: 250px;
    }
    
    section#projects {
        background: url('../img/projects/projects_background_01_height.jpg') no-repeat center center/cover;
    }

    .slide1 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_01.jpg');
    }
    .slide2 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_02.jpg');
    }
    .slide3 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_03.jpg');
    }
    .slide4 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_04.jpg');
    }
    .slide5 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_05.jpg');
    }
    .slide6 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_06.jpg');
    }
    .slide7 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_07.jpg');
    }
    .slide8 {
        background-image: url('../img/slideshow/mobile/showcase_naslovna_08.jpg');
    }

    .sponsors a {
        display: flex;
        position: relative;
        left: 25%;
        margin-top: 2rem;
    }

    footer{
        display: flex;
        flex-direction: column;
    }

    footer .mailphone {
        display: flex;
        flex-direction: column;
    }

    footer a {        
        padding: .2rem 0;
    }

    .footerSpan {
        display: none;
    }
}

@media (min-width: 760px){
} 

@media only screen and (max-height: 600px) {
}