* {
  margin: 0;
}
.bg {
  width: 100vw;
  height: 100vh !important;
  border: 3px solid var(--color-secondary);
  /* background-image: url("../assets//pattern-bg.jpg"); */
  background-color: #ffffff;
  background-image: url("./assets/fabric-of-squares.png");
}

.bg_overlay {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: no-wrap;
}

.FlexContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  /* width: 65%; */
  /* background-color: #2f1d58; */
  /* height: 80vh; */
  overflow: auto;
  flex-direction: row;
  padding: 10%;
}

.FlexContainer .card {
  width: 400px;
  height: 400px;
  margin: 15px;
  background-color: rgb(255, 255, 255);
  /* box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; */
  /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;

  /* backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.125); */
  padding: 50px;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

.FlexContainer .card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  text-decoration: none !important;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px; */
}

.image_styling {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.card_btn {
  background-color: #473080;
  padding: 7px 35px !important;
  border-radius: 35px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  font-size: 20px;
  font-weight: 500;
  /* color:#7a7a7a; */
  color: #ffffff;
}
.card_btn:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.punch_line {
  color: gray;
  text-align: center;

  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.7;
}

.card_section {
  margin-top: 35px;
}

.logo_styling {
  width: 100px;
  position: absolute;
  top: 30px;
  /* right: 30px; */
  left: 30px;
}

@media only screen and (max-width: 550px) {
  .FlexContainer .card {
    width: 70vw;
    height: 35vh;
  }
  .image_styling {
    width: 50%;
    /* height: 100px; */
    object-fit: contain;
  }
  .FlexContainer {
    margin-top: 95px;
    /* height: 100vh; */
    overflow: scroll;
  }

  .logo_styling {
    width: 20%;
    top: 10px;
    left: 10px;
  }
  .card_btn {
    padding: 7px 15px !important;
    font-size: 15px;
    text-align: center;
    width: fit-content;
  }
  .punch_line {
    color: gray;
    text-align: center;

    font-style: italic;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
  }

  .card_section {
    margin-top: 10%;
  }
}
