@font-face {
  font-family: Manrope;
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf"); }

body,
img {
  margin: 0;
  list-style: none;
  text-decoration: none;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  font-size: 12px;
  color: #2f2c2c;
  vertical-align: baseline;
  font-family: "Manrope", sans-serif;
  background: #f7f8fa;
  overflow-x: hidden; }

a:hover,
a:focus {
  text-decoration: none !important; }

.logo {
  width: 100%;
  text-align: center;
  padding: 56px 0 32px 0; }
  .logo img {
    width: 220px;
    max-width: 100%; }

.footer {
  width: 100%;
  text-align: center;
  margin: 20px; }

.container {
  margin: 0 auto;
  max-width: 1340px;
  padding: 0 20px; }

.select_app {
  width: 100%; }

.app_sections {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #ffff; }
  .app_sections h1 {
    width: 100%;
    text-align: center;
    font-size: 26px;
    color: #171b42;
    font-weight: 800; }
  .app_sections h5 {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #171b42;
    font-weight: 300;
    margin-top: 12px; }
  .app_sections ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin: 0px 10px;
    padding-inline-start: 0px; }

.app {
  flex: 0 0 300px;
  margin: 0 auto;
  border: 1px solid #6a77f0;
  border-radius: 8px;
  padding: 40px 20px;
  transition: 0.3s; }
  .app div {
    transition: 0.3s; }
  .app .box_top {
    min-height: 50px; }
    .app .box_top h3 {
      margin: 0px;
      color: #6a77f0;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      text-align: center; }
  .app .md {
    border-top: 1px solid rgba(106, 119, 240, 0.1);
    min-height: 10rem; }
    .app .md p,
    .app .md li {
      color: #4e4f56; }
    .app .md ul {
      padding: 0 34px;
      list-style-image: url(assets/arrow_blue.png); }
  .app .select_button {
    padding: 0 34px;
    margin: auto; }
    .app .select_button input {
      width: 100%;
      cursor: pointer;
      background: #6a77f0;
      border: none;
      font-size: 16px;
      color: #fff;
      font-weight: 300;
      line-height: 20px;
      padding: 12px 12px;
      border-radius: 6px; }

.app:hover {
  background: #6a77f0;
  color: #fff; }
  .app:hover h3 {
    color: #fff; }
  .app:hover .md {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .app:hover .md p {
      color: #fff; }
    .app:hover .md li {
      color: #fff; }
    .app:hover .md ul {
      list-style-image: url(assets/arrow_white.png);
      color: #fff; }
  .app:hover input {
    background: #fff;
    color: #6a77f0; }
