*, *::after, *::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
}

.header_notes {
  background: url(../img/header_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 20px;
}

.container {
  max-width: 1220px;
  padding: 0 16px;
  margin: 0 auto;
}

.title {
  margin-bottom: 40px;
}

.title img {
  width: 80px;
  margin-bottom: 16px;
}

h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -4%;
  width: 290px;
  margin-bottom: 16px;
}

.title_content {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
}

.title_content span {
  font-weight: 600;
}

.descr {
  color: #eee;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 40px;
}

.start-use_link {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  border-radius: 24px;
  background: #fff;
  color: #3389C3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0;
  margin-bottom: 136px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.start-use_link:hover {
  -webkit-filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.12));
}

.start-use_link:active {
  color: #4466AA;
}

.header_opening_imgs {
  text-align: center;
}

.card_item {
  background: #fff;
  margin: 0 auto;
  border-radius: 24px;
  margin-bottom: 32px;
  max-width: 282px;
  min-width: 282px;
}

.card_item.create {
  padding: 80px 0;
  text-align: center;
  display: block;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 2px solid #fff;
  -webkit-box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.08);
          box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.08);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card_item.create img {
  width: 96px;
  margin-bottom: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card_item.create:hover {
  background: rgba(0, 0, 0, 0.05);
}

.card_item.create:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card_item.create:active {
  background: rgba(0, 0, 0, 0.5);
}

.card_item_instruction {
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
}

.content {
  background: #f5f5f5;
  padding: 40px 0;
}

.feature_card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 16px;
}

.feature_card_title {
  font-size: 30px;
  font-weight: 300;
  color: #3389C3;
  line-height: 29px;
  margin-bottom: 32px;
}

.feature_card_description {
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 40px;
}

.feature_card_icon {
  text-align: right;
}

.social {
  background: #f5f5f5;
  padding: 40px 0;
}

.social_list {
  padding-left: 32px;
  padding-bottom: 40px;
}

.social_list li {
  margin-bottom: 40px;
}

.social_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social_list a:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.social_list a img {
  margin-right: 16px;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}

.social_text {
  font-weight: 600;
  font-size: 17px;
  color: #3389C3;
  text-transform: uppercase;
}

.up {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 24px;
  background: #fff;
  color: #3389C3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0;
  border: 0;
  max-width: 400px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.12));
}

@media (min-width: 769px) {
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .title .logo {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .start-use_link {
    max-width: 282px;
  }
  .header_opening_imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .descr {
    max-width: 350px;
  }
  .notes_features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .feature_card {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
  .feature_card:nth-child(odd) {
    margin-right: 24px;
  }
  .social_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .social_list a img {
    margin-right: 0;
    margin-left: 32px;
  }
  .social_text {
    display: none;
  }
}

@media (min-width: 1025px) {
  .header_notes {
    background: url(../img/header_bg_lg.png) no-repeat;
    background-size: cover;
  }
  .header_opening {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_opening_imgs {
    margin-left: auto;
    position: relative;
  }
  .card_item {
    max-height: 400px;
    margin-bottom: 0;
  }
  .card_item.create {
    position: absolute;
    left: -200px;
    top: 150px;
  }
  .feature_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .feature_card_title {
    font-size: 40px;
  }
  .feature_card_description {
    margin-bottom: 0;
    max-width: 265px;
  }
  .up {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */