.sell-intro {
  margin-bottom: 100px;
}
.sell-intro .row {
  gap: 50px;
}
.sell-intro .title {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.5;
}
.sell-intro .title .marker {
  background: linear-gradient(transparent 60%, #FFF100 60%);
}
@media (max-width: 767.98px) {
  .sell-intro .title {
    font-size: 1.4em;
    margin-bottom: 15px;
  }
}
.sell-intro .text {
  line-height: 2;
}
@media (max-width: 767.98px) {
  .sell-intro .text {
    line-height: 1.8;
  }
}

.sell-flow {
  margin-bottom: 100px;
}
.sell-flow .head {
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .sell-flow .head {
    margin-bottom: 40px;
  }
}
.sell-flow .head .label {
  color: #3b7eb6;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .sell-flow .head .label {
    font-size: 0.9em;
  }
}
.sell-flow .head .title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .sell-flow .head .title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
.sell-flow .head .text {
  font-size: 1em;
  line-height: 2;
}
@media (max-width: 767.98px) {
  .sell-flow .head .text {
    line-height: 1.8;
  }
}
.sell-flow .steps {
  display: flex;
  flex-direction: column;
  gap: 0 30px;
}
@media (max-width: 767.98px) {
  .sell-flow .steps {
    gap: 20px;
  }
}
.sell-flow .item {
  background-color: #F4F4F1;
  border-radius: 40px;
  padding: 35px 40px;
  display: flex;
  align-items: flex-start;
  gap: 35px;
  position: relative;
}
@media (max-width: 991.98px) {
  .sell-flow .item {
    padding: 30px;
    gap: 25px;
  }
}
@media (max-width: 767.98px) {
  .sell-flow .item {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    text-align: center;
  }
}
.sell-flow .item .photo {
  flex-shrink: 0;
}
.sell-flow .item .photo img {
  width: 245px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .sell-flow .item .photo img {
    width: 200px;
    aspect-ratio: 1/1;
  }
}
.sell-flow .item .content {
  flex: 1;
}
.sell-flow .item .content .step {
  color: #3b7eb6;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .sell-flow .item .content .step {
    font-size: 1em;
    margin-bottom: 5px;
  }
}
.sell-flow .item .content .name {
  font-size: 1.4em;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .sell-flow .item .content .name {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
}
.sell-flow .item .content .text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .sell-flow .item .content .text {
    font-size: 0.9em;
    line-height: 1.7;
  }
}
.sell-flow .item .content .note {
  background-color: #fefefe;
  padding: 1em;
  margin-top: 1em;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .sell-flow .item .content .note {
    padding: 10px 12px;
  }
}
.sell-flow .item .content .note .note-title {
  font-size: 0.95em;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .sell-flow .item .content .note .note-title {
    font-size: 0.9em;
    margin-top: 12px;
  }
}
.sell-flow .item .content .note .note-text {
  font-size: 0.8em;
  color: #666;
  line-height: 1.8;
}
.sell-flow .next-line {
  position: relative;
  width: 5px;
  left: 20%;
  height: 50px;
}
.sell-flow .next-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #3b7eb6;
  transform: scaleY(0);
  transform-origin: top;
  animation: drawLine 0.8s ease-out infinite;
}

@keyframes drawLine {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}/*# sourceMappingURL=sell.css.map */