@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Main styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: 'Roboto', sans-serif;
  font-size: 16px;

  background: #ccc;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Accordion */
.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion__title {
  margin-bottom: 30px;

  text-transform: uppercase;
  text-align: center;
}

.accordion__item {
  border: 1px solid #fff;
  border-bottom: none;
  border-radius: 2px;
}

.accordion__item.active {
  
}

.accordion__item:last-child {
  border-bottom: 1px solid #fff;
}

.accordion__btn {
  padding: 12px 20px;
  cursor: pointer;

  font-size: 16px;
  color: #575757;

  background-color: #f7f7f7;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;

  color: #333;
  font-size: 15px;

  transition: max-height 0.4s linear;
}

.accordion__text {
  padding: 20px;
  color: #575757;
}