/*******************************************************************************/
.faq {
  padding: 60px 0 200px;
  background: #151D2B;
  color: #fff;
}
.faq__cols {
  display: grid;
  grid-template-columns: 1fr 0fr;
  grid-gap: 20px;
}
.faq__col{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq__item {
  padding: 30px 35px;
  box-shadow: 0px 0px 21.68px 0px rgba(0, 0, 0, 0.0588235294);
  background: rgba(255, 255, 255, 0.08);
    flex: 1 1 calc(50% - 10px);
}

.faq__item-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.faq__item-title {
  font-weight: 700;
  font-style: bold;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -1.08px;
  text-wrap: balance;
  transition: all 0.3s ease-in-out;
}
.faq__item.opened .faq__item-title {
  color: #FF2731;
}
.faq__item-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  border-radius: 6.5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__item-icon .icon {
  fill: currentColor;
  stroke: initial;
  width: 19px;
  height: 11px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.faq__item.opened .faq__item-icon .icon {
  transform: scale(1, -1);
  color: #FF2731;
}
.faq__item-body {
  display: none;
  padding-top: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: -0.74px;
}

@media (max-width: 609.98px) {
  .faq {
    padding-bottom: 100px;
  }
  .faq__cols {
    grid-gap: 15px;
  }
  .faq__item {
    padding: 15px;
  flex: 1 1 100%;

  }

  .faq__item-head {
    min-height: 60px;
  }
  .faq__item-title {
    font-size: 20px;
  }
  .faq__item-icon {
    width: 30px;
    height: 30px;
  }
  .faq__item-body {
    font-size: 16px;
    font-weight: 500;
  }
}