/*stranica je prvo rađena za desktop view*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', serif;
    font-size: 16px;
    letter-spacing: 1px;
    scroll-behavior: smooth;
    /*overscroll-behavior-y: none;   */
}

.hero-image {
    width: 100%;
    height: 85vh;
    background-image: url("../../images/jpg/borovnice_background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    position: fixed;
    width: 100%;
    height: 9em;
    background-color: rgba(255,255,255,.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;
    z-index: 100;
}

.header--1 {
    height: 5em;
    border-bottom: 1px solid black;
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;
}

.header--2 {
    background-image: linear-gradient(145deg, rgba(0,152,219,1), royalblue);    
    height: 5em;
    border-bottom: 1px solid black;
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;

}

.header-dark {
    background-image: linear-gradient(145deg, rgba(52,152,219,1), rgba(15,50,74,1));
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-image: linear-gradient(145deg, orange, red);
    border-radius: 0px 5px 5px 0px;
    transition: width 150ms ease-out;
    z-index: 101;
}

.header-contacts {
    position: relative;
    background-color: royalblue;
    padding: .5em 0;
    display: flex;
    flex-direction: column;
    padding-left: 5%;
    margin-bottom: 5.2em;
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;
}

.header-contacts--1 {
    opacity: 0;
    visibility: hidden;
}

.header-contacts a {
    width: fit-content;
    padding: 2px 0;
    color: white;
    text-decoration: none;
}

.dot {
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: blue;
    border-radius: 50%;
}

.choose-language {
    position: absolute;
    top: 1em;
    right: 5%;
}

.jezik {
    width: 50px;
    margin: 0 .75em;
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0,0,0,.35);
    transition: 250ms ease;
}

.jezik:hover{
    transform: scale(1.1);
}

.logotip-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;
}

.logotip-main--1 {
    width: 120px;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: .1em;
    z-index: 100;
    cursor: pointer;
}

.hamburger {
    display: block;
    position: relative;
    top: -.2em;
    margin: 0 auto;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,.5));
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background: rgba(255,255,255,.75);
    height: 2px;
    width: 1.5em;
    border-radius: 3px;
    transition: all ease-in-out 300ms;
}

.hamburger::before {
    transform: translateY(-5px);
}

.hamburger::after {
    transform: translateY(3px);
}

.open .hamburger {
    transform: rotate(45deg);
}

.open .hamburger::before {
    opacity: 0;
}

.open .hamburger::after {
    transform: translateY(-2px) rotate(90deg);
}

nav {
    position: fixed;
    top: 9em;
    width: 100%;
    padding: .75em;
    display: flex;
    justify-content: center;
    background-color: black;
    -webkit-transition: all ease-out 300ms;
    -moz-transition: all ease-out 300ms;
    -o-transition: all ease-out 300ms;
    transition: all ease-out 300ms;
    z-index: 1000;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.nav-scrolled {
    top: 5em;
    visibility: hidden;
    opacity: 0;
}

.nav--1 {
    background: green;
}

.nav--open {
    top: 5em;
    visibility: visible;
    opacity: 1;
}

.primary-navigation {
    list-style: none;
    display: flex;
}

nav li {
    padding: 0 .65em;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav li a {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,.35);
    letter-spacing: 1px;
    text-decoration: none;
    transition: 150ms ease;
}

nav li a:hover {
    color: royalblue;
}

.hero-intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 500px;
    height: 300px;
    border: 10px solid rgba(255,255,255,.5);
    border-radius: 25px;
}

.hero-intro-title {
    display: flex;
    flex-direction: column;
    font-family: 'Baloo 2', cursive;
}

.hero-intro-title--1 {    
    font-size: 6rem;
    line-height: 5rem;
    padding: 10px 0 0 10px;
    color: rgba(0,140,0,1);
    /*color: rgba(255,255,255,.75);*/
    text-shadow: 1px 1px 2px rgba(0,0,0,.75);
}

.hero-intro-title--2 {
    font-size: 3rem;
    line-height: 2.5rem;
    padding-left: 10px;
    color: rgba(255,255,255,.75);
    text-shadow: 1px 1px 2px rgba(0,0,0,.75);
    text-transform: uppercase;
}

.hero-intro-title--3 {
    font-size: 3rem;
    line-height: 2.5rem;
    padding-left: 10px;
    color: rgba(30,60,180);
    text-shadow: 1px 1px 2px rgba(0,0,0,.75);
    text-transform: uppercase;
}

.section--2-title {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2em 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-align: center;
}

.section--2-body {
    width: 100%;
    margin-bottom: 5em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-around;
}

.section--2-body-left {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    background-image: url(../../images/jpg/borovnice_uzgoj_002.jpg);
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.section--2-body-right {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    background-image: url(../../images/jpg/borovnice_uzgoj_001.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.section--2-body-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    height: 90%;
    background-color: rgba(255,255,255,.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 1px black;
    text-align: center;
    line-height: 70px;
    border-radius: 10px;
}

.section--2-link {
    background: #f2f2f2;
    margin-top: 2em;
    padding: .75em 4em;
    border: 1px solid #f2f2f2;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: initial;
    transition: 150ms ease;
}

.section--2-link:hover {
    background: transparent;
    color: white;
}

.section--3 {
    position: relative;
    background-image: url(../../images/jpg/borovnice_background_02.jpg);
    background-color: rgb(144, 144, 255);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    filter: contrast(100%);
}

.section--3-title {
    width: 100%;
    margin: 0 auto;
    padding: 2em 0 .5em 0;
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 3.5em;
    text-align: center;
    letter-spacing: 2px;    
}

.section--3-body {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1em;
    padding-bottom: 4em;
}

.section--3-body-left {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: fit-content;
    background-color: orange;
}

.section--3-body-right {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: fit-content;
    background-color: rgb(0,130,0);
}

.section--3-body-container img {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-top: 5%;
}

.body-container-title {
    padding: 1em;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    text-align: center;
}

.body-container-content {
    width: 90%;
    margin: 0 auto;
    color: white;
    margin-bottom: 2em;
}

.section--3-link {
    display: block;
    width: 40%;
    width: 250px;
    margin: 0 auto;
    margin-bottom: 5%;
    background: #f2f2f2;
    padding: .75em 4em;
    border: 1px solid #f2f2f2;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    line-height: initial;
    transition: 150ms ease;
}

.section--3-link--1 {
    color: orange;
}

.section--3-link--2 {
    color: rgb(0,130,0);
}

.section--4 {
    position: relative;
    width: 100%;
    height: 596px;
    background-image: url(../../images/jpg/gdje_smo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 90% 100%;
}

.gdje-smo-container {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: white;
    padding: 1.5em;
    box-shadow: 0 0 1px rgba(0,0,0,.35);
}

.gdje-smo-container-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 1px black;
    margin-bottom: 1em;
}

.gdje-smo-container-content {
    margin-bottom: 1em;
    font-weight: bold;
}

.get-direction-btn {
    background-color: black;
    color: white;
    padding: .5em 1em;
    border: none;
    cursor: pointer;
}

.razmak {
    display: none;
}

footer {
    background: url(../../images/png/footer_background.png);
}

.footer-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2em 1em;
    display: flex;
    flex-wrap: wrap;
}

.footer-cell {
    width: 50%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    font-size: .85rem;
    padding-top: 1em;
    padding-left: 4em;
}

.footer-cell-title {
    color: black;
    text-shadow: 0 0 1px black;
    font-weight: 900;
}

.footer-cell-link {
    padding-top: 1em;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.facebook {
    font-size: 1.25rem;
    padding-top: .75em;
    color: royalblue;
}

.footer-bottom {
    padding: 1em 0;
    text-align: center;
    border-top: 1px solid lightgrey;
}

.footer-bottom a {
    text-decoration: none;
    font-size: .75rem;
    font-weight: bold;
    background-color: #555;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: rgba(245,245,245,.5) 4px 6px 2px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.block {
    display: block;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

/*------ kontakti page --------*/

.kontakti-container {
    display: flex; 
    width: 100%;
    height: 1000px;
    margin-top: 5em;
    border-bottom: 1px solid #333;   
}

.kontakti-left {
    width: 50%;
    background-image: url(../../images/jpg/borovnice.jpg);
    background-repeat: no-repeat;
    background-position: 10%;
    background-size: cover;
}

.kontakti-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakti {
    margin-left: -6em;
    margin-right: 1em;
    padding: 3em 8em 2em 8em;
    border: 1px solid royalblue;
    border-radius: 10px 10px 0px 10px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.35);
    background: #f2f2f2;
}

.kontakti h1 {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,.35);
    letter-spacing: 1px;
    margin-bottom: 1em;
}

.kontakti-text {
    width: 90%;
    max-width: 600px;
    margin-bottom: 1em;
    letter-spacing: 1px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.kontakt-podaci-item {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin-bottom: 1em;
    font-weight: bold;
    text-transform: uppercase;
}

.kontakt-podaci-item input {
    width: 100%;
    height: 30px;
    margin-block: 1em;
    background: transparent;
    border: 0;
    border-left: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    border-radius: 0px 0px 0px 5px;
    padding: 5px;
    caret-color: goldenrod;   
}

.kontakt-podaci-item input::placeholder {
    padding-left: 5px;
}

.kontakt-podaci-item textarea {
    border: 1px solid lightgrey;
    border-radius: 0px 5px 0px 0px;
    outline: none;
    width: 100%;
    max-width: 500px;
    height: 60px;
    max-height: 330px;
    resize: none;
    margin: 1em auto;
    border: 1px solid goldenrod;
    border-radius: 0px 5px 5px 5px;
    padding: 5px;
    caret-color: goldenrod;
}

.kontakt-podaci-item textarea:is(:focus) {
    border: 1px solid royalblue;
}

textarea::-webkit-scrollbar  {
    width: 0px;
}

.kontakt-podaci-item .fa {
    position: absolute;
    bottom: 1em;
    right: .6em;
    font-size: 1.2rem;
    color: goldenrod;
}

.kontakt-podaci-item:last-of-type .fa {
    bottom: 1.25em;
}

.kontakti-button {
    position: relative;
    width: 200px;
    background-color: lightskyblue;
    color:white;
    text-shadow: 1px 1px 2px navy;
    border: 2px solid navy;
    font-size: 1rem;
    font-weight: 700;
    padding: .5em .3em;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 250ms ease-out;
}

.kontakti-button::before {
    position: absolute;
    content: '';
    top: -4px;
    left: -4px;
    width: 35px;
    height: 15px;
    border-top: 1px solid navy;
    border-left: 1px solid navy;
}

.kontakti-button::after {
     position: absolute;
        content: '';
        bottom: -4px;
        right: -4px;
        width: 35px;
        height: 15px;
        border-bottom: 1px solid #333;
        border-right: 1px solid #333;
}

.kontakti-button:hover {
    background: lightsalmon;
    border: 2px solid #990000;
    color: #990000;
}

.kontakti-button:hover::before {
    border-top: 1px solid #990000;
    border-left: 1px solid #990000;
}
.kontakti-button:hover::after {
    border-bottom: 1px solid #990000;
    border-right: 1px solid #990000;
}

.kontakti-button--1 {
    width: 125px;
    height: fit-content;
    margin-right: 1em;
}

/*-------- naša priča ----------*/

.nasa-prica-container {
    display: flex;
    flex-direction: row; 
    width: 100%;
    height: 1000px;
    margin-top: 5em;
    border-bottom: 1px solid #333;
    background: #f2f2f2;  
}

.nasa-prica-left {
    width: 50%;
    background-image: url(../../images/jpg/sandra_i_sinisa.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.nasa-prica-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nasa-prica-body {
    padding: 8em;
}

.nasa-prica-body h1 {
    position: relative;
    margin: 0 auto;
    padding: 0 0 1em 0;
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: royalblue;
    z-index: 1;
}

.nasa-prica-body h1::after {
    position: absolute;
    content: '';
    left: -20px;
    bottom: 4.1rem;
    width: 100%;
    height: 20px;
    background: lightblue;
    z-index: -1;
}

.nasa-prica-text {
    width: 90%;
    max-width: 600px;
    margin-bottom: 1em;
    letter-spacing: 1px;
    font-weight: bold;
}

.nasa-prica-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nasa-prica-logo img {
    margin: auto;
    width: 125px;
    height: 75px;
}

/*-----novosti------*/

.novosti-container {
    display: flex;
    flex-direction: row; 
    width: 100%;
    height: 1000px;
    margin-top: 5em;
    border-bottom: 1px solid #333;
    background: #f2f2f2;  
}

.novosti-left {
    width: 50%;
    background-image: url(../../images/jpg/borovnice_background_03.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.novosti-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.novosti-body {
    padding: 8em;
}

.novosti-body h1 {
    position: relative;
    margin: 0 auto;
    padding: 0 0 1em 0;
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: green;
    z-index: 1;
}

.novosti-body h1::after {
    position: absolute;
    content: '';
    left: -20px;
    bottom: 4rem;
    width: calc(100% + 25px);
    height: 20px;
    background: lightgreen;
    z-index: -1;
}

.novosti-text-naslov {
    width: 90%;
    max-width: 610px;
    letter-spacing: 1px;
    font-weight: bold;
    color: darkblue;
}

.novosti-text-naslov--1 {
    color: #333;
    font-weight: bold;
    margin-bottom: 1em;
}

.novosti-text {
    width: 90%;
    max-width: 610px;
    margin-bottom: 1em;
    letter-spacing: 1px;
}

.novosti-text-img {
    width: 90%;
    max-width: 400px;
}

.novosti-text a {
    background: firebrick;
    padding: 2px 10px;
    line-height: 34px;
    color: #f2f2f2;
    border-radius: 5px;
    text-decoration: none;
}

.datum {
    color: orange;
    font-size: .8rem;
}

.novosti-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: none;
}

.novosti-logo img {
    margin: auto;
    width: 125px;
    height: 75px;
}

/*----- dostava-----*/

.dostava {
    width: 50%;
    background-image: url(../../images/jpg/podrucje_dostave.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 2em;
    box-shadow: 1px 1px 5px rgba(0,0,0,.25);
}



/*----- add-to-------*/
.add-to {
    position: fixed;
    left: 0;
    right:0;
    bottom: 0;
}

.add-to-remove {
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    width: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
}

.add-to-btn {    
    width: 100%;
    height: 40px;
    border: none;
    border-top: 1px solid darkblue;
    color: lightblue;
    text-transform: uppercase;
    letter-spacing: 1px;;
    background-color: royalblue;
}

/*-------- Go Top --------------------*/
  
.go_top {
    position: fixed;
    bottom: 1em;
    right: 1em;
    transform: translateX(0);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid royalblue;
    border-radius: 50%;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
    z-index: 10;
    visibility: hidden;   
    opacity: 0;
    transition: all 250ms ease-out;    
}

.go_top::before {
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    z-index: -1;
}

.go_top .fa-arrow-circle-up {
    font-size: 38px;
    font-weight: bold;
    color: royalblue;
    padding-top: .6px;
    padding-left: .6px;
}

.go_top-scrolled {
    visibility: visible;   
    opacity: 1;
}

.go_top:hover {
    transform: scale(1.05);
}

body::-webkit-scrollbar {
    width: 19px;
}
    
body::-webkit-scrollbar-track {
    border: 4px solid #21212d;
    box-shadow: inset 0 0 2.5px 2px rgba(0,0,0,.5);
    background: royalblue;        
}
    
body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, royalblue,rgb(30,50,110), royalblue, rgb(30,50,110), royalblue, rgb(30,50,110));
    box-shadow: 3px 3px 7px rgba(0,0,0,.5),
                inset 2px 2px 3px rgba(0,0,0,.25),
                inset -2px -2px 5px rgba(0,0,0,.5);
    border-radius: 4px;
}

@supports (scrollbar-color: royalblue darkblue) {
    * {
        scrollbar-color: royalblue darkblue;
    }
}
  

@media screen and (max-width: 820px) {
    html {
      font-size: 22px;
    }

    .kontakti {
        margin-left: -2em;
        padding: 1em;
    }

    .nasa-prica-container {
        flex-direction: column; 
        height: fit-content;
        margin-top: 6em;
    }
    
    .nasa-prica-left {
        width: 100%;
        height: 800px;
    }
    
    .nasa-prica-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nasa-prica-body {
        padding: 2em;
    }
    
    .nasa-prica-body h1 {
        position: relative;
        padding: 0 0 1em 0;
        font-family: 'Oswald', sans-serif;
        font-size: 4rem;
        color: royalblue;
        z-index: 1;
    }
    
    .nasa-prica-body h1::after {
        position: absolute;
        content: '';
        left: -20px;
        bottom: 4.1rem;
        width: 100%;
        height: 20px;
        background: lightblue;
        z-index: -1;
    }
    
    .nasa-prica-text {
        width: 90%;
        max-width: 600px;
        margin-bottom: 1em;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .novosti-container {
        flex-direction: column; 
        height: fit-content;
        margin-top: 6em;
    }
    
    .novosti-left {
        width: 100%;
        height: 800px;
    }
    
    .novosti-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .novosti-body {
        padding: 2em;
    }
    
    .novosti-text {
        width: 90%;
        max-width: 600px;
        margin-bottom: 1em;
        letter-spacing: 1px;
        font-weight: bold;
    }
}

@media screen and (max-width: 425px) {
    html {
      font-size: calc(16px + 6 * ((100vw - 320px) / 680));
    }

    header {
        height: 8.5em;
    }    

    .header-contacts {
        padding: 4px 0;
    }
    
    .header-contacts a {
        margin: 0 auto;
        width: fit-content;
        padding: 2px 0;
        color: white;
        text-decoration: none;
    }

    .choose-language {
        top: 2em;
        right: .5em;
    }
    
    .jezik {
        width: 30px;
        margin: 0 .25em;
    }

    .logotip-main {
        top: 6.20em;
        bottom: 0;
        width: 100px;
    }

    .logotip-main--1 {
        top: 2.5em;
        width: 100px;
    }

    .menu-toggle {
        display: block;
        top: 1.5em;
        left: 1em;
        transform: translateY(50%);
    }

    nav {  
        display: block;      
        width: 100%;
        top: 8.5em;
        height: 0px;
        padding: 0;
        background: #f2f2f2;
        overflow: hidden;
    }

    .nav--open {
        top: 8.5em;
        left: 0;
        height: 215px;
        border-bottom: 1px solid lightgrey;
        box-shadow: 0 0 0 100em rgba(0,0,0,.55);
    }

    .nav-scrolled {
        top: 5em;
        visibility: visible;
        opacity: 1;
    }

    .primary-navigation {
        flex-direction: column;
    }

    nav li {
        padding: .5em 0;
        border-bottom: 1px solid #ccc;
    }

    nav li:last-of-type {
        border-bottom: none;
    }

    nav li a {
        color: #333;
        font-weight: bold;
    }

    .gdje-smo-container {
        top: 80%;
    }

    .razmak {
        display: block;
        background: #333;
        width: 100%;
        height: 14em;
    }

    .footer-cell {
        padding-left: 1em;
    }

    .footer-bottom {
        padding-left: 1em;
        text-align: left;
    }

    .kontakti-container {
        width: 100%;
        margin-top: 3em;
    }

    .kontakti {
        position: absolute;
        margin-left: 1em;
        padding: 1em;
        border: none;
    }

    .nasa-prica-left,
    .novosti-left {
        height: 450px;
    }

}