/* Moje style */

div.features {
    text-align: center;
  }

span.anchor {
  visibility: hidden;
  display: block;
  height: 0;
}
  
  #gallery-flex {
    display: flex;
    justify-content: center;
  
  }
  
  .image-gallery {
    flex-basis: 50%;
    overflow: hidden;
    height: 450px;
  }
  
  .image-gallery img {
    width: 100%;
    height: 450px;
    transition: 0.5s;
  }
  
  .img-src1 {
    height: 100%;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .img-src2 {
    height: 100%;
    background-image: url(../img/bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .img-src3 {
    height: 100%;
    background-image: url(../img/bg3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .image-gallery:hover img {
    transform: scale(1.1);
  }
  
  .block.features {
    position: relative;
  }
  
  .features h2 {
    font-size: 40px;
  }
  .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: 0!important;
    }
  .features-bg {
    background-image: url(../img/bg4.jpg);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    opacity: .05;
  }
  
  div.feature {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 30px 15px;
    box-shadow: 1px 3px 5px #b8b8b8
  }
  
  .image-gallery {
    position: relative;
    cursor: pointer
  }
  
  .image-gallery h3 {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 55px;
    text-align: center;
    text-shadow: 1px 1px 4px #333;
    display: none;
    transition: .5;
    z-index: 3;
  }
  
  .image-gallery h3.active {
    display: block;
    animation: slideDown 0.5s forwards;
  }
  
  .image-gallery .btn.btn-default.btn.btn-default {
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    transition: .5;
    z-index: 3;
    background-color: white;
    color: black;
  }
  
  .image-gallery .btn.btn-default.btn.btn-default:hover {
    background-color: transparent;
    color: white;
    border-color: white;
  }
  
  .image-gallery .btn.btn-default.btn.btn-default.active {
    display: block;
    animation: slideUp 0.5s forwards;
  }
  .contact-info-mobile {
    font-weight: bold;
  }
  .bgWrap {
    position: absolute;
    background-color: #111;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: 1s;
  }
  
  .bgWrap.active {
    opacity: 0.7;
    transition: 0.5s;
  }
  
  @keyframes slideDown {
    0% {
      top: 0%;
    }
  
    100% {
      top: 40%;
    }
  }
  
  @keyframes slideUp {
    0% {
      top: 100%;
    }
  
    100% {
      top: 70%;
    }
  }
  
  .fa-icon {
    font-size: 50px;
    color: #333;
  }
  
  .btn.btn-default.btn.btn-default {
    padding: 10px 25px !important;
  }
  
  .mapouter {
    position: relative;
    border: 2px solid #ddd3;
  }
  
  #page-footer {
    padding: 0!important;
  }
  
  .mapouter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: black;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
  }
  
  .map-frame {
    width: 100%;
    height: 550px;
  }
  
  .logo-div {
    width: 20%;
    padding: 10px 0px;
    transition: 0.5s;
  }
  
  #contact h2 {
    text-align: center;
    font-size: 40px;
  }
  
  #contact h3 {
    font-size: 22px;
  }
  
  #contact address {
    font-size: 14px;
  }
  
  #contact .social {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  
  @media (max-width: 1024px) and (orientation: landscape) {
    .image-gallery img {
      height: 300px;
    }
  }
  
  @media (max-width: 1023px) {
    .navigation .wrapper {
      padding: 10px 0 !important;
    }
  
    .logo-div {
      padding: 0px;
      width: 30%;
    }
  
    header .hero-title .container {
      margin-top: 70px;
    }
  
    header h1 {
      font-size: 45px;
    }
  
    header .hero-section p {
      font-size: 14px;
    }
  
    header .btn.btn-default.btn.btn-default {
      padding: 10px 25px !important;
      margin-bottom: 20px;
      font-size: 12px;
    }
  
    .row.features>div {
      width: 50%;
    }
  
    .row.features>div .feature {
      width: 100%;
    }
  
    .features h2 {
      margin-bottom: 40px;
    }
  
    .features>div {
      margin: 0 auto;
    }
  
    .feature {
      margin: 20px auto;
      width: 60%;
    }
  
    .feature h3 {
      font-size: 18px !important;
    }
  
    #gallery-flex {
      display: flex;
      flex-wrap: wrap;
    }
  
    .image-gallery {
      flex-basis: 100%;
    }
  
    .image-gallery img {
      height: 400px;
    }
  
    .image-gallery h3 {
      font-size: 50px;
    }
  
    .image-gallery h3.active {
      text-align: center;
    }
  
    .image-gallery .btn.btn-default.btn.btn-default {
      padding: 8px 20px !important;
      color: black;
      font-size: 14px;
    }
    @keyframes slideDown {
      0% {
        top: 0%;
      }
  
      100% {
        top: 40%;
      }
    }
  
    @keyframes slideUp {
      0% {
        top: 100%;
      }
  
      100% {
        top: 70%;
      }
    }
  
    #contact {
      text-align: center;
      padding-bottom: 30px;
    }
  
    #contact>.row {
      margin: 0 auto !important;
    }
  
    #contact .row-info {
      display: flex;
      margin-bottom: 10px;
    }
  
    #contact .row>div {
      margin-bottom: 15px;
    }
  
    #contact .address-data,
    #contact .social-data {
      flex-basis: 50%;
    }
  
    #contact .contact-form {
      width: 70%;
      text-align: center;
      margin: 0 auto;
    }
  
    #contact .col-md-5.col-sm-5 {
      width: 100%;
    }
  
    .map-frame {
      width: 100%;
      height: 300px;
    }
  
    #page-footer {
      height: 300px !important;
      padding: 0 !important;
    }
  }
  
  @media (max-width: 1024px) and (orientation: portrait) {
    header h1 {
      font-size: 90px;
    }
  
    header .hero-section p {
      font-size: 20px;
    }
  
    header .btn.btn-default.btn.btn-default {
      font-size: 20px;
    }
  
    .image-gallery img {
      height: 360px;
    }
  
    .image-gallery h3 {
      font-size: 45px;
    }
  
    .image-gallery .btn.btn-default.btn.btn-default {
      padding: 8px 20px !important;
      color: black;
      font-size: 14px;
    }
  
    #contact .contact-form {
      width: 70%;
      margin-left: 15%;
      text-align: center;
    }
  
    #contact .col-md-5.col-sm-5 {
      width: 100%;
    }
  
    #contact .row-info>div {
      text-align: center;
    }
  
  }
  
  @media (max-width: 1023px) and (orientation: portrait) {
    header h1 {
      font-size: 75px;
    }
  
    header .hero-section p {
      font-size: 16px;
    }
  
    header .btn.btn-default.btn.btn-default {
      padding: 10px 25px !important;
      margin-bottom: 20px;
      font-size: 16px;
    }
  
    .image-gallery img {
      height: 440px;
    }
  
    .image-gallery h3 {
      font-size: 60px;
    }
  
    .image-gallery h3.active {
      text-align: center;
    }
  
    .image-gallery .btn.btn-default.btn.btn-default {
      padding: 8px 20px !important;
      color: black;
      font-size: 16px;
    }
  
    #contact .contact-form {
      width: 70%;
      margin-left: 15%;
      text-align: center;
    }
  
  
  }
  
  @media (max-width: 767px) {
    .image-gallery img {
      height: 360px;
    }
  
    .row.features>div {
      width: 65%;
    }
  
  }
  
  @media (max-width: 567px) {
    .fa-icon {
      position: static !important;
      padding-top: 20px;
      font-size: 50px;
    }
  
    .logo-div {
      padding: 0px;
      width: 50%;
    }
  
    .navigation .wrapper {
      padding: 10px 0 !important;
    }
  
    header .hero-title .container {
      margin-top: 100px;
    }
  
    header h1 {
      font-size: 45px;
    }
  
    header .hero-section p {
      font-size: 14px;
    }
  
    header .btn.btn-default.btn.btn-default {
      padding: 10px 25px !important;
      margin-bottom: 20px;
      font-size: 14px;
    }
  
    .image-gallery {
      position: relative;
      cursor: pointer;
      overflow: hidden;
    }
  
    .image-gallery img {
      height: 300px;
    }
  
    .image-gallery h3 {
      font-size: 36px;
    }
  
    .image-gallery h3.active {
      text-align: center;
    }

    .image-gallery .btn.btn-default.btn.btn-default {
      padding: 8px 20px !important;
      color: black;
      font-size: 12px;
    }
  
    @keyframes slideDown {
      0% {
        top: 0%;
      }
  
      100% {
        top: 30%;
      }
    }
  
    @keyframes slideUp {
      0% {
        top: 100%;
      }
  
      100% {
        top: 70%;
      }
    }
  
    .row.features>div {
      width: 100%;
    }
  
    .feature {
      margin: 20px auto;
      width: 90%;
    }
  
    .feature h3 {
      margin-top: 5px !important;
      font-size: 16px !important;
    }
  
    #contact .row-info {
      display: block;
    }
  
    #contact .row-info>div {
      margin-bottom: 40px;
    }
  
    #contact address {
      color: #333 !important;
    }
  
    #contact i {
      font-size: 18px;
    }
  
    #contact .contact-form {
      width: 90%;
      text-align: center;
      margin: 0 auto;
    }
  
  }
  
  @media (max-width: 410px) {
    .image-gallery img {
      height: 260px;
    }
  }
  
  .col-md-4.col-sm-4 {
box-sizing: border-box;
    padding: 12px;
   
  }

  div.description {
    height: 200px;
  }


  .contact-info-mobile h3 {
      border: 2px solid goldenrod;
      background-color: #333;
      color:white;
      padding: 10px 40px; 
      width: 100%;
      margin: 10px auto;
      border-radius: 5%;

  }

  .col-sm-6 {
width: 33%;

  }

  .col-md-5.col-sm-5 {
    width: 100%;
    text-align: center;
  }

  #contact {
    padding: 20px ;
    margin-top: -5%;
  }

  @media (max-width:767px) {
    .col-sm-6 {
      width: 100%;
        }
  }

  @media (min-width:1600px) {
       .contact-info-mobile {
           display:none;
       }
  }



 