/* FONTS */
@font-face {
  font-family: "cera_problack";
  src: url("./podklady/fonts/cerapro-black-webfont.woff2") format("woff2"), url("./podklady/fonts/cerapro-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "cera_probold";
  src: url("./podklady/fonts/cerapro-bold-webfont.woff2") format("woff2"), url("./podklady/fonts/cerapro-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "cera_prolight";
  src: url("./podklady/fonts/cerapro-light-webfont.woff2") format("woff2"), url("./podklady/fonts/cerapro-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* COLORS */
/* GLOBAL CSS */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  font-family: cera_probold;
  color: #FFFFFF;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

.main-background {
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: #000000;
  position: absolute;
}

.main-background .cross {
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(./podklady/SVG/cross.svg);
  background-size: 5vw;
  background-repeat: repeat;
  position: absolute;
}

@media (orientation: portrait) {
  .main-background .cross {
    display: none;
  }
}

.main-background .gimg {
  width: 100%;
  height: 18vw;
  z-index: -3;
  background-image: url(./podklady/SVG/watermark.svg);
  background-size: 100vw;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  opacity: 0.05;
}

.main-background .gradient {
  width: 100vw;
  height: 100vw;
  background: #000000;
  background: radial-gradient(circle, #FFFFFF 20%, #000000 70%);
  z-index: -1;
  opacity: 0.2;
  position: absolute;
}

.main-background .upper {
  margin-top: -50vw;
}

.main-background .lower {
  bottom: 0px;
  margin-bottom: -50vw;
}

.endless {
  height: 300vw;
}

.logo {
  position: fixed;
  left: 0;
  top: 0;
  height: 12vw;
  width: 12vw;
  background-image: url(./podklady/SVG/logo.svg);
  background-repeat: no-repeat;
  margin: 1.5vw;
}

@media (orientation: portrait) {
  .logo {
    height: 3em;
    width: 100vw;
    padding: 2em;
    z-index: 3;
    background-color: #000;
    margin: 0;
    background-size: 5em 3em;
    background-position: 0.5em 0.5em;
  }
}

.menu {
  position: fixed;
  right: 4vw;
  top: 0;
}

@media (orientation: portrait) {
  .menu {
    right: 3em;
    top: 0px;
    z-index: 10;
  }
}

.menu .caption {
  padding: 1.5vw;
  font-size: 2vw;
  cursor: pointer;
  position: relative;
}

@media (orientation: portrait) {
  .menu .caption {
    padding: 0.5em;
    font-size: 1.5em;
  }
}

.menu .caption:after {
  content: " ";
  display: block;
  height: 2vw;
  width: 2vw;
  background-image: url(./podklady/SVG/menu.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: -1.4vw;
  top: 1.8vw;
}

@media (orientation: portrait) {
  .menu .caption:after {
    height: 1.5em;
    width: 1.5em;
    right: -1.5em;
    top: 0.4em;
  }
}

.sl-menu {
  position: fixed;
  right: -50vw;
  height: 100vh;
  width: 50vw;
  background-color: #84BD00;
  -webkit-transition: right 0.5s ease-out;
  transition: right 0.5s ease-out;
  opacity: 0.9;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
}

@media (orientation: portrait) {
  .sl-menu {
    right: -100vw;
    height: 100vh;
    width: 100vw;
  }
}

.sl-menu .close {
  position: absolute;
  right: 0;
  top: 0;
  height: 2vw;
  width: 2vw;
  background-image: url(./podklady/SVG/close.svg);
  background-repeat: no-repeat;
  margin: 2vw 2.5vw;
  cursor: pointer;
}

@media (orientation: portrait) {
  .sl-menu .close {
    height: 2em;
    width: 2em;
    margin: 1em 1em;
  }
}

.sl-menu ul {
  height: 80%;
  width: 100%;
  margin-top: 20%;
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (orientation: portrait) {
  .sl-menu ul {
    height: 70%;
    margin-top: 20%;
  }
}

.sl-menu ul .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sl-menu ul .item a {
  text-decoration: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 2vw;
}

@media (orientation: portrait) {
  .sl-menu ul .item a {
    font-size: 1.5em;
  }
}

.slide-in {
  right: 0px;
}

.carousel {
  position: absolute;
  left: 23vw;
  top: 5vw;
  height: 42vw;
  width: 54vw;
}

@media (orientation: portrait) {
  .carousel {
    position: relative;
    top: 5em;
    left: 0px;
    height: 80vw;
    width: 100%;
    margin-bottom: 0px !important;
  }
}

@media (orientation: portrait) {
  .carousel .slick-prev {
    left: 25px;
    display: none !important;
  }
}

@media (orientation: portrait) {
  .carousel .slick-next {
    right: 25px;
    display: none !important;
  }
}

.carousel .first {
  background-image: url(./podklady/PNG/title_projekt.png);
}

@media (orientation: portrait) {
  .carousel .first {
    background-image: url(./podklady/PNG/title_projekt_sm.png);
  }
}

.carousel .second {
  background-image: url(./podklady/PNG/title_ing.png);
}

@media (orientation: portrait) {
  .carousel .second {
    background-image: url(./podklady/PNG/title_ing_sm.png);
  }
}

.carousel .third {
  background-image: url(./podklady/PNG/title_TDI.png);
}

@media (orientation: portrait) {
  .carousel .third {
    background-image: url(./podklady/PNG/title_TDI_sm.png);
  }
}

.carousel .item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.carousel-control {
  position: absolute;
  left: 23vw;
  top: 5vw;
  height: 42vw;
  width: 54vw;
}

@media (orientation: portrait) {
  .carousel-control {
    left: 0px;
    height: 7em;
    top: -1em;
    width: 100%;
    position: relative;
  }
}

.carousel-control .caption {
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 0 10px #000000;
  font-size: 3.5vw;
  text-align: center;
  position: absolute;
  bottom: 4vw;
  width: 54vw;
}

@media (orientation: portrait) {
  .carousel-control .caption {
    font-size: 2.5em;
    position: relative;
    bottom: 0px;
    width: 100%;
    text-align: center;
  }
}

.slick-dots {
  position: fixed;
  right: 2vw;
  bottom: 4vw;
}

@media (orientation: portrait) {
  .slick-dots {
    display: none !important;
  }
}

.social {
  position: fixed;
  left: 3vw;
  bottom: 3vw;
}

@media (orientation: portrait) {
  .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    left: 0px;
    top: 0px;
    position: relative;
  }
}

.social .icon {
  width: 3vw;
  height: 3vw;
  background-size: cover;
  margin: 1vw 0.25vw;
}

@media (orientation: portrait) {
  .social .icon {
    width: 2em;
    height: 2em;
    margin: 1em 1em 1em;
  }
}

.social .email {
  background-image: url(./podklady/SVG/email.svg);
}

.social .facebook {
  background-image: url(./podklady/SVG/facebook.svg);
}

.social .linked {
  background-image: url(./podklady/SVG/linkedin.svg);
}

.content {
  width: 66vw;
  position: absolute;
  margin: 12vw 17vw 0vw 17vw;
}

@media (orientation: portrait) {
  .content {
    width: 100%;
    margin: 0vw;
  }
}

.content h1 {
  font-size: 4.5vw;
  margin: 2.5vw 0vw;
  text-transform: uppercase;
  text-align: center;
}

@media (orientation: portrait) {
  .content h1 {
    font-size: 2.5em;
    margin: 0px 10% 0px;
    width: 80%;
    text-align: center;
  }
}

.content h2 {
  font-size: 3vw;
  font-family: cera_prolight;
  font-weight: lighter;
  margin: 2.5vw 0vw;
  text-transform: uppercase;
  text-align: center;
}

@media (orientation: portrait) {
  .content h2 {
    font-size: 2em;
  }
}

.content p {
  font-family: cera_prolight;
  font-size: 1.15vw;
  margin: 2vw 0vw;
  text-align: justify;
}

@media (orientation: portrait) {
  .content p {
    font-size: 1.15em;
    margin: 1em 1em;
  }
}

.content .placeholder {
  margin: 10vw 0vw;
}

.content .docs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (orientation: portrait) {
  .content .docs {
    margin: 5%;
  }
}

.content .docs .line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.6vw 0vw;
  font-size: 1vw;
  border-top: 1px solid #84BD00;
}

.content .docs .line span {
  margin: 0.1vw;
  position: relative;
  top: 0.1vw;
  left: 0px;
}

@media (orientation: portrait) {
  .content .docs .line span {
    margin: 0.1em;
    top: 0.1em;
  }
}

@media (orientation: portrait) {
  .content .docs .line {
    font-size: 1.15em;
    margin: 0.5em 0px;
  }
}

.content .docs .line .first {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content .docs .line .second {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  font-family: cera_prolight;
}

.content .docs .line .second a {
  color: #FFFFFF;
}

.content .docs .line:last-child {
  border-bottom: 1px solid #84BD00;
}

.content .coop {
  width: 80%;
  margin: 0 auto;
}

@media (orientation: portrait) {
  .content .coop {
    width: 90%;
  }
}

.content .coop .item {
  width: 15vw;
  height: 15vw;
  background-size: 55%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1A1A1A;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  margin: 0.5vw;
}

@media (orientation: portrait) {
  .content .coop .item {
    height: 50vw;
    margin: 0.25em;
  }
}

.content .coop .ceps {
  background-image: url(./podklady/SVG/logo_ceps.svg);
}

.content .coop .cez {
  background-image: url(./podklady/SVG/logo_cez.svg);
}

.content .coop .eon {
  background-image: url(./podklady/SVG/logo_eon.svg);
}

.content .coop .rsd {
  background-image: url(./podklady/SVG/logo_rsd.svg);
}

.content .coop .tenza {
  background-image: url(./podklady/SVG/logo_tenza.svg);
}

.content .coop .tkp {
  background-image: url(./podklady/SVG/logo_tkp.svg);
}

.content .coop .sus {
  background-image: url(./podklady/SVG/logo_sus.svg);
}

.content .coop .slick-prev {
  left: -4vw;
}

.content .coop .slick-next {
  right: -4vw;
}

.content .coop .slick-current {
  background-color: #84BD00;
  background-size: 85%;
}

.content .split {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (orientation: portrait) {
  .content .split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.content .split h1 {
  text-align: left;
}

@media (orientation: portrait) {
  .content .split h1 {
    font-size: 2.5em;
    margin: 0px 0.5em 0px;
    width: 80%;
  }
}

.content .split .square {
  width: 1.6vw;
  height: 1.6vw;
  background-color: #84BD00;
}

@media (orientation: portrait) {
  .content .split .square {
    width: 1.2em;
    height: 1.2em;
    margin-left: 1.5em;
  }
}

.content .split .first {
  -webkit-box-flex: 1;
      -ms-flex: 1 40%;
          flex: 1 40%;
}

@media (orientation: portrait) {
  .content .split .first {
    margin-top: -5em;
    z-index: 1;
  }
}

.content .split .second {
  -webkit-box-flex: 1;
      -ms-flex: 1 60%;
          flex: 1 60%;
  height: 40vw;
  margin-bottom: -10vw;
}

@media (orientation: portrait) {
  .content .split .second {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 20em;
    margin-bottom: 0px;
  }
}

.content .split .second .splash {
  position: relative;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: -4vw;
}

.content .split .second .ing {
  background-image: url(./podklady/PNG/title_ing.png);
}

@media (orientation: portrait) {
  .content .split .second .ing {
    background-image: url(./podklady/PNG/title_ing_sm.png);
  }
}

.content .split .second .tdi {
  background-image: url(./podklady/PNG/title_TDI.png);
}

@media (orientation: portrait) {
  .content .split .second .tdi {
    background-image: url(./podklady/PNG/title_ing_sm.png);
  }
}

.content .split .second .pci {
  background-image: url(./podklady/PNG/title_projekt.png);
}

@media (orientation: portrait) {
  .content .split .second .pci {
    background-image: url(./podklady/PNG/title_projekt_sm.png);
  }
}

.content .block {
  margin-bottom: 7vw;
}

@media (orientation: portrait) {
  .content .block {
    margin-bottom: 4em;
  }
}

.content .block h2 {
  font-size: 2.5vw;
}

@media (orientation: portrait) {
  .content .block h2 {
    font-size: 1.75em;
    text-align: left;
    margin-left: 0.5em;
  }
}

.content .block p {
  margin: 1vw 0vw;
}

@media (orientation: portrait) {
  .content .block p {
    font-size: 1.15em;
    margin: 1em 1em 1em 2em;
  }
}

.content .block p:before {
  content: "";
  display: inline-block;
  width: 0.8vw;
  height: 0.8vw;
  margin-right: -0.8vw;
  background-color: #FFFFFF;
  left: -2vw;
  top: 0.1vw;
  position: relative;
}

@media (orientation: portrait) {
  .content .block p:before {
    width: 0.5em;
    height: 0.5em;
    margin-right: -0.5em;
    left: -1em;
    top: 0.15em;
  }
}

.content .block .nobefore:before {
  content: none;
}

.content .refs {
  width: 80%;
  margin: 0 auto;
}

@media (orientation: portrait) {
  .content .refs {
    width: 90%;
    margin: 5%;
  }
}

.content .refs .item {
  width: 15vw;
  height: 15vw;
  background-color: #1A1A1A;
  margin: 0.5vw;
  border: 0.5vw solid #1A1A1A;
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}

@media (orientation: portrait) {
  .content .refs .item {
    height: 20em;
  }
}

.content .refs .item .caption {
  width: 80%;
  text-align: center;
  margin: 40% 10%;
  font-family: cera_prolight;
  font-size: 1.1vw;
  text-shadow: 0px 0px 2px black;
}

@media (orientation: portrait) {
  .content .refs .item .caption {
    font-size: 1.3em;
  }
}

.content .refs .slick-prev {
  left: -4vw;
}

.content .refs .slick-next {
  right: -4vw;
}

.content .refs .slick-current {
  background-size: cover;
  background-position: center center;
  border: 0.5vw solid #84BD00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content .refs .slick-current .caption {
  font-family: cera_probold;
}

.content .refs-ing .slick-current.refs1 {
  background-image: url("./podklady/PNG/ing/cez.jpg");
}

.content .refs-ing .slick-current.refs2 {
  background-image: url("./podklady/PNG/ing/trap.jpg");
}

.content .refs-ing .slick-current.refs3 {
  background-image: url("./podklady/PNG/ing/spu.jpg");
}

.content .refs-ing .slick-current.refs4 {
  background-image: url("./podklady/PNG/ing/sus.jpg");
}

.content .refs-ing .slick-current.refs5 {
  background-image: url("./podklady/PNG/ing/kovo.jpg");
}

.content .refs-tdi .slick-current.refs1 {
  background-image: url("./podklady/PNG/tdi/viton.jpg");
}

.content .refs-tdi .slick-current.refs2 {
  background-image: url("./podklady/PNG/tdi/jcu.jpg");
}

.content .refs-tdi .slick-current.refs3 {
  background-image: url("./podklady/PNG/tdi/nedabyle.jpg");
}

.content .refs-tdi .slick-current.refs4 {
  background-image: url("./podklady/PNG/tdi/schwan.jpg");
}

.content .refs-tdi .slick-current.refs5 {
  background-image: url("./podklady/PNG/tdi/riegrova.jpg");
}

.content .refs-pci .slick-current.refs1 {
  background-image: url("./podklady/PNG/pci/rsd.jpg");
}

.content .refs-pci .slick-current.refs2 {
  background-image: url("./podklady/PNG/pci/eon.jpg");
}

.content .refs-pci .slick-current.refs3 {
  background-image: url("./podklady/PNG/pci/tkp.jpg");
}

.content .refs-pci .slick-current.refs4 {
  background-image: url("./podklady/PNG/pci/ceps.jpg");
}

.content .refs-pci .slick-current.refs5 {
  background-image: url("./podklady/PNG/pci/hertz.jpg");
}

.content .refs-sub {
  margin: 1vw 6.6vw;
}

.content .refs-sub .modal {
  background: #1A1A1A;
  top: 0px;
  right: 0px;
  padding: 0vw 3vw 1.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (orientation: portrait) {
  .content .refs-sub .modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: none;
        -ms-flex-align: none;
            align-items: none;
    -ms-flex-line-pack: space-evenly;
        align-content: space-evenly;
  }
}

.content .refs-sub .modal h3 {
  text-align: center;
  padding: 1.5vw;
  font-size: 1.75vw;
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

@media (orientation: portrait) {
  .content .refs-sub .modal h3 {
    font-size: 1.5em;
  }
}

.content .refs-sub .modal h4 {
  text-align: left;
  padding: 0vw 1vw;
  font-size: 1.1vw;
  text-transform: uppercase;
}

@media (orientation: portrait) {
  .content .refs-sub .modal h4 {
    font-size: 1em;
  }
}

.content .refs-sub .modal h4:before {
  content: "";
  display: inline-block;
  width: 1vw;
  height: 1vw;
  background-color: #84BD00;
  left: -1vw;
  top: -0.05vw;
  position: relative;
}

.content .refs-sub .modal p {
  font-size: 1vw;
  padding: 0vw 1vw;
  margin: 0.5vw 1vw 1vw;
}

@media (orientation: portrait) {
  .content .refs-sub .modal p {
    font-size: 1em;
    padding: 0vw 1em;
    margin: 0.5em 1em 2em;
  }
}

.content .refs-sub .modal .caption p {
  padding: 0vw;
  margin: 0.3vw 0vw;
  text-align: left;
}

@media (orientation: portrait) {
  .content .refs-sub .modal .caption p {
    padding: 0vw 1em;
    margin: 0.5em 0em 0.5em 1em;
  }
}

.content .refs-sub .modal .ids, .content .refs-sub .modal .caption {
  -webkit-box-flex: 1;
      -ms-flex: 1 50%;
          flex: 1 50%;
}

@media (orientation: portrait) {
  .content .refs-sub .modal .ids, .content .refs-sub .modal .caption {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (orientation: portrait) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contacts .half {
  -webkit-box-flex: 1;
      -ms-flex: 1 50%;
          flex: 1 50%;
}

@media (orientation: portrait) {
  .contacts .half {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 1.5em 0px;
  }
}

.contacts h2 {
  font-size: 1.8vw;
}

@media (orientation: portrait) {
  .contacts h2 {
    font-size: 1.5em;
  }
}

.contacts h2:before {
  content: "";
  display: inline-block;
  width: 1vw;
  height: 1vw;
  background-color: #84BD00;
  left: -1vw;
  top: -0.05vw;
  position: relative;
}

@media (orientation: portrait) {
  .contacts h2:before {
    width: 0.5em;
    height: 0.5em;
    background-color: #84BD00;
    left: -0.5em;
    top: -0.02em;
  }
}

.contacts p {
  margin: 0.1vw 0vw;
  text-align: center;
}

.contacts .margin {
  margin-bottom: 2vw;
}

.contacts .placeholder {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  margin: 3vw 0vw;
}

@media (orientation: portrait) {
  .contacts .placeholder {
    display: none;
  }
}

.contacts .map {
  height: 35vw;
  background-image: url(./podklady/PNG/map.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 50px 7px rgba(0, 0, 0, 0.75);
}

@media (orientation: portrait) {
  .contacts .map {
    height: 25em;
    width: 90%;
    margin: 5%;
  }
}
/*# sourceMappingURL=ging.css.map */