.image-info-section {
  margin: 120px 0;
}

.image-info-section .container {
  display: grid;
  grid-template-columns: 407px 1fr;
  gap: 30px;
}

.image-info-section__image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  width: 407px;
  min-width: 407px;
  height: fit-content;
}

.image-info-section__title {
  color: var(--Dark-blue);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--Silver);
  margin-bottom: 24px;
}

.image-info-section__text {
  position: relative;
}

.image-info-section__text p {
  color: var(--Black);
  font-size: 16px;
  line-height: 140%;
}

.image-info-section__text p b,
.image-info-section__text p strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.image-info-section__text-read-more {
  display: none;
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--Dark-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
  padding: 135px 0 5px;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0.01%,
      #fff 73.93%);

  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.image-info-section__text p:not(:last-of-type) {
  margin-bottom: 24px;
}

.image-info-section__info-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.image-info-section__info {
  padding: 10px 0;
  position: relative;

  color: var(--Black);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}

.image-info-section__info:not(:first-child) {
  padding-left: 30px;
}

.image-info-section__info:not(:first-child):before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: " ";
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(var(--Silver) 4px,
      transparent 4px,
      transparent 9px,
      var(--Silver) 9px,
      var(--Silver) 15px);
}

.image-info-section__info:last-child::after {
  display: none;
}

.image-info-section__info strong {
  display: block;
  color: var(--Dark-blue);
  font-size: 40px;
  font-weight: 500;
  line-height: 140%;
}

@media screen and (max-width: 1200px) {
  .image-info-section .container {
    display: block;
  }

  .image-info-section__image-wrapper {
    display: none;
  }

  .image-info-section__title {
    font-size: 22px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .image-info-section__text {
    max-height: 320px;
    overflow: hidden;
  }

  .image-info-section__text.active {
    max-height: 100%;
    overflow: visible;
  }

  .image-info-section__text-read-more {
    display: block;
  }

  .image-info-section__text-read-more.hidden {
    display: none;
  }

  .image-info-section__info::after {
    display: none;
  }

  .image-info-section {
    margin: 50px 0;
  }
}

@media screen and (max-width: 992px) {
  .image-info-section__info-wrapper {
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .image-info-section__info {
    width: calc((100% - 25px) / 2);
    padding: 0;
  }

  .image-info-section__info:not(:first-child) {
    padding-left: 0;
  }

  .image-info-section__info:not(:first-child):before {
    display: none;
  }

  .image-info-section__info:nth-child(even) {
    padding-left: 30px;
  }

  .image-info-section__info:nth-child(even):before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: " ";
    width: 1px;
    height: 100%;
    background-image: repeating-linear-gradient(var(--Silver) 4px,
        transparent 4px,
        transparent 9px,
        var(--Silver) 9px,
        var(--Silver) 15px);
  }
}

@media screen and (max-width: 480px) {
  .image-info-section__info-wrapper {
    gap: 10px 25px;
  }

  .image-info-section__info br {
    display: none;
  }

  .image-info-section__info {
    padding: 10px 0;
  }

  .image-info-section__info:nth-child(even) {
    padding-left: 0;
  }

  .image-info-section__info:nth-child(even):before {
    display: none;
  }
}