* {
    box-sizing: border-box;
    color: inherit;
}

body {
    font-family: sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
    background-color: #f8f8ff;
}

a {
    outline: 0;
    text-decoration: none;
}

address {
    font-style: normal
}

.content {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 2px #c0c0c0;
}

header {
    padding: 20px;
    line-height: 18px;
    background-color: #434142;
    color: #ffffff;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
}

#radno-vrijeme {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 20px;
    align-items: center;
    justify-content: center;
}

#radno-vrijeme > div:nth-child(1) {
    grid-column: 1/span 2;
}

#radno-vrijeme > div:nth-child(2) {
    grid-row: 2/span 2;
}

#kontakt {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
}

#kontakt > div:nth-child(1) {
    grid-column: 1/span 2;
}

#kontakt > div:nth-child(2) {
    grid-column: 1/span 2;
}

#kontakt > div:nth-child(7) {
    grid-column: 1/span 2;
}

nav {
    background-color: #F4A564;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: stretch;
    gap: 2px;
    overflow: hidden;
}

nav a {
    display: block;
    line-height: 50px;
    flex: 1;
    background-color: #f78d33;
    align-content: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #000000;
    text-shadow: 0 0 1px #ffffff;
}

nav a:hover, .active {
    background-color: #F4A564;
}

.main {
    margin: 30px auto;
    padding: 10px;
    border-radius: 0;
    line-height: 18px;
    background-color: #ffffff;
    overflow: hidden;
}

.main table {
    margin-bottom: 20px
}

h1, .obavjest {
    font-weight: 500;
    color: #F88017
}

h1 {
    margin-top: 5px
}

.obavjest {
    text-align: center;
    font-size: 22px;
    padding-top: 20px
}

.istaknuto {
    font-size: 18px
}

.grafika {
    height: 450px;
    width: 900px;
    box-shadow: 0 0 1px #DEDEDE
}

.grafika img {
    width: 900px;
    height: 450px
}

.prostor {
    margin-bottom: 30px
}

p, ul, table {
    line-height: 25px
}

.tekst {
    margin-top: 25px
}

.main a {
    color: #03426a
}

th {
    text-align: left;
    padding-right: 25px
}

.mainText strong {
    font-size: 18px
}

li i {
    font-size: 12px
}

.companies {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px;
}

.companies img {
    width: 100%;
}

footer div {
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 0 #ffffff
}

footer table {
    margin: auto
}

iframe {
    border: none;
}

#google-maps {
    float: right;
    padding-bottom: 10px;
}

#kolacici-kontejner {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2147483647;
}

#kolacici-sadrzaj {
    color: #ffffff;
    background-color: #434142;
    padding: 20px;
    font-size: 14px;
    border-radius: 5px 5px 0 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    z-index: 2147483648;
}

#kolacici-sadrzaj button {
    text-align: center;
    border: none;
    color: #000000;
    background-color: #f78d33;
    text-shadow: 0 0 1px #ffffff;
    font-size: 16px;
    width: 200px !important;
    line-height: 40px;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    body {
        background-color: #ffffff;
    }

    header {
        padding: 20px 0;
        grid-template-columns: auto auto;
        justify-content: space-around;
    }

    #logo {
        grid-column: 1/span 2;
        text-align: center;
        margin-bottom: 20px;
    }

    #radno-vrijeme {
        gap: 0 10px;
    }

    nav {
        border-radius: 0;
    }

    .companies {
        grid-template-columns: 1fr 1fr;
    }

    #kolacici-sadrzaj {
        border-radius: 0;
    }
}