<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
*{
    margin: 0;
    padding: 0;
  }
  body{
    min-height: 100vh;
  }

  nav{
    z-index: 999;
  }
  html,body{
    overflow-x: hidden;
}

  :root{
    --font-family-poppins: 'Poppins', sans-serif;
  }
  
  /*header*/

  .header{
    background: url(../img/parking.jpg) center/cover no-repeat;
    width: 100%;
    position: relative;

  }
  .header_content{
    display: flex;
    flex-direction: column;
    padding-bottom: 291px;
  }


  .header_content h1{
    font-family: var(--font-family-poppins);
    font-size: 40px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    margin-top: 171px;
  }

  .header_content p {
    font-family: var(--font-family-poppins);
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    margin-top: 17px;
    padding-bottom: 30px;
  }


    /*-----------------filteri----------------*/

    .filter_section{
        background: rgba(246, 246, 246, 1);
        position: relative;
      }
      
      .filter_container{
        display: flex;
        list-style: none;
        justify-content:flex-start;
        align-items: start;
      }
      
      
      .filter_item{
        padding: 10px 20px 10px 70px;
        margin-right: 11px ;
        margin-top: 58px;
        margin-bottom: 74px;
        background: rgba(255, 255, 255, 1);
      }
      .share_item{
        font-family: var(--font-family-poppins);
        font-size: 14px;
        font-weight: 300;
        line-height: 18.2px;
        text-align: left;
        background: none;
      
        padding:10px 80px;
        margin-top: 58px;
        margin-bottom: 74px;
        width: 100%;
        margin-left: 460px;
      }

      .podeli_pretregu a{
        display: flex;
        justify-content: center;
        color: rgba(63, 63, 63, 1);
      }
      .podeli_pretregu a img {
        padding-right: 4px;
      }
      
      .filter_item .dropdown-toggle{
        font-family: var(--font-family-poppins);
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
      }
       
      .filter_item span img{
        width: 14px;
        height: 7px;
        gap: 0px;
        border: 1px 0px 0px 0px;
        opacity: 0px;      
      }
      
      .dropdown{
        position: relative;
      }
      
      .dropdown-content{
        display: none;
        position: absolute;
        list-style: none;
        text-align: center;
        justify-content: center;
        top: 105%;
        width: 100% !important;
        left: 0;
        z-index: 999;
      }

      .bg_white{
        background: rgba(255, 255, 255, 1);
      }
      .filter_li li{
        padding-top: 20px;
        font-family: var(--font-family-poppins);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        padding-left: 20px;
        padding-right: 40px;
        color: rgba(63, 63, 63, 1);
        transition: color 0.3s ease, transform 0.3s ease;
      }
      
      .filter_li li:last-child{
        padding-bottom: 20px;
      }
      
      .filter_li li:hover{
        color: rgba(236, 34, 39, 1);
        transform: translateX(5px);
        font-weight: 600;
      }
      .dropdown:hover{
        cursor: pointer;
      }
      
      .show{
        display: block;
        width: fit-content;
      }
      .highlight {
        font-weight: 600;
        color: rgba(236, 34, 39, 1);
        font-size: 18px;
      }

      #selectedItemsContainer {
        display: flex;
        flex-direction: row-reverse;
        justify-content: left;
        flex-wrap: wrap;
        gap: 10px; 
        padding-bottom: 30px;
        position: relative;
        margin: 0;
      }
      
      .applyFiltersButton {
        font-family: var(--font-family-poppins);
        font-size: 14px;
        text-align: center;
        color: rgba(255, 255, 255, 1);
        background-color: rgba(43, 43, 43, 1);
        cursor: pointer;
        padding-inline: 10px;
        padding-block: 10px;
      }
      
      #selectedItemsContainer p {
        background: rgba(246, 246, 246, 1);
        border: 1px solid;
        padding-block: 10px; 
        padding-left: 60px;
        color: rgba(63, 63, 63, 1);
        font-family: var(--font-family-poppins);
      }
      
      .close-icon{
        padding-left: 50px;
        padding-right: 10px;
        cursor: pointer;
        color: rgba(176, 176, 176, 1);
        width: 7.5px;
        height: 7.5px;
      }

      /*----- popup ---------------------------*/

    .popup{
      background: rgba(255, 255, 255, 1);
      width: 740px;
      height: 500px;
      display: none;
      position: fixed; /* Fixed position */
        top: 50%; /* Center the popup vertically */
        left: 50%; /* Center the popup horizontally */
        transform: translate(-50%, -50%); /* Center the popup both horizontally and vertically */
        z-index: 999; /* Ensure it's on top of other content */
    }
    .close_button {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      background-color: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }

    .popup_container{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .popup_container h1{
      font-family: var(--font-family-poppins);
      font-size: 32px;
      font-weight: 600;
      line-height: 29.6px;
      letter-spacing: 0.02em;
      text-align: left;
      color: rgba(0, 0, 0, 1);
      margin-top: 100px;

    }

    .popup_container .popup_text_under{
      font-family: var(--font-family-poppins);
      font-size: 18px;
      font-weight: 300;
      line-height: 27px;
      text-align: left;
      color: rgba(0, 0, 0, 1);
      margin-top: 10px;
    }

    .popup_main_container{
      margin-top: 70px;
      display: flex;
      gap: 20px;
    }

    .popup_main_container a{
      font-family: var(--font-family-poppins);
      font-size: 18px;
      font-weight: 300;
      line-height: 27px;
      text-align: left;
      color: rgba(0, 0, 0, 1);
      text-decoration: underline;
    }

    .popup_link_copy{
      margin-top: 60px;
      display: flex;
      margin-bottom: 100px;
    }

    .popup_link_copy .page_link{
      background: rgba(228, 228, 228, 1);
      padding: 13px 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: var(--font-family-poppins);
      font-size: 18px;
      font-weight: 300;
      line-height: 27px;
      text-align: left;
    }

    .popup_link_copy .copy_button{
      background: rgba(43, 43, 43, 1);
      padding: 13px 35px;
      font-family: var(--font-family-poppins);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      text-align: center;
      color: rgba(255, 255, 255, 1);
      cursor: pointer;

    }

    .tooltip {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 14px;
      z-index: 9999;
      font-family: var(--font-family-poppins);
    }





      /*-------------------cards----------------------*/

      .cards{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 84px;
      }

      .grid_container{
        display: flex;
        border: 1px solid rgba(209, 209, 209, 1);
      }

      .grid_container .card_left_side,
      .grid_container .card_right_side{
        flex: 1;
      }

      .grid_container .smaller{
        flex: 0.5;
      }

      .grid_container .card_left_side img{
        height: 100%;
        max-width: fit-content !important;
      }
      .grid_container .card_right_side{
        display: flex;
        flex-direction: column; 
        justify-content: space-between; 
        background-color: white;
      }
     
      .grid_container .card_right_side h2{
        font-family: var(--font-family-poppins);
        font-size: 28px;
        font-weight: 600;
        line-height: 33.6px;
        letter-spacing: 0.02em;
        text-align: left;
        
        margin-top:110px;
        color: rgba(63, 63, 63, 1);
        margin-left: 37px;
      }

      .grid_container .card_right_side .kvadratura{
        width: fit-content;
        height: 41px;
        background: rgba(236, 236, 236, 1);
        margin-top: 17px;
        margin-left: 37px;
        padding-right: 37px;
      }

      .grid_container .card_right_side .kvadratura p{
        font-family: var(--font-family-poppins);
        font-size: 22px;
        font-weight: 600;
        line-height: 20.35px;
        letter-spacing: 0.02em;
        text-align: left;
        color: rgba(43, 43, 43, 1);
        padding-bottom: 10px;
      }

      .superscript {
        position: relative;
      }

      .superscript sup {
        position: relative;
        top: -0.1em;
        font-size: 15px;
      }

      .superscript sup.min{
        font-size: 8px;
      }

      .grid_container .card_right_side p{
        font-family: var(--font-family-poppins);
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        text-align: left;
        margin-top: 8px;
        color: rgba(43, 43, 43, 1);
        margin-left: 37px;
      }
      .btn{
        cursor: pointer;
        text-decoration: none;
      }

      .btn_slider{
        width: fit-content;
        background: rgba(43, 43, 43, 1);
        font-family: var(--font-family-poppins);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        padding-top: 9px;
        color: rgba(255, 255, 255, 1);
        margin-top: 44px;
        padding-right: 22px;
        padding-bottom: 10px;
        padding-left: 22px;
        margin-left: 37px;
        margin-bottom: 44px;
      }


      /*--------------------link----------------------*/
      .link_prikazi_sve{
        margin-top: 40px;
        display: flex;
        justify-content: flex-end;
        padding-bottom: 93px;
      }
      
      .link_prikazi_sve a {
        display: flex;
        align-items: center;
        font-family: var(--font-family-poppins);
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
        color: rgba(104, 104, 104, 1);
      
      }
      .link_prikazi_sve a img {
        padding-left: 5px;
      }

      @media screen and ( 1620px &gt; width &gt;1250px){
        .share_item{
          font-family: var(--font-family-poppins);
          font-size: 14px;
          font-weight: 300;
          line-height: 18.2px;
          text-align: left;
          background: none;
        
          padding:10px 80px;
          margin-top: 58px;
          margin-bottom: 74px;
          width: 100%;
        }
      
        .podeli_pretregu a img {
          width: 23px;
          height: 20px;
        }
      
      }

      @media screen and (width &lt;1250px){
        
        .cards{
          grid-template-columns: auto;
          justify-content: center;
        }

        .podeli_pretregu a img {
          width: 23px;
          height: 20px;
        }
      }


      @media screen and (max-width: 1100px){
        .share_item{
          padding:10px 30px;
          margin-left: 20%;
        }

        .cards{
          grid-template-columns: auto;
          justify-content: center;
        }
      }

      @media screen and (max-width: 700px){

        .cards{
          margin-bottom: 50px;
          gap: 80px;
        }

        .header_content{
          padding-bottom: 170px;
        }
        .header_content h1{
          font-size: 35px;
        }

        .header_content p{
          font-size: 16px;
        }

        .header_content p br{
          display: none;
        }

        .filter_container{
          padding-top: 50px;
          padding-bottom: 50px;
          flex-wrap: wrap;
      }
        .filter_item, .share_item {
          flex: 1 0 calc(33.333% - 20px); /* Adjust the width of each item to fit three items per row */
          margin: 10px; /* Add margin between items */
        }

        .grid_container{
          flex-direction: column;
          width: 100%;
        }

        .grid_container .card_left_side{
          height: 220px !important;
          background-position: -100%;
        }
        .grid_container .card_bg_1{
          background: url(../img/garaza_card_1.png) center/cover no-repeat;
        }

        .grid_container .card_bg_2{
          background: url(../img/garaza_card_2.png) center/cover no-repeat;
        }

        .grid_container .card_bg_3{
          background: url(../img/garaza_card_3.png) center/cover no-repeat;
        }


        .grid_container .smaller{
          flex: none;
        }
      
        .grid_container .card_right_side{
          display: flex;
          flex-direction: column; 
          justify-content: start; 
        }

        .grid_container .card_right_side h2{
          font-size: 18px;
          margin-top:20px !important;
          margin-left: 30px !important;
          padding-right: 180px;
        }

        .grid_container .card_right_side .kvadratura{
          width: fit-content;
          background: rgba(236, 236, 236, 1);
          margin-top: 10px !important;
          margin-left: 30px !important;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .grid_container .card_right_side .kvadratura p{
          font-size: 18px;
        }

        .superscript sup {
          position: relative;
          top: -0.1em;
          font-size: 13px;
        }

        .grid_container .card_right_side p{
          margin-left: 30px !important;
          font-size: 14px;
        }

        .btn_slider{
          font-size: 14px;
          padding-inline: 15px;
          margin-left: 30px !important;
          margin-bottom: 20px;
        }

        .link_prikazi_sve{
          margin-top: 20px;
          display: flex;
          justify-content: flex-end;
          padding-bottom: 50px;
        }

        #selectedItemsContainer {
          display: flex;
          flex-wrap: wrap;
          gap: 10px; 
          padding-bottom: 30px;
          justify-content: center;
          align-items: center;
        }
        #selectedItemsContainer p {
          background: rgba(246, 246, 246, 1);
          border: 1px solid;
          padding-block: 10px; 
          padding-left: 60px;
          color: rgba(63, 63, 63, 1);
          font-family: var(--font-family-poppins);
          display: flex;
          justify-content: space-between;
        }
        
        .close-icon{
          padding-left: 10px;
          padding-right: 30px;
          cursor: pointer;
          color: rgba(176, 176, 176, 1);
          width: 7.5px;
          height: 7.5px;
        }

        .popup{
          background: rgba(255, 255, 255, 1);
          width: 340px;
          height: 420px;
        }
        
        .popup_link_copy{
          margin-top: 60px;
          display: flex;
          margin-bottom: 0px;
          flex-direction: column;
        }
        
        .popup_main_container{
          margin-top: 40px;
          display: flex;
          gap: 20px;
        }
        
        .popup_container h1{
          margin-top: 80px;
          font-size: 28px;
        
        }
        
        .popup_link_copy .page_link{
          padding: 13px 20px;
          font-size: 16px;
        }
        
        .popup_link_copy .copy_button{
          padding: 13px 20px;
        }


      

      }</pre></body></html>