#gallery {
  padding-bottom: 33px;
}

#gallery .title {
  font-size: 56px;
  line-height: 63px;
  color: #000000;
  margin: 79px auto 56px auto;
}

#gallery .container .inner {
  border: none;
  border-top: 1px solid rgba(112, 112, 112, 0.45);
  flex-direction: column;
  margin: 0;
  padding: 41px 0 34px 0;
  overflow: visible;
}

#gallery .container .inner.acc_active {
  padding-bottom: 89px;
}

#gallery .container .inner:last-child {
  border-bottom: 1px solid rgba(112, 112, 112, 0.45);
}

#gallery .inner-title {
  border: none;
  padding: 0;
  background: transparent;
  text-align: left;
  font-size: 24px;
  color: #000000;
  position: relative;
  width: fit-content;
}

#gallery .acc_active .inner-title {
  margin-bottom: 81px;
}

#gallery .inner-title::after {
  content: '';
  position: absolute;
  top: 6px;
  right: -36px;
  background-image: url('../../images/arrow-right-blue.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 13px;
  height: 15px;
}

#gallery .acc_active .inner-title::after {
  transform: rotate(90deg);
}

#gallery .inner .images {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

#accordion {
  margin: 0;
}

.before-after .decor {
  transition: all 0.2s ease-in-out;
  transform: scale(0);
}

.before-after.acc_active .decor {
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  #gallery .inner .images {
    flex-direction: column;
    gap: 67px;
  }

  #gallery .acc_active .inner-title {
    margin-bottom: 0;
  }

  .before-after .decor {
    left: -10px;
  }
}

@media screen and (max-width: 567px) {
  #gallery .title {
    font-size: 30px;
    line-height: 36px;
    margin: 39px auto 28px auto;
  }

  #gallery .container .inner {
    padding: 15px 0 7px 0;
    gap: 40px;
  }

  #gallery .inner .images {
    gap: 48px;
  }

  #gallery .container .inner.acc_active {
    padding-bottom: 44px;
  }

  #gallery .inner-title {
    font-size: 16px;
  }

  #gallery .inner-title::after {
    top: 7px;
    right: -20px;
    width: 11px;
    height: 12px;
  }
}