@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(#ffffff, #ffffff);
        color: #000000;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}


/* navbar */

header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: fixed;
    height: 5rem;
    min-width: 100%;
    z-index: 9999999999999999999999999999999999999999;
    background: #ffffff;
}

header .navigation .logo {
    margin-left: 6rem;
}

header .navigation .logo img {
    width: 16.25rem;
    height: 2.2rem;
}

header .navigation .menu-list {
    list-style: none;
    align-items: center;
    width: 48rem;
}

header .navigation .humbarger {
    margin-right: 3.125rem;
    display: none;
}

header .navigation .humbarger .bar {
    width: 1.875rem;
    height: 0.125rem;
    margin: 0.4375rem;
    background: #000;
}

header .navigation .menu-list li {
    display: inline-block;
    width: auto;
    margin-right: 1.125rem;
    margin-top: 1rem;
}

header .navigation .menu-list li a {
    width: auto;
    padding: 0px;
    color: rgb(76, 76, 76);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.5s ease, border 0.5 ease;
    text-decoration: none;
}

header .navigation .menu-list li a:hover {
    color: rgba(255, 72, 0);
}


/* Responsive Section */

@media only screen and (min-height: 1070px) {
    header .navigation .logo {
        margin-left: 6rem;
    }
    header .navigation .logo img {
        width: 260px;
        height: 35px;
    }
    header .navigation .menu-list {
        list-style: none;
        align-items: center;
        width: 700px;
    }
    header .navigation .humbarger {
        margin-right: 50px;
        display: none;
    }
    header .navigation .humbarger .bar {
        width: 30px;
        height: 2px;
        margin: 7px;
        background: #000;
    }
    header .navigation .menu-list li {
        display: inline-block;
        width: auto;
        margin-right: 20px;
        margin-top: 16px;
    }
    header .navigation .menu-list li a {
        width: auto;
        padding: 0px;
        color: #000;
        display: inline-block;
        font-size: 0.5rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: color 0.5s ease, border 0.5 ease;
        text-decoration: none;
    }
    header .navigation .menu-list li a:hover {
        color: rgba(255, 72, 0);
    }
}

@media only screen and (max-width: 1130px) {
    header .navigation {
        position: sticky;
        min-height: 80px;
        width: 40%;
    }
    header .navigation .logo {
        display: block;
        margin-left: 6rem;
    }
    header .navigation .menu-list {
        position: absolute;
        top: 12vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.99);
        text-align: center;
        display: none;
        margin-top: -40px;
        padding-bottom: 20px;
    }
    header .navigation .menu-list li {
        display: block;
    }
    header .navigation .menu-list li a {
        display: block;
        padding: 20px;
        transition: color 1s ease, padding 1s ease, background-color 1s ease;
    }
    header .navigation .menu-list li a:hover {
        color: #000;
        padding-left: 0px;
        padding-right: 10px;
        background-color: rgba(255, 72, 0);
    }
    header .navigation .humbarger {
        display: block;
    }
}


/* Tablet desktop :768px. */

@media only screen and (max-width: 991px) {
    header .navigation .menu-list li {
        display: block;
    }
    header .navigation .menu-list li a {
        display: block;
        padding: 20px;
        transition: color 1s ease, padding 1s ease, background-color 1s ease;
    }
    header .navigation .menu-list li a:hover {
        color: #000;
        background-color: rgba(255, 72, 0);
    }
}


/* Large Mobile :480px. */

@media only screen and (max-width: 769px) {
    header .navigation .logo {
        margin-left: 6rem;
    }
    header .navigation .menu-list {
        margin-top: -20px;
        display: none;
    }
    header .navigation .menu-list li {
        display: block;
    }
    header .navigation .menu-list li a {
        display: block;
        padding: 20px;
        transition: color 1s ease, padding 1s ease, background-color 1s ease;
    }
    header .navigation .menu-list li a:hover {
        color: #000;
        background-color: rgba(255, 72, 0);
    }
    header .navigation .humbarger {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    header .navigation .logo {
        margin-left: 4rem;
    }
}


/* small mobile :320px. */

@media only screen and (max-width: 479px) {
    header .navigation .menu-list {
        position: absolute;
    }
    header .navigation .menu-list li {
        display: block;
    }
    header .navigation .menu-list li a {
        display: block;
        font-size: 0.7rem;
        padding: 20px;
        transition: color 1s ease, padding 1s ease, background-color 1s ease;
    }
    header .navigation .menu-list li a:hover {
        color: #000;
        background-color: rgba(255, 72, 0);
    }
    header .navigation .logo {
        margin-left: 4rem;
    }
    header .navigation .logo img {
        width: 240px;
        height: 32px;
    }
    header .navigation .humbarger {
        display: block;
        margin-right: 30px;
    }
}

@media only screen and (max-width: 420px) {
    header .navigation .logo {
        margin-left: 2rem;
    }
    header .navigation .menu-list {
        margin-top: -24px;
    }
}

@media only screen and (max-width: 394px) {
    header .navigation .logo {
        margin-left: 1rem;
    }
    header .navigation .logo img {
        width: 210px;
        height: 31px;
    }
}

@media only screen and (max-width: 300px) {
    header .navigation .logo {
        margin-left: 0.5rem;
    }
}


/* navbar end */


/* naslov */

.peti {
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5%;
    max-width: 100%;
    height: 100%;
}

.wrap {
    padding-top: 4.5rem;
    position: relative;
    text-align: center;
    margin: 15px auto;
    max-width: 1024px;
    height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');
.wrap .respo1 {
    position: relative;
    font-family: 'Playfair Display', serif;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: 42px;
    color: #000 !important;
    line-height: 1.2em;
    letter-spacing: -0.8px;
    z-index: 2;
    margin: 0 auto;
    padding-top: -50px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.resp {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.wrap .respo1 h5 {
    color: rgb(255, 72, 0);
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    line-height: 2em !important;
    margin-top: 20px;
    z-index: 2;
}

.wrap .respo1 h2 {
    letter-spacing: 0.2px;
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 2;
}

.wrap .respo1 .line2 {
    width: 8%;
    color: rgb(255, 72, 0);
    opacity: 1;
    z-index: 2;
    margin-top: 30px;
    margin: auto;
    margin-bottom: 50px;
}

.resp img {
    position: relative;
    float: left;
    vertical-align: middle;
    max-width: 100%;
    width: 330px;
    max-height: 100%;
    height: 200px;
    margin-right: 20px;
}

.text {
    position: relative;
    margin: 0 auto;
    display: table-cell;
    height: 100%;
    width: 330px;
    max-height: 100%;
    max-width: 100%;
    margin: 10px 0px;
    margin-right: 0 !important;
    margin-left: 20px;
    padding: 0px;
    font-size: 16px;
    vertical-align: middle;
    background: rgb(255, 255, 255);
}

.text .right {
    display: inline-block;
    margin: 0 auto;
    height: 200px;
    width: 320px;
}

.icon,
.kat {
    float: left;
    line-height: 50px;
    display: inline-block;
}

.icon {
    vertical-align: middle;
    font-size: 30px;
}

.kat {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    margin-top: -10px;
    margin-left: 0px;
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

.right img {
    margin-top: -8px;
    width: 100px;
    height: 40px;
}

.right p {
    max-width: 100%;
    width: 300px;
    height: 250px;
    min-height: 100%;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: left;
    margin-top: -20px;
    margin-left: 2px;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    color: #333;
}

.respo1 h3 {
    margin-top: 25px;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
}

.respo1 p {
    margin: 0px 250px;
    text-align: justify;
}

@media only screen and (max-width: 1130px) {
    .wrap {
        padding-top: 1rem;
    }
    .wrap .respo1 {
        margin-top: -10px;
    }
    .respo1 p {
        margin: 0px 200px;
    }
}

@media only screen and (max-width: 1000px) {
    .respo1 p {
        margin: 0px 150px;
    }
}

@media only screen and (max-width: 800px) {
    .resp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0px auto;
        padding: 10px;
        padding-right: -5px;
        padding-top: 10px;
        margin-bottom: -20px;
    }
    .text {
        margin-left: -33px;
        margin-top: 30px;
    }
    .right p {
        width: 330px;
    }
    .right .kat {
        font-size: 24px;
    }
    .respo1 p {
        margin: 0px 130px;
    }
}

@media only screen and (max-width: 600px) {
    .resp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0px auto;
        padding-right: 0px;
        margin-right: -10px;
    }
    .text {
        margin-left: -33px;
        margin-top: 30px;
    }
    .right p {
        width: 330px;
    }
    .right .kat {
        font-size: 24px;
    }
    .respo1 p {
        margin: 0px 80px;
    }
}

@media only screen and (max-width: 500px) {
    .respo1 p {
        margin: 0px 60px;
    }
}

@media only screen and (max-width: 430px) {
    .resp {
        width: 100%;
        align-items: center;
        margin-right: -20px;
        margin-left: 0px;
    }
    .resp img {
        padding-right: -20px;
    }
    .text {
        padding-right: 10px;
        padding-left: 10px;
    }
    .kat {
        margin-left: -5px;
    }
    .right p {
        padding-right: 0px;
    }
    .respo1 p {
        margin: 0px 20px;
    }
    .respo1 h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 390px) {
    .resp {
        width: 100%;
        margin-right: -60px;
        margin-left: 5px;
    }
    .resp img {
        padding-right: -5px;
    }
    .resp .text {
        padding-right: 25px;
        padding-left: 5px;
        font-size: 16px;
    }
    .kat {
        padding-right: 5px;
    }
    .right p {
        padding-right: 10px;
    }
    .respo1 p {
        margin: 0px 20px;
    }
    .respo1 h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 361px) {
    .resp img {
        padding-right: 0px;
        padding-left: -5px;
    }
    .resp .text {
        padding-right: 30px;
        padding-left: 5px;
    }
    .icon {
        margin-right: -1px;
    }
    .kat {
        padding-right: 10px;
    }
    .right p {
        padding-right: 10px;
    }
    .respo1 p {
        margin: 0px 10px;
    }
    .respo1 h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 345px) {
    .resp {
        margin-left: 10px;
    }
    .resp img {
        padding-right: 10px;
        padding-left: -10px;
    }
    .resp .text {
        padding-right: 30px;
        padding-left: -15px;
    }
    .icon {
        margin-right: -1px;
    }
    .kat {
        padding-right: 10px;
    }
    .right p {
        padding-right: 50px;
    }
}

@media only screen and (max-width: 320px) {
    .resp {
        margin-left: 10px;
    }
    .resp img {
        padding-right: 10px;
        padding-left: -10px;
    }
    .resp .text {
        padding-right: 30px;
        padding-left: -15px;
    }
    .icon {
        margin-right: -1px;
    }
    .kat {
        padding-right: 10px;
        margin-left: -20px;
    }
    .right p {
        padding-right: 50px;
    }
}


/* footer*/

.osmi {
    position: relative;
    text-align: center;
    flex-direction: column;
}

.osmi::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    opacity: 0.2;
    background-blend-mode: color-burn;
    background: url('images/footer-img.jpg') no-repeat center center;
    background-blend-mode: screen;
    background-size: cover;
}

.osmi .row .lokacije {
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 500;
    padding-left: 8rem;
}

.osmi .row .lokacije div:first-child {
    font-weight: bold;
    font-size: 1rem;
    margin-left: 0px;
    padding-bottom: 0.625rem;
}

.osmi .row .lokacije a {
    font-size: 0.8rem;
    color: rgb(255, 72, 0);
    font-weight: bold;
}

.osmi .row .info .naslov {
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 0.625rem;
    padding-left: 10rem;
}

.osmi .row .info .ostaleInfo {
    line-height: 1.5;
    font-size: 1rem;
    color: #000;
    list-style: none;
    padding-left: 10rem;
}

.osmi .ostaleInfo a {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    list-style: none;
}

.osmi .ostaleInfo a:hover {
    color: rgb(255, 72, 0);
    cursor: pointer;
    transition: color 0.3s;
}

.osmi .row .ostaleInfo {
    font-size: 1rem;
    color: #000;
    list-style: none;
    margin-left: 0.01rem;
}

.osmi .row .socNet {
    padding-left: 10rem;
}

.osmi .row .socNet p {
    font-weight: bold;
    color: #000;
    font-size: 0.935rem;
}

.footer p {
    font-size: 0.625rem;
    font-weight: 600;
    color: #000000 !important;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 0.7rem;
    line-height: 1.8em;
}

.footer p a {
    font-size: 0.625rem;
    font-weight: 600;
    color: #000000 !important;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 0.7rem;
    line-height: 1.8em;
}

@media screen and (max-width: 1500px) {
    .osmi .row .lokacije {
        padding-left: 8rem;
    }
    .osmi .row .info .naslov {
        padding-left: 8rem;
    }
    .osmi .row .info .ostaleInfo {
        padding-left: 8rem;
    }
    .osmi .row .socNet {
        padding-left: 8rem;
    }
}

@media screen and (max-width: 1200px) {
    .osmi .row .lokacije {
        padding-left: 6rem;
    }
    .osmi .row .info .naslov {
        padding-left: 6rem;
    }
    .osmi .row .info .ostaleInfo {
        padding-left: 6rem;
    }
    .osmi .row .socNet {
        padding-left: 6rem;
    }
}

@media screen and (max-width: 992px) {
    .osmi .row {
        margin-left: 0%;
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .osmi .row .lokacije {
        padding-left: 1rem;
    }
    .osmi .row .info .naslov {
        padding-left: 0rem;
    }
    .osmi .row .info .ostaleInfo {
        padding-left: 0rem;
    }
    .osmi .row .socNet {
        padding-left: 1rem;
    }
    .osmi .row .socNet p {
        padding-left: 0rem;
    }
}

@media screen and (max-width: 576px) {
    .osmi .row {
        margin-left: 0%;
    }
}

@media screen and (max-width: 430px) {
    .footer img {
        width: 80%;
    }
    .osmi1 .row {
        margin-left: -5rem;
    }
}