html {
    scroll-behavior: smooth;
  }
    
    body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
    body, html {
      height: 100%;
      color: #000;
      line-height: 1.8;
    }  
    .w3-content {
        max-width: 1024px;
    }  
    hr {
        border: 1px solid black;
        width: 300px;
        margin: auto;
    }
    a {
        text-decoration: none;
    }
    .bgimg-1, .bgimg-2, .bgimg-3 {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }    
    .bgimg-1 {
      background-image: url('../img/waterfall.jpg');
      min-height: 100%;
    }  
    .bgimg-2 {
      background-image: url("../img/realizacje.jpg");
      min-height: 400px;
    }
    .bgimg-3 {
      background-image: url("../img/kontakt.jpg");
      min-height: 400px;
    }
    .w3-wide {letter-spacing: 10px;}
    .w3-hover-opacity {cursor: pointer;}
    
    @media only screen and (max-device-width: 1600px) {
      .bgimg-1, .bgimg-2, .bgimg-3 {
        background-attachment: scroll;
        min-height: 400px;
      }
    }
    .map-container iframe{
    height:493px;
    width:100%;
    }
    .come-in {
        transform: translateY(150px);
        animation: come-in 1s ease forwards;
      }
      .come-in:nth-child(odd) {
        animation-duration: 0.8s;
      }
      .already-visible {
        transform: translateY(0);
        animation: none;
      }
      
      @keyframes come-in {
        to { transform: translateY(0); }
      }
      
      @keyframes float{
          0%{transform: translateY(0)}
          50%{transform: translateY(15px)}
          100%{transform: translateY(0)}
      }
      .faa-float {
          animation: float 3s linear infinite;
      }
      .elegantshd {
        text-shadow: 2px 2px 4px #000000;
      }
      .shadowed {
        -webkit-filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.9));
        -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
        filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
      }
      .w3-justify {
      text-align: justify;
      }
     .zoom {
      transition: transform .2s;
      margin: 0 auto;
      }
      .zoom:hover {
      -ms-transform: scale(1.2); /* IE 9 */
      -webkit-transform: scale(1.2); /* Safari 3-8 */
      transform: scale(1.2); 
      } 
      /* Fading animation */
      .fade {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
      }

      @-webkit-keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
      }

      @keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
      }
      .active {
        background-color: #717171;
      }