.content {
  margin-top: 5rem;
}
.teble-content-desktop {
  display: none;
}
.teble-content {
  border-radius: 20px;
  background-color: #2563eb;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
}
.teble-content i,
.teble-content .title {
  color: #ffffff;
}
.teble-content i {
  font-size: 25px;
}
.teble-content .title {
  margin: 10px 0 30px 0;
  font-weight: 700;
  font-size: 20px;
}
.teble-content-mobile .select {
  position: relative;
  background-color: #111214;
  padding: 5px 15px;
  color: #ffffff;
  border-radius: 10px;
}

.teble-content-mobile .selected {
  cursor: pointer;
}
.teble-content-mobile .select-list {
  position: absolute;
  top: 70px;
  right: 0;
  background-color: #24262b;
  width: 100%;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}
.teble-content-mobile .select-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.teble-content-mobile .select-list ul li {
  text-align: right;
  padding: 15px 15px;
}
.teble-content-mobile .select-list ul li:first-of-type:hover {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.teble-content-mobile .select-list ul li:last-of-type:hover {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.teble-content-mobile .select-list ul li:hover {
  background-color: #393c43;
}
.teble-content-mobile .select-list a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
.teble-content-mobile .select .selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.teble-content-mobile .select .selected i {
  font-size: 10px;
  transition: transform 0.2s linear;
}
.active {
  visibility: visible !important;
  opacity: 1 !important;
  top: 50px !important;
}
.rotate {
  transform: rotate(180deg);
}
.content .paragraph {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #24262b;
}
.content .paragraph .paragraph-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.content .paragraph .paragraph-body {
  font-size: 17px;
  color: #d7d8d9;
  margin-bottom: 10px;
}
.content .paragraph:last-of-type {
  border-bottom: none;
}
@media (min-width: 768px) {
  .teble-content-mobile {
    display: none;
  }
  .teble-content-desktop {
    display: block;
    position: sticky;
    top: 10px;
  }
  .teble-content-desktop ul {
    margin: 0;
    padding: 0;
  }
  .teble-content-desktop ul li {
    list-style: none;
    background-color: #111214;
    margin: 10px 0;
    border-radius: 10px;
  }
  .teble-content-desktop ul li a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    font-size: 15px;
  }
  .teble-content-desktop ul li a span {
    color: #d7d8d9;
  }
}