@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(to right, #8e9eab, #eef2f3);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
/*card style /////////*/
.card-wrapper {
  --color-primary: #00768b;
  --color-secondary: #01a188;
  --box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.5);
  width: 200px;
}
.card-header {
  width: 90%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
  border-top-left-radius: 70px;
  z-index: 2;
  position: relative;
  box-shadow: var(--box-shadow);
}
.card-header:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 20%;
  width: 30px;
  height: 30px;
  background: #fff;
  box-shadow: var(--box-shadow);
  transform: rotate(45deg);
  z-index: 1;
}

.card-header i {
  font-size: 40px;
  color: var(--color-primary);
}
.card-header h1,
.card-header h2 {
  text-transform: uppercase;
  color: var(--color-primary);
}
.card-header h1 {
  font-size: 18px;
}
.card-header h2 {
  font-size: 14px;
  margin-top: 15px;
}
.card-header p {
  font-size: 12px;
  text-align: justify;
  margin-top: 10px;
}
.card-footer {
  width: 100%;
  height: 250px;
  background-image: linear-gradient(
    to right bottom,
    var(--color-secondary),
    var(--color-primary)
  );
  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: 48px;
  color: rgba(255, 255, 255, 0.7);
}
.card-footer h1 {
  font-size: 60px;
  line-height: 0.85;
  font-weight: 400;
}
.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;
}
