@charset "UTF-8";
.result {
  position: relative;
  overflow: hidden;
  background: var(--white, #fff);
  color: var(--black, #000);
  padding: 80px 0;
}
@media (max-width: 991px) {
  .result {
    padding: 50px 0;
  }
}
.result .result__title {
  text-align: center;
  margin-bottom: 40px;
}
.result .result__content {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 991px) {
  .result .result__content {
    flex-direction: column;
  }
}
.result .result__figure {
  position: relative;
  width: 100%;
  background: url("../images/result-bg-gpt.webp") repeat-x center bottom, var(--gray, #f3f3f3);
  background-size: 1000px;
  border-radius: var(--radius-l);
  animation: cityBG 40s infinite linear;
}
@media (max-width: 991px) {
  .result .result__figure {
    padding-bottom: 50%;
  }
}
@media (max-width: 767px) {
  .result .result__figure {
    padding-bottom: 80%;
  }
}
@media (max-width: 575px) {
  .result .result__figure {
    padding-bottom: 137%;
  }
}
.result .result__figure .result__image {
  position: absolute;
  width: 543px;
  left: -90px;
  bottom: 0;
}
@media (max-width: 991px) {
  .result .result__figure .result__image {
    width: 280px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .result .result__figure .result__image {
    width: 104%;
    left: -15px;
  }
}
.result .result__figure .result__image:after {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 38.5%;
  right: 34%;
  background: #fed700;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 6px 10px #fed700;
  animation: double-flash 2s infinite;
  pointer-events: none;
  transform: rotate3d(1, 0, 3, 44deg);
}
.result .result__list {
  list-style: none;
  max-width: 692px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  line-height: 1.38;
  padding: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .result .result__list {
    max-width: 490px;
  }
}
@media (max-width: 991px) {
  .result .result__list {
    max-width: 100%;
  }
}
.result .result__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--gray, #f3f3f3);
  border-radius: var(--radius-m, 10px);
  padding: 15px;
}
@media (max-width: 575px) {
  .result .result__list li {
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
  }
}
.result .result__list li:before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #fed700;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .result .result__list li:before {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.result .result__list li b {
  font-weight: 800;
}

@keyframes cityBG {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}
@keyframes double-flash {
  0%, 100% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}

/*# sourceMappingURL=result.css.map */
