.wrap__main {
  font-family: var(--Lato), sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.site{
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
.section__title {
  color: var(--color-black);
  font: 700 24px/32px var(--Mont);
}
.section__title.center {
  text-align: center;
  margin: 0 auto;
}
.section__title.blue {
  color: var(--primary-400);
}
.section__title > * {
  color: var(--primary-400);
}
.section__subtitle {
  font: 400 16px/24px var(--Lato);
}
.section__text {
  font: 400 14px/20px var(--Lato);
}
.section__btn {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 8px;
  padding: 8px 16px!important;
  color: var(--color-white);
  text-transform: uppercase;
  background: var(--primary-400)!important;
  font: 700 14px/24px var(--Lato);
  transition: 0.4s ease;
  display: block;
}
.section__btn:hover {
  transition: 0.2s ease;
  background: #1C5DC4!important;
  color: var(--color-white)!important;
}
.section__btn.transparent {
  background: none!important;
  position: relative;
  color: var(--primary-400);
  &:after{
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-400);
    border-radius: 8px;
  }
  &:hover{
    background: var(--primary-400)!important;
    color:white;
  }
}
.section__head {
  margin-bottom: 24px;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.section__head > * {
  width: 50%;
}

.choose .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.choose__list {
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1166px;
  margin: 0 auto;
}
.choose__count {
  font: 400 24px/32px var(--Mont);
  color: var(--basic-200);
  margin-top: 12px;
}
.choose__item {
  width: calc(50% - 20px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
  padding: 24px;
  position: relative;
}
.choose__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #F3F3FA;
  pointer-events: none;
}
.choose__item-title  > span {
  font: 700 16px/24px var(--Mont);
}
.choose__item-text {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4px;
  color: var(--basic-800);
}
.choose__item-text p, .choose__item-text p > *, .choose__item-text span, .choose__item-text li {
  font: 400 14px/20px var(--Lato);
}
.choose__item-text ol, .choose__item-text ul {
  padding-left: 16px;
}
.choose__item-text ul {
  padding-left: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4px;
}
.choose__item-text ul li {
  position: relative;
}
.choose__item-text ul li:after {
  content: "";
  position: absolute;
  top: 6px;
  left: -16px;
  width: 8px;
  height: 8px;
  background-color: var(--basic-200);
  border-radius: 50%;
}
.choose__item-text strong {
  font-weight: 700;
}
.choose__item:first-child .choose__img {
  bottom: unset;
  top: 0;
}
.choose__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.choose .section__title {
  margin-bottom: 24px;
}

.tab__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.tab__header-item {
  font: 700 12px/16px var(--Lato);
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--basic-500);
  position: relative;
  transition: 0.2s ease;
  text-transform: uppercase;
}
.tab__header-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px solid var(--basic-200);
  pointer-events: none;
}
.tab__header-item:hover {
  color: var(--basic-800);
}
.tab__header-item:hover:after {
  border: 1px solid var(--basic-800);
}
.tab__header-item.active {
  color: var(--color-white);
  background: var(--basic-600);
}
.tab__header-item.active:after {
  border: 1px solid var(--basic-600);
}
.tab__content-item {
  display: none;
}
.tab__content-item:first-child {
  display: block;
}

.advantages .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.advantages__list {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.advantages__item {
  width: calc((100% - 72px) / 4);
  padding: 24px;
  border-radius: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
  background: var(--primary-300);
}
.advantages__title {
  font: 700 16px/24px var(--Mont);
}
.advantages__text {
  font: 400 14px/20px var(--Lato);
}
.advantages__img {
  width: 40px;
  height: 40px;
}
.advantages .section__title {
  max-width: 261px;
}

.decision .section__title {
  max-width: 497px;
}
.decision__btn {
  margin: 24px auto 0;
}
.decision__block {
  padding: 60px;
  background: linear-gradient(0deg, #FFFFFF 24.48%, #E9F0FC 100%);
  border-radius: 16px;
}
.decision__part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
.decision__part.gallery {
  margin-bottom: 44px;
}
.decision__part.gallery .decision__item {
  min-width: 298px;
}
.decision__part .section__title {
  font-size: 20px;
}
.decision__list {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.decision .advantages__item {
  min-width: 298px;
}
.decision__item {
  aspect-ratio: 298/432;
  border-radius: 16px;
  width: calc((100% - 48px) / 4);
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
}
.decision__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.decision__item-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0.78deg, #2C2828 -74.26%, #2C2828 2.5%, rgba(9, 9, 11, 0) 76.93%);
}
.decision__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
  padding: 0 24px 32px;
}
.decision__title {
  font: 700 16px/24px var(--Mont);
  color: var(--color-light);
}
.decision__text {
  color: var(--color-light);
}

.create .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.create .decision__item {
  aspect-ratio: 318/432;
  width: calc((100% - 88px) / 4);
  min-width: 290px;
}
.create .decision__item:first-child {
  aspect-ratio: 358/432;
  -ms-flex-positive: 1;
      flex-grow: 1;
  background: var(--primary-500);
}
.create .decision__item:first-child .decision__info {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.create .decision__item:first-child .decision__info .decision__title {
  font-size: 20px;
  line-height: 32px;
}
.create .decision__info {
  padding: 24px;
}
.create .section__btn {
  margin-top: 14px;
}

.review .container {
  padding: 60px 40px 120px;
}
.review .section__title {
  max-width: 406px;
}
.review .section__head {
  -ms-flex-align: center;
      align-items: center;
}
.review__top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 8px;
}
.review__top-star {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
}
.review__top-star-title {
  font: 600 16px/28px var(--Mont);
}
.review__top-star-title > * {
  font-weight: 700;
}
.review__list {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.review__item {
  width: calc((100% - 48px) / 4);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 328px;
}
.review__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #F3F3FA;
  pointer-events: none;
  transition: 0.2s ease;
}
.review__item:hover:after {
  border: 1px solid var(--primary-400);
}
.review__info {
  padding: 20px;
  gap: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.review__star {
  width: -moz-max-content;
  width: max-content;
  height: 20px;
}
.review__img {
  width: 100%;
  aspect-ratio: 328/240;
}
.review__author {
  font: 700 14px/20px var(--Montserrat);
  margin-bottom: 4px;
}
.review__category {
  display: block;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 3px;
  position: relative;
  color: var(--basic-700);
  font: 500 10px/12px var(--Lato);
}
.review__category:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #D7DAE4;
  pointer-events: none;
}
.review__link {
  width: -moz-max-content;
  width: max-content;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 4px;
  position: relative;
  transition: 0.2s ease;
}
.review__link img {
  display: block;
  width: 20px;
  height: 20px;
}
.review__link span {
  display: block;
  font: 600 12px/18px var(--Lato);
  color: var(--basic-500);
  padding-right: 18px;
}
.review__link span:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 16px;
  height: 16px;
  transition: 0.2s ease;
  background: url(../img/arr_right.svg) center/16px 16px no-repeat;
}
.review__link:hover span {
  filter: brightness(0) saturate(100%) invert(18%) sepia(5%) saturate(1973%) hue-rotate(197deg) brightness(93%) contrast(90%);
}
.review__text {
  font: 400 14px/20px var(--Lato);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  overflow: hidden;
  -ms-flex-positive: 1;
      flex-grow: 1;
  color:#2E2E2E;
}

.catalog .container {
  padding-top: 40px;
}
.catalog__list {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.catalog__item {
  aspect-ratio: 212/390;
  border-radius: 16px;
  width: calc((100% - 80px) / 6);
  position: relative;
  min-width: 212px;
  transition: 0.2s ease;
  overflow: hidden;

}
.catalog__item img{
  border-radius: 16px;
}
.catalog__detail{
  opacity: 0;
  position: relative;
  padding-right: 33px;
  font: 600 14px/20px var(--Mont);
  color: var(--basic-500);
  margin-top: 10px;
  transition: 0.2s ease;
  width: max-content;
  &:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 24px;
    height: 24px;
    background: url(../img/detail.svg) center/24px 24px no-repeat;
  }
}
.catalog__item:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid #F3F3FA;
  transition: 0.2s ease;
  pointer-events: none;
}
.catalog__item:hover{
  .catalog__detail{
    transition: 0.2s ease;
    opacity: 1;
  }
  &:after{
    transition: 0.2s ease;
    border: 2px solid #1C5DC4;
  }

}
.catalog__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.catalog__title {
  font: 600 14px/20px var(--Mont);
}
.catalog__content {
  padding: 16px;
}

.catalog__info {
  padding: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
  border-radius: 16px;
  margin-top: 16px;
  background: var(--primary);
}
.catalog__info-item {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.catalog__info-item > * {
  white-space: nowrap;
  font: 400 14px/20px var(--Lato);
}

.content {
  color: var(--basic-900);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
}
.content p, .content p > *, .content span, .content li {
  font: 400 14px/24px var(--Lato);
}
.content ol, .content ul {
  padding-left: 20px;
}
.content ul {
  padding-left: 20px;
}
.content ul li {
  position: relative;
}
.content ul li:after {
  content: "";
  position: absolute;
  top: 9px;
  left: -14px;
  width: 5px;
  height: 5px;
  background-color: var(--basic-900);
  border-radius: 50%;
}
.content strong {
  font-weight: 700;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  font-weight: 700;
}
.content a {
  text-decoration: underline;
}

.faq .container {
  padding: 60px 40px;
}
.faq .section__title {
  color: var(--primary-600);
}
.faq__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
.faq__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 905px;
  margin: 0 auto;
  gap: 12px;
}
.faq__item {
  transition: 0.2s ease;
  position: relative;
}
.faq__header {
  padding: 12px 16px;
  position: relative;
  cursor: pointer;
  -ms-flex-direction: column;
      flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  background: #E9F0FC;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.faq__header > * {
  font: 600 14px/24px var(--Lato);
}
.faq__header:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 24px;
  height: 24px;
  background: url(../img/more.svg) center/24px 24px no-repeat;
}
.faq__content {
  color: var(--basic-900);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq__open {
  position: relative;
}
.faq__open .faq__content {
  padding: 16px;
  opacity: 1;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq__open .faq__header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq__open .faq__header:after {
  transition: all 0.3s ease;
  transform: translateY(-50%) rotate(180deg);
}
.faq__open:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #F3F3FA;
  pointer-events: none;
  border-radius: 8px;
}
.faq__btn {
  margin: 8px auto 0;
}

.trust .container {
  padding: 60px 40px;
}
.trust .section__title {
  color: var(--primary-600);
}
.trust__block {
  padding: 60px 57px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 17px;
  border-radius: 16px;
  background: var(--primary);
}
.trust__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  max-height: 88px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.trust__item {
  padding: 24px;
  position: relative;
  border-radius: 8px;
  background: white;
}
.trust__item img {
  margin: 0 auto;
  height: 40px;
  width: auto;
}
.trust__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #F3F3FA;
  pointer-events: none;
}
.trust__btn {
  margin: 8px auto 0;
}

.info .container {
  padding: 60px 40px;
}
.info__block {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.info__img img {
  border-radius: 16px;
}
.info__img-wrapper {
  position: relative;
  width: 72%;
  aspect-ratio: 984/537;
}
.info__text {
  width: calc(28% - 16px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 20px;
  background: var(--primary-500);
  border-radius: 16px;
  padding: 24px;
  color: var(--color-white);
}
.info__text-bottom {
  color: var(--color-white);
  gap: 8px;
}
.info__text-title {
  font: 700 20px/32px var(--Mont);
}

.tooltip__block {
  min-width: 384px;
  display: none;
  padding: 16px;
  border-radius: 8px;
  gap: 16px;
  -ms-flex-align: center;
      align-items: center;
  background: var(--color-white);
  right: -50px;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
.tooltip__block.active {
  display: -ms-flexbox;
  display: flex;
}
.tooltip__icon {
  width: 50px;
  height: 50px;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  cursor: pointer;
}
.tooltip__icon-img{
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip__icon-img:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: 0.2s ease;
  background: var(--primary-400);
  z-index: 0;
}
.tooltip__icon img {
  position: relative;
  z-index: 1;
}
.tooltip__icon:hover:after {
  background: #1C5DC4;
}
.tooltip__item {
  position: absolute;
}


.tooltip__item-right .tooltip__block{
  right: unset;
  left: -50px;
}


.tooltip__img {
  width: 134px;
  min-width: 134px;
  height: 92px;
}
.tooltip__img-wrapper {
  position: relative;
}
.tooltip__info {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}
.tooltip__price {
  font: 700 20px/24px var(--Lato);
  color: var(--primary-400);
}
.tooltip__title {
  padding-right: 33px;
  color: var(--basic-500);
  font: 700 14px/20px var(--Mont);
  position: relative;
}
.tooltip__title:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 24px;
  height: 24px;
  transition: 0.2s ease;
  background: url(../img/tooltip-arr.svg) center/24px 24px no-repeat;
}


@media only screen and (min-width: 1024px) {

  .tooltip__item:hover .tooltip__block {
    display: flex;
  }
}

@media only screen and (max-width: 1440px) {
  .scroll-block {
    overflow-x: auto;
    padding-bottom: 18px;
    margin-right: -40px;
  }
  .scroll-block > *:last-child {
    margin-right: 40px;
  }
  .catalog__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .scroll-block::-webkit-scrollbar {
    background-color: #E9F0FC;
    height: 2px;
  }
  .scroll-block::-webkit-scrollbar-thumb {
    background: var(--primary-500);
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .info .container, .faq .container, .trust .container {
    padding: 60px 20px;
  }
  .review .container {
    padding: 60px 20px 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .info__block {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .info__block > * {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .section__head {
    gap: 8px;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .section__head > * {
    width: 100%;
    max-width: 100% !important;
  }
  .gallery {
    margin: 40px 0;
  }
  .advantages__list:not(.scroll-block) {
    margin-bottom: 16px;
    gap: 16px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .advantages__item {
    width: 100%;
  }
  .decision__block {
    padding: 30px;
  }
  .trust__btn {
    display: none;
  }
  .trust__list {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-height: unset;
  }
  .section__head .review__top {
    display: none;
  }
  .review__top {
    -ms-flex-align: center;
        align-items: center;
    margin: 24px auto 0;
  }
  .trust__block {
    padding: 48px 12px;
    margin: 0 -20px;
    border-radius: 0;
  }
  .decision__block {
    padding: 20px;
    margin: 0 -20px;
    border-radius: 0;
    background: linear-gradient(0deg, #FFFFFF -5.89%, #E9F0FC 100%);
  }
}
@media only screen and (max-width: 666px) {
  .wrap__main .container {
    padding: 30px 12px;
  }
  .scroll-block {
    margin-right: -12px;
  }
  .scroll-block > *:last-child {
    margin-right: 12px;
  }
  .header .container {
    padding: 12px;
  }
  .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-size: 20px;
  }
  .catalog .container {
    padding-top: 12px;
  }
  .catalog__info-item > * {
    font-size: 12px;
    line-height: 16px;
  }
  .catalog__item {
    aspect-ratio: 212/460;
  }
  .catalog__info {
    gap: 16px;
    padding: 16px;
  }
  .section__title.little {
    font-size: 20px;
  }
  .choose .section__title {
    margin-bottom: 16px;
  }
  .choose__list {
    gap: 12px;
  }
  .choose__item {
    padding: 0;
    gap:0;
    border-radius: 8px;
    width: 100%;
  }
  .choose__item-title{
    padding: 8px 16px;
  }
  .choose__item-title > span {
    font-size: 14px;
    line-height: 20px;
  }
  .choose__item-text ul, .choose__item-text {
    gap: 8px;
  }
  .choose__count {
    margin: 0;
  }
  .choose__item-title{
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap:8px;
    padding-right: 42px;
    position: relative;
    background: #F3F3FA;
    &:after{
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 16px;
      width: 24px;
      height: 24px;
      background: url(../img/more.svg) center/24px 24px no-repeat;
    }
  }

  .choose__item.active .choose__item-title:after {
    transition: all 0.3s ease;
    transform: translateY(-50%) rotate(180deg);
  }
  .choose__item-title >  .choose__count{
    font: 400 24px / 32px var(--Mont);
    color: var(--basic-200);
  }
  .choose__item >  .choose__count {
   display: none;
  }
  .choose__item .choose__img {
    display: none;
  }
  .choose__item.active .choose__img {
    display: block;
  }
  .choose__item-text{
    padding: 0;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s, opacity 0.3s;
  }
  .choose__item.active .choose__item-text{
    padding: 16px;
    overflow: hidden;
    opacity: 1;
    transition: height 0.4s, opacity 0.3s;
  }
  .tab__header {
    margin-bottom: 16px;
  }
  .info__text {
    gap: 50px;
  }
  .tooltip__img {
     width: 116px;
     min-width: 116px;
     height: 76px;
   }
  .tooltip__item .tooltip__block {
    min-width: 340px;
    max-width: 340px;
    padding: 12px;
    gap:10px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    right: unset;
  }
  .section__head {
    gap: 8px;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 16px;
  }
  .section__head > * {
    width: 100%;
  }
  .advantages .section__title {
    max-width: 100%;
  }
  .create .decision__item:first-child, .decision__item {
    aspect-ratio: 290/432;
  }
  .create .section__btn {
    margin-top: 12px;
  }
  .section__btn {
    padding: 6px 16px!important;
  }
  .decision__block {
    padding: 12px;
    margin: 0 -12px;
    border-radius: 0;
    background: linear-gradient(0deg, #FFFFFF -5.89%, #E9F0FC 100%);
  }
  .decision__btn {
    margin-top: 20px;
  }
  .trust__block {
    padding: 48px 12px;
    margin: 0 -12px;
    border-radius: 0;
  }
  .review .container {
    padding-bottom: 60px;
  }
  .tooltip__item {
    position: unset;
  }
  .tooltip__icon{
   width: 30px;
    height: 30px;
  }
  .tooltip__title{
    font-size: 13px;
  }


}


