.opportunities {
  padding: 80px 0;
}
@media (width <= 1023px) {
  .opportunities {
    padding: 60px 0;
  }
}
@media (width <= 767px) {
  .opportunities {
    padding: 40px 0;
  }
}
.opportunities__header {
  max-width: 721px;
  margin-bottom: 48px;
}
@media (width <= 1023px) {
  .opportunities__header {
    margin-bottom: 40px;
  }
}
@media (width <= 991px) {
  .opportunities__header {
    margin: 0 auto 40px;
  }
}
.opportunities__header .title {
  margin: 0 0 16px;
}
.opportunities__header .description {
  margin: 0;
  color: var(--dark-grey-stroke-secondary-text, #303A43);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}
@media (width <= 767px) {
  .opportunities__header .description {
    font-size: 16px;
  }
}
@media (width <= 991px) {
  .opportunities__header .title,
  .opportunities__header .description {
    text-align: center;
  }
}
.opportunities__wrapper {
  display: flex;
  gap: 8%;
  justify-content: space-between;
}
@media (width <= 991px) {
  .opportunities__wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
}
.opportunities__wrapper .image {
  width: 43%;
  max-width: 518px;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
}
@media (width <= 1023px) {
  .opportunities__wrapper .image {
    height: 450px;
  }
}
@media (width <= 991px) {
  .opportunities__wrapper .image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (width <= 767px) {
  .opportunities__wrapper .image {
    height: 360px;
  }
}
@media (width <= 480px) {
  .opportunities__wrapper .image {
    height: 300px;
  }
}
.opportunities__wrapper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.opportunities__wrapper .list {
  flex-grow: 1;
  margin: 0;
  padding: 0;
  width: 49%;
  list-style: none;
}
@media (width <= 991px) {
  .opportunities__wrapper .list {
    width: 100%;
  }
}
.opportunities__wrapper .item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--grey-standart, #BABABA);
}
@media (width <= 767px) {
  .opportunities__wrapper .item {
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.opportunities__wrapper .item-text, .opportunities__wrapper .item-number {
  color: var(--default-primary-2, #030D16);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
@media (width <= 767px) {
  .opportunities__wrapper .item-text, .opportunities__wrapper .item-number {
    font-size: 16px;
  }
}
.opportunities__wrapper .item:last-child {
  margin-bottom: 0;
}