.tabs-acc {
  background: #f2f9ff;
  display: flex;
  padding: 120px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tabs-acc__container {
  width: min(1560px, 100%);
  padding: 0px 20px;
}
.tabs-acc__title {
  color: #000;
  font-feature-settings: "liga" off;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 40px;
}
.tabs-acc__box {
  display: flex;
  padding: 120px;
  align-items: flex-end;
  gap: 200px;
  align-self: stretch;
  border-radius: 50px;
  border: 1px solid #1252fa;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px);
}
.tabs-acc__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 39.5%;
}
.tabs-acc__list button {
  padding: 0;
  margin: 0;
}
.tabs-acc__list [type=button]:focus,
.tabs-acc__list [type=button]:hover,
.tabs-acc__list [type=submit]:focus,
.tabs-acc__list [type=submit]:hover,
.tabs-acc__list button:focus,
.tabs-acc__list button:hover {
  background: none;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.tabs-acc__media {
  flex: 0 0 auto;
}
@media (min-width: 980px) {
  .tabs-acc__media {
    width: calc(60.5% - 200px);
  }
}
.tabs-acc__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Item */
.tab-item {
  border-radius: 10px;
  border: 1px solid #d1e5ff;
  background: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tab-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.tab-item__title {
  margin: 0;
  color: #000;
  font-feature-settings: "liga" off;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-wrap: auto;
}
.tab-item__icon {
  display: flex;
  padding: 7px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(266deg, #9ab7ff -33.31%, #174cd0 40.71%, #103590 97.89%);
  transition: transform 0.2s ease;
}
.tab-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.tab-item p {
  margin: 16px 0 0;
  color: #000;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.tab-item.active {
  background: #d1e5ff;
  gap: 20px;
}
.tab-item.active .tab-item__icon {
  transform: rotate(180deg);
}
.tab-item.active .tab-item__body {
  max-height: 500px;
}

@media (max-width: 980px) {
  .tabs-acc {
    padding: 40px 15px;
  }
  .tabs-acc__container {
    padding: 0;
    width: 100%;
  }
  .tabs-acc__title {
    font-size: 32px;
    margin: 0 0 32px;
  }
  .tabs-acc__box {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 15px;
  }
  .tabs-acc__list {
    min-width: 0;
    width: 100%;
  }
  .tabs-acc__img {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
