.section__TyCs {
  padding: 40px 20px;
  max-width: 1229px;
  margin: 0 auto;
}

.TyCs {
  max-width: 1170px;
  color: #4d4d4d;
  margin: 0 auto 60px;
}

.TyCs__title {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 30px;
  text-align: center;
}

.TyC {
  width: 100%;
  background: #ffffff;
  padding: 20px 15px;
  margin-top: 10px;
  border-bottom: 2px solid #eeeeee;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.TyC__arrow::before {
  font-family: 'new-ico-logos-movistar', Arial, Helvetica, sans-serif !important;
  content: "\ea0a";
  color: var(--blue);
  transform: rotate(0deg);
  transition: all 0.5s;
  display: block;
}

.TyC.active .TyC__arrow::before {
  transform: rotate(-180deg);
}

.TyC__question {
  width: calc(100% - 40px);
  font-size: 17px;
  font-weight: normal;
  margin: 0;
}

.TyC__answer {
  padding-top: 25px;
  display: none;
}

.TyC__answer p,
.TyC__answer li {
  font-size: 16px;
  margin: 0 0 10px;
}

.TyC__answer li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.TyC__answer li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #019df4;
  border-radius: 50px;
}

.TyC__answer a {
  color: #00a9e0;
}

@media only screen and (min-width: 768px) {
  .TyCs__title {
    font-size: 24px;
  }

  .TyCs__title br {
    display: none;
  }

  .TyC {
    padding: 30px;
  }

  .TyC__question {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1024px) {
  .TyCs__title {
    font-size: 28px;
  }
}