/* CSS Document */

body {
    font-family: Poppins,Arial, Helvetica, sans-serif;
}

.head {
    height: auto;
    padding-bottom: 10vh;
    padding-top: 27vh;
    background-color: #17383A;
    font-family: Poppins, Arial, Helvetica, sans-serif
}

.head h1 {
    font-size: 5rem;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

.head hr {
    color: black;
}

.head p {
    margin-top: 3rem;
    color: white;
    text-align: center;
    font-weight: 350;
}


.kontakti {
    height: auto;
    padding: 0 0 20vh 0;
    background-color: #17383A;
}

.polja-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 30%;
}

.polja {
    height: auto;
    width: 100%;
    padding: 3%;
    background: #0d494c;
    border-radius: 10px;
}

.polja h4 {
    color: #D9FFE5;
}

.polja p {
    color: white;
}

.space-evenly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.space-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

iframe {
    border-radius: 10px;
    width: 60%;
    height: inherit;
}

.stevilke {
    background: #0d494c;
    padding: 2% 3%;
    border-radius: 10px;
    margin-top: 5vh;
    width: 93.5%;
    display: block;
    margin: 5vh auto;
    color: white;
    font-size: 16px;
}

.stevilke h3 {
    color: #D9FFE5;
    text-align: center;
    margin-bottom: 3rem;
}


@media (max-width: 992px) {


    .head h1 {
        font-size: 4rem;
    }
    
    .iframe-m {
        width: 100% !important;
        height: 35vh !important;
    }



    .space-evenly {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .polja-flex {
        width: 100%;
    }
    .stevilke {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .head h1 {
        font-size: min(4rem, 12vw);
    }
    .space-between {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-items: center;
    }

    .space-between div {
        width: 50%;
    }

    .stevilke {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    .space-between {
        grid-template-columns: 1fr;
    }    
}



