/* 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" /> */
/* line 5, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*
responsive menu
*/
/* line 22, ../sass/_page.scss */
html, body, .page {
  width: 100%;
  height: 100%;
  font-family: Arial, serif;
  min-height: 525px;
}
@media (max-width: 959px) {
  /* line 22, ../sass/_page.scss */
  html, body, .page {
    height: auto;
  }
}

/* line 32, ../sass/_page.scss */
body {
  background-color: black;
}

/* line 36, ../sass/_page.scss */
a {
  text-decoration: none;
}

/* line 43, ../sass/_page.scss */
.background {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
  background: url("../images/bg_clear.jpg") center center no-repeat;
  background-size: cover;
  min-height: 100vh;
  animation-name: backblur;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

/* line 61, ../sass/_page.scss */
.page {
  position: relative;
  top: 0;
  z-index: 1;
}
/* line 65, ../sass/_page.scss */
.page .wrapper {
  min-height: 100%;
  position: relative;
  padding-bottom: 65px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  /* line 65, ../sass/_page.scss */
  .page .wrapper {
    width: 1080px;
  }
}
@media (max-width: 1079px) {
  /* line 65, ../sass/_page.scss */
  .page .wrapper {
    width: 960px;
  }
}
@media (max-width: 959px) {
  /* line 65, ../sass/_page.scss */
  .page .wrapper {
    width: 100%;
    min-height: 0;
  }
}

@keyframes unhide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backblur {
  from {
    /*background: url("../images/bg_clear.jpg") center center no-repeat;
    background-size: cover;
    min-height: 100vh;*/
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -o-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
  }
  to {
    /*background: url("../images/bg_blur.jpg") center center no-repeat;
    background-size: cover;
    min-height: 100vh;*/
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
  }
}
/* line 112, ../sass/_page.scss */
.header {
  background-color: #564b4a;
  height: 140px;
}
@media (max-width: 759px) {
  /* line 112, ../sass/_page.scss */
  .header {
    height: auto;
    overflow: visible;
  }
}
/* line 120, ../sass/_page.scss */
.header .burger {
  display: none;
  background-color: black;
  width: 50px;
  height: 50px;
}
@media (max-width: 759px) {
  /* line 120, ../sass/_page.scss */
  .header .burger {
    display: block;
  }
}
/* line 128, ../sass/_page.scss */
.header .burger span {
  float: left;
  width: 30px;
  height: 2px;
  margin: 4px 10px;
  background-color: white;
}
/* line 134, ../sass/_page.scss */
.header .burger span:first-child {
  margin-top: 14px;
}
/* line 140, ../sass/_page.scss */
.header .section {
  margin: 0 50px;
}
@media (max-width: 759px) {
  /* line 140, ../sass/_page.scss */
  .header .section {
    overflow: auto;
    padding-bottom: 0px;
  }
}
/* line 146, ../sass/_page.scss */
.header .section .slogan {
  float: left;
  padding-top: 20px;
  color: #b2b2b2;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  animation-name: unhide;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@media (max-width: 759px) {
  /* line 146, ../sass/_page.scss */
  .header .section .slogan {
    float: none;
    margin: 0 auto;
    font-size: 14px;
  }
}
/* line 166, ../sass/_page.scss */
.header .section .navigation {
  float: left;
  clear: left;
  margin-top: 55px;
}
/* line 170, ../sass/_page.scss */
.header .section .navigation li {
  float: left;
  margin-right: 35px;
}
/* line 173, ../sass/_page.scss */
.header .section .navigation li a {
  color: black;
  font-size: 13px;
}
/* line 176, ../sass/_page.scss */
.header .section .navigation li a:hover {
  color: white;
}
@media (max-width: 759px) {
  /* line 166, ../sass/_page.scss */
  .header .section .navigation {
    display: none;
    margin: 0px auto 0 auto;
    padding-top: 40px;
  }
  /* line 185, ../sass/_page.scss */
  .header .section .navigation li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  /* line 189, ../sass/_page.scss */
  .header .section .navigation li:last-child {
    margin-bottom: 0px;
  }
}
/* line 196, ../sass/_page.scss */
.header .section .abtlogo {
  float: right;
  height: 113px;
  width: 149px;
  padding-top: 19px;
  background-size: 149px 113px;
  background-image: url("../images/abt.png");
  background-repeat: no-repeat;
  background-position: bottom;
}
/* line 206, ../sass/_page.scss */
.header .section .abtlogo:hover {
  background-image: url("../images/abt_over.png");
  cursor: pointer;
  cursor: hand;
}
@media (max-width: 759px) {
  /* line 196, ../sass/_page.scss */
  .header .section .abtlogo {
    float: none;
    margin: 45px auto 0px auto;
    width: 229px;
    height: 173px;
    background-size: 229px 173px;
  }
}

/* line 223, ../sass/_page.scss */
.main {
  margin: 80px auto 70px auto;
  width: 470px;
  font-size: 15px;
  line-height: 18px;
  color: #b2b2b2;
  text-align: center;
  opacity: 0;
  animation-name: unhide;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
@media (max-width: 759px) {
  /* line 223, ../sass/_page.scss */
  .main {
    width: 90%;
    padding: 0 5%;
  }
}
/* line 243, ../sass/_page.scss */
.main .logoimage {
  width: 100%;
  height: auto;
  padding-top: 30px;
}

/* line 250, ../sass/_page.scss */
.footer {
  margin: 0 50px;
  position: absolute;
  bottom: 0;
  height: 65px;
}
/* line 255, ../sass/_page.scss */
.footer .section {
  color: white;
  font-size: 9px;
}

/* line 261, ../sass/_page.scss */
.preloader {
  display: none;
}
