.success {
  margin: 90px 0 200px;
}
@media (max-width: 1199px) {
  .success {
    margin: 60px 0 120px;
  }
}
@media (max-width: 599px) {
  .success {
    margin: 40px 0 60px;
  }
}
.success .wrapper {
  max-width: 1140px;
}
@media (max-width: 1199px) {
  .success .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .success .wrapper {
    padding: 0 30px;
  }
}
.success .icon {
  width: auto;
  max-width: 100%;
  height: 112px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .success .icon {
    height: 60px;
  }
}
.success .section_title {
  margin-top: 30px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 148%;
  color: var(--0b3948);
}
@media (max-width: 767px) {
  .success .section_title {
    font-size: 24px;
  }
}
.success .section_text {
  margin-top: 40px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 148%;
  color: var(--0b3948);
  max-width: 800px;
}
@media (max-width: 767px) {
  .success .section_text {
    margin-top: 24px;
    font-size: 16px;
  }
}
.success .section_text > * {
  margin: 0 0 0.5em;
}
@media (max-width: 767px) {
  .success .section_text > * {
    margin: 0 0 1em;
  }
}
.success .section_text > *:last-child {
  margin-bottom: 0;
}
.success .btns_wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: start;
  gap: 20px;
}
@media (max-width: 767px) {
  .success .btns_wrapper {
    margin-top: 24px;
    flex-wrap: wrap;
  }
}
.success .dark_btn {
  outline: none;
  border: none;
  min-width: 87px;
  height: 60px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--0b3948);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 148%;
  text-align: center;
  color: var(--style);
  cursor: pointer;
  transition: 0.35s;
}
.success .dark_btn:hover {
  background: var(--f9a21b);
  color: var(--0b3948);
}
.success .light_btn {
  outline: none;
  border: none;
  min-width: 270px;
  height: 60px;
  padding: 0 20px;
  border-radius: 8px;
  background: #ffd470;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 148%;
  text-align: center;
  color: var(--0b3948);
  cursor: pointer;
  transition: 0.35s;
}
.success .light_btn:hover {
  background: var(--f9a21b);
}
.success .light_btn svg {
  flex-shrink: 0;
  width: 27px;
  height: auto;
}