.bread__crumbs {
  margin: 0;
  padding: 10px 0;
  background: linear-gradient(90deg, #EBFAFF 0%, #EBFAFF 45%, transparent 45%, transparent 100%);
}

.main {
  background: linear-gradient(90deg, #EBFAFF 0%, #EBFAFF 45%, transparent 45%, transparent 100%);
}

main::before {
  top: 30%;
  left: 33%;
  background: url(/static/svg/c-bg2.svg) no-repeat center;
  background-size: contain;
  width: 430px;
  height: 418px;
}

main::after {
  bottom: 0;
  right: 0;
  background: url(/static/svg/c-bg3.svg) no-repeat center;
  background-size: contain;
  width: 323px;
  height: 180px;
}

.bg {
  display: block;
  position: relative;
}

.bg::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 0;
  background: url(/static/svg/c-bg1.svg) no-repeat center;
  background-size: contain;
  width: 200px;
  height: 396px;
  z-index: -1;
  pointer-events: none;
}

.tradein__form-content {
  padding: 40px 0;
}

.top__title {
  font-size: 24px;
  line-height: 26px;
  color: var(--green-dark);
  margin-bottom: 40px;
}

.tradein__form {
  max-width: 410px;
  width: 100%;
  padding: 0;
}

.form__title {
  text-align: left;
  color: var(--secondary-color);
  margin: 0;
  margin-top: 30px;
}

.main__form-input {
  height: 40px;
  margin-top: 10px;
  border: 1px solid var(--main-color);
  border-radius: 2px;
}

.main__form-btn {
  width: 220px;
  margin-left: auto;
  display: block;
}

.tradein__main-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.tradein__col {
  width: 52%;
}

.tradein__section,
.tradein__section h4 {
  margin-top: 30px;
}

.tradein__top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.tradein__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
}

.tradein__block img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.tradein__block h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--secondary-color);
}

.tradein__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.tradein__text,
.tradein__list li {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.tradein__text {
  text-align: justify;
  margin-bottom: 15px;
  text-indent: 15px;
}

.tradein__text span,
.tradein__text a,
.tradein__list li span {
  font-weight: 700;
  color: var(--green-dark);
}

.tradein__text b {
  font-weight: 800;
  font-size: 16px;
  color: var(--green-dark);
}

.tradein__text a {
  margin: 10px 0;
}

.tradein__list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 5px;
}

.tradein__list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 50%;
}

.credit__list li {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.credit__list li:last-of-type {
  margin-bottom: 15px;
}

/* ----------------- @media ---------------------- */

@media screen and (max-width: 1199px) {
  .tradein__top-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
  }

  .tradein__block {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  main::before {
    width: 300px;
    height: 320px;
  }

  main::after {
    width: 270px;
    height: 150px;
  }

  .bg::before {
    width: 135px;
    height: 275px;
  }

  .top__title {
    font-size: 18px;
    line-height: 22px;
  }

  .tradein__form {
    max-width: 310px;
  }

  .tradein__main-row {
    gap: 20px;
  }

  .tradein__section {
    margin-top: 30px;
  }

  .form__title {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .bread__crumbs {
    background: #EBFAFF;
  }

  .main {
    background: none;
  }

  main::before {
    top: 56%;
    left: -90px;
    width: 260px;
    height: 310px;
  }

  main::after {
    width: 263px;
    height: 145px;
  }

  .bg::before {
    top: 444px;
  }

  .tradein__form-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #EBFAFF;
    margin-left: -20px;
    margin-right: -20px;
    padding: 10px 0 20px;
  }

  .top__title {
    margin: 0;
    padding: 0 20px;
  }

  .tradein__top-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 10px;
  }

  .tradein__block {
    width: 48%;
  }

  .tradein__main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .main__form {
    position: initial;
    max-width: 410px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .main__form-btn {
    width: 100%;
  }

  .tradein__col {
    width: 100%;
  }

  .tradein__title {
    font-size: 18px;
    line-height: 20px;
    margin: 10px 0;
  }

  .tradein__section,
  .tradein__section h4 {
    margin: 10px 0;
  }
}

@media screen and (max-width: 580px) {
  .tradein__top-section {
    gap: 5px;
  }

  .tradein__block {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .tradein__block img {
    width: 30px;
    height: 30px;
  }

  .tradein__block h3 {
    font-size: 16px;
    line-height: 18px;
  }
}