/* column extend - 5 columns */

.col-xs-2-5, .col-ms-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-2-5 {
  float: left;
}

.col-xs-2-5 {
  width: 20%;
}
.col-xs-pull-2-5 {
  right: 20%;
}
.col-xs-push-2-5 {
  left: 20%;
}
.col-xs-offset-2-5 {
  margin-left: 20%;
}


@media (min-width: 480px) {
  .col-ms-2-5 {
    float: left;
  }
  
  .col-ms-2-5 {
    width: 20%;
  }
  .col-ms-pull-2-5 {
    right: 20%;
  }
  .col-ms-push-2-5 {
    left: 20%;
  }
  .col-ms-offset-2-5 {
    margin-left: 20%;
  }
}


@media (min-width: 768px) {
  .col-sm-2-5 {
    float: left;
  }
  
  .col-sm-2-5 {
    width: 20%;
  }
  .col-sm-pull-2-5 {
    right: 20%;
  }
  .col-sm-push-2-5 {
    left: 20%;
  }
  .col-sm-offset-2-5 {
    margin-left: 20%;
  }
}

@media (min-width: 992px) {
  .col-md-2-5 {
    float: left;
  }
  
  .col-md-2-5 {
    width: 20%;
  }
  .col-md-pull-2-5 {
    right: 20%;
  }
  .col-md-push-2-5 {
    left: 20%;
  }
  .col-md-offset-2-5 {
    margin-left: 20%;
  }
}

@media (min-width: 1200px) {
  .col-lg-2-5 {
    float: left;
  }
  
  .col-lg-2-5 {
    width: 20%;
  }
  .col-lg-pull-2-5 {
    right: 20%;
  }
  .col-lg-push-2-5 {
    left: 20%;
  }
  .col-lg-offset-2-5 {
    margin-left: 20%;
  }
}


/* No padding row */

/*
.row.row-no-padding  {
    margin-right: 0;
    margin-left: 0;
}
*/
.row-no-padding [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}




/* Customize container */
/*
@media (min-width: 768px) {
  .container {
    width: auto;
  }
}
@media (min-width: 992px) {
  .container {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
*/


/* main layout settings */

html, body{
  height: 100%;
}

body {
  background: #fff;
  color: #000;

  font-family: 'Maven Pro', sans-serif;
  line-height: 1.45;
  font-weight: 400;
  font-size: 14px;
  text-align: center;

}

h1, 
h2, 
h3, 
h4 {
  font-weight: 400;
  /*text-transform: uppercase; */
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 40px;

}

h2 {
  font-size: 30px;
  margin-top: 0.2em;
}

h3 {
  font-size: 26px;
  color: #2958a6;
}

h4 {
  font-size: 13px;
}


p {
  margin-top: 0.1em;
  margin-bottom: 1.5em;
}

p.perex {
  font-size: 20px;
}

a {
  color: #c0c0c0;
  text-decoration: none;
}

a:hover {
  color: #d9d9d9;
  text-decoration: underline;
}

@media (min-width: 480px) {
  body {
    font-size: 15px;
  }

  h1{
  }

  h2 {
    font-size: 33px;
    margin-top: 0.5em;
  }
}

@media (min-width: 768px) {
  h1{

  }
  h2 {
    font-size: 35px;
  }

  h4 {
    font-size: 15px;
  }

}

@media (min-width: 992px) {
  h1{

  }
  h2 {
    font-size: 38px;
  }
}

@media (min-width: 1200px) {
  h1{

  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 15px;
  }
}






section {
}



.intro {
  height: 100%;
/*  background: #f2f2f2 url("../img/logo-big.jpg") 50% 50% no-repeat; */
/*  background-image: url("../img/sipka.svg"), url("../img/logo-black.jpg");
  background-position: 50% 95%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, contain; */

  background: #000 url("../img/logo-black.jpg") 50% 50% no-repeat;
  background-size: contain; 
  text-align: center;
  z-index: 50;
  position: relative;
/*  background: #000; */
}

.intro-ref {
  width: 100%;
  height: 100%;
  display: block;

}
.intro-ref:focus {
  outline: none;
}


.scroll-down {
  width: 40px;
  height: 40px;
  background: url("../img/sipka.svg") bottom no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 40;
  bottom: 20px;
  left: 50%;
  margin-left: -20px;
  opacity: 0.5;

/*  
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
  */
    
    -o-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
    -moz-animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
    animation-iteration-count:infinite;

    -o-animation-duration: 6s;
    -ms-animation-duration: 6s;
    -moz-animation-duration: 6s;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;

    -webkit-animation-name:scrollMore;
    animation-name:scrollMore;

}

@-webkit-keyframes scrollMore {
    0%,10%,25%,45%,100% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
    20%{
        -webkit-transform:translateY(-20px);
        transform:translateY(-20px);
    }
    30%{
        -webkit-transform:translateY(-10px);
        transform:translateY(-10px);
    }
}
@keyframes scrollMore {
    0%,10%,25%,45%,100% {
        -webkit-transform:translateY(0);
        -ms-transform:translateY(0);
        transform:translateY(0);
    }
    20% {
        -webkit-transform:translateY(-20px);
        -ms-transform:translateY(-20px);
        transform:translateY(-20px);
    }
    30% {
        -webkit-transform:translateY(-10px);
        -ms-transform:translateY(-10px);
        transform:translateY(-10px);
    }
}



.scroll-down:hover {
  opacity: 0.8;
/*  bottom: 10px; */
}

.scroll-down:focus {
  outline: none;
}


/* fixed bg on desktop */

@media (min-width: 1224px) {
  .intro {
    /* background-attachment: fixed;  */
  }

}

@media (min-width: 480px) {
  .scroll-down {
    width: 50px;
    height: 50px;
    margin-left: -25px;
        
  }
}

@media (min-width: 768px) {
  .scroll-down {
    width: 60px;
    height: 60px;
    margin-left: -30px;
        
  }
}

@media (min-height: 768px) {
  .scroll-down {
    width: 60px;
    height: 120px;
    bottom: 30px;
    margin-left: -30px;
        
  }
  .scroll-down:hover {
/*    bottom: 15px; */
  }

}






#big-logo {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;

  -moz-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}


.header {
  padding-top: 0px;
  padding-bottom: 0px;
  color: #1a1a1a;
  background-color: rgb(235, 235, 235); /* Fallback */
  background-color: rgba(235, 235, 235, 0.95); 
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 100;
  border-bottom: #e5e5e5 1px solid;
}

#logo {
  width: 70px;
  text-align: left;
  margin-left: -15px;
  margin-top: -4px;
  float: left;
}

#logo-text {
  text-align: right;
  float: right;
  font-size: 15px;
  margin-top: 21px;
}

.references {
  position: relative;
  padding-top: 60px;
  padding-bottom: 0px;
  z-index: 100;
  background: #f2f2f2;  
}


@media (min-width: 480px) {

}

@media (min-width: 768px) {
  #logo {
    width: 90px;
    margin-top: -4px;
  }
  #logo-text {
    font-size: 18px;
    margin-top: 28px;
  }
  .header {
    height: 80px;
  }
  .references {
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  #logo {
    width: 95px;
    margin-top: -1px;
  }
  #logo-text {
    font-size: 20px;
    margin-top: 33px;
  }
  .header {
    height: 90px;
  }
  .references {
    padding-top: 90px;
  }
}

@media (min-width: 1200px) {
  #logo {
    width: 105px;
    margin-top: -2px;
  }
  #logo-text {
    font-size: 22px;
    margin-top: 35px;
  }
  .header {
    height: 100px;
  }
  .references {
    padding-top: 100px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  .header {
    display: none;
  }
  .references {
    padding-top: 100px;
  }
}

.references {
  padding-top: 0px;
  background: #f2f2f2;  
}


.references ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.references li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  color: #000;
  width: 100%;
  float: left;
}


.reference figure {
  margin: 0;
  position: relative;
  text-align: center;
}

.reference figure img {
  position: relative;
}

.reference figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  background: url("../img/lupa.png") 50% 54% no-repeat;
  background-size: 30%;
  background-color: rgb(0, 0, 0); /* Fallback */
  background-color: rgba(0, 0, 0, 0.75); 
  color: #000;
}




/* Caption Style 3 */
.reference figure {
  overflow: hidden;
}

.reference figure img {
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}

.reference figure:hover img {
/*  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);*/
}

.reference figcaption {
  height: 100%;
  width: 100%;
  top: auto;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
  -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
}

.reference figure:hover figcaption {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
  -moz-transition: -moz-transform 0.4s, opacity 0.1s;
  transition: transform 0.4s, opacity 0.1s;
}

.reference figcaption a {
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  color: #fff;
}


.reference figcaption h3 {
  margin-top: 17%;
  color: #fff;
  font-size: 20px;
}

.reference figcaption .bottom-ref {
  font-size: 14px;
  width: 100%;
  position: absolute;
  bottom: 10%;
}


@media (min-width: 320px) {

  .reference figcaption {
    background-position: 50% 52%;
  }
  .references li {
    width: 50%;
    }
  .reference figcaption h3 {
    margin-top: 16%;
    font-size: 15px;
  }
  .reference figcaption .bottom-ref {
    font-size: 10px;
    bottom: 7%;
  }
}
@media (min-width: 480px) {

  .reference figcaption {
    background-position: 50% 51%;
  }
  .references li {
    width: 33.33333333%;
    }
  .reference figcaption h3 {
    margin-top: 16%;
    font-size: 16px;
  }
  .reference figcaption .bottom-ref {
    font-size: 11px;
    bottom: 9%;
  }
}
@media (min-width: 768px) {

  .reference figcaption {
    background-position: 50% 53%;
  }
  .references li {
    width: 33.33333333%;
    }
  .reference figcaption h3 {
    margin-top: 17%;
    font-size: 23px;
  }
  .reference figcaption .bottom-ref {
    font-size: 15px;
    bottom: 9%;
  }
}
@media (min-width: 1024px) {

  .reference figcaption {
    background-position: 50% 52%;
  }
  .references li {
    width: 25%;
    }
  .reference figcaption h3 {
    font-size: 22px;
  }
  .reference figcaption .bottom-ref {
    font-size: 15px;
    bottom: 9%;
  }
}
@media (min-width: 1224px) {
  .references li {
    width: 20%;
    }
  .reference figcaption h3 {
    font-size: 23px;
  }
  .reference figcaption .bottom-ref {
    font-size: 16px;
    bottom: 10%;
  }
}


.bottom {
  padding-top: 35px;
  padding-bottom: 30px;
  background: #000;
  color: #fff;
  z-index: 1;
  position: relative;
}

.contact {
}

.bottom h3 {
  padding-top: 0px;
  margin-top: -5px;
  color: #fff;
}

.logo-bottom {
  width: 160px;
}

.no-outline:focus {
  outline: none;
}



/* fixed bg on desktop */
/*
@media (min-width: 1224px) {
  
  .bottom-in {
    height: 310px;
  }
  .contact {
    width: 200px;
    position: fixed;
    bottom: 50px;
    left: 50%;
    margin-left: -100px;
  }

}

*/