.about-first1 {
    background-color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first1__container {
    max-width: var(--CONTAINER_WIDTH) !important;
    margin: 0px auto;
    padding: 90px 20px;
  }
  
  @media (min-width: 992px) {
    .about-first1__content {
      display: flex;
    }
  }
  
  .about-first1__pic {
    margin-bottom: 20px;
  }
  
  @media (min-width: 992px) {
    .about-first1__pic {
      flex: 1 1 60%;
    }
  }
  
  .about-first1__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
  }
  
  @media (min-width: 992px) {
    .about-first1__text-content {
      flex: 0 1 570px;
      padding-left: 50px;
    }
  }
  
  .about-first1__titling {
    margin-bottom: 20px;
  }
  
  .about-first1__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  
  @media (min-width: 576px) {
    .about-first1__title {
      font-size: 24px;
    }
  }
  
  .about-first1__subtitle {
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
  }
  
  @media (min-width: 576px) {
    .about-first1__subtitle {
      font-size: 18px;
    }
  }
  
  .about-first1__spoiler-title {
    margin-bottom: 0px;
  
  }
  
  .about-first1__spoiler .about-first1__spoiler-content {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease 0s;
  }
  
  .about-first1__spoiler .bi-chevron-down {
    transition: all 0.2s ease 0s;
  }
  
  .about-first1__spoiler.active .about-first1__spoiler-button {
    background-color: var(--SECONDARY_MAJOR_COLOR);
    color: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first1__spoiler.active .about-first1__spoiler-content {
    height: 200px;
  }
  
  .about-first1__spoiler.active .bi-chevron-down {
    transform: rotate(180deg);
  }
  
  .about-first1__spoiler-button {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    transition: all 0.3s ease 0s;
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    cursor: pointer;
  }
  
  @media (min-width: 992px) {
    .about-first1__spoiler-button:hover {
      color: var(--EXTRA_COLOR);
    }
  }
  
  .about-first1__spoiler-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-first1__spoiler-content.active {
    height: 150px;
  }
  
  .about-first1__hiden-text {
    height: 0;
    width: 0;
    font-size: 0px;
    opacity: 0;
    visibility: hidden;
  }
  
  .about-first1__spoiler-text {
    padding: 25px;
    font-size: 20px;
    margin-bottom: 0px;
  }
  