/* --- APPS --- */
.apps-block {
}
.apps-container.apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.apps-container__item {
  display: flex;
  flex-direction: column;
}
.apps .apps-container__item {
  flex: none;
  margin: 0;
  margin-bottom: 16px;
  max-width: 32%;
}
.apps .apps-container__item.last {
  margin-right: auto;
  margin-left: 2%;
}

/* -- App Card -- */
.apps-container__header {
  position: relative;
  height: 227px;
  background-color: #06cc5f;
  margin-bottom: 15px;
  border-radius: 16px 16px 0px 0px;
  flex: none;
  overflow: hidden;
}
.apps-container__header_banner,
.apps-container__header_pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  border-radius: 16px;
  justify-content: center;
}
.apps-container__header_pattern img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.apps-container__header_banner {
  height: auto;
  top: auto;
  bottom: 0;
  width: 146px;
  margin: auto;
  left: 0;
  right: 0;
}
.apps-container__header_banner img {
  height: 100%;
  width: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.apps-container__header__app-box {
  width: 72px;
  height: 155px;
  position: absolute;
  overflow: hidden;
  right: 12px;
  top: 2px;
  border-radius: 8px;
}
.apps-container__header__app-box img {
  width: 100%;
}
.apps-container__header_logo {
  width: 121px;
  border-radius: 0px 0px 8px 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
}
.apps-container__header_logo img {
  object-fit: cover;
  width: 90%;
  height: 100%;
}
.apps-container__header_type {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.apps-container__header_type::before {
  font-family: "Betru";
  color: #fff;
  font-size: 22px;
}
.apps-container__header_type.ios::before {
  content: "\e901";
}
.apps-container__header_type.android::before {
  content: "\e900";
}
.apps-container__header_type.pc::before {
  content: "\e927";
}
.apps-container__header_type.mobile::before {
  content: "\e915";
}
.apps-container__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.apps-container__body_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  margin: 5px 0;
  padding: 0 15px;
  color: #262f56;
}
.apps-container__body_title:hover {
  text-decoration: underline;
}
.apps-container__body_text {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  margin: 10px 0;
  padding: 0 15px;
}
.apps-container__body_buttons {
  padding: 0 15px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.apps-container__body_buttons a {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #262f56;
  background-color: #f1f1f1;
  box-sizing: border-box;
  border-radius: 8px;
  width: 110px;
  height: 46px;
}
.apps-container__body_buttons a.link {
  background-color: #00c659;
  color: #fff;
}

.apps-container__body_buttons a.link:focus,
.apps-container__body_buttons a.link:hover,
.apps-container__body_buttons a.link:active {
  background: #007133;
}

.apps-container__body_buttons a.review:focus,
.apps-container__body_buttons a.review:hover,
.apps-container__body_buttons a.review:active {
  background: #dcdcdc;
}

@media (max-width: 820px) {
  .apps .apps-container__header {
    height: 200px;
  }

  .apps .apps-container__body_buttons a {
    width: 80px;
  }
}

@media (max-width: 650px) {
  .apps-container.apps {
    justify-content: space-around;
  }

  .apps .apps-container__item {
    margin-left: 5px;
    margin-right: 5px;
    max-width: 49%;
  }

  .apps .apps-container__item.last {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 569px) {
  .apps-container__header_banner {
    max-height: 180px;
  }

  .apps .apps-container__item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 340px;
  }

  .apps-container__header,
  .apps .apps-container__header {
    height: 230px;
    margin-bottom: 22px;
  }

  .apps-container__body_text {
    margin-bottom: 25px;
  }

  .apps .apps-container__body_buttons a {
    width: calc(50% - 5px);
  }
}
