body {
    background-image: url(../img/usluge-bg.jpg);
    background-size: cover;
    background: rgba(217, 217, 217, 0.);
    background-repeat: no-repeat;
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
}

/* Header */
header {
    width: 100%;
    max-width: 100%;
    height: 60vh;
    display: flex;
    background-image: url(../img/header-usluge.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header .hero-container h1 {
    color: var(--black);
    z-index: 2;
}

.usluge {
    padding: var(--padding);
    width: 60%;
    margin: auto;
}

.column-2-box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(34, 34, 34, 0.04);
    border-radius: 30px;
    padding: 60px;
    margin: 140px auto;
}

.box {
    flex: 0 0 40%;
    color: var(--black);
    text-align: justify;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    padding: 30px;
}

.box h3 {
    flex: 0 0 40%;
    color: var(--black);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}


.box2 {
    flex: 0 0 40%;
}

.column-2-box img {
    border-radius: 30px;
    transform: scale(1.2);
}

.column-2-box:nth-child(even) {
    flex-direction: row-reverse;
}

footer #usluge h3,
p,
li {
    color: var(--black);
}

/* footer */
footer {
    background: rgba(237, 237, 237, 0.08);
    padding: var(--padding);
    border-top: 1px solid lightgray
}

footer article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--white);
    flex-wrap: wrap;
}

footer article {
    flex: 0 0 25%;
    margin: auto;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-top: 30px;
    color: var(--black);
}

.footer-items a {
    color: var(--black);
}

.footer-items a:hover {
    color: var(--secondaryColor);
}

.footer-icons i {
    margin: 0 10px;
    color: var(--black)
}

.footer-icons i:hover {
    color: var(--secondaryColor);
}

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(--black);
}

.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(even) {
        flex-direction: column;
    }

}

@media (max-width: 920px) {
    footer article {
        align-items: flex-start;
    }

    .footer-items {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }

    .footer-items h3 {
        margin-bottom: 15px;
    }

    .usluge {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .column-2-box {
        padding: 30px 20px;
    }

    .box {
        padding: 20px;
    }

    .footer-items {
        flex: 0 0 90%;
        margin-bottom: 40px;
    }
}