.profile_cards {
  display: grid;
  justify-content: space-between;
  grid-template-rows: 333px 333px;
  grid-template-columns: 330px 330px 330px;
}
.profile_cards_card {
  width: 100%;
  height: 309.6666666667px;
  padding: 30px 40px;
  border-radius: 20px;
  background-color: white;
  margin: auto;
}
.profile_cards_card_title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}
.profile_cards_card_caption {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 1px;
  line-height: 1.7;
}
.profile_cards_card_icon {
  margin-top: 30px;
  height: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1300px) {
  .profile_cards {
    grid-template-columns: calc((100vw - 80px) / 3 - 30px) calc((100vw - 80px) / 3 - 30px) calc((100vw - 80px) / 3 - 30px);
  }
}
@media (max-width: 1100px) {
  .profile_cards {
    grid-template-rows: 333px 333px 333px;
    grid-template-columns: calc((100vw - 80px) / 2 - 39px) calc((100vw - 80px) / 2 - 39px);
  }
}
@media (max-width: 480px) {
  .profile_cards {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .profile_cards_card {
    height: 100%;
    padding: 20px 27px 25px;
  }
  .profile_cards_card_title {
    font-size: 16px;
  }
  .profile_cards_card_caption {
    font-size: 12px;
    line-height: 1.5;
  }
  .profile_cards_card_icon {
    margin-top: 20px;
    height: 60px;
  }
  .profile_cards_card:not(:first-child) {
    margin-top: 15px;
  }
}/*# sourceMappingURL=profile.css.map */