

/* -Шалом- */


.accordion{
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.question {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #F5F7FA;
  padding-bottom: 10px;
  cursor: pointer;
  justify-content: space-between;
}

.question h3 {
    font-size: 20px;
    line-height: 120%;
    z-index: -1;
    font-weight: 400;
}

.question_svg{
  width: 24px;
  height: 24px;
  z-index: -1;
}

.question svg{
    z-index: -1;
    transition: 0.5s ease-out;
    width: 24px;
    height: 24px;
}

.answer {
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  display: flex;
  padding: 0px;
  box-sizing: border-box;
  transition: 0.8s ease-out;
  border-bottom: 0px solid #F5F7FA;
}

.answer p {
    font-size: 16px;
    line-height: 120%;
    padding: 20px 10px;
    color: #989CA2;
}

.answer span {
    font-weight: 500;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

.accordion.active .answer{
   border-bottom: 1px solid #F5F7FA;
   overflow: hidden;
   margin-bottom: 10px;
}

.accordion.active .question svg{
    transform: rotate(180deg);
}



@media (max-width: 1200px){

.container{
  width: 938px;
  margin: 0px auto;
  padding: 0px 15px;
}



}

@media (max-width: 990px){

.container{
  width: 100%;
  padding: 0px 20px;
} 


}


@media (max-width: 550px){

.container {
    width: 100%;
    padding: 0px 10px;
}

.question h3 {
    font-size: 18px;
    width: 90%;
}

.answer p {
    font-size: 16px;
    padding: 15px 10px;
}



}











































