/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Miriam+Libre");
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-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

body {
  font-family: "Miriam Libre", sans-serif;
  color: #fff; }

.page {
  min-height: 700px;
  height: 100vh;
  min-width: 960px;
  position: relative;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  -ms-flex-direction: column;
  padding: 40px 40px 80px;
  background-color: #000; }
  .page_index {
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 170px; }
    .page_index .logo {
      position: absolute;
      left: 50%;
      margin-left: -174px;
      top: 80px; }

.logo {
  width: 383px;
  height: 69px;
  display: block;
  background-image: url("../images/logo.png");
  background-size: 383px 69px;
  margin-bottom: 50px; }
  .logo__link {
    display: block;
    width: 100%;
    height: 100%; }

.footer {
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  padding: 0 40px;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
  align-items: center;
  -ms-flex-align: center;
  background-color: #000; }
  .footer__copyright {
    color: #7B7B7B;
    float: left;
    display: inline; }
  .footer__menu {
    display: inline; }
  .footer__menu-item {
    float: left;
    margin-left: 30px; }

.btn {
  height: 60px;
  color: #fff;
  min-width: 280px;
  background-color: #0E9755;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  line-height: 60px;
  margin: 50px 0;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  background-image: url("../images/chrome.png");
  background-position: 25px center;
  background-repeat: no-repeat;
  background-size: 30px;
  padding-left: 52px; }
  .btn:hover {
    background-color: #1FD358; }
  .btn:active {
    background-color: #0D7241; }

.link {
  color: #FFCE44;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .link:hover {
    color: #1FD358; }

.title {
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  margin-bottom: 25px; }
  .title_big {
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 0;
    margin-top: 20px;
    color: #15CE75; }

.main {
  text-align: center; }

.about {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -ms-flex-align: center; }
  .about img {
    margin-right: 50px; }
  .about p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    max-width: 400px;
    text-align: left; }

.description {
  color: #B2B2B2;
  font-size: 22px;
  margin: 0 auto; }

.addchrome {
  display: block;
  width: 88px;
  height: 133px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -66px;
  background-image: url("../images/addchrome.png");
  background-size: 88px 133px; }
  .addchrome:hover {
    background-image: url("../images/addchrome-hover.png"); }

/* Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo {
    background-image: url("../images/logo@2x.png"); }

  .btn {
    background-image: url("../images/chrome@2x.png"); }

  .addchrome {
    background-image: url("../images/addchrome@2x.png"); }
    .addchrome:hover {
      background-image: url("../images/addchrome-hover@2x.png"); } }

/*# sourceMappingURL=style.css.map */
