.nothingShowingContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.nothingShowingContainer .imageContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 15rem;
  width: 15rem;
  background-color: #f7f7f7;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nothingShowingContainer .imageContainer img {
  height: 10rem;
  width: 10rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nothingShowingContainer .imageContainer:hover {
  background-color: #f3f3f3;
  border: 1.2px solid #dedede;
}

.nothingShowingContainer .imageContainer:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.nothingShowingContainer .nothingShowingText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.nothingShowingContainer .nothingShowingText .heading {
  font-size: 2.2rem;
  font-family: 'Satoshi-Bold';
  color: #333;
}

.nothingShowingContainer .nothingShowingText .description {
  font-size: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  color: #333;
}

.nothingShowingContainer .discoverOpportunities {
  background-color: #296EB4;
  color: #fff;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 10rem;
  margin-top: 2.5rem;
  font-size: .9rem;
  text-decoration: none !important;
  gap: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Satoshi-Bold';
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out, border .3s ease-in-out;
  transition: all .3s ease-in-out, border .3s ease-in-out;
}

.nothingShowingContainer .discoverOpportunities span {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.nothingShowingContainer .discoverOpportunities:hover {
  background-color: #16154D;
}

.nothingShowingContainer .discoverOpportunities:hover span {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
/*# sourceMappingURL=nothingShowing.css.map */