.tech-combo-accordion {
  padding: 35px 0;
}

.tech-combo-accordion.full-width {
  padding: 50px 0;
  margin: 35px 0;
  background-color: var(--new-theme-gray-50);
}

.tech-combo-accordion .combo-wrapper {
  background-color: var(--new-theme-gray-50);
  border-radius: 12px;
  max-width: 1328px;
  margin: 0 auto;
  padding: 34px 16px 24px;
  border: 1px solid var(--LightGrey);
}

.tech-combo-accordion.full-width .combo-wrapper {
  max-width: 100%;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: 0;
}

.tech-combo-accordion .combo-wrapper .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px 00;
}

.tech-combo-accordion .combo-wrapper__left,
.tech-combo-accordion .combo-wrapper__right {
  width: 100%;
}

.tech-combo-accordion .section-title {
  text-align: left;
}

.accordion-item .title.active .arrow {
  transform: rotate(180deg);
}

.accordion-wrapper {
  width: 100%;
}

.accordion-item {
  cursor: pointer;
}

.accordion-item:not(:first-child) {
  border-top: 1px solid #bfbfbf;
  margin-top: 16px;
  padding-top: 20px;
}

.accordion-item .title {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-right: 40px;
}

.accordion-item .title .arrow {
  position: absolute;
  right: 0;
  width: 20px;
  top: 7px;
}

.accordion-content {
  display: none;
}

.accordion-content__inner {
  margin-top: 24px;
}

.accordion-item .title h3 {
  margin: 0;
  font-size: 18px;
  /* font-size: 24px; */
  line-height: 1.5;
  font-weight: 600;
  font-family: var(--bricolage);
  color: var(--new-theme-black-50);
}

.tech-combo-accordion.two-column-layout .inner {
  flex-direction: column;
}

.tech-combo-accordion.two-column-layout .combo-wrapper__left,
.tech-combo-accordion.two-column-layout .combo-wrapper__right {
  width: 100%;
  padding: 0;
}

.tech-combo-accordion.two-column-layout .section-title {
  max-width: unset;
  margin-bottom: 30px;
  text-align: center;
}



.tech-combo-accordion.two-column-layout .btn {
  text-align: center;
}


/* FOR TAB */
.tech-combo-accordion .inner.tab-list-wrap .section-title {
  /* margin-bottom: 30px; */
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul a {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: var(--BlueTextColor);
  padding-left: 15px;
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul a:hover {
  text-decoration: underline;
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul li {
  position: relative;
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: var(--BluePrimary);
  border-radius: 0 10px 10px 0;
  opacity: 0;
  transition: var(--transition3);
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul li a.current {
  font-weight: 600;
  color: var(--BluePrimary);
}

.tech-combo-accordion .inner.tab-list-wrap .combo-wrapper__left ul li:has(a.current)::before {
  opacity: 1;
}

.tech-combo-accordion .combo-wrapper__right .tab-list-content-item h3 {
  margin-top: 0;
}

.tech-combo-accordion .tab-list-content-item p,
.tech-combo-accordion .tab-list-content-item li {
  font-size: 18px;
}

.tech-combo-accordion .tab-list-content-item p strong {
  display: block;
  margin-bottom: 10px;
}

.tech-combo-accordion .tab-list-content-item p br {
  display: none;
}

.tech-combo-accordion .tab-list-content-item li::before {
  background: url(../../images/list-check.svg) no-repeat center / contain;
}

.tech-combo-accordion .ul-check-arrow ul li {
  padding: 0 0 0 35px;
}

.tech-combo-accordion:has(.tab-list-wrap) .btn {
  margin-top: 70px;
}


/* FOR TAB */


@media screen and (min-width: 768px) {
  .tech-combo-accordion .combo-wrapper {
    padding: 34px 28px 24px;
  }

  .accordion-item .title h3 {
    font-size: 20px;
  }

  .accordion-item .title .arrow {
    top: 13px;
  }

  .tech-combo-accordion {
    padding: 50px 0;
  }

  .tech-combo-accordion.full-width {
    padding: 70px 0;
    margin: 50px 0;
  }
}

@media screen and (min-width: 992px) {
  .tech-combo-accordion .combo-wrapper {
    border-radius: 28px;
  }

  .accordion-item:not(:first-child) {
    border-top: 1px solid #bfbfbf;
    margin-top: 20px;
    padding-top: 24px;
    /* margin-top: 24px; */
    /* padding-top: 28px;  */
  }

  .tech-combo-accordion.two-column-layout .accordion-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    margin-bottom: 40px;
  }

  .tech-combo-accordion.two-column-layout .accordion-item {
    border-top: unset;
    border-bottom: 1px solid #bfbfbf;
    margin-bottom: 24px;
    padding-bottom: 20px;
    padding-top: 0;
    margin-top: 0;
    height: fit-content;
  }
}

@media screen and (min-width: 1200px) {
  .tech-combo-accordion .combo-wrapper {
    padding: 30px 50px;
  }

  .tech-combo-accordion .combo-wrapper__left {
    width: 45%;
    padding-right: 60px;
  }

  .tech-combo-accordion .combo-wrapper__right {
    width: 50%;
  }

  .accordion-item .title h3 {
    font-size: 22px;
  }
}

@media screen and (min-width: 1400px) {
  .tech-combo-accordion {
    padding: 75px 0;
  }

  .tech-combo-accordion .combo-wrapper {
    padding: 70px 100px;
  }

  .tech-combo-accordion.full-width {
    padding: 100px 0;
    margin: 75px 0;
  }
}

@media screen and (min-width: 1600px) {}

/* .tech-combo-accordion {}

  .tech-combo-accordion .combo-wrapper {
    background-color: var(--LightGrey4);
    border-radius: 28px;
    max-width: 1328px;
    margin: 0 auto;
    padding: 100px;
  }

  .tech-combo-accordion .combo-wrapper .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .tech-combo-accordion .combo-wrapper__left {
    width: 45%;
    padding-right: 60px;
  }

  .tech-combo-accordion .combo-wrapper__right {
    width: 50%;
  }

  .tech-combo-accordion .section-title {
    text-align: left;
  }

  .accordion-item .title.active .arrow {
    transform: rotate(180deg);
  }

  .accordion-wrapper {
    width: 100%;
  }

  .accordion-item {
    cursor: pointer;
  }

  .accordion-item:not(:first-child) {
    border-top: 1px solid #bfbfbf;
    margin-top: 24px;
    padding-top: 28px;
  }

  .accordion-item .title {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-right: 40px;
  }

  .accordion-item .title .arrow {
    position: absolute;
    right: 0;
    width: 20px;
    top: 13px;
  }

  .accordion-content {
    display: none;
  }

  .accordion-content__inner {
    margin-top: 24px;
  }

  .accordion-item .title h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
  } */