@charset "utf-8";
/* CSS Document */




.lg {

  color: white;

}

.contactbk {
  background: url(../images/contactbk.jpg)no-repeat center center fixed;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  

  -webkit-animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;  
}

.contactbk.visible {
  opacity: 1;
}


@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.addressbk {

  height: 200px;
  background-color: rgba(0, 102, 204, 0.3);
}




#con-1 {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;  

  animation-duration: 2s; 
  -webkit-animation-duration: 2s;

  animation-timing-function: ease;  
  -webkit-animation-timing-function: ease;  

  visibility: visible !important;           
}


@keyframes slideDown {

  0%   { opacity: 0; }
  100% { opacity: 1; }
} 

@-webkit-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
 
   100% {
    transform: translateY(0%);
  }   
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}

@-moz-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}

@-o-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}


#con-2 {
    animation-delay: 0.5s;
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}


