@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background-color: #3c2846;
}

.border-awesome-card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 320px;
  height: 450px;
  background-color: #287bff;
  border-radius: 20px 20px 160px 160px;
  -webkit-box-shadow: 0 15px 0 #fff, inset 0 -15px 0 rgba(255, 255, 255, 0.25), 0 45px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 0 #fff, inset 0 -15px 0 rgba(255, 255, 255, 0.25), 0 45px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 30px;
  position: relative;
}
.border-awesome-card::before {
  content: "";
  width: 100%;
  height: 150%;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(255, 255, 255, 0.2)));
  background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2));
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
  pointer-events: none;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
  position: absolute;
  left: -51%;
  top: -155px;
}
.border-awesome-card:nth-child(1) {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b06bff), to(#e06caa));
  background-image: -o-linear-gradient(top, #b06bff, #e06caa);
  background-image: linear-gradient(to bottom, #b06bff, #e06caa);
}
.border-awesome-card:nth-child(2) {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#75ffa3), to(#47a6ff));
  background-image: -o-linear-gradient(top, #75ffa3, #47a6ff);
  background-image: linear-gradient(to bottom, #75ffa3, #47a6ff);
}
.border-awesome-card:nth-child(3) {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eadd66), to(#ff6b6e));
  background-image: -o-linear-gradient(top, #eadd66, #ff6b6e);
  background-image: linear-gradient(to bottom, #eadd66, #ff6b6e);
}
.border-awesome-card__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 140px;
  height: 120px;
  background-color: #3c2846;
  border-radius: 0 0 100px 100px;
  -webkit-box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), inset 0 -8px 0 white;
          box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), inset 0 -8px 0 white;
  position: relative;
  z-index: 10;
}
.border-awesome-card__ico svg {
  width: auto;
  height: 60%;
  margin-top: 7px;
  position: relative;
  z-index: 20;
}
.border-awesome-card__ico::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-top-right-radius: 50px;
  -webkit-box-shadow: 15px -15px 0 15px #3c2846;
          box-shadow: 15px -15px 0 15px #3c2846;
  position: absolute;
  top: 0;
  left: -50px;
}
.border-awesome-card__ico::after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-top-left-radius: 50px;
  -webkit-box-shadow: -15px -15px 0 15px #3c2846;
          box-shadow: -15px -15px 0 15px #3c2846;
  position: absolute;
  top: 0;
  right: -50px;
}
.border-awesome-card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px;
}
.border-awesome-card__content {
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 30px;
  position: absolute;
  top: 125px;
}
.border-awesome-card__content h2 {
  font-size: 1.75em;
}
.border-awesome-card__content p {
  line-height: 1.4;
  margin-top: 15px;
}