@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
.container {
  max-width: 1170px;
  min-width: 320px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

body {
  color: black;
  font-weight: normal;
  font-style: normal;
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  display: inline-block;
}

a,
button,
input,
textarea {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  outline: none;
}

.faq {
  background-color: #fff;
  padding: 50px 0;
}

.faq__title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
}

.faq__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -50px;
  width: 140px;
  height: 4px;
  background-color: #e74c3c;
}

.faq__block {
  max-width: 768px;
  margin: 50px auto;
}

.acc {
  width: 100%;
}

.acc-item {
  margin-bottom: 15px;
}

.acc-button {
  padding-right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.acc-button.active {
  color: #e74c3c;
}

.acc-button.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.acc-button::after {
  content: '';
  background: url(/expand-d.svg) no-repeat center;
  width: 20px;
  height: 12px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.acc-button:hover {
  color: #e74c3c;
}

.acc-content {
  display: none;
  padding: 10px 35px;
  margin-top: 15px;
  position: relative;
}

.acc-content p {
  border-left: 2px solid #e74c3c;
  padding-left: 10px;
  font-size: 20px;
  line-height: 24px;
}

.acc-content ul {
  border-left: 2px solid #e74c3c;
  padding-left: 15px;
}

.acc-content ul li {
  list-style-type: '-';
  font-size: 20px;
  line-height: 24px;
  padding-left: 10px;
}

.acc-content.active {
  display: block;
}

.acc-content.active p,
.acc-content.active ul {
  -webkit-animation: sweep 1s ease alternate;
          animation: sweep 1s ease alternate;
}

.acc-content.active::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #bdc3c7;
  -webkit-animation: linewrite 2s ease;
          animation: linewrite 2s ease;
}

@-webkit-keyframes sweep {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-45px);
            transform: translateX(-45px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes sweep {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-45px);
            transform: translateX(-45px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes linewrite {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes linewrite {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */