.section__TyCs {
  padding: 0 20px 40px;
  margin-top: 20px;
}

.btn-terminos {
  border-radius: 15px;
  padding: 7px 20px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background: #009df4;
}

.TyCs__container .btn-terminos a {
  color: #fff;
}

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

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

h2.TyCs__title a:hover {
  color: var(--blue);
}

.TyC {
  width: 100%;
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.TyC__arrow {
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #00a9e0;
  border-left: 1px solid #00a9e0;
  margin-right: 5px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

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

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

.TyC__answer {
  padding-top: 25px;
  display: none;
  text-align: left;
  width: 100%;
  font-size: 13px;
}

.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;
}

@media (min-width: 768px) {
  .section__TyCs {
    padding-top: 40px;
  }

  .TyCs__title {
    font-size: 24px;
  }

  .TyCs__title br {
    display: none;
  }

  .TyC {
    padding: 20px 30px;
  }

  .TyC__question {
    font-size: 18px;
  }

  .TyC__answer {
    font-size: 16px;
  }
}

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