/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@-moz-keyframes bannerMotion {
  0% {
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}
@-webkit-keyframes bannerMotion {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}
@keyframes bannerMotion {
  0% {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}
html {
  height: 100%;
}

body {
  position: fixed;
  height: 100%;
  background-color: #000;
}
body #banner_cell {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
body #banner_cell .b_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
body #banner_cell .b_img.startMotion {
  -moz-animation: bannerMotion;
  -webkit-animation: bannerMotion;
  animation: bannerMotion;
  -moz-animation-duration: 4s;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
body #landing_a {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}
body #landing_a #landing_main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body #landing_a #landing_main #landing_video_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
}
body #landing_a #landing_main #landing_content {
  position: absolute;
  text-align: center;
  width: 50%;
  height: 150px;
  margin: auto;
  top: -1000px;
  bottom: -1000px;
  left: -10000px;
  right: -10000px;
}
body #landing_a #landing_main #landing_content img {
  width: 70px;
  height: 70px;
}
body #landing_a #landing_main #landing_content p {
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  margin-top: 20px;
}

body > div {
  position: fixed !important;
  z-index: 2 !important;
}

body > div#banner_cell {
  position: fixed !important;
  z-index: 1 !important;
}

body > a {
  position: fixed !important;
  z-index: 3 !important;
}

/* danny responsive.css
------------------------------------------------ */
/* lg, md, sm */
/* lg, md */
/* lg */
/* md */
/* sm, xs */
@media (max-width: 991px) {
  body #landing_a #landing_main #landing_content {
    width: 80%;
    height: 90px;
  }
  body #landing_a #landing_main #landing_content img {
    width: 40px;
    height: 40px;
  }
  body #landing_a #landing_main #landing_content p {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    margin-top: 20px;
  }
}
/* sm */
/* xs */
