
/*TABLETS AND DESKTOPS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

    /* DEBUGGING
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
    */

  }

  body, html {
    font-family: 'Fauna One', serif;
    width:100%;
    overflow-x: hidden;
  }

  .site {
    position: relative;
    overflow-x: hidden;
  }

  .grid {
    display: grid;
    grid-template-columns: 200px;
    grid-template-rows: 45px 100px auto auto auto auto 1fr auto;
    grid-template-areas:
    "title title"
    "header header"
    "content1 content1"
    "content2 content2"
    "content3 content3"
    "content5 content5"
    "content4 content4"
    "footer footer"
  }

  p {
    margin-left: 20%;
    margin-right: 20%;
  }

  .title {
    grid-area: title;
    background-color: #003233;
    z-index: 2;

  }

  .header {
    grid-area: header;
    background-color: #f0fbff;
    height: 100px;
  }

  .content1 {
    grid-area: content1;

  }

  .content2 {
    grid-area: content2;

  }

  .content3 {
    grid-area: content3;
    background-color: #e5f4f9;

  }

  .content5 {
    grid-area: content5;
    background-color: white;
    height: auto;
  }

  .content4 {
    grid-area: content4;
    background-color: #e5f4f9;
    height: auto;
  }

  .footer {
    grid-area: footer;
    background-color: #003233;

  }

  /* TITLE */

  #tt1 {
    padding-top: 13px;
    font-size: 12px;
    float: left;
    color: white;

  }

  #tt1ger {
    padding-top: 13px;
    font-size: 12px;
    float: left;
    color: white;

  }

  #tt2 {
    padding-top: 13px;
    font-size: 12px;
    float: right;
    color: white;

  }

  #tt2ger {
    padding-top: 13px;
    font-size: 12px;
    float: right;
    color: white;

  }


  #tt3 {
    text-align: center;
    font-size: 12px;
    visibility: hidden;
    color: white;
  }

  #tt3ger {
    text-align: center;
    font-size: 12px;
    visibility: hidden;
    color: white;
  }


/* NAVIGATION BAR */

  .navcolumn {
    float: left;
    width: 20%;
    padding: 10px;
    height: 100px;

  }

  .logocolumn {
    float: left;
    width: 20%;
    padding: 10px;
    height: 100px;
  }


  .navrow:after {
    content: "";
    display: table;
    clear: both;
  }

  .navrow {
    background-color: #f0fbff;
    height: 100px;
    position: relative;
    z-index: 2;
  }

  .navrow2 {
    background-color: rgba(240, 251, 255, .95);
    height: 100px;
    position: fixed;
    z-index: 1;
    width: 100%;
    margin-top: -145px;
    border-bottom: 2px solid #003233;
  }

  .navcenter {
    margin-left: 20%;
    margin-right: 20%;
  }

  .navtext {
    text-align: center;
    font-size: 1.2vw;
    font-family: 'Montserrat', sans-serif;
    color: black;
    padding-top: 20px;
  }

  .link {
    position: relative;
    text-decoration: none;
    color: black;
    font-weight: 500;
  }

  .link:after {
    content: '';
    position: absolute;
    width: 0; height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #003233;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
  }

  .link:hover:after {
    width: 100%;
    left: 0;
    background: #003233;
  }

  #logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
  }

/* NAVIGATION BAR PHONE - HIDDEN */

  .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: #f0fbff;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
      font-family: 'Montserrat', sans-serif;
      list-style:none;
      margin-top: 45px;
  }

  .underline {
    height: 1px;
    background-color: #C7C7C7;
    width: 160px;
    margin-left: 30px;
    margin-top: 10px;
  }

  .sidenav a {
    text-decoration: none;
    font-size: 20px;
    color: #003233;
    display: block;
    margin-top: 30px;
    margin-left: 40px;
    position: relative;
  }

  a.sidebtn::before {
    content:' ';
    opacity: 0;
    -webkit-transition: opacity 500ms ease-in;
    -moz-transition: opacity 500ms ease-in;
    -o-transition: opacity 500ms ease-in;
    transition: opacity 500ms ease-in;
  }

  a.sidebtn:hover::before {
    content:'▌';
    position: absolute;
    left: -20px;
    color: #003233;
    opacity: 1;
}


  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

/* BUTTON - HIDDEN */

  .hamburger {
    display: block;
    align-self: center;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #003233;
    border: 1px solid #f0fbff;
    border-radius: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .hamburger div {
    align-self: flex-end;
    height: 3px;
    width: 100%;
    background: white;
  }
  .hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
  }
  .hamburger .bottom-bun {
    width: 100%;
    transition: all 400ms ease-in-out;
  }
  .hamburger:hover div {
    width: 100%;
  }
  .hamburger:hover .top-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
            animation: burger-hover 1s infinite ease-in-out alternate;
  }
  .hamburger:hover .meat {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
            animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  }
  .hamburger:hover .bottom-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
            animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  }


  @-webkit-keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }

  @keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }

/* PRIJEVOD */

  .flags {
    width: 35px;
    float: right;
    position: relative;
    margin-right: 20px;
    margin-top: 30px;
    z-index: 3;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.3s ease;
  }

  .flags:hover {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
    transition: all 0.3s ease;
  }

  .column {
  float: left;
  width: 20%;
  padding: 5px;
  }

  .row {
  margin-left: 5%;
  margin-top: 5px;
  }

  .row::after {
  content: "";
  clear: both;
  display: table;
  }




/* NASLOVNA */

  #book {
    width: 100%;
    height: 900px;
    margin-top: -20px;
    object-fit: cover;
    object-position: 50% 50%;
    }

  .imgcontainer {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
    color: #f0fbff;
    font-size: 90px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
  }

  .txtcentered {
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
    margin-top: 120px;
  }

  .txtbcg {
    background-color: #f0fbff;
    opacity: 0.4;
  }

  .naslov {
    color: #003233;
    font-family: 'Yeseva One', cursive;
    margin-bottom: 110px;
    margin-left: 0;
    margin-right: 0;
  }

  .ime {
    color: #003233;
    margin: 0 auto;
  }

  a.txtbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-color: #003233;
    color: #003233;
    border-width: 1.5px;
    font-size: 35px;
    font-weight: 600;
    margin-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  a.txtbutton:hover{
    background-color: #003233;
    color: #f0fbff;
    cursor: pointer;
  }


  .up {
    background-color: rgba(0, 50, 51, .8);
    padding: 8px 8px 8px 8px;
    z-index: 2;
    float: right;
    top:90%;
    left:85%;
    position: fixed;
    border-radius: 10px;
    border: 2px solid #f0fbff;
  }

  .up:hover {
    background-color: rgba(0, 50, 51, 1);

  }

  /* O MENI */

  .paragraph{
    font-family: 'Rajdhani', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    color: black;
    font-size: 30px;
    text-indent: 50px;
    text-align: justify;
  }

  .paragraph2{
    font-family: 'Rajdhani', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    color: black;
    font-size: 30px;
    text-indent: 50px;
  }

  h1 {
    font-size: 70px;
    font-family: 'Rajdhani', sans-serif;
    color: black;
    font-weight: normal;
    text-align: center;
  }

  .br {
    display: block;
    content: "";
    padding-top: 50px;
  }

  .underline2 {
    height: 1px;
    background-color: #C7C7C7;
    width: 500px;
    margin: 0 auto;
    margin-top: 40px;
  }

  #diana {
    height: 259px;
    width: 300px;
    margin-left: 20%;
    margin-right: 60px;
    margin-bottom: 40px;
    float: left;
    border: 1px solid #003233;
    background-color: #003233;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .container4 {
   text-align: center;
   margin-right: 20%;
   margin-left: 20%;
   display: block;
  }

  .containerobavijesti {
   text-align: center;
   margin-right: 20%;
   margin-left: 20%;
   display: block;
  }

 .float4 {
   width: auto;
   height: 300px;
   display: inline-block;
  }

 .articleimage4 {
   width: 100px;
   margin-left: auto;
   margin-right: auto;
   position: relative;
   max-height: 100px;
   vertical-align: middle;
   margin-top: -50px;
  }

  .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    max-height: 100px;
  }

 .articletext4 {
   font-family: 'Rajdhani', sans-serif;
   text-align: left;
   display:inline-block;
   width: 100%;
   max-width: 700px;
   height: auto;
   font-size: 25px;
  }

  .articletext5 {
    font-family: 'Rajdhani', sans-serif;
    text-align: left;
    display:inline-block;
    width: 100%;
    max-width: 450px;
    height: 100px;
    font-size: 25px;
   }

  .float5 {
     width: auto;
     height: 100px;
     display: inline-block;
     margin-top: 100px;
  }

  .aprt {
    font-weight: bold;
    font-family: 'Fauna One', serif;
  }

  .inicijali {
    float: right;
    color: #2f8db3;
    font-weight: bold;
    margin-right: 70px;
    margin-top: 30px;
  }


  /* USLUGE */

  .ikone {
    width: 64px;
    margin-left: 25%;
    float: left;
  }

  .usluge {
    float: left;
    font-family: 'Montserrat', sans-serif;
    margin-left: 5%;
    margin-top: 10px;
    color: white;
    font-size: 20px;
    background-color: #003233;
    border-radius: 20px;
    border: 1px solid #003233;
    padding: 8px 8px 8px 8px;
  }

  .br2 {
    display: block;
    content: "";
    padding-top: 120px;
  }

  .container2 {
   text-align: center;
   margin-right: 20%;
   margin-left: 20%;
   display: block;
  }

  .containerinfo {
   text-align: center;
   margin-right: 20%;
   margin-left: 20%;
   display: block;
  }

 .float {
   width: 300px;
   height: 300px;
   display: inline-block;
   text-align: left;
  }

 .articleimage {
   margin-top: 20px;
   width: 150px;
   margin-left: auto;
   margin-right: auto;
   display: block;
  }

 .articletext {
   font-family: 'Rajdhani', sans-serif;
   position: absolute;
   text-align: center;
   width: 300px;
   height: 100px;
   font-size: 25px;
   margin-top: 25px;
  }

 .grow {
   transition: all .2s ease-in-out;
   display:inline-block;
   width:300px;
   height:400px;
   text-align: center;
   margin: 20px;
  }

 .grow:hover {
   transform: scale(1.1);
  }


  /* KONTAKT */

  .contact {
    width: 32px;
    float: left;
    display: inline-block;
    margin-left: 20px;
  }

  .info {
    float: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    position: relative;
    text-align: center;
    width: 300px;
    height: auto;
    font-size: 25px;
    margin-top: -35px;
    background-color: #003233;
    color: white;
    border-radius: 10px;
    border: 4px solid #003233;

  }

  .float2 {
    display: inline-block;
    text-align: left;
    margin-right: 20px;
    margin-top: 20px;
  }

  h2 {
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-weight: none;
    margin-bottom: 10px;
  }

  /* FORMA */

  input[type=text], select, textarea {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  background-color: #003233;
  border-radius: 10px;
  border-style: none;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  color: white;
  outline: 0;
  }

  ::placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1; /* Firefox */
  }

  input[type=submit] {
    background-color: #003233;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  input[type=submit]:hover {
    background-color: #2f8db3;
  }

  .container3 {
    margin-right: 2%;
    margin-left: 15%;
    float: left;
    margin-top: 100px;
  }

  .forma {
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-weight: none;
    margin-bottom: 10px;
  }

  /* GOOGLE MAP */

  .container6 {
   text-align: center;
   margin-right: 10%;
   margin-left: 10%;
   display: block;
  }

  .float6 {
   width: 100%;
   height: auto;
   display: inline-block;
   margin-top: 50px;
  }

  .form {
   width: 100%;
   max-width: 500px;
   display: inline-block;
  }

  .map {
   font-family: 'Rajdhani', sans-serif;
   text-align: left;
   display: inline-block;
   width: 100%;
   max-width: 500px;
   height: auto;
   font-size: 25px;
  }

  iframe {
    width: 100%;
    max-width: 500px;
  }
  




    /* FOOTER */

    #logofooter {
      display: block;
      margin: 0 auto;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .col1 {
      float: left;
      margin-left: 20%;
      text-align: left;
      margin-top: -80px;
      margin-bottom: 20px;
      color: white;
      font-size: 15px;
    }


    .col2 {
      float: right;
      margin-right: 20%;
      text-align: left;
      margin-top: -80px;
      margin-bottom: 20px;
      color: white;
      font-size: 15px;
    }

    /* OBAVIJESTI */

    .float3 {
      width: 600px;
      height: 150px;
      display: inline-block;
      text-align: left;
    }

    .articleimage3 {
      margin-top: 20px;
      width: 100px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      float: left;
    }

    .articletext3 {
      font-family: 'Rajdhani', sans-serif;
      position: absolute;
      text-align: left;
      width: 450px;
      height: 100px;
      font-size: 25px;
      margin-top: 40px;
      float: left;
      margin-left: 150px;
    }

    .grow3 {
      transition: all .2s ease-in-out;
      display:inline-block;
      width:600px;
      height:150px;
      text-align: center;
      margin: 20px;
    }

    /*
    .grow2:hover {
      transform: scale(1.1);
    }
    */

/*----------------------------------------------------------------------------*/
/* HIDING FROM DESKTOP VIEW */
  @media (max-width: 100000px) and (min-width: 1031px) {
    .sidenav {
      display: none;
    }

    .hamburger div {
      display: none;
    }

    .hamburger {
      display: none !important;
    }
  }

/*----------------------------------------------------------------------------*/
/* PHONES */
  @media screen and (max-width: 767px) {


 /* TITLE */
   .title {
     grid-area: title;
     background-color: #003233;
     position: fixed;
     z-index: 2;
     top: 0;
     left: 0;
     width: 100%;
     height: 45px;
   }

  #tt3 {
    text-align: center;
    padding-top: 13px;
    font-size: 12px;
    visibility: visible;
    color: white;
  }

  #tt3ger {
    text-align: center;
    padding-top: 13px;
    font-size: 12px;
    visibility: visible;
    color: white;
  }

  #tt1 {
    display: none;
  }

  #tt2 {
    display: none;
  }

  #tt1ger {
    display: none;
  }

  #tt2ger {
    display: none;
  }


/* NAV BAR */

  .navrow {
    display: none;
  }

  .header {
    grid-area: header;
    background-color: white;
    border-bottom: 0px solid white;
  }

  .flags {
    display: none;
  }
  /* NASLOVNA */

  .underline2 {
    width: 350px;
  }

  .imgcontainer {
    margin-top: -100px;
  }

  .naslov {
    margin-top: 5px;
    margin-bottom: 40px;
    font-size: 70px;
  }


  .pen {
    margin-bottom: 30px;
    width: 250px;
  }

  .ime {
    margin-top: -20px !important;
  }

  a.txtbutton {
    top: 50%;
  }

  /* O MENI */

  .paragraph {
    text-align: center;
    font-size: 22px;
    text-indent: 0px;
    margin-left: 25%;
    margin-right: 25%;
  }

  .paragraph2 {
    text-align: center;
    font-size: 22px;
    margin-top: 40px;
    text-indent: 0px;
    margin-left: 25%;
    margin-right: 25%;
  }

  #diana {
    height: 259px;
    width: 300px;
    margin: 0 auto;
    display: block;
    float: none;
    border: 1px solid #003233;
    background-color: #003233;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  /* ISKUSTVA */

  .articletext4 {
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    display:inline-block;
    width: 100%;
    max-width: 700px;
    height: auto;
    font-size: 25px;
   }

   #space {
     display: none;
   }

   #spacing {
     	margin-top: -5px;
   }

   #bottom {
       margin-bottom: 400px;
   }

   .float4 {
     width: auto;
     height: 300px;
     display: inline-block;
     margin-top: 180px;
    }

    /* USLUGE */

    .grow:hover {
      transform: scale(1);
     }

     .articletext{
       width: 280px;
     }

    /* OBAVIJESTI */

    .articletext5 {
      font-family: 'Rajdhani', sans-serif;
      text-align: center;
      display:inline-block;
      width: 100%;
      max-width: 450px;
      height: 100px;
      font-size: 25px;
      margin-top: 40px;
     }

     /* KONTAKT */

     .container2 {
      text-align: center;
      margin-right: 10%;
      margin-left: 10%;
      display: block;
     }

     .container6 {
      text-align: center;
      margin-right: 10%;
      margin-left: 10%;
      display: block;
     }

     .float6 {
      width: 100%;
      height: auto;
      display: inline-block;
      margin-top: 50px;
     }

     .form {
      width: 100%;
      max-width: 500px;
      display: inline-block;
     }

     .float2 {
       display: inline-block;
       text-align: left;
       margin-top: 20px;
     }

     .map {
      font-family: 'Rajdhani', sans-serif;
      text-align: left;
      width: 100%;
      max-width: 500px;
      height: auto;
      font-size: 25px;
      margin-top: 50px;
     }

     iframe {
       width: 100%;
       max-width: 500px;
     }

     .forma {
       text-align: center;
     }

     /* FOOTER */

     .logonone {
       visibility: hidden;
     }

     .col1 {
       margin-left: 35%;
     }

     .col2 {
       float: left;
       margin-left: 35%;
       margin-top: 10px;
     }
     



}

@media screen and (max-width: 560px) {

  .naslov {
    font-size: 50px !important;
  }

  .txtbutton {
    font-size: 30px !important;
    margin-top: 30px !important;
  }

  .recommend {
    font-size: 55px !important;
  }
}


@media screen and (max-width: 480px) and (min-width: 410px) {

  .col1 , .col2 {
    margin-left: 25%;
  }

  .containerinfo {
    margin-left: 2%;
  }

  .inicijali {
    margin-right: 20px;
    margin-top: 15px;
  }

  .paragraph {
    text-align: center;
    font-size: 22px;
    text-indent: 0px;
    margin-left: 10%;
    margin-right: 10%;
  }

  .paragraph2 {
    text-align: center;
    font-size: 22px;
    margin-top: 40px;
    text-indent: 0px;
    margin-left: 10%;
    margin-right: 10%;
  }


}

@media screen and (max-width: 410px) {

    .col1 , .col2 {
      margin-left: 25%;
    }

    .containerinfo {
      margin-left: 2%;
    }

    .inicijali {
      margin-right: 20px;
      margin-top: 15px;
    }

    .paragraph {
      text-align: center;
      font-size: 22px;
      text-indent: 0px;
      margin-left: 10%;
      margin-right: 10%;
    }

    .paragraph2 {
      text-align: center;
      font-size: 22px;
      margin-top: 40px;
      text-indent: 0px;
      margin-left: 10%;
      margin-right: 10%;
    }


}

/* NAVIGATION BAR PHONE */

  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #f0fbff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    font-family: 'Montserrat', sans-serif;
    list-style:none;
    margin-top: 45px;
    overflow: hidden;
  }

  .underline {
    height: 1px;
    background-color: #C7C7C7;
    width: 160px;
    margin-left: 30px;
    margin-top: 10px;
  }

  .sidenav a {
    text-decoration: none;
    font-size: 20px;
    color: #003233;
    display: block;
    margin-top: 30px;
    margin-left: 40px;
    position: relative;
  }

  a.sidebtn::before {
    content:' ';
    opacity: 0;
    -webkit-transition: opacity 320ms ease-in;
    -moz-transition: opacity 320ms ease-in;
    -o-transition: opacity 320ms ease-in;
    transition: opacity 320ms ease-in;
  }

  a.sidebtn:hover::before {
    content:'▌';
    position: absolute;
    left: -20px;
    color: #003233;
    opacity: 1;
}


  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }


/* BUTTON */

  .hamburger {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #003233;
    border: 1px solid #f0fbff;
    border-radius: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 30px;
    margin-top: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .hamburger div {
    align-self: flex-end;
    height: 3px;
    width: 100%;
    background: white;
  }

  .hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
  }

  .hamburger .bottom-bun {
    width: 100%;
    transition: all 400ms ease-in-out;
  }

  .hamburger:hover div {
    width: 100%;
  }

  .hamburger:hover .top-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
            animation: burger-hover 1s infinite ease-in-out alternate;
  }

  .hamburger:hover .meat {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
            animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  }

  .hamburger:hover .bottom-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
            animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  }

  @-webkit-keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }

  @keyframes burger-hover {
    0% {
      width: 100%;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 100%;
    }
  }




/*----------------------------------------------------------------------------*/
/* TABLET */
@media (max-width: 1030px) and (min-width: 767px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 45px auto auto auto auto auto 1fr auto;
    grid-template-areas:
    "title title"
    "header header"
    "content1 content1"
    "content2 content2"
    "content3 content3"
    "content5 content5"
    "content4 content4"
    "footer footer"
  }

  .title {
    grid-area: title;
    background-color: #003233;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
  }

  #tt3 {
    text-align: center;
    padding-top: 13px;
    font-size: 12px;
    visibility: visible;
    color: white;
  }

  #tt3ger {
    text-align: center;
    padding-top: 13px;
    font-size: 12px;
    visibility: visible;
    color: white;
  }

  #tt1 {
    display: none;
  }

  #tt2 {
    display: none;
  }

  /* NAV BAR */

    .navrow {
      display: none;
    }

    .header {
      grid-area: header;
      background-color: white;
      border-bottom: 0px solid white;
    }

  /* NASLOVNA */

  .imgcontainer {
    margin-top: -100px;
  }


  .articletext4 {
    font-family: 'Rajdhani', sans-serif;
    text-align: left;
    display:inline-block;
    width: 100%;
    max-width: 500px;
    height: auto;
    font-size: 25px;
   }

  /* KONTAKT */

  .container6 {
   text-align: center;
   margin-right: 10%;
   margin-left: 10%;
   display: block;
  }

  .float6 {
   width: 100%;
   height: auto;
   display: inline-block;
   margin-top: 50px;
  }



  .form {
   width: 100%;
   max-width: 500px;
   display: inline-block;
  }

  .map {
   font-family: 'Rajdhani', sans-serif;
   text-align: left;
   display:inline-block;
   width: 100%;
   max-width: 500px;
   height: auto;
   font-size: 25px;
   margin-top: 50px;
   margin-left: 40px;
  }



  .forma {
    text-align: center;
  }

  /* FOOTER */

  .logonone {
    visibility: hidden;
  }
}

@media screen and (max-width: 955px) and (min-width: 707px) {
  /* NAVIGATION BAR PHONE */

    .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 2;
      top: 0;
      left: 0;
      background-color: #f0fbff;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
      font-family: 'Montserrat', sans-serif;
      list-style:none;
      margin-top: 45px;
      overflow: hidden;
    }



    .underline {
      height: 1px;
      background-color: #C7C7C7;
      width: 160px;
      margin-left: 30px;
      margin-top: 10px;
    }

    .sidenav a {
      text-decoration: none;
      font-size: 20px;
      color: #003233;
      display: block;
      margin-top: 30px;
      margin-left: 40px;
      position: relative;
    }

    a.sidebtn::before {
      content:' ';
      opacity: 0;
      -webkit-transition: opacity 320ms ease-in;
      -moz-transition: opacity 320ms ease-in;
      -o-transition: opacity 320ms ease-in;
      transition: opacity 320ms ease-in;
    }

    a.sidebtn:hover::before {
      content:'▌';
      position: absolute;
      left: -20px;
      color: #003233;
      opacity: 1;
  }


    .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 25px;
      font-size: 36px;
      margin-left: 50px;
    }

    /* NASLOVNA */

    .naslov {
      margin-bottom: 120px;
      margin-top: 50px;
      margin-left: 10%;
      margin-right: 10%;
    }

  /* BUTTON */

    .hamburger {
      display: flex;
      align-self: center;
      flex-direction: column;
      justify-content: space-around;
      width: 50px;
      height: 50px;
      cursor: pointer;
      background: #003233;
      border: 1px solid #f0fbff;
      border-radius: 10px;
      padding-top: 4px;
      padding-bottom: 4px;
      padding-left: 8px;
      padding-right: 8px;
      margin-left: 30px;
      margin-top: 70px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .hamburger div {
      align-self: flex-end;
      height: 3px;
      width: 100%;
      background: white;
    }

    .hamburger .meat {
      width: 100%;
      transition: all 200ms ease-in-out;
    }

    .hamburger .bottom-bun {
      width: 100%;
      transition: all 400ms ease-in-out;
    }

    .hamburger:hover div {
      width: 100%;
    }

    .hamburger:hover .top-bun {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
              animation: burger-hover 1s infinite ease-in-out alternate;
    }

    .hamburger:hover .meat {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
              animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    }

    .hamburger:hover .bottom-bun {
      -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
              animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    }

    @-webkit-keyframes burger-hover {
      0% {
        width: 100%;
      }
      50% {
        width: 50%;
      }
      100% {
        width: 100%;
      }
    }

    @keyframes burger-hover {
      0% {
        width: 100%;
      }
      50% {
        width: 50%;
      }
      100% {
        width: 100%;
      }


    }

  /* NASLOVNA */

  .imgcontainer {
    margin-top: -100px;
  }

  .naslov {
    margin-bottom: -2px;
  }

  .pen {
    margin-bottom: 30px
  }



}

@media screen and (max-width: 1300px) and (min-width: 767px){

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 45px 100px auto auto auto auto 1fr auto;
    grid-template-areas:
    "title title"
    "header header"
    "content1 content1"
    "content2 content2"
    "content3 content3"
    "content5 content5"
    "content4 content4"
    "footer footer"
  }

  /* TITLE GERMAN */
  #tt1ger {
    display: none;
  }

  #tt2ger {
    display: none;
  }

  #tt3ger {
    text-align: center;
    padding-top: 13px;
    font-size: 12px;
    visibility: visible;
    color: white;
  }

  /* NAVIGATION BAR*/

  .logocolumn {
    display: none !important;
  }

  #logo {
    display: none !important;
  }

  .navcolumn {
    float: left;
    width: 25%;
    padding: 10px;
    height: 100px;
  }

  .navtext {
    text-align: center;
    font-size: 1.8vw;
    font-family: 'Montserrat', sans-serif;
    color: black;
    padding-top: 25px;
  }

  .flags {
    width: 25px;
    float: right;
    position: relative;
    margin-right: 20px;
    margin-top: 35px;
    z-index: 3;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.3s ease;
  }

  .flags:hover {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
    transition: all 0.3s ease;
  }
  /* O MENI */

  .paragraph{
    font-family: 'Rajdhani', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    color: black;
    font-size: 30px;
    text-indent: 50px;
    text-align: center;
  }

  .paragraph2{
    font-family: 'Rajdhani', sans-serif;
    margin-left: 20%;
    margin-right: 20%;
    color: black;
    font-size: 30px;
    text-indent: 50px;
    text-align: center;
    margin-top: 50px;
  }

  #diana {
    height: 259px;
    width: 300px;
    margin: 0 auto;
    display: block;
    float: none;
    border: 1px solid #003233;
    background-color: #003233;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }


  /* NASLOVNA */

  .naslov {
    color: #003233;
    font-family: 'Yeseva One', cursive;
    margin-bottom: 20px;
  }


  /* ISKUSTVA */

  .container4 {
   text-align: center;
   margin-right: 20%;
   margin-left: 20%;
   display: block;
   margin-top: -120px;
  }

  .articletext4 {
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    display:inline-block;
    width: 100%;
    max-width: 700px;
    height: auto;
    font-size: 25px;
   }

   .float4 , .float5 {
    margin-top: 120px;
   }

    #space {
      display: none;
    }

     .articletext5 {
       font-family: 'Rajdhani', sans-serif;
       text-align: center;
       display:inline-block;
       width: 100%;
       max-width: 450px;
       height: 100px;
       font-size: 25px;
       margin-top: 20px;
      }

  /* FORMA */

  .container3 {
    margin-top: 100px;
    text-align: center;
    display: block;
    float: none;
    margin-left: 20%;
    margin-right: 20%;

  }

  .forma {
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-weight: none;
    margin-bottom: 10px;
    display: inline-block;
  }

  /* KONTAKT */

  .container6 {
   text-align: center;
   margin-right: 10%;
   margin-left: 10%;
   display: block;
  }

  .float6 {
   width: 100%;
   height: auto;
   display: inline-block;
   margin-top: 50px;
  }

  .form {
   width: 100%;
   max-width: 500px;
   display: inline-block;
  }

  .map {
   font-family: 'Rajdhani', sans-serif;
   text-align: left;
   display:inline-block;
   width: 100%;
   max-width: 500px;
   height: auto;
   font-size: 25px;
   margin-top: 50px;

  }

  iframe {
    width: 100%;
    max-width: 500px;
  }

  .forma {
    text-align: center;
  }



}
