 /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* Style */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
html, body {
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.bg {
  background: #181818 url('bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: fixed;
  top: -36px;
  left: -36px;
  right: -36px;
  bottom: -36px;
  z-index: -1;
  transition: all 3s linear;
}
.bg.active {
  filter: blur(7px);
}
.flex-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap:wrap;
      -ms-flex-wrap:wrap;
       -o-flex-wrap:wrap;
          flex-wrap:wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
     -moz-justify-content: center;
          justify-content: center;

   height: 100%;
   text-align: center;
   background-color: rgba(0,0,0, .6);
   position: relative;
   z-index: 10;
   color: #fff;
}
.logo {
  width: 200px;
  height: 90px;
  position: relative;
  margin: 20px auto;
}
.logo img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.tt {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.1;
  color: #fff;
}
.content {
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
  line-height: 1.4;
  color: #ddd;
}
.p {
  margin-bottom: 7px;
}
a {
  color: #ffe8a7;
  text-decoration: none;
}
a:hover {
  color: #eaab36;
}
@media screen and (min-width: 768px) {
  .content {
    text-align: left;
  }
  .logo {
    margin-left: 0;
  }
  .logo img {
    margin-left: 0;
  }
  .tt {
    font-size: 30px;
  }
  .content {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 992px) {
  .logo {
    width: 280px;
    margin-bottom: 30px;
  }
  .tt {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
  }
}




.anim {
  visibility: hidden;
}
.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}