main {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 40px;
}

main .page {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
    margin-right: 32px;
}

main .page__title {
    font-family: "Andes";
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: #2F879F;
    text-transform: uppercase;
    /*margin-bottom: 16px;*/
}

main .page__body p {
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 16px;
}

main .page__link {
    height: 20px;
    display: block;
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #2F879F;
    background-color: #F2F2F2;
    padding: 10px 12px;
}

main .page__link img {
    margin-left: 12px;
}
main .page__block-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  main .page__title {
    font-size: 24px;
  }
  main .page {
    margin-right: 0;
  }
}

p a {
    display: contents;
    color: #2F879F;
    cursor: pointer;
}

p a:hover {
    color: #256C7F;
}