body {
    background-image: url(../img/bg-black.jpg);
    background-size: cover;
    background-position: top;
    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/Blog-Naslov.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header .hero-container h1 {
    color: var(--white);
}

.usluge {
    padding: var(--padding);
    width: 60%;
    margin: auto;
}

.column-2-box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(237, 237, 237, 0.04);
    border-radius: 30px;
    padding: 60px;
    margin: 140px auto;
}

.box {
    flex: 0 0 40%;
    color: var(--white);
    text-align: justify;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    padding: 30px;
}

.box button {
    margin: auto;
}

.box h3 {
    flex: 0 0 40%;
    color: var(--white);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

.column-2-box img {
    border-radius: 30px;
    transform: scale(1.2);
}

.box2 {
    flex: 0 0 40%;
}

.column-2-box:nth-child(odd) {
    flex-direction: row-reverse;
}

footer #usluge li {
    color: var(--white);
}

/* 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:1200px) {
   
    .column-2-box {
        flex-direction: column;
        margin: 50px auto;
    }

    .column-2-box img {
        width: 70%;
        margin: auto;
    }
    .column-2-box:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .column-2-box:nth-child(even) {
        flex-direction: column-reverse;
    }
    .column-2-box h3{
        margin-top: 20px;
    }
}
@media (max-width: 920px) {
    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) {
    .column-2-box {
        padding: 30px 20px;
    }
    .box{
        padding: 20px;
    }
    .footer-items {
        flex: 0 0 90%;
        margin-bottom: 40px;
    }
}