body {
    background-image: url(../img/bg-black.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background: rgba(34, 34, 34, 0.);
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
}

/* Header */
header {
    width: 100%;
    max-width: 100%;
    height: 60vh;
    display: flex;
    background-image: url(../img/O-nama-Naslov.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header .hero-container h1 {
    color: var(--white);
}

.about-intro {
    padding: 70px;
    background: rgba(237, 237, 237, 0.08);
    border-radius: 30px;
    margin: 250px auto 150px;
}

.about-intro p {
    color: var(--white);
    font-weight: 400;
    font-size: 36px;
    text-align: justify;
}

.clients {
    text-align: center;
    width:90%;
}

.clients-logos {
    display: flex;
    justify-content: center;
    padding: var(--padding);
    flex-wrap: wrap;
}

.clients-logos img {
    width: 4%;
    margin: 0 40px;
}

/* footer */
footer {
    background: rgba(237, 237, 237, 0.08);
    padding: var(--padding);
}

footer article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--white);
    flex-wrap: wrap;
}

.footer-items {
    flex: 0 0 25%;
    margin: auto;
    text-align: center;
}


.footer-icons {
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-top: 30px;
}

.footer-items a:hover {
    color: var(--secondaryColor);
}

.footer-icons i:hover {
    color: var(--secondaryColor);
}

.footer-icons i {
    margin: 0 10px;
}


footer img {
    width: 50px;
    margin: auto;
}

.footer-items p {
    font-size: var(--fontSize);
    font-weight: 400;
    width: 70%;
    text-align: center;
    margin: 15px auto;
}

.footer-items h3 {
    text-transform: uppercase;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.footer-items li {
    padding: 5px 0;
    font-size: 17px;
    line-height: 20px;
}

/* responsive */

@media (max-width: 1300px){
    .about-intro {
        padding: 70px;
        background: rgba(237, 237, 237, 0.08);
        border-radius: 30px;
        margin: 150px auto 100px;
    }
    .about-intro p{
        font-size: 25px;
    }
}
@media (max-width: 920px) {
    .about-intro {
        padding: 40px;
        margin: 120px auto 70px;
    }
    .clients-logos img {
        width: 10%;
        margin: 40px;
    }
    
    footer article {
        align-items: flex-start;
    }
    .footer-items {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }

    .footer-items h3 {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-usluge h1{
        font-size: 40px !important;
     }
     .about-intro {
        padding: 40px;
        margin: 50px auto;
    }
     .about-intro p{
        font-size:18px;
    }
   
    .footer-items {
        flex: 0 0 90%;
        margin-bottom: 20px;
    }
}