.ex__credit {
  background: url(/static/ex__credit.png) no-repeat center #566778;
  background-size: cover;
  background-blend-mode: darken;
  width: 100%;
  margin-bottom: 30px;
}

.ex__credit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 0;
  gap: 20px;
}

.ex__credit-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  max-width: 850px;
  width: 100%;
  gap: 15px 30px;
}

.ex__credit-block {
  position: relative;
  max-width: 410px;
  width: 100%;
  height: 127px;
  background: url(/static/offer1.png) no-repeat center;
  background-size: cover;
  border-radius: 12px;
}

.ex__credit-block:nth-child(2) {
  background: url(/static/offer2.png) no-repeat center;
  background-size: cover;
}

.ex__credit-block:nth-child(3) {
  background: url(/static/offer3.png) no-repeat center;
  background-size: cover;
}

.ex__credit-block:nth-child(4) {
  background: url(/static/offer4.png) no-repeat center;
  background-size: cover;
}

.ex__credit-block h3 {
  position: relative;
  color: #fff;
  background: transparent;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: inherit;
  padding-left: 60px;
  width: max-content;
  margin: 0 auto;
}

.ex__credit-block h3::before {
  content: "";
  position: absolute;
  top: calc(50% - 24px);
  left: 0;
  background: url(/static/svg/offer3.svg) no-repeat center var(--green-main);
  background-size: auto;
  border: 5px solid var(--green-main);
  box-shadow: 0px 4px 20px 6px rgba(127, 127, 127, 0.15);
  border-radius: 10px;
  width: 47px;
  height: 47px;
}

.ex__credit-block:nth-child(2) h3::before {
  background: url(/static/svg/offer2.svg) no-repeat center var(--green-main);
  background-size: auto;
}

.ex__credit-block:nth-child(3) h3::before {
  background: url(/static/svg/offer4.svg) no-repeat center var(--green-main);
  background-size: auto;
}

.ex__credit-block:nth-child(4) h3::before {
  background: url(/static/svg/offer1.svg) no-repeat center var(--green-main);
  background-size: auto;
}

.ex__credit-block h3 b {
  font-weight: 900;
}

.ex__credit-form {
  position: initial;
  min-width: 224px;
  height: auto;
  box-shadow: 0px 0px 28.4px 0px rgba(255, 255, 255, 0.79);
}

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

@media screen and (max-width: 1199px) {
  .ex__credit-row {
    gap: 10px;
  }

  .ex__credit-block h3 {
    font-size: 18px;
  }

  .ex__credit-form {
    min-width: 300px;
    padding: 25px 15px;
  }
}

@media screen and (max-width: 1023px) {
  .ex__credit-content {
    align-items: initial;
    padding: 20px 0;
  }

  .ex__credit-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .ex__credit-block {
    max-width: 100%;
    height: 80px;
  }

  .ex__credit-block h3 {
    font-size: 22px;
    width: 345px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .ex__credit-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .ex__credit-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ex__credit-block h3 {
    font-size: 18px;
    width: 294px;
  }

  .ex__credit-form {
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .ex__credit-block h3 {
    font-size: 16px;
    width: 254px;
    padding-left: 45px;
  }

  .ex__credit-block h3::before {
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 575px) {
  .brand__item {
    width: 30%;
  }

  .ex__credit-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .ex__credit-block h3 {
    font-size: 18px;
    width: 278px;
  }
}