.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);
  -webkit-box-sizing: border-box;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.opportunities__card {
  background: #ffffff;
  border: 1px solid #eeeffa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  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: start;
      -ms-flex-pack: start;
          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: #1e5bfa;
  border-radius: 10px;
  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;
}

.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;
  -webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
          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 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
