body {
    background-image: url(../img/bg-black.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    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/Kontakt-Naslov.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header .hero-container h1 {
    color: var(--white);
}

.contact-1,
.contact-2,
.contact-3,
.contact-4 {
    border-radius: 30px;
    padding: 50px;
    background: rgba(237, 237, 237, 0.04);
    margin: 60px auto 0;
    text-align: center;
    color: var(--white);
}

.contact-1 {
    margin-top: 100px;
}

.contact-1 a {
    display: block;
    margin: 10px 0;
}

.contact-3 form {
    margin: 30px;
}

.contact-3 textarea {
    width: 60%;
    max-width: 60%;
    height: 300px;
}

.contact-3 textarea::placeholder {
    padding: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    font-family: var(--fontFamily);
}

.contact-3 button {
    margin: auto;
    margin-top: 20px;
}

.contact-4 {
    margin-bottom: 100px;
}

.contact-social-media {
    font-size: 30px;
}

.contact-social-media i {
    margin: 15px;
}
.contact-social-media i:hover {
    color: var(--secondaryColor);
}

iframe {
    width: 50%;
}

/* 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 article {
    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: 920px) {
    iframe {
        width: 80%;
    }

    .contact-3 form {
        margin: 20px 10px;
    }

    .contact-3 form textarea {
        width: 90% !important;
        max-width: 90% !important;

    }

    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) {

    .contact-1,
    .contact-2,
    .contact-3,
    .contact-4 {
        padding: 20px;
    }

    iframe {
        width: 100%;
    }

    .contact-3 form textarea {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-items {
        flex: 0 0 90%;
        margin-bottom: 20px;
    }
}