.amina-section {
  display: flex;
  gap: 76px;
  padding: 50px 0px 0px 10px;
  font-family: Nunito;
}
@media (max-width: 1023px) {
  .amina-section {
    flex-direction: column;
    gap: 40px;
  }
}
.amina-section .left-column,
.amina-section .right-column {
  width: 50%;
}
@media (max-width: 1023px) {
  .amina-section .left-column,
  .amina-section .right-column {
    width: 100%;
  }
}
.amina-section .left-column .title {
  font-size: 68px;
  line-height: 67px;
  font-weight: 400;
  color: #31373a;
  text-align: left;
}
@media (max-width: 1023px) {
  .amina-section .left-column .title {
    font-size: 27px;
    line-height: normal;
  }
}
.amina-section .left-column .image-title {
  font-size: 16px;
  line-height: normal;
  color: #31373a;
  min-height: 18px;
}
.amina-section .left-column .image-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 61px 0 0 0;
  max-width: 550px;
}
@media (max-width: 1023px) {
  .amina-section .left-column .image-box {
    max-width: 100%;
    padding: 40px 0 0 0;
  }
}
.amina-section .left-column .image-box img {
  width: 98px;
  height: 63px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0);
  box-sizing: border-box;
  object-fit: cover;
}
.amina-section .left-column .image-box img.active {
  border: 1px solid #2b2f36;
}
.amina-section .right-column .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 11;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  max-height: calc(15.4em);
}
.amina-section .right-column .description.expanded {
  -webkit-line-clamp: unset;
  max-height: unset;
}
.amina-section .right-column .description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.amina-section .right-column #show-more {
  padding: 26px 0 0 0;
  box-sizing: border-box;
  display: block;
  background: none;
  color: unset;
  font-size: 12px;
}
