:root {
  --icon-arrow-left: url("data:image/svg+xml,%3Csvg width='11' height='17' viewBox='0 0 11 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.988902 8.60512L0.988182 8.60446C0.933119 8.55315 0.889053 8.4913 0.859042 8.42235C0.829301 8.35402 0.814063 8.28031 0.814614 8.20565C0.814063 8.131 0.829298 8.05727 0.859042 7.98894C0.889054 7.91999 0.93312 7.85813 0.988182 7.80683L0.992975 7.80237L0.993051 7.80246L8.87603 0.961741C8.87631 0.961488 8.8766 0.961235 8.87688 0.960983C8.98406 0.866108 9.1234 0.814643 9.26649 0.814643C9.40924 0.814643 9.54824 0.865857 9.65532 0.960289C9.72157 1.01686 9.77281 1.08879 9.80391 1.17009C9.8332 1.24665 9.84363 1.32904 9.83396 1.41057C9.8341 1.4844 9.81776 1.55725 9.7862 1.62417L9.61851 1.5451L9.7862 1.62418C9.75278 1.69506 9.70341 1.7569 9.64257 1.80571L2.16701 8.255L9.64877 15.0919C9.64883 15.092 9.64889 15.092 9.64896 15.0921C9.70297 15.1411 9.74644 15.2005 9.77637 15.267C9.80642 15.3337 9.82197 15.4058 9.82197 15.4788C9.82197 15.5519 9.80641 15.624 9.77637 15.6907C9.74658 15.7568 9.70337 15.816 9.6497 15.8649M0.988902 8.60512L9.52424 15.7284M0.988902 8.60512L8.86324 15.864L0.988902 8.60512ZM9.6497 15.8649C9.64939 15.8652 9.64908 15.8655 9.64877 15.8657L9.52424 15.7284M9.6497 15.8649C9.65001 15.8646 9.65032 15.8643 9.65063 15.864L9.52424 15.7284M9.6497 15.8649C9.5432 15.9637 9.40209 16.0176 9.25694 16.0176C9.11155 16.0176 8.97021 15.9635 8.86364 15.8644L8.86397 15.8647L8.98963 15.7284C9.06101 15.7949 9.15699 15.8322 9.25694 15.8322C9.35688 15.8322 9.45287 15.7949 9.52424 15.7284M1.88781 8.25101L2.02564 8.37697L2.02918 8.12905L1.88781 8.25101Z' fill='%23424143' stroke='%23424143' stroke-width='0.370803'/%3E%3C/svg%3E%0A");
  --icon-arrow-bottom: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 10 6' style='enable-background:new 0 0 10 6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23424143;%7D%0A%3C/style%3E%3Cpath class='st0' d='M4.2,5.8c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.1l0,0l3.7-4.6C8.7,1,8.8,0.9,8.8,0.7 c0-0.1,0-0.3-0.1-0.4C8.6,0.3,8.5,0.2,8.4,0.2c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.2L4.5,4.4L1.2,0.3 c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0.1-0.2,0.2C0.2,0.4,0.2,0.6,0.2,0.7 c0,0.1,0,0.3,0.1,0.4L4,5.7l0,0C4.1,5.7,4.1,5.8,4.2,5.8z'/%3E%3C/svg%3E%0A");
}

.collapse-item {
  background: var(--white);
  border-bottom: 8px solid var(--pink);
  border-radius: 20px;
  border-right: 8px solid var(--pink);
  margin-bottom: 1rem;
  padding: 25px 25px 25px 45px;
  position: relative;
}

.collapse-normal .collapse-item {
  background-color: transparent;
  border-radius: 0;
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

@media (min-width: 992px) {
  .collapse-item {
    padding: 25px 105px 25px 205px;
  }
}

.collapse-item.active {
  border-color: var(--light-blue);
}

.collapse-title {
  cursor: pointer;
}

.collapse-normal .collapse-title {
  font-size: 17px;
  font-weight: 500;
}

.collapse-item::before {
  background-image: var(--icon-arrow-left);
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 17px;
  left: 20px;
  position: absolute;
  top: 34px;
  transition: 0.3s ease-in-out;
  width: 11px;
}

@media (min-width: 992px) {
  .collapse-item::before {
    left: 105px;
  }
}

.collapse-normal .collapse-item.active::before,
.collapse-normal .collapse-item::before {
  background-image: var(--icon-arrow-bottom);
  height: 8px;
  left: 0;
  top: 7px;
  width: 14px;
}

.collapse-item.active::before {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='11' viewBox='0 0 17 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.605 9.6632L8.60433 9.66392C8.55303 9.71898 8.49117 9.76305 8.42223 9.79306C8.3539 9.8228 8.28019 9.83804 8.20553 9.83749C8.13088 9.83804 8.05715 9.8228 7.98882 9.79306C7.91987 9.76305 7.85801 9.71898 7.80671 9.66392L7.80225 9.65913L7.80233 9.65905L0.961618 1.77607C0.961365 1.77579 0.961113 1.7755 0.960861 1.77522C0.865986 1.66804 0.814521 1.5287 0.814521 1.38561C0.814521 1.24286 0.865735 1.10386 0.960167 0.996779C1.01674 0.930532 1.08867 0.879288 1.16996 0.84819C1.24653 0.818904 1.32892 0.80847 1.41045 0.818141C1.48428 0.818004 1.55713 0.834343 1.62405 0.865898L1.54498 1.03359L1.62405 0.8659C1.69493 0.899322 1.75678 0.948693 1.80559 1.00953L8.25488 8.48509L15.0918 1.00333C15.0919 1.00327 15.0919 1.00321 15.092 1.00314C15.141 0.94913 15.2004 0.905661 15.2668 0.875732C15.3336 0.845684 15.4057 0.830131 15.4787 0.830131C15.5518 0.830131 15.6239 0.845687 15.6906 0.875734C15.7567 0.905522 15.8159 0.948729 15.8648 1.00239M8.605 9.6632L15.7283 1.12786M8.605 9.6632L15.8639 1.78886L8.605 9.6632ZM15.8648 1.00239C15.8651 1.00271 15.8653 1.00302 15.8656 1.00333L15.7283 1.12786M15.8648 1.00239C15.8645 1.00208 15.8642 1.00177 15.8639 1.00147L15.7283 1.12786M15.8648 1.00239C15.9636 1.1089 16.0174 1.25001 16.0174 1.39516C16.0174 1.54055 15.9634 1.68189 15.8643 1.78846L15.8646 1.78813L15.7283 1.66247C15.7948 1.59109 15.832 1.49511 15.832 1.39516C15.832 1.29522 15.7948 1.19923 15.7283 1.12786M8.25089 8.76429L8.37684 8.62646L8.12893 8.62292L8.25089 8.76429Z' fill='%23B9E3F8' stroke='%23B9E3F8' stroke-width='0.370803'/%3E%3C/svg%3E%0A");
  height: 11px;
  width: 17px;
}

.collapse-content {
  display: none;
  font-weight: 500;
  padding-top: 40px;
}

.collapse-normal .collapse-content {
  padding-top: 0;
}

@media (min-width: 992px) {
  .collapse-content {
    width: 61%;
  }

  .collapse-normal .collapse-content {
    width: auto;
  }
}
