/* -------------------------------------------------------------
  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 "https://fonts.googleapis.com/css?family=Noto+Sans:400,700";
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; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  font-family: "Noto Sans", sans-serif;
  color: #4B5157; }

.page {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 40px 70px; }

.logo {
  width: 343px;
  height: 57px;
  background-image: url("../images/logo.svg");
  background-size: contain;
  float: left;
  position: relative;
  margin-bottom: 70px;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat; }
  .logo__link {
    display: block;
    width: 100%;
    height: 100%; }

.list {
  width: 100%;
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 30px; }
  .list__item {
    font-size: 18px;
    line-height: 24px;
    width: 270px;
    height: 102px;
    float: left;
    overflow: hidden;
    position: relative;
    padding-left: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .list__item:before {
      content: '';
      display: block;
      width: 100px;
      height: 100px;
      border-radius: 50px;
      border: 1px solid #D8D8D8;
      background-color: #fff;
      position: absolute;
      top: 0;
      left: 0;
      background-repeat: no-repeat;
      background-position: center center; }
    .list__item_1:before {
      background-image: url("../images/icon-1.png");
      background-size: 43px 65px;
      background-position: center 22px; }
    .list__item_2:before {
      background-image: url("../images/icon-2.png");
      background-size: 39px 53px; }
    .list__item_3:before {
      background-image: url("../images/icon-3.png");
      background-size: 44px 54px; }

.footer {
  width: 100%;
  font-size: 14px;
  padding: 0 40px;
  position: absolute;
  left: 0;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (max-width: 480px) {
    .footer {
      position: static; } }
  .footer__copyright {
    color: #96979F;
    float: left;
    display: inline; }
    @media screen and (max-width: 1020px) {
      .footer__copyright {
        margin-bottom: 20px;
        text-align: center; } }
  .footer__menu {
    display: inline; }
    @media screen and (max-width: 480px) {
      .footer__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__menu-item {
    float: left;
    margin-left: 30px; }
    @media screen and (max-width: 1020px) {
      .footer__menu-item:first-child {
        margin-left: 0; } }
    @media screen and (max-width: 480px) {
      .footer__menu-item {
        margin-left: 0; }
        .footer__menu-item:not(:last-child) {
          margin-bottom: 20px; } }
  @media screen and (max-width: 1020px) {
    .footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.button {
  width: 280px;
  height: 48px;
  color: #fff;
  background-color: #0EAD72;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .button:hover {
    background-color: #4C8BF5; }
  .button:active {
    background-color: #D8D8D8; }
  .button_icon {
    text-align: left;
    padding-left: 53px;
    background-position: 22px center;
    background-repeat: no-repeat;
    background-size: 14px; }
    .button_icon_plus {
      background-image: url("../images/icon-plus.png"); }
  .button strong {
    font-weight: 700; }

.link {
  color: #4C8BF5;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .link:hover {
    color: #0EAD72; }

.icon_alert {
  background: url("../images/icon-alert.png") left center no-repeat;
  padding-left: 17px;
  background-size: 12px; }
.icon_good {
  background: url("../images/icon-good.png") left center no-repeat;
  padding-left: 19px;
  background-size: 14px auto; }

.title {
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  margin-bottom: 30px; }
  .title_big {
    font-size: 48px;
    line-height: 65px;
    margin-bottom: 0; }

.main {
  text-align: center;
  margin-bottom: 70px; }
  .main p {
    font-size: 18px;
    line-height: 24px;
    max-width: 800px;
    margin-bottom: 40px; }

.hand {
  position: absolute;
  background-repeat: no-repeat;
  z-index: -100; }
  .hand_top-left {
    background-image: url("../images/top-left.jpg");
    width: 129px;
    height: 181px;
    background-size: 129px 181px;
    top: 0;
    left: 0; }
  .hand_top-right {
    background-image: url("../images/top-right.jpg");
    width: 143px;
    height: 206px;
    background-size: 143px 206px;
    top: 0;
    right: 0; }
  .hand_center-left {
    background-image: url("../images/center-left.jpg");
    width: 219px;
    height: 80px;
    background-size: 219px 80px;
    top: 50%;
    margin-top: -40px;
    left: 0; }
  .hand_center-right {
    background-image: url("../images/center-right.jpg");
    width: 152px;
    height: 240px;
    background-size: 152px 240px;
    top: 50%;
    margin-top: -120px;
    right: 0; }
  .hand_bottom-left {
    background-image: url("../images/bottom-left.jpg");
    width: 140px;
    height: 206px;
    background-size: 140px 206px;
    bottom: 17px;
    left: 0; }
  .hand_bottom-right {
    background-image: url("../images/bottom-right.jpg");
    width: 174px;
    height: 156px;
    background-size: 174px 156px;
    bottom: 3px;
    right: 0; }

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

  .list__item_2:before {
    background-image: url("../images/icon-2@2x.png"); }

  .list__item_3:before {
    background-image: url("../images/icon-3@2x.png"); }

  .button_icon_plus {
    background-image: url("../images/icon-plus@2x.png"); }

  .hand_top-left {
    background-image: url("../images/top-left@2x.jpg"); }

  .hand_top-right {
    background-image: url("../images/top-right@2x.jpg"); }

  .hand_center-left {
    background-image: url("../images/center-left@2x.jpg"); }

  .hand_center-right {
    background-image: url("../images/center-right@2x.jpg"); }

  .hand_bottom-left {
    background-image: url("../images/bottom-left@2x.jpg"); }

  .hand_bottom-right {
    background-image: url("../images/bottom-right@2x.jpg"); } }
@media screen and (max-width: 960px) {
  .hand {
    display: none; }

  .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .list__item {
      margin-bottom: 30px; } }
@media screen and (max-width: 1200px) {
  .presets__item:nth-child(5) {
    clear: both; } }

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