.section-3 {
  padding-top: 50px;
  gap: 40px;
  background: #F8FBFF;
}

.section-3 .title {
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.02em;
  color: #4A4A4A;
  text-transform: uppercase;
}

.section-3 .header {
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.002em;
  text-align: left;
  color: #396CAA;
}

.section-3 .item .header {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #3E4868;
}

.section-3 .item .descr {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #4A4A4A;
}

.section-3 .details {
  padding: 10px 0;
}

.section-3 .item {
  padding: 20px 0;
  margin: 0 20px;
  cursor: pointer;
}

.section-3 .image {
  border-radius: 15px;
}

.section-3 .item:not(:last-child) {
  border-bottom: 1px solid #CBE0FF;
}

.section-3 .image-container {
  background: linear-gradient(180deg, #EAF1FB 1.5%, #F9FBFF 100%);
  border: 2px solid #FFFFFF;
  border-radius: 20px;
}

.section-3 .item.active {
  padding: 20px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #D0E3FF;
  background-color: white;
  box-shadow: 0px 4px 15px 0px #5CBDFF33;
}

.section-3 .item.no-border {
  border: none;
}

.section-3 .newbg {
  background: linear-gradient(180deg, #F8FBFF 79.35%, #FFFFFF 100%);
}

@media only screen and (max-width: 480px) {
  .section-3 {
    padding: 20px 0 10px;
    gap: 30px;
  }

  .section-3 .top-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .section-3 .bottom-top {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .section-3 .item {
    gap: 5px;
    padding: 16px 0;
  }

  .section-3 .item.active {
    padding: 16px;
  }

  .section-3 .title {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .section-3 .details {
    gap: 10px;
    padding: 0 10px;
  }

  .section-3 .header {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .section-3 .item .header {
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .section-3 .item .descr {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .section-3 .image-container {
    background: linear-gradient(180deg, #EAF1FB 1.5%, #F9FBFF 100%);
    border: unset;
    border-radius: unset;
  }

  .section-3 .image {
    border-radius: unset;
  }

}