
/*card style /////////*/
.card-wrapper {
  --color-primary: #00768b;
  --color-secondary: #01a188;
  --box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.5);

}
.card-header {
  width: 90%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-top-left-radius: 70px;
  z-index: 2;
  position: relative;
  box-shadow: 1px 1px 3px gray;
    border: 1px solid #eaeaea;
    height: 234px;
}


.card-header i {
  font-size: 40px;
  color: #338BC3;
}
.card-header h1,
.card-header h2 {
  text-align: center;
  line-height: 22px;
  color:#338BC3;
}
.card-header h1 {
  font-size: 18px;
  margin-top: 6px;
}
.card-header h2 {
  font-size: 14px;
  margin-top: 15px;
}
.card-header p {
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
}
.card-footer {
  width: 100%;
  height: 192px;
  background: #e9f1f8;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  margin-top: -150px;
  border-radius: 5px 5px 70px 0px;
  color: #fff;
  overflow: hidden;
}
.card-footer .footer-content-wrap {
  padding: 0 30px 10px 20px;

  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.card-footer .footer-text-wrap {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
}
.card-footer i {
  font-size: 32px;
  color: #546a9a;
}
.card-footer h1 {
  font-size: 26px;
  line-height: 0.85;
  font-weight: 400;
      color: #546a9a;
    margin-bottom: 0;
}
.card-footer p {
  font-size: 12px;
  text-transform: uppercase;
}
/*set card color ///////*/

.card-wrapper.one {
  --color-primary: #45b649;
  --color-secondary: #dce35b;
}
.card-wrapper.two {
  --color-primary: #fc4a1a;
  --color-secondary: #f7b733;
}
.card-wrapper.three {
  --color-primary: #7b920a;
  --color-secondary: #add100;
}
.card-wrapper.four {
  --color-primary: #000046;
  --color-secondary: #1cb5e0;
}

.card-header:first-child {
    border-radius: 70px 0 0 0;
}