.body-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.body-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards-wrapper {
  width: 950px;
  margin: 0rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cards-wrapper .card {
  width: 300px;
  min-height: 297px;
  height: 297px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0px 15px;

  padding-bottom: 15px;
  background-image: url("../img/card.png");
  background-size: cover;
  position: relative;
}
.cards-wrapper .card h1 {
  color: #004861;
  font-size: 25.5px;
  margin-top: 5rem;
  font-family: "interSemiBold";
  word-wrap: break-word;
}
.cards-wrapper .card > img,
.cards-wrapper .card > a:first-child {
  position: absolute;
  width: 124px;
  height: 124px;
  top: -55px;
}
.red-area-badge {
  background: #ee0000;
  color: #fff;
  padding: 1px 8px;
  border-radius: 99px;
}
.blue-area-badge {
  background: #00a3c8;
  color: #fff;
  padding: 1px 8px;
  border-radius: 99px;
}
.cards-wrapper .card p:nth-child(3) {
  color: black;
  font-size: 16px;
  font-family: "interSemiMedium";
  word-wrap: break-word;
  margin-top: 23px;
  position: relative;
}
.cards-wrapper .card p:nth-child(3)::after {
  background-color: #00a3c8;
  height: 1.5px;
  width: 56px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.cards-wrapper .card p:nth-child(4) {
  color: black;
  font-size: 12px;
  font-family: "interReg";
  word-wrap: break-word;
  margin-bottom: 26px;
  margin-top: 19px;
}
.cards-wrapper .card a:not(:first-child) {
  background: #00a3c8;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13.5px;
  width: 100%;
  height: 60px;
  font-family: "interSemiBold";
  word-wrap: break-word;
}

.cards-wrapper-login-new .card {
  width: 300px;
  height: 244px;
  min-height: 244px;
  background-image: url("../img/card2.png");
  background-repeat: no-repeat;
  justify-content: space-between;
}
.cards-wrapper-login-new .card > a:first-child {
  top: -70px;
}
.cards-wrapper-login-new .card > a > img {
  width: 120px;

  height: 120px;
}
.cards-wrapper-login-new .card > p {
  flex: 1;
}
.cards-wrapper-login-new .card > h1::after {
  background-color: #00a3c8;
  height: 1.5px;
  width: 56px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
}
.cards-wrapper-login-new .card p:nth-child(3)::after {
  display: none;
}
.cards-wrapper-login-new .card h1 {
  font-size: 24px;
  position: relative;
}
.cards-wrapper-login-new {
  width: unset;
  display: grid;
  margin-top: 7rem;
  padding-bottom: 5rem;
  grid-row-gap: 6rem;
  grid-template-columns: 1fr 1fr;
}
.body-wrapper-login-new {
  height: unset;
  min-height: 100vh;
}
.cards-wrapper-login-new .card p:nth-child(3) {
  display: none;
}
.cards-wrapper .card a:not(:first-child) {
  height: 50px;
}
@media screen and (max-width: 1240px) {
  .body-wrapper-login-new header > .main-header-inner .left-area {
    display: block;
  }
  .cards-wrapper {
    width: 95%;
    flex-direction: column;
  }
  .body-wrapper {
    height: 100%;
    display: block;
  }
  .body-area {
    margin-top: 10rem;
    padding-bottom: 5rem;
  }

  .cards-wrapper > * + * {
    margin-top: 7rem;
  }
  .cards-wrapper-login-new {
    width: unset;
  }
  .cards-wrapper-login-new > * + * {
    margin-top: 0px;
  }
}
@media screen and (max-width: 700px) {
  .cards-wrapper-login-new {
    grid-template-columns: 1fr;
  }
  .body-wrapper-login-new .body-area {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 450px) {
  .cards-wrapper .card {
    width: 95%;
    background-image: none;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
  }
  .cards-wrapper-login-new .card {
    width: 100%;
  }
  .cards-wrapper-login-new {
    width: 95%;
  }
  .cards-wrapper-login-new {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .cards-wrapper .card > img {
    width: 130px;
  }
}
