.trade-in__banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--accent-bg-color);
  overflow: hidden;
  padding: 0 15px;
  min-height: 316px;
}
@media (min-width: 768px) {
  .trade-in__banner {
    padding: 0 30px;
  }
}
@media (min-width: 992px) {
  .trade-in__banner {
    padding: 0 70px;
  }
}
@media (max-width: 575.98px) {
  .trade-in__banner {
    flex-wrap: wrap;
  }
}
.trade-in__picture {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 767.98px) {
  .trade-in__picture {
    margin-bottom: 40px;
  }
}
.trade-in__picture picture {
  display: block;
  width: 100%;
}
.trade-in__picture img {
  width: 100%;
  max-width: 100%;
}
.trade-in__inner {
  background-color: var(--accent-bg-color);
  padding: 32px;
  height: 100%;
}
@media (max-width: 991.98px) {
  .trade-in__inner {
    margin-top: 20px;
  }
}
@media (max-width: 575.98px) {
  .trade-in__inner {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.trade-in__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.trade-in__side {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .trade-in__side.-small {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .trade-in__side.-big {
    flex: 0 0 52%;
    max-width: 52%;
  }
}
.trade-in-form__title {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .trade-in-form__title {
    font-size: 30px;
  }
}
.trade-in__steps {
  background-color: var(--bs-gray-200);
  margin-top: 20px;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .trade-in__steps {
    padding: 64px 0;
  }
}
.trade-in__steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .trade-in__steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.trade-in-steps__card {
  position: relative;
  height: 100%;
  padding: 108px 16px 24px;
  background-color: var(--bs-white);
  overflow: hidden;
}
.trade-in-steps-card__picture {
  position: absolute;
  top: -20px;
  right: -24px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 192px;
  border-radius: 50%;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
  font-weight: 700;
}
.trade-in-steps-card__content {
  position: relative;
  min-width: calc(100% - 47px);
  max-width: calc(100% - 47px);
  padding-left: 10px;
  z-index: 2;
}
.trade-in-steps-card__title {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
.trade-in-steps-card__text {
  font-size: 14px;
}
