.opportunities {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.opportunities::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: -80px;
  width: 350px;
  height: 350px;
  border: 100px solid rgba(30, 91, 250, 0.04);
  box-sizing: border-box;
  border-radius: 100%;
}
.opportunities::after {
  content: "";
  position: absolute;
  top: 100px;
  right: -30px;
  width: 500px;
  height: 500px;
  background: url(../icons/opportunities-bg.svg) no-repeat center center/contain;
  z-index: 0;
}
.opportunities__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.opportunities__card {
  background: #ffffff;
  border: 1px solid #eeeffa;
  box-sizing: border-box;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 330px;
  padding: 40px 30px;
  gap: 25px;
  margin-bottom: 30px;
  cursor: pointer;
}
.opportunities__card-img {
  width: 100px;
  height: 100px;
  background: rgb(74, 101, 156);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opportunities__card-title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #263238;
  text-align: center;
}
.opportunities__card-desc {
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
}
.opportunities__card:hover {
  background: #ffffff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .opportunities {
    padding: 30px 0;
  }
  .opportunities__card {
    gap: 15px;
    min-height: 300px;
  }
  .opportunities__card-title {
    font-size: 16px;
  }
  .opportunities__card-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .opportunities__card {
    min-height: unset;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .opportunities__content {
    justify-content: center;
  }
}