@charset "UTF-8";

.case-list {
  display: flex;
  align-items: center;
  justify-content: center;
list-style: none !important;
}
.case-list + .case-list {
  margin-top: 40px;
}

.case-list:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.case-list:nth-of-type(2n) .case-content {
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .case-list:nth-of-type(2n) .case-content {
    margin-right: 10px;
  }
}

.case-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(31, 38, 52, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .case-img {
    width: 100px;
    height: 100px;
  }
}
.case-img img {
  width: 100px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .case-img img {
    width: 50px;
  }
}

.case-content {
  margin-left: 40px;
  border: 2px solid #1f2e55;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .case-content {
    width: 250px;
    max-width: 100%;
    padding: 10px;
    margin-left: 10px;
  }
}

.case-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}

.case-text {
  font-size: 16px;
}