.faq{
  border-radius: 0px 165px 0px 0px;
  transition: .3s ease-in-out border-radius;
}
.faq.blue{
  background-color: #0A7DA0
}
.faq.yellow{
  background-color: #FED958
}
.faq__container{
  padding-top: 60px;
  padding-bottom: 60px;
}
.faq__container h2{
  margin-bottom: 2rem;
}
.faq.blue h2{
  color: #fff;
}
.faq__items{
  display: flex;
  gap: 20px 25px;;
  flex-wrap: wrap;
  align-items: flex-start;
}
.faq__item{
  padding: 15px 25px;
  border: #333333 1px solid;
  position: relative;
  border-radius: 6px;
  flex: 1 1 100%
}
.faq.blue .faq__item{
  background: #fff;
  border: none;
}
.faq__items-two__col .faq__item{
  flex: 1 1 calc(50% - 15px);
}
.faq__item-open {
  position: relative;
  display: flex;
  align-items: center;
}

.faq__item .faq__item-open svg{
  transition: 0.3s ease-in-out;
  transform-origin: center;
}
.faq__item.open .faq__item-open svg{
  transform: rotate(180deg);
}
.faq__item p{
  transition: .4s linear margin-bottom;
}
.faq-wrapper{
  display: flex;
  flex-direction: row;
  cursor: pointer;
  gap: 15px;
}
.faq__header{
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.faq__item-content{
  display: none;
  padding-top: 0.5rem;
  transition: height 0s ease-in-out;
  font-size: 20px;
  line-height: 28px;
}
@media(max-width: 768px){
  .faq{
    border-radius: 0px 100px 0px 0px;
  }
}
@media(max-width: 600px){
  .faq__items-two__col .faq__item{
    flex: 1 1 100%;
  }
}
