.accordrion-text-section {
  padding: 120px 0;
  background-color: var(--Gray);
}

.accordrion-text-section--blue {
  background-color: #fff;
}

.accordrion-text-section--blue .accordrion-text-section__acc-button-wrapper {
  background-color: var(--Gray);
}

.accordrion-text-section--blue .accordrion-text-section__acc {
  background-color: var(--Gray);
}

.accordrion-text-section--blue .accordrion-text-section__panel {
  background-color: var(--Gray);
}

.accordrion-text-section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.accordrion-text-section__title {
  color: var(--Dark-blue);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.accordrion-text-section__desc {
  color: var(--Black) 222;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.accordrion-text-section__text-wrapper {
  max-width: 407px;
  position: sticky;
  top: 82px;
}

.accordrion-text-section__panel {
  padding: 0 50px 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.accordrion-text-section__panel>ul>li {
  display: block;
  position: relative;
  padding-left: 25px;
}

.accordrion-text-section__panel>ul>li::before {
  content: "";
  position: absolute;
  left: 0;
  rotate: 32deg;
  top: 0;
  background-image: var(--Theme-Arrow);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.accordrion-text-section__panel>ul>li:not(:last-child) {
  margin-bottom: 12px;
}

.accordrion-text-section__acc-button-wrapper {
  background-color: var(--White);
  border-radius: 20px;
  padding-bottom: 14px;
  overflow: hidden;
  transition: 0.4s;
}

.accordrion-text-section__acc-button-wrapper:not(:last-child) {
  margin-bottom: 20px;
}

.accordrion-text-section__acc {
  background-color: var(--White);
  padding: 24px 50px 0px 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;

  color: var(--Dark-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;

  position: relative;
}

.accordrion-text-section__acc:not(:first-child) {
  margin-top: 20px;
}

.accordrion-text-section__acc-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.accordrion-text-section__acc.active .accordrion-text-section__acc-arrow {
  transform: rotate(90deg);
}

.accordrion-text-section__panel {
  color: var(--Black) 222;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding-top: 10px;
}

.accordrion-text-section__panel b,
.accordrion-text-section__panel strong {
  font-weight: 600;
}

.accordrion-text-section__acc.active+.accordrion-text-section__panel {
  padding-bottom: 10px;
}

.custom-ul {
  margin: 12px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .accordrion-text-section {
    padding: 80px 0;
  }

  .accordrion-text-section .container {
    display: block;
  }

  .accordrion-text-section__text-wrapper {
    margin-bottom: 40px;
    position: static;
    max-width: none;
  }

  .accordrion-text-section__title {
    font-size: 26px;
  }

  .accordrion-text-section__acc {
    padding: 20px 50px 0px 20px;
  }

  .accordrion-text-section__acc-arrow {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 680px) {
  .accordrion-text-section__title {
    font-size: 22px;
  }

  .custom-ul {
    grid-template-columns: 1fr;
  }
}