html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.bold {
  font-weight: 700; }

html, body {
  min-width: 100%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-size: 16px; }
  html h1, body h1 {
    font-size: 32px; }
  html h2, body h2 {
    font-size: 24px; }
  html h3, body h3 {
    font-size: 19.2px; }

header {
  position: relative;
  width: 100%; }
  header.main-page {
    background-image: url("../images/bg-gti.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 620px; }
  @media only screen and (min-width: 0px) and (max-width: 768px) {
    header.main-page {
      height: 47%;
      min-height: 280px;
      max-height: 400px;
      background-position: 65% 45%; } }
  header div.mobile-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #E73540;
    z-index: 10;
    display: none; }
    header div.mobile-trigger a {
      position: absolute;
      z-index: 10; }
    header div.mobile-trigger div.menu-icon {
      width: 70%;
      margin: 0 auto;
      position: relative;
      top: 0;
      z-index: 9; }
      header div.mobile-trigger div.menu-icon span {
        display: block;
        position: absolute;
        height: 5px;
        width: 100%;
        background-color: white;
        left: 0;
        opacity: 1;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.25s ease-out;
        -moz-transition: all 0.25s ease-out;
        -ms-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out; }
        header div.mobile-trigger div.menu-icon span:nth-child(1) {
          top: 8px; }
        header div.mobile-trigger div.menu-icon span:nth-child(2) {
          top: 22px; }
        header div.mobile-trigger div.menu-icon span:nth-child(3) {
          top: 36px; }
      header div.mobile-trigger div.menu-icon.open span:nth-child(1) {
        top: 22px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg); }
      header div.mobile-trigger div.menu-icon.open span:nth-child(2) {
        left: -60px;
        opacity: 0; }
      header div.mobile-trigger div.menu-icon.open span:nth-child(3) {
        top: 22px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg); }
  header div.header-cont {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    z-index: 4; }
    header div.header-cont nav {
      position: absolute;
      display: block;
      top: 0px;
      left: 0px;
      background-color: white;
      text-align: center; }
      header div.header-cont nav img {
        width: 80px;
        margin: 40px auto 20px auto;
        position: relative; }
      header div.header-cont nav ul {
        position: relative;
        font-size: 19.2px;
        display: block;
        margin-bottom: 20px;
        padding: 0px 34px;
        text-transform: uppercase;
        text-align: left; }
        header div.header-cont nav ul li {
          padding: 6px 0px; }
          header div.header-cont nav ul li a {
            display: block;
            width: 100%;
            height: 100%;
            color: inherit;
            text-decoration: none;
            -webkit-transition: color 0.2s ease;
            -moz-transition: color 0.2s ease;
            -ms-transition: color 0.2s ease;
            -o-transition: color 0.2s ease;
            transition: color 0.2s ease; }
            header div.header-cont nav ul li a:hover {
              color: #E73540; }
  @media only screen and (min-width: 0px) and (max-width: 768px) {
    header div.mobile-trigger {
      display: block; }
      header div.mobile-trigger.close-nav {
        background-color: transparent; }
      header div.mobile-trigger a {
        width: 100%;
        height: 100%;
        display: block; }
    header div.header-cont nav {
      position: fixed;
      top: 0;
      left: 0;
      display: block;
      width: 100vw;
      height: 100vh;
      z-index: 110;
      background-color: rgba(231, 53, 64, 0.95);
      visibility: hidden;
      opacity: 0;
      z-index: 9;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      header div.header-cont nav * {
        z-index: 110; }
      header div.header-cont nav img {
        display: none; }
      header div.header-cont nav ul {
        position: relative;
        width: 100%;
        height: 100%;
        margin-bottom: 0;
        margin-top: 60px;
        padding: 0px 28px;
        font-size: 24px; } }
    @media only screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 768px) and (orientation: landscape) {
      header div.header-cont nav ul {
        margin-top: 40px; }
        header div.header-cont nav ul li {
          margin: 10px 0px; } }
  @media only screen and (min-width: 0px) and (max-width: 768px) {
        header div.header-cont nav ul li {
          margin: 12px 0px;
          border-bottom: 2px solid white;
          line-height: 33.6px; }
          header div.header-cont nav ul li a {
            color: white;
            width: 100%;
            height: 100%;
            display: block; }
            header div.header-cont nav ul li a:hover {
              color: white; }
    header.visible div.header-cont nav {
      visibility: visible;
      opacity: 1; } }
  header div.lista-top {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0px;
    z-index: 2; }
    header div.lista-top img.mobile-logo {
      display: none; }
  @media only screen and (min-width: 0px) and (max-width: 768px) {
    header div.lista-top {
      background-color: white;
      height: 50px;
      line-height: 50px;
      text-align: center; }
      header div.lista-top img.mobile-logo {
        display: inline-block;
        position: relative;
        margin: 7px auto;
        height: 36px; } }

section.nabidka {
  position: relative;
  width: 100%;
  display: block;
  z-index: 3; }
  section.nabidka div.nabidka-cont {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    background-color: #DDDDDD; }
    section.nabidka div.nabidka-cont div.nabidka-unit {
      display: inline-block;
      position: relative;
      width: 33.3%;
      margin: 0;
      padding: 0 auto;
      float: left;
      text-align: center;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media only screen and (min-width: 480px) and (max-width: 729px) {
        section.nabidka div.nabidka-cont div.nabidka-unit {
          width: 50%; } }
      @media only screen and (min-width: 0px) and (max-width: 479px) {
        section.nabidka div.nabidka-cont div.nabidka-unit {
          width: 100%; } }
      section.nabidka div.nabidka-cont div.nabidka-unit:nth-of-type(1):hover {
        background-color: #8ED2E8; }
      section.nabidka div.nabidka-cont div.nabidka-unit:nth-of-type(2):hover {
        background-color: #E73540; }
      section.nabidka div.nabidka-cont div.nabidka-unit:nth-of-type(3):hover {
        background-color: #94C273; }
      section.nabidka div.nabidka-cont div.nabidka-unit img {
        margin: 70px auto 30px auto; }
      section.nabidka div.nabidka-cont div.nabidka-unit a {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 5; }
      section.nabidka div.nabidka-cont div.nabidka-unit h2 {
        position: absolute;
        top: 30px;
        left: 30px;
        text-align: left;
        text-transform: uppercase; }
    section.nabidka div.nabidka-cont div.pro-unit {
      display: inline-block;
      position: relative;
      margin: 0;
      min-height: 100%;
      padding: 30px 0px;
      float: left;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(1) {
        width: 66.6%; }
      section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(2) {
        width: 33.3%; }
      section.nabidka div.nabidka-cont div.pro-unit.info:hover {
        background-color: #eaeef0; }
      @media only screen and (min-width: 720px) and (max-width: 900px) {
        section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(1) {
          width: 50%; }
        section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(2) {
          width: 50%; }
          section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(2) img {
            padding: 40px 10px 0px 10px; } }
      @media only screen and (min-width: 0px) and (max-width: 719px) {
        section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(1) {
          width: 100%; }
        section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(2) {
          width: 100%; }
          section.nabidka div.nabidka-cont div.pro-unit:nth-of-type(2) img {
            max-width: 280px;
            padding: 0px auto; } }
      section.nabidka div.nabidka-cont div.pro-unit img {
        width: 100%;
        padding: 0px 10px 0px 10px;
        position: relative; }
      section.nabidka div.nabidka-cont div.pro-unit a {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 5; }

section.novinky {
  position: relative;
  display: block;
  width: 100%;
  clear: both;
  background-color: #eaeef0;
  z-index: 3; }
  section.novinky div.novinky-cont {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    text-align: justify;
    padding-bottom: 40px; }
    @media only screen and (min-width: 480px) and (max-width: 729px) {
      section.novinky div.novinky-cont {
        text-align: center; } }
    @media only screen and (min-width: 0px) and (max-width: 479px) {
      section.novinky div.novinky-cont {
        width: 96%;
        text-align: center; } }
    section.novinky div.novinky-cont h2 {
      text-transform: uppercase;
      position: absolute;
      top: 30px;
      left: 30px;
      text-align: left; }
    section.novinky div.novinky-cont span.odkaz-archiv {
      display: block;
      position: absolute;
      right: 30px;
      bottom: 20px; }
      section.novinky div.novinky-cont span.odkaz-archiv a {
        text-decoration: none;
        color: #5D737E;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        section.novinky div.novinky-cont span.odkaz-archiv a:hover {
          color: #E73540; }
    section.novinky div.novinky-cont div.novinky-unit {
      width: 30%;
      height: 300px;
      position: relative;
      display: inline-block;
      background-position: center bottom;
      background-repeat: no-repeat;
      background-size: cover;
      margin-top: 80px; }
      section.novinky div.novinky-cont div.novinky-unit:first-of-type {
        margin-left: 30px; }
      section.novinky div.novinky-cont div.novinky-unit:last-of-type {
        margin-right: 30px; }
      @media only screen and (min-width: 730px) and (max-width: 1000px) {
        section.novinky div.novinky-cont div.novinky-unit {
          width: 45%; }
          section.novinky div.novinky-cont div.novinky-unit:nth-of-type(2) {
            margin-right: 30px; }
          section.novinky div.novinky-cont div.novinky-unit:last-of-type {
            margin-left: 30px;
            margin-top: 20px; } }
      @media only screen and (min-width: 480px) and (max-width: 729px) {
        section.novinky div.novinky-cont div.novinky-unit {
          width: 360px; }
          section.novinky div.novinky-cont div.novinky-unit:first-of-type {
            margin-left: 0px; }
          section.novinky div.novinky-cont div.novinky-unit:nth-of-type(2) {
            margin-right: 0px;
            margin-top: 20px; }
          section.novinky div.novinky-cont div.novinky-unit:last-of-type {
            margin-left: 0px;
            margin-top: 20px;
            margin-right: 0px; } }
      @media only screen and (min-width: 0px) and (max-width: 479px) {
        section.novinky div.novinky-cont div.novinky-unit {
          width: 80%;
          min-width: 280px; }
          section.novinky div.novinky-cont div.novinky-unit:first-of-type {
            margin-left: 0px; }
          section.novinky div.novinky-cont div.novinky-unit:nth-of-type(2) {
            margin-right: 0px;
            margin-top: 20px; }
          section.novinky div.novinky-cont div.novinky-unit:last-of-type {
            margin-left: 0px;
            margin-top: 20px;
            margin-right: 0px; } }
      section.novinky div.novinky-cont div.novinky-unit:hover h3 {
        color: white;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
      section.novinky div.novinky-cont div.novinky-unit:hover div.novinky-text-wrapper {
        background-color: rgba(231, 53, 64, 0.95); }
        section.novinky div.novinky-cont div.novinky-unit:hover div.novinky-text-wrapper p {
          opacity: 1; }
      section.novinky div.novinky-cont div.novinky-unit div.novinky-text-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 6;
        background-color: transparent;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        section.novinky div.novinky-cont div.novinky-unit div.novinky-text-wrapper a {
          position: absolute;
          width: 100%;
          height: 100%;
          display: block;
          z-index: 8; }
        section.novinky div.novinky-cont div.novinky-unit div.novinky-text-wrapper h3 {
          text-transform: uppercase;
          position: relative;
          margin-bottom: 20px;
          z-index: 7;
          color: black;
          text-align: left;
          line-height: 23.04px;
          display: table;
          background-color: rgba(255, 255, 255, 0.8);
          padding: 10px;
          width: 100%; }
        section.novinky div.novinky-cont div.novinky-unit div.novinky-text-wrapper p {
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease;
          font-size: 16px;
          text-align: left;
          opacity: 0;
          padding: 15px 20px; }

section.mapa {
  z-index: 3;
  position: relative;
  width: 100%;
  display: block; }
  section.mapa div#mapa {
    width: 100%;
    height: 300px;
    position: relative; }
  section.mapa div.mapa-cont {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    text-align: justify;
    margin-bottom: 30px; }
    @media only screen and (min-width: 0px) and (max-width: 479px) {
      section.mapa div.mapa-cont {
        width: 96%; } }
    section.mapa div.mapa-cont h2 {
      text-transform: uppercase;
      position: relative;
      margin-top: 30px;
      margin-left: 30px;
      text-align: left; }
    section.mapa div.mapa-cont h3 {
      text-transform: uppercase;
      position: relative;
      margin-top: 30px;
      margin-left: 30px;
      text-align: left; }
    section.mapa div.mapa-cont div.kontakt-wrap {
      position: relative;
      width: 300px;
      margin-top: 30px;
      width: 100%;
      z-index: 5; }
      section.mapa div.mapa-cont div.kontakt-wrap div {
        float: left;
        text-align: left;
        display: inline-block;
        width: 50%;
        line-height: 24px; }
        section.mapa div.mapa-cont div.kontakt-wrap div a {
          text-decoration: none;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease;
          color: #E73540; }
          section.mapa div.mapa-cont div.kontakt-wrap div a:hover {
            color: #5D737E; }
        section.mapa div.mapa-cont div.kontakt-wrap div div {
          width: 100%;
          display: block; }
      section.mapa div.mapa-cont div.kontakt-wrap div.left-column div {
        padding-left: 30px; }
      @media only screen and (min-width: 0px) and (max-width: 768px) {
        section.mapa div.mapa-cont div.kontakt-wrap div {
          float: none;
          width: 100%;
          display: block; }
          section.mapa div.mapa-cont div.kontakt-wrap div.right-column div {
            padding-left: 30px; } }

footer {
  z-index: 3;
  position: relative;
  width: 100%;
  display: block;
  background-color: #DDDDDD;
  padding: 20px 0; }
  footer div.foot-cont {
    position: relative;
    width: 90%;
    margin: 0px auto;
    max-width: 1000px;
    text-align: justify; }
    @media only screen and (min-width: 0px) and (max-width: 479px) {
      footer div.foot-cont {
        width: 96%; } }
    footer div.foot-cont ul {
      position: relative;
      width: 100%;
      height: 40px;
      text-align: left; }
      footer div.foot-cont ul li {
        line-height: 40px;
        height: 100%;
        padding-right: 20px;
        display: inline-block;
        text-transform: uppercase; }
        footer div.foot-cont ul li a {
          display: block;
          width: 100%;
          color: inherit;
          text-decoration: none;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          footer div.foot-cont ul li a:hover {
            color: #E73540; }
    @media only screen and (min-width: 769px) and (max-width: 910px) {
      footer div.foot-cont ul li {
        font-size: 11.2px; } }
    @media only screen and (min-width: 0px) and (max-width: 768px) {
      footer div.foot-cont ul {
        height: auto; }
        footer div.foot-cont ul li {
          display: block;
          padding-right: 0px;
          text-indent: 1em;
          line-height: 40px; } }

/*# sourceMappingURL=style.css.map */
