

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

.theme-text {
  color: black;
}

.card-img-top {
  border-top: 15px solid #1963AE;
  height: 200px;
  width: 100%;
}

.card h3 {
  font-size: 22px;
    font-weight: 600;
    line-height: 30px;
   
    text-transform: uppercase;
    color: black;
}

.card h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 25px;
   	color: black;
}

.card {
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.card:hover {
  color: white;
}
.card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0%;
  background: #2094D1;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.card:hover::before {
  left: 0%;
  color: white;
}
.container-fluid {
  background-image: url("blob-scene-haikei.svg");
  background-position: center;
  background-size: cover;
  }

