@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap");
/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body, h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
}

/* ===== Base ===== */
body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  background-color: #211F43;
  color: #FFD8A8;
}

h1, h2, h3, h4 {
  color: #ffffff;
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

p {
  font-family: "Inter", system-ui, sans-serif;
  color: #FFD8A8;
  line-height: 28px;
  font-size: 18px;
}

/* ===== Контейнер ===== */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

/* ===== Секции ===== */
.section {
  padding-block: 24px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 40px;
  }
}

/* ===== Панельная секция (фон + скругления) ===== */
.section--panel {
  background: #1f2133;
  border-radius: 16px;
  padding: 24px;
}
@media (min-width: 768px) {
  .section--panel {
    padding: 40px;
  }
}

/* ===== Заголовки секций ===== */
.section__title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .section__title {
    font-size: 36px;
  }
}

.section__subtitle {
  font-size: 14px;
  color: #FFD8A8;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .section__subtitle {
    font-size: 18px;
  }
}

.header {
  position: absolute;
  width: 100%;
  padding-block: 30px;
  z-index: 1;
}
.header__logo {
  width: 250px;
  display: block;
}

.features {
  background: #1F1E33;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
.features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%231F1E33"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.features .features__title-head {
  max-width: 900px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ff9d2e;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.features .features__text-head {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 900px) {
  .features .features__text-head {
    max-width: 900px;
    margin: 30px auto;
  }
}
.features .features__img {
  margin-bottom: 10px;
  margin-inline: auto;
}
.features__container {
  max-width: 100%;
  margin: 0 auto;
}
.features__item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.features__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #FF9923, #3A3863) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 10px;
}
.features__item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(237, 137, 54, 0.3);
  box-shadow: 0 15px 35px rgba(237, 137, 54, 0.15);
}
.features__item:hover::before {
  opacity: 1;
}
.features__item:hover .features__icon {
  transform: scale(1.1) rotate(10deg);
}
.features__item:hover .features__icon::before {
  width: 100px;
  height: 100px;
}
.features__icon {
  width: 100px;
  margin: 0 auto 20px;
}
.features__icon img {
  width: 100%;
}
.features__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}
.features__title {
  font-size: 22px;
  font-weight: 700;
  color: #ed8936;
  margin-bottom: 15px;
  line-height: 1.3;
}
.features__text {
  font-size: 16px;
}

.features-without-card {
  padding-top: 30px;
  background-color: #13122C;
  position: relative;
}
.features-without-card .btn {
  width: 100%;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .features__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  .features__item {
    width: calc(33.3% - 30px);
  }
}
.features-x {
  position: relative !important;
}
@media (min-width: 900px) {
  .features-x {
    background-image: url("../../images/bg-2.png") !important;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.features-x::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%2313122C"></path></svg>') no-repeat !important;
  background-size: cover;
  z-index: 2;
}

@media (min-width: 900px) {
  .sec {
    left: 50px !important;
  }
}

.trading {
  background-color: #1F1E33;
  padding: 100px 0;
  position: relative;
  color: #FFD8A8;
  overflow: hidden;
}
.trading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="#13122C"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.trading__container {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.trading__card {
  position: relative;
}
@media (min-width: 900px) {
  .trading__card {
    display: flex;
    align-items: center;
  }
  .trading__card:nth-child(odd) {
    justify-content: flex-end;
  }
}
.trading__card-img-wrapper {
  max-width: 100%;
}
@media (min-width: 900px) {
  .trading__card-img-wrapper {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
.trading__card-img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .trading__card-img {
    width: 50%;
    position: relative;
    top: -140px;
    left: -50px;
  }
}
.trading__card-content {
  position: relative;
  background-color: #2a2947;
  padding: 30px;
  border-radius: 10px;
  margin: -50px 15px 0 15px;
  z-index: 1;
}
@media (min-width: 900px) {
  .trading__card-content {
    position: absolute;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .trading__card:nth-child(odd) .trading__card-content {
    left: 0;
  }
  .trading__card:nth-child(even) .trading__card-content {
    right: 0;
  }
}
.trading__card-content::before {
  top: -15px;
  left: -15px;
  border-width: 4px 0 0 4px;
}
.trading__card-content::after {
  bottom: -15px;
  right: -15px;
  border-width: 0 4px 4px 0;
}
.trading__card-title {
  color: #ff9d2e;
  font-size: 28px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 20px;
}
.trading__card-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.trading__card-link {
  color: #ff9d2e;
  text-decoration: none;
  font-weight: bold;
}
.trading__card-link:hover {
  text-decoration: underline;
}

.advantages {
  background-color: #13122C;
  padding: 120px 0;
  position: relative;
}
.advantages::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%231F1E33"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.advantages__icon {
  margin-inline: auto;
  margin-bottom: 10px;
}
.advantages__title {
  color: #ff9d2e;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  font-weight: bold;
}
.advantages__items {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 900px) {
  .advantages__items {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
.advantages__item {
  display: flex;
  gap: 15px;
  flex-direction: column;
  border-radius: 10px;
  max-width: 260px;
  align-items: center;
}
.advantages__header {
  color: #FFD8A8;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
}
.advantages__line {
  height: 20px;
  width: 4px;
  border-radius: 4px;
  background-color: #ff9d2e;
}

.processes {
  background-color: #1F1E33;
  padding: 120px 0;
  position: relative;
}
@media (min-width: 900px) {
  .processes {
    background-image: url("../../images/bg-3.png") !important;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.processes::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%2313122C"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.processes__icon {
  display: block;
  margin-bottom: 5px;
  margin-inline: auto;
}
.processes__header {
  font-size: 28px;
  font-weight: bold;
  color: #ff9d2e;
  margin-bottom: 30px;
  text-align: center;
}
.processes__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 900px) {
  .processes__items {
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 50px;
  }
}
.processes__item {
  text-align: center;
  background-color: rgba(19, 18, 44, 0.8);
  padding: 30px;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .processes__item {
    width: calc(50% - 30px);
  }
}
.processes__item-header {
  color: #ff9d2e;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .processes__item-header {
    text-align: left;
  }
}
.processes__item-text {
  font-size: 18px;
  color: #FFD8A8;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .processes__item-text {
    text-align: left;
  }
}

.items-list {
  counter-reset: item-counter;
}

.possibilites__item-content {
  padding: 15px 30px 30px 30px;
}

.possibilites {
  background-color: #1F1E33;
  padding: 100px 0;
  position: relative;
}
.possibilites::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%2313122C"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.possibilites__icon {
  display: block;
  margin-bottom: 5px;
  margin-inline: auto;
}
.possibilites__header {
  max-width: 900px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: bold;
  color: #ff9d2e;
  margin-bottom: 30px;
  text-align: center;
}
.possibilites__text {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}
.possibilites__items {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 30px;
  counter-reset: item-counter;
}
@media (min-width: 900px) {
  .possibilites__items {
    flex-direction: row;
  }
}
.possibilites__wrapper {
  counter-increment: item-counter;
  position: relative;
}
.possibilites__wrapper::before {
  content: counter(item-counter);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: bold;
  top: 11px;
  left: 11px;
  width: 50px;
  height: 50px;
  background-color: #ff9d2e;
  border-radius: 10px;
}
.possibilites__item {
  background-color: #15142D;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .possibilites__item {
    width: calc(33.3% - 30px);
    align-items: stretch;
  }
}
.possibilites__item-img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;
}
.possibilites__item-header {
  font-size: 22px;
  font-weight: bold;
  color: #ff9d2e;
  margin: 15px 0;
}
.possibilites__item-text {
  font-size: 18px;
  line-height: 28px;
}

.benefits {
  padding: 65px 0;
  background-color: #13122C;
}
.benefits__container {
  max-width: 900px;
}
.benefits__icon {
  margin-inline: auto;
  margin-bottom: 10px;
}
.benefits__title {
  color: #ff9d2e;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  font-weight: bold;
}
.benefits__text {
  margin: 30px 0;
  text-align: center;
}
.benefits__items {
  display: flex;
  gap: 15px;
  flex-direction: column;
  max-width: 700px;
  margin-inline: auto;
}
.benefits__item {
  padding: 15px;
  background-color: #292840;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 900px) {
  .benefits__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.benefits__item-header {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ff9d2e;
}
.benefits__item-text {
  font-size: 16px;
  margin-top: 15px;
}
@media (min-width: 900px) {
  .benefits__item-text {
    margin-top: 0;
  }
}
.benefits__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FF9923, #3A3863);
  border-radius: 10px;
  z-index: -1;
}
.benefits__wrapper {
  display: flex;
  gap: 15px;
}
@media (min-width: 900px) {
  .benefits__wrapper {
    width: 300px;
    align-items: center;
  }
}

.review {
  background-color: #1F1E33;
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.review::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ff9d2e"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}
.review__title {
  color: #ff9d2e;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.review__text {
  margin-bottom: 30px;
}
.review__img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.desk .container {
  height: 100%;
}

.review__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #13122C;
  border-radius: 10px;
  padding: 30px;
  gap: 30px;
}
.review__wrapper .review__title {
  text-align: left;
}
.review__wrapper .review__text {
  text-align: left;
}
.review__wrapper .btn {
  margin-inline: 0;
}

.review__imgs img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mob {
  display: block;
}

.desk {
  display: none;
}

@media (min-width: 900px) {
  .desk {
    display: block;
  }
  .mob {
    display: none;
  }
}
.hero {
  padding-top: 130px;
  padding-bottom: 100px;
  position: relative;
}
@media (min-width: 900px) {
  .hero {
    background-image: url(../../images/desktop-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  .hero__title {
    font-size: 52px;
    line-height: 72px;
  }
}
.hero__content {
  margin-bottom: 40px;
}
.hero__form {
  background-color: rgba(219, 219, 219, 0.2);
  border-radius: 16px;
  padding: 30px;
  max-width: 400px;
  margin: 0 auto;
}
.hero__text {
  padding: 40px 0;
  color: #aaaaaa;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 900px) {
  .hero__text {
    font-size: 14px;
    line-height: 18px;
  }
}
.hero__grid {
  display: block;
}
@media (min-width: 900px) {
  .hero__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.hero__content {
  max-width: 630px;
}

.hero__waves {
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: -50px;
  left: 0;
  background-image: url(../../images/waves.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 111;
}
@media (min-width: 900px) {
  .hero__waves {
    background-image: url(../../images/waves-dk.svg);
  }
}

.form__title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
}
.form__field {
  display: block;
  margin-bottom: 15px;
  position: relative;
}
.form__label {
  display: block;
  color: #cbd5e0;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 10px;
}
.form__submit {
  width: 100%;
  margin-top: 15px;
}

.input {
  width: 100%;
  padding: 10px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #4a5568;
  color: white;
  font-size: 16px;
  outline: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.input::-moz-placeholder {
  color: #718096;
  opacity: 1;
}
.input::placeholder {
  color: #718096;
  opacity: 1;
}
.input:focus {
  border-bottom-color: #ed8936;
}
.input:valid:not(:-moz-placeholder) {
  border-bottom-color: #ed8936;
}
.input:valid:not(:placeholder-shown) {
  border-bottom-color: #ed8936;
}
.input:-webkit-autofill, .input:-webkit-autofill:hover, .input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: white;
  background-color: transparent !important;
}

.btn, .form__submit {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  max-width: 300px;
}
.btn--lg, .form__submit--lg {
  padding: 20px 32px;
  font-size: 18px;
  border-radius: 20px;
  background: #ff9d2e;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.btn--lg:hover, .form__submit--lg:hover {
  background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 137, 54, 0.4);
}
.btn--lg:active, .form__submit--lg:active {
  transform: translateY(0);
}

.card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

@media (max-width: 768px) {
  .hero__form {
    margin: 0 20px;
    padding: 25px 20px;
    max-width: none;
  }
  .form__title {
    font-size: 20px;
  }
}
body {
  background-color: #211F43;
  font-family: "Inter", system-ui, sans-serif;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Unbounded", system-ui, sans-serif;
}

.features-without-card {
  background-color: #13122C;
  position: relative;
}
.features-without-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%2313122C"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 2;
}

.feautures-2 {
  background-color: #13122C;
}