@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
header {
  background: #ffffff;
  height: 90px; }

.header__wrapper {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300; }

.header__container {
  display: grid;
  grid-template-columns: 1fr 5fr 4fr;
  padding: 20px 0;
  font-size: 14px;
  align-items: center;
  height: 90px; }

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center; }

.header__logo {
  width: 90px;
  height: 47px;
  margin: 0 20px; }

.header__menu > ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: flex-end;
  padding-top: 5px; }
  .header__menu > ul li {
    display: flex;
    justify-content: center;
    position: relative; }
    .header__menu > ul li .currentPage:after {
      content: "";
      display: block;
      height: 2px;
      width: 91%;
      position: absolute;
      background: #000000;
      left: 0;
      bottom: -2.05rem; }
    .header__menu > ul li .header__arrow {
      display: inline-block;
      width: 15px;
      height: 15px;
      transition: linear .2s; }
    .header__menu > ul li .header__submenu {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #fff;
      position: absolute;
      top: 22px;
      z-index: 10;
      padding: 1em;
      text-align-last: left;
      transition: linear .4s;
      opacity: 0;
      height: auto;
      border-radius: 16px;
      box-shadow: 0px 4px 14px 1px rgba(34, 60, 80, 0.39); }
      .header__menu > ul li .header__submenu li {
        margin: 10px 0; }
        .header__menu > ul li .header__submenu li:hover a {
          color: #208648; }
    .header__menu > ul li a .headerMenu__icon {
      display: none; }
    .header__menu > ul li:hover a > span {
      color: #208648; }
  .header__menu > ul #header__feedbacksMob {
    display: none; }
  .header__menu > ul #header__feedbacks {
    position: relative; }
    .header__menu > ul #header__feedbacks:hover .header__submenu {
      opacity: 1; }
    .header__menu > ul #header__feedbacks:hover .header__arrow {
      transform: rotate(180deg); }

.header__menu a {
  text-decoration: none;
  color: #000000;
  margin-right: 0.75em;
  outline: none;
  font-size: 14px;
  white-space: nowrap; }

nav > a > span {
  font-size: 10px;
  vertical-align: middle; }

.header__rightSection {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  grid-template-columns: 1.8fr 1fr 2fr;
  text-align: center; }
  .header__rightSection .header__service {
    display: flex;
    align-items: center; }
    .header__rightSection .header__service .header__lang {
      margin-right: 15px; }
  .header__rightSection a.button {
    margin-top: 0;
    margin-left: 1em;
    padding: 20px 25px; }

.header__rightSection_button {
  background: #fff;
  padding: 0;
  border: 3px solid #000000;
  border-radius: 16px;
  letter-spacing: 1px;
  width: 180px;
  height: 55px;
  color: #000000;
  font-size: 10px;
  box-shadow: none;
  transition: linear 0.4s; }
  .header__rightSection_button a span {
    font-size: 16px;
    color: #000000; }
  .header__rightSection_button:hover {
    background: #208648;
    border-color: transparent;
    transition: linear 0.4s; }
    .header__rightSection_button:hover span {
      color: #fff; }

.header__rightSection_button > span:first-child {
  font-size: 16px; }

.header__rightSection_button > span:last-child {
  font-size: 12px; }

.header__profile {
  display: flex; }

.header__profile > span {
  margin-right: 10px; }

.header__lang {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }

.header__lang_value.active {
  color: #208648; }

.header__mobLogo {
  display: none;
  width: 90px;
  height: 27px; }

.header__burgerMenu {
  margin-top: 5px;
  margin-left: 1rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  border: none; }

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.4s; }

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px); }

.change .bar2 {
  opacity: 0; }

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px); }

@media (max-width: 1280px) {
  .header__rightSection .header__service {
    flex-direction: column; }
    .header__rightSection .header__service .header__rightSection_button,
    .header__rightSection .header__service .header__profile {
      margin-right: 15px; }
    .header__rightSection .header__service .header__lang {
      flex-direction: row;
      margin-bottom: 5px; }
      .header__rightSection .header__service .header__lang span:first-child {
        margin-right: 10px; } }
@media (max-width: 1135px) {
  .header__container {
    grid-template-columns: 1fr 4fr 4fr; }
    .header__container .header__menu {
      justify-content: flex-end; }
      .header__container .header__menu .header__mobLogo {
        display: block;
        width: 100px;
        height: 55px;
        margin-bottom: 20px; }
      .header__container .header__menu ul {
        display: none; }
    .header__container .header__logo svg {
      display: none; }
    .header__container .header__logo .header__burgerMenu {
      display: flex; }
    .header__container .header__rightSection {
      justify-content: flex-end;
      margin-right: 2em; }
      .header__container .header__rightSection .header__rightSection_button {
        margin-right: 20px; }

  .header__container.collapse {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
    transition: linear 0.5s;
    margin-bottom: 3em; }
    .header__container.collapse .header__logo {
      margin-left: 0; }
    .header__container.collapse .header__menu {
      justify-content: flex-start; }
      .header__container.collapse .header__menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1em; }
        .header__container.collapse .header__menu ul .headerMenu__item a {
          display: flex;
          align-items: center;
          font-size: 17px;
          padding: 5px 0; }
          .header__container.collapse .header__menu ul .headerMenu__item a .headerMenu__icon {
            display: flex;
            height: 24px;
            width: 24px; }
          .header__container.collapse .header__menu ul .headerMenu__item a span {
            margin-left: 15px; }
        .header__container.collapse .header__menu ul #header__feedbacks {
          display: none; }
        .header__container.collapse .header__menu ul #header__feedbacksMob {
          display: flex; }
      .header__container.collapse .header__menu .header__mobLogo {
        position: absolute;
        top: 1.5em;
        right: 3em; }
    .header__container.collapse .header__rightSection {
      padding-left: 1em;
      justify-content: space-between;
      font-size: 16px; } }
    @media (max-width: 1135px) and (max-width: 340px) {
      .header__container.collapse .header__rightSection {
        flex-direction: column; }
        .header__container.collapse .header__rightSection .header__rightSection_button {
          margin-bottom: 1rem; } }

@media (max-width: 920px) {
  .header__container {
    grid-template-columns: 1fr 4fr 4fr; }

  .header__rightSection a.button {
    display: none; }

  .header__rightSection_button {
    display: none; }

  .header__container.collapse .header__logo {
    margin-left: 0; }
  .header__container.collapse .header__rightSection_button {
    display: block; }
  .header__container.collapse .header__rightSection a.button {
    display: none; }
  .header__container.collapse .header__rightSection a#header__payButton {
    display: block;
    margin: 0 10px; } }
@media (max-width: 425px) {
  .header__container .header__logo {
    margin-right: 0; }
  .header__container .header__rightSection {
    margin-right: 1em; }
    .header__container .header__rightSection a#header__payButton {
      margin-top: 20px; }
    .header__container .header__rightSection .header__service .header__profile {
      margin-right: 0; }

  .header__container.collapse {
    height: auto;
    margin-bottom: 7rem; }
    .header__container.collapse .headerMenu__item a {
      display: flex;
      align-items: center; }
      .header__container.collapse .headerMenu__item a .headerMenu__icon {
        height: 24px;
        width: 24px; }
      .header__container.collapse .headerMenu__item a span {
        margin-left: 15px; }
    .header__container.collapse .header__mobLogo {
      visibility: hidden; }
    .header__container.collapse .header__rightSection {
      flex-direction: column-reverse;
      border-top: 1px solid #808285;
      margin: 1em; }
      .header__container.collapse .header__rightSection .header__service {
        flex-direction: row;
        justify-content: space-between;
        line-height: 1;
        margin: 1em 0;
        position: absolute;
        top: 20px;
        right: 30px; }
      .header__container.collapse .header__rightSection .header__rightSection_button {
        margin: 2em;
        width: 90%; } }
.mainSlider {
  position: relative; }
  .mainSlider .mainSlider__slide {
    position: relative; }
    .mainSlider .mainSlider__slide img {
      width: 100%; }
    .mainSlider .mainSlider__slide h2 {
      position: absolute;
      left: 10%;
      top: 10%;
      font-size: 56px;
      max-width: 520px; }
    .mainSlider .mainSlider__slide button {
      position: absolute;
      left: 10%;
      top: 50%; }
    .mainSlider .mainSlider__slide .slick-dots {
      display: flex; }

@media (max-width: 1024px) {
  .mainSlider h2 {
    font-size: 40px;
    max-width: 400px; } }
@media (max-width: 700px) {
  .mainSlider h2 {
    display: none; }
  .mainSlider button {
    display: none; } }
.advantages {
  padding: 1em;
  background: url("../public/Identic.png") no-repeat;
  background-position: left center; }
  .advantages .advantages__container {
    padding: 3em;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr; }
  @media (max-width: 768px) {
    .advantages {
      background-image: none; }
      .advantages .advantages__container {
        grid-template-columns: 1fr; } }
  @media (max-width: 425px) {
    .advantages {
      padding: 1em 0; }
      .advantages .advantages__container {
        padding: 2em 10px; } }

.advantages__description {
  padding: 3em;
  color: #999999;
  font-size: 14px;
  line-height: 1.8; }

.advantages__subtitle,
.aboutUs__subtitle {
  font-size: 34px;
  margin-bottom: 1em;
  position: relative;
  color: #000000;
  line-height: 1.2; }

.advantages__subtitle::after,
.aboutUs__subtitle::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #208648;
  position: absolute;
  left: 0;
  bottom: -15px; }

.advantages__lists,
.aboutUs__lists {
  position: relative;
  margin-top: 10em; }
  .advantages__lists h3,
  .aboutUs__lists h3 {
    margin-left: 2.5em;
    margin-bottom: 1em; }
  @media (max-width: 920px) {
    .advantages__lists h3,
    .aboutUs__lists h3 {
      margin-left: 0; } }
  @media (max-width: 768px) {
    .advantages__lists,
    .aboutUs__lists {
      margin-top: 2rem; } }

.advantages__items,
.aboutUs__items {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 5em;
  grid-gap: 1rem 0;
  position: relative; }

#withDivisor:after {
  content: "";
  width: 90%;
  height: 1px;
  background: #999999;
  position: absolute;
  bottom: -3rem;
  left: 5%; }

.advantages__item > span,
.aboutUs__item > span {
  width: 100px;
  margin-top: 1rem; }
  @media (max-width: 768px) {
    .advantages__item > span,
    .aboutUs__item > span {
      text-align: center; } }

.client__advantages {
  text-align: center; }
  .client__advantages h2 {
    position: relative; }
    .client__advantages h2:after {
      content: "";
      width: 50px;
      height: 2px;
      background: #208648;
      position: absolute;
      left: 48%;
      bottom: -1rem; }
  .client__advantages .client__advantagesCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
    border-radius: 26px;
    background: url("../public/reactangle431.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 3rem; }
    @media (max-width: 768px) {
      .client__advantages .client__advantagesCard {
        grid-template-columns: 1fr;
        grid-template-rows: 0.8fr 0.7fr;
        margin-left: 1rem;
        margin-right: 1rem; } }
    .client__advantages .client__advantagesCard .client__advantages_block {
      padding: 15% 30% 15% 15%;
      position: relative; }
      @media (max-width: 768px) {
        .client__advantages .client__advantagesCard .client__advantages_block {
          padding: 12% 0 5% 0;
          display: flex;
          justify-content: center; } }
      @media (max-width: 520px) {
        .client__advantages .client__advantagesCard .client__advantages_block {
          padding-top: 20%; } }
      .client__advantages .client__advantagesCard .client__advantages_block .client__type {
        color: #208648;
        text-align: left;
        width: 90px;
        position: absolute;
        text-transform: uppercase;
        font-size: 15px;
        top: 8rem; }
      .client__advantages .client__advantagesCard .client__advantages_block .new_client {
        left: 5%; }
        @media (max-width: 768px) {
          .client__advantages .client__advantagesCard .client__advantages_block .new_client {
            top: 2rem;
            left: 17%; } }
      .client__advantages .client__advantagesCard .client__advantages_block .permanent_client {
        right: 10%;
        top: 2rem; }
      .client__advantages .client__advantagesCard .client__advantages_block:first-child {
        border-right: 1px solid #999999;
        padding: 15% 15% 15% 25%; }
        @media (max-width: 768px) {
          .client__advantages .client__advantagesCard .client__advantages_block:first-child {
            border-right: none;
            border-bottom: 1px solid #999999;
            padding: 12% 0 5% 5%; } }
        @media (max-width: 520px) {
          .client__advantages .client__advantagesCard .client__advantages_block:first-child {
            padding-top: 20%; } }
    .client__advantages .client__advantagesCard .newClient__advantages,
    .client__advantages .client__advantagesCard .currentClient__advantages {
      list-style: none;
      text-align: left;
      font-size: 12px;
      color: #808285;
      border-left: 2px solid #ffd920;
      position: relative;
      padding-left: 2rem; }
      @media (max-width: 768px) {
        .client__advantages .client__advantagesCard .newClient__advantages,
        .client__advantages .client__advantagesCard .currentClient__advantages {
          max-width: 350px;
          margin-right: 20px; } }
      .client__advantages .client__advantagesCard .newClient__advantages h4,
      .client__advantages .client__advantagesCard .currentClient__advantages h4 {
        color: #000;
        font-size: 18px;
        margin: 1em 0; }
      .client__advantages .client__advantagesCard .newClient__advantages .advantages__marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .advantages__marker {
        position: absolute; }
      .client__advantages .client__advantagesCard .newClient__advantages .first_marker,
      .client__advantages .client__advantagesCard .newClient__advantages .second_marker,
      .client__advantages .client__advantagesCard .newClient__advantages .third_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .first_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .second_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .third_marker {
        left: -17px; }
      .client__advantages .client__advantagesCard .newClient__advantages .fourth_marker,
      .client__advantages .client__advantagesCard .newClient__advantages .fiveth_marker,
      .client__advantages .client__advantagesCard .newClient__advantages .sixth_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .fourth_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .fiveth_marker,
      .client__advantages .client__advantagesCard .currentClient__advantages .sixth_marker {
        right: -17px; }
    .client__advantages .client__advantagesCard .newClient__advantages:after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #ffd920;
      position: absolute;
      left: -3.5px;
      bottom: -1px; }
    .client__advantages .client__advantagesCard .currentClient__advantages {
      text-align: right;
      border-left: none;
      border-right: 2px solid #ffd920;
      padding-left: 0;
      padding-right: 2rem; }
      .client__advantages .client__advantagesCard .currentClient__advantages:after {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #ffd920;
        position: absolute;
        right: -3.5px;
        bottom: -1px; }

@media (max-width: 990px) {
  .advantages__lists::after,
  .aboutUs__lists::after {
    top: 33%; } }
@media (max-width: 920px) {
  .advantages__items,
  .aboutUs__items {
    grid-template-columns: repeat(3, 1fr); }

  .advantages__lists::after,
  .aboutUs__lists::after {
    top: 50%; } }
@media (max-width: 520px) {
  .advantages__items {
    grid-template-columns: repeat(3, 1fr); } }
#advantagesCollapse {
  background: #208648;
  color: #fff;
  padding: 0.5em 1.5em; }

#geoAdvantages {
  margin-top: 20rem;
  position: relative; }
  @media (max-width: 768px) {
    #geoAdvantages {
      margin-top: 0; } }

.loan__instructions_container {
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-template-rows: 300px 2fr;
  padding: 1em 2em; }
  @media (max-width: 1024px) {
    .loan__instructions_container {
      grid-template-columns: 1fr;
      grid-template-rows: 0.5fr 1fr; } }

.loan__instructions_container.takeLoan {
  grid-template-rows: 1.1fr 300px;
  grid-template-columns: 3fr 5fr;
  grid-row-gap: 2rem;
  padding: 2em; }
  @media (max-width: 1024px) {
    .loan__instructions_container.takeLoan {
      grid-template-rows: 1.1fr 500px; } }
  @media (max-width: 920px) {
    .loan__instructions_container.takeLoan {
      grid-template-columns: 2fr;
      grid-template-rows: 1fr;
      padding: 2em 0; } }

.instructions__title {
  font-size: 26px;
  position: relative; }
  @media (max-width: 768px) {
    .instructions__title {
      font-size: 20px; } }

.instructions__title::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #208648;
  position: absolute;
  left: 0;
  bottom: -1rem;
  z-index: 10; }

.instructions__subtitle {
  margin-top: 2rem;
  font-size: 14px;
  color: #808285;
  line-height: 1.6; }

.instructions__arrow {
  margin-top: 3rem;
  margin-left: 9rem; }

@media (max-width: 920px) {
  .loanArrow {
    transform: rotate(90deg); } }
@media (max-width: 1024px) {
  .mainArrow {
    transform: rotate(90deg); } }
.instructions__items {
  display: flex;
  list-style: none;
  justify-content: space-around;
  align-items: center; }
  @media (max-width: 1024px) {
    .instructions__items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
      grid-gap: 2rem;
      justify-items: center;
      margin-bottom: 2em; }
      .instructions__items li {
        width: 160px;
        height: 160px; }
        .instructions__items li:first-child, .instructions__items li:nth-child(3) {
          justify-self: self-end;
          align-self: self-end; }
        .instructions__items li:nth-child(2), .instructions__items li:last-child {
          justify-self: flex-start; } }
  @media (max-width: 370px) {
    .instructions__items {
      grid-gap: 20px; } }

.instructions__items > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e4efec;
  border-radius: 16px;
  padding: 1em 1.5em;
  text-align: center; }
  @media (max-width: 420px) {
    .instructions__items > li {
      width: 130px;
      height: 130px; } }

.instructions__items > li > span {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5; }

.instructions__items > li:nth-child(even) {
  align-self: flex-start; }

.instructions__guide {
  display: flex;
  min-height: 700px; }
  .instructions__guide .guide__steps {
    list-style-type: none;
    border-left: 1px dashed #208648;
    margin-left: 4rem;
    height: 400px; }
    .instructions__guide .guide__steps li {
      max-width: 200px;
      margin: auto;
      margin-bottom: 3rem;
      padding-left: 2rem;
      position: relative; }
      .instructions__guide .guide__steps li:last-child {
        margin-bottom: 0; }
      .instructions__guide .guide__steps li svg {
        background: #e9f9fe 49.17%;
        position: absolute;
        left: -1.3rem;
        top: -0.5rem; }
      .instructions__guide .guide__steps li p {
        font-size: 12px;
        color: #999999;
        margin-top: 1rem; }
    @media (max-width: 1024px) {
      .instructions__guide .guide__steps {
        max-width: 300px;
        margin: 3rem auto; } }
  .instructions__guide .guide__videoBlock .guide__video_wrapper {
    background: #fff;
    border-radius: 50%;
    padding: 3rem;
    padding-right: 3.5rem;
    position: absolute;
    right: -2%;
    display: flex;
    align-items: center;
    flex-direction: column; }
    .instructions__guide .guide__videoBlock .guide__video_wrapper .video__describe {
      font-size: 12px;
      margin-top: 2rem; }
    .instructions__guide .guide__videoBlock .guide__video_wrapper .guide__video {
      border: 10px solid #f6f8fa;
      border-right: 15px;
      border-radius: 50%;
      box-shadow: 3px 25px 25px -8px rgba(34, 60, 80, 0.4); }
      .instructions__guide .guide__videoBlock .guide__video_wrapper .guide__video img {
        width: 500px; }
    @media (max-width: 1024px) {
      .instructions__guide .guide__videoBlock .guide__video_wrapper {
        width: fit-content;
        position: static;
        margin: auto;
        margin-bottom: 1em;
        padding: 3rem 4rem; } }
    @media (max-width: 768px) {
      .instructions__guide .guide__videoBlock .guide__video_wrapper img {
        max-width: 350px; } }
    @media (max-width: 520px) {
      .instructions__guide .guide__videoBlock .guide__video_wrapper img {
        max-width: 280px; } }
    @media (max-width: 420px) {
      .instructions__guide .guide__videoBlock .guide__video_wrapper {
        padding: 2rem 4rem; }
        .instructions__guide .guide__videoBlock .guide__video_wrapper img {
          max-width: 180px; } }
    @media (max-width: 420px) {
      .instructions__guide .guide__videoBlock .guide__video_wrapper {
        padding: 1.5rem 3rem;
        margin: 1em 0; } }
  .instructions__guide .guide__videoBlock .guide__video_wrapper.takeLoan {
    position: static; }
    .instructions__guide .guide__videoBlock .guide__video_wrapper.takeLoan img {
      width: 300px; }
  @media (max-width: 1024px) {
    .instructions__guide {
      margin-top: 2em;
      justify-content: center;
      flex-direction: column; } }

@media (max-width: 920px) {
  .instructions__description {
    padding: 2em; } }
@media (max-width: 370px) {
  .instructions__description {
    padding: 2em 0; } }

.instructions__description.takeLoan {
  margin: auto; }
  @media (max-width: 920px) {
    .instructions__description.takeLoan {
      padding: 2em; } }

.instructions__guide.takeLoan {
  justify-self: self-end;
  min-height: 300px;
  margin-top: 0; }
  @media (max-width: 920px) {
    .instructions__guide.takeLoan {
      justify-self: center; } }

.feedbacks {
  height: 580px;
  padding: 2rem; }
  .feedbacks h2,
  .feedbacks h4 {
    text-align: center;
    margin-bottom: 3rem; }
  .feedbacks h2 {
    position: relative; }
    .feedbacks h2:after {
      content: "";
      width: 60px;
      height: 2px;
      background: #208648;
      position: absolute;
      bottom: -1rem;
      left: 47%; }
  .feedbacks hr {
    margin: 2rem 4rem;
    opacity: 0.3; }
  .feedbacks .feedbacks__slideContainer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 2em 0; }
    .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow {
      background: rgba(247, 247, 247, 0.55);
      border-radius: 16px;
      position: relative;
      width: 260px;
      height: 310px; }
      .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow {
        border-radius: 16px;
        background: rgba(247, 247, 247, 0.7);
        width: 260px;
        height: 310px;
        position: absolute; }
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow .feedbacks__slide_content {
          width: 260px;
          height: 310px;
          padding: 5rem 2rem 3rem 2rem;
          border-radius: 16px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-between;
          font-size: 14px;
          background: url("../public/feedbackBg.jpg") no-repeat;
          background-size: cover;
          background-position: top left;
          position: absolute; }
          .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow .feedbacks__slide_content .feedback__slide_title {
            margin-top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between; }
            .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow .feedbacks__slide_content .feedback__slide_title .feedback__title_sum {
              color: #208648; }
      @media (max-width: 600px) {
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow:first-child {
          display: none; } }
      @media (max-width: 920px) {
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow:nth-child(2) {
          display: none; } }
      @media (max-width: 600px) {
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow:nth-child(2) {
          display: block; }
          .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow:nth-child(2) .feedbacks__firstShadow .feedbacks__slide_content .feedback__slide_title {
            font-size: 10px; } }
      @media (max-width: 600px) {
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow:last-child {
          display: none; } }
      @media (max-width: 768px) {
        .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow {
          width: 210px;
          height: 300px; }
          .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow {
            width: 210px;
            height: 300px; }
            .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow .feedbacks__slide_content {
              width: 210px;
              height: 300px; }
              .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow .feedbacks__firstShadow .feedbacks__slide_content p {
                width: 180px; } }
    .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.leftSlide .feedbacks__firstShadow.leftSlide {
      top: 25px;
      right: 25px;
      box-shadow: 15px -15px 13px -19px rgba(107, 107, 107, 0.32); }
      .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.leftSlide .feedbacks__firstShadow.leftSlide .feedbacks__slide_content.leftSlide {
        top: 25px;
        right: 25px;
        box-shadow: 15px -15px 13px -19px rgba(107, 107, 107, 0.32); }
    .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.midSlide .feedbacks__firstShadow.midSlide {
      top: 25px;
      box-shadow: 0px -19px 15px -19px rgba(107, 107, 107, 0.42); }
      .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.midSlide .feedbacks__firstShadow.midSlide .feedbacks__slide_content.midSlide {
        top: 25px;
        box-shadow: 0px -19px 15px -19px rgba(107, 107, 107, 0.42); }
    .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.rightSlide .feedbacks__firstShadow.rightSlide {
      right: -25px;
      top: 25px;
      box-shadow: -15px -15px 13px -19px rgba(107, 107, 107, 0.32); }
      .feedbacks .feedbacks__slideContainer .feedbacks__secondShadow.rightSlide .feedbacks__firstShadow.rightSlide .feedbacks__slide_content.rightSlide {
        top: 25px;
        right: -25px;
        box-shadow: -15px -15px 13px -19px rgba(107, 107, 107, 0.32); }
  @media (max-width: 600px) {
    .feedbacks .feedback__slider {
      display: none; } }
  .feedbacks .feedback__slider_mob {
    display: none; }
    @media (max-width: 600px) {
      .feedbacks .feedback__slider_mob {
        display: block; }
        .feedbacks .feedback__slider_mob .feedbacks__secondShadow:last-child {
          display: flex; } }
  .feedbacks .feedbacks__button {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: transparent;
    box-shadow: none;
    border: 2px solid #208648;
    color: #208648;
    position: relative;
    z-index: 22; }
    @media (max-width: 425px) {
      .feedbacks .feedbacks__button {
        font-size: 10px; } }
  @media (max-width: 768px) {
    .feedbacks {
      height: 620px; } }

.callToLoan {
  margin-top: 10rem;
  background: #fff;
  padding: 9rem 2em;
  outline: none; }
  .callToLoan .callToLoan__board {
    border-radius: 30px;
    border: 15px solid #fff;
    outline: 1px solid #e4e4e4;
    background: linear-gradient(180deg, #ffcd00 0%, #fce93c 100%);
    height: 367.5px;
    box-shadow: 2px 5px 13px 1px rgba(34, 60, 80, 0.23);
    outline: none; }
    .callToLoan .callToLoan__board .bg__container {
      background-image: url("../public/Group7563.png");
      background-size: contain;
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      outline: none; }
      .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 5rem; }
        .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p {
          color: #208648; }
          @media (max-width: 1130px) {
            .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p {
              max-width: 360px; } }
          @media (max-width: 374px) {
            .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p {
              width: 220px; } }
          @media (max-width: 1000px) {
            .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p {
              max-width: 100%;
              padding-right: 0; } }
          .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p span {
            position: relative;
            bottom: 7px;
            letter-spacing: 1px;
            font-size: 17px; }
            @media (max-width: 374px) {
              .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p span {
                font-size: 10px; } }
          @media (max-width: 374px) {
            .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection p #callLoanIcon {
              width: 60px; } }
        .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection h3 {
          width: 281px;
          font-size: 26px;
          margin-bottom: 2em;
          letter-spacing: 1px;
          position: relative; }
          .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection h3:after {
            content: "";
            background: #208648;
            width: 80px;
            height: 2px;
            position: absolute;
            bottom: -1em;
            left: 6rem; }
          @media (max-width: 374px) {
            .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection h3 {
              font-size: 18px;
              max-width: 230px; }
              .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection h3:after {
                left: 4.3rem; } }
        .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection button {
          background: #208648;
          margin-top: 1rem;
          padding: 1.5rem 2rem;
          color: #fff;
          border: none;
          border-radius: 20px; }
        @media (max-width: 374px) {
          .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection #loanCallBtn {
            width: 190px;
            font-size: 10px;
            padding: 1rem 1.5rem; } }
      .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection {
        position: relative; }
      .callToLoan .callToLoan__board .bg__container .callToLoan__scooter,
      .callToLoan .callToLoan__board .bg__container .callToLoan__scooterM {
        position: absolute;
        bottom: 0;
        right: 1em;
        max-width: 640px;
        font-weight: 600; }
      .callToLoan .callToLoan__board .bg__container .callToLoan__scooterM {
        display: none; }
    @media (max-width: 1000px) {
      .callToLoan .callToLoan__board {
        height: auto; }
        .callToLoan .callToLoan__board .bg__container {
          grid-template-columns: 1fr;
          grid-template-rows: 1fr max-content;
          background: url("../public/Group7563.png") no-repeat;
          background-size: cover;
          background-position: 0px -200px; }
          .callToLoan .callToLoan__board .bg__container .callToLoan__leftSection {
            padding-right: 0;
            padding-top: 2rem; }
          .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection {
            display: flex;
            justify-content: center; }
            .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection .callToLoan__scooter {
              display: none; }
            .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection .callToLoan__scooterM {
              display: block;
              position: static;
              width: 100%;
              right: 0; } }
    @media (max-width: 1000px) and (max-width: 800px) {
      .callToLoan .callToLoan__board .bg__container {
        background-position: bottom center; } }

    @media (max-width: 375px) {
      .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection .callToLoan__scooterM {
        width: 265px;
        height: 220px;
        margin: 0; } }
    @media (max-width: 350px) {
      .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection {
        background-size: 50%; }
        .callToLoan .callToLoan__board .bg__container .callToLoan__rightSection .callToLoan__scooterM {
          width: 215px;
          margin: 0; } }
  @media (max-width: 768px) {
    .callToLoan {
      margin-top: 4rem; } }
  @media (max-width: 370px) {
    .callToLoan {
      margin-top: 8rem; } }

.payInstruction {
  background: url("../public/leftArrows.png") no-repeat;
  background-position: bottom left; }
  .payInstruction .payInstructions__wrapper {
    background: url("../public/RightArrows.png") no-repeat;
    background-position: top right; }
    .payInstruction .payInstructions__wrapper .payInstruction__container {
      display: grid;
      height: 860px;
      grid-template-columns: 1fr 3fr;
      grid-template-rows: 400px 400px; }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks {
        position: relative; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks .instruction__blockholder {
          position: absolute; }
        @media (max-width: 520px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks {
            top: 6em; } }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder {
        width: fit-content;
        padding: 2em;
        border: 1px solid rgba(32, 134, 72, 0.1);
        border-radius: 16px;
        position: absolute; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder,
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder {
          width: fit-content;
          padding: 1.5em;
          border: 1px solid rgba(32, 134, 72, 0.15);
          border-radius: 16px; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder {
            width: calc(270px);
            height: calc(270px);
            border: 1px solid rgba(32, 134, 72, 0.2);
            border-radius: 16px; }
            @media (max-width: 420px) {
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__smBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__bigBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__mdBlock_firstBorder,
              .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder {
                width: calc(255px);
                height: calc(255px); } }
          @media (max-width: 420px) {
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__bigBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__mdBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder .instruction__smBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__bigBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__smBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__bigBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__mdBlock_secondBorder,
            .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder {
              padding: 0.6rem; } }
        @media (max-width: 520px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder {
            padding: 1rem; } }
        @media (max-width: 420px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock_thirdBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder {
            padding: 0.4rem; } }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder {
        padding: 1rem; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder {
          padding: .8rem; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock_thirdBorder .instruction__mdBlock_secondBorder .instruction__mdBlock_firstBorder {
            padding: 1rem;
            width: calc(100px * 1.3);
            height: calc(100px * 1.3); }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder {
        padding: 0.5rem; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder {
          padding: 0.5rem; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock_thirdBorder .instruction__smBlock_secondBorder .instruction__smBlock_firstBorder {
            width: calc(100px * 0.9);
            height: calc(100px * 0.9); }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock {
        width: calc(100px * 2.37);
        height: calc(100px * 2.37);
        border: 1px solid #81ac40;
        border-radius: 16px;
        background: #fff;
        padding: 1em;
        position: absolute;
        z-index: 20; }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock {
        box-shadow: 3px 18px 17px -10px rgba(34, 60, 80, 0.42);
        top: 4.6rem;
        left: 4.6rem; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock img {
          width: calc(100px * 0.8);
          height: calc(80px);
          margin-bottom: 0.5rem; }
        .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock p {
          margin-top: 0.5rem;
          font-size: 13px;
          color: #808285; }
        @media (max-width: 520px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock {
            top: 4rem;
            left: 4rem; } }
        @media (max-width: 420px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__bigBlock {
            top: 1.8rem;
            left: 1.8rem; } }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__mdBlock {
        width: calc(100px * 1.1);
        height: calc(100px * 1.1);
        display: flex;
        justify-content: center;
        align-items: center;
        top: 2.55rem;
        left: 2.55rem; }
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__smBlock {
        width: calc(100px * 0.7);
        height: calc(100px * 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        top: 1.8rem;
        left: 1.8rem; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__creditCard {
        top: 15%;
        left: 20%; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__terminal {
        top: 100%;
        left: 5%; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__profile {
        top: 100%;
        right: 64.4%; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__city24 {
        right: 40%;
        top: 35%; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__pogashay {
        left: -13%;
        top: 127%; }
      .payInstruction .payInstructions__wrapper .payInstruction__container #instruction__ibox {
        left: -25%;
        top: 120%; }
      @media (max-width: 1024px) {
        .payInstruction .payInstructions__wrapper .payInstruction__container {
          grid-template-columns: 1fr;
          grid-template-rows: 300px 1100px;
          height: max-content; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__ibox,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__pogashay,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__city24 {
            display: none; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__creditCard,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal,
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
            top: 0;
            left: 30%; } }
    @media (max-width: 1024px) and (max-width: 768px) {
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__creditCard,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
        left: 25%; } }
    @media (max-width: 1024px) and (max-width: 640px) {
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__creditCard,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
        left: 20%; } }
    @media (max-width: 1024px) and (max-width: 500px) {
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__creditCard,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
        left: 10%; } }
    @media (max-width: 1024px) and (max-width: 420px) {
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__creditCard,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal,
      .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
        left: 5%; } }
      @media (max-width: 1024px) {
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__terminal {
            top: 320px; }
          .payInstruction .payInstructions__wrapper .payInstruction__container .instruction__blocks #instruction__profile {
            top: 640px; } }

.blogBlock__container {
  padding: 2em; }
  .blogBlock__container hr {
    margin-top: 1rem;
    border-color: #999999;
    color: #999999;
    opacity: 0.3; }
  .blogBlock__container .blogBlock__btnRow {
    display: grid;
    grid-template-columns: 1fr 1.5fr; }
    .blogBlock__container .blogBlock__btnRow .blog__button,
    .blogBlock__container .blogBlock__btnRow .blog__buttonMob {
      width: 175px;
      height: 45px;
      background: #208648;
      color: #fff;
      border: none;
      border-radius: 16px;
      font-size: 13px;
      margin: 2rem 0;
      text-align: center; }
    @media (max-width: 820px) {
      .blogBlock__container .blogBlock__btnRow {
        display: none; } }
  .blogBlock__container .blog__buttonMob {
    display: none; }
    @media (max-width: 820px) {
      .blogBlock__container .blog__buttonMob {
        display: block;
        align-self: center; } }
  .blogBlock__container .blogBlock__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 0 2rem; }
    .blogBlock__container .blogBlock__content .blogBlock__ivents h3 {
      margin-bottom: 2rem;
      position: relative;
      align-self: flex-start; }
      .blogBlock__container .blogBlock__content .blogBlock__ivents h3:after {
        content: "";
        background: #208648;
        width: 80px;
        height: 2px;
        position: absolute;
        bottom: -1rem;
        left: 0; }
    .blogBlock__container .blogBlock__content .blogBlock__ivents img {
      border-radius: 20px;
      max-width: 100%;
      width: auto;
      height: 234px;
      margin-bottom: 1em; }
      @media (max-width: 470px) {
        .blogBlock__container .blogBlock__content .blogBlock__ivents img {
          height: auto; } }
    .blogBlock__container .blogBlock__content .blogBlock__ivents .ivents__captions {
      padding-left: 1rem;
      max-width: 400px;
      width: 100%; }
      .blogBlock__container .blogBlock__content .blogBlock__ivents .ivents__captions span {
        font-size: 12px;
        color: red; }
      .blogBlock__container .blogBlock__content .blogBlock__ivents .ivents__captions h3, .blogBlock__container .blogBlock__content .blogBlock__ivents .ivents__captions h4, .blogBlock__container .blogBlock__content .blogBlock__ivents .ivents__captions h5 {
        text-align: left; }
    .blogBlock__container .blogBlock__content .blogBlock__ivents a {
      color: #000000;
      cursor: pointer; }
    .blogBlock__container .blogBlock__content .blogBlock__articles h3 {
      margin-bottom: 2rem;
      position: relative; }
      .blogBlock__container .blogBlock__content .blogBlock__articles h3:after {
        content: "";
        background: #208648;
        width: 80px;
        height: 2px;
        position: absolute;
        bottom: -1rem;
        left: 0; }
    .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow {
      display: flex;
      flex-wrap: wrap; }
      .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article {
        max-width: 390px;
        width: 47%;
        margin-right: 1em; }
        .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article a {
          color: #000000;
          cursor: pointer; }
        @media (max-width: 1150px) {
          .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article {
            max-width: 100%;
            width: 100%;
            margin-bottom: 2em;
            margin-left: 1rem; } }
        .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article img {
          border-radius: 20px;
          max-width: 100%;
          width: auto;
          height: 190px;
          margin-bottom: 1em; }
          @media (max-width: 1150px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article img {
              height: 234px; } }
          @media (max-width: 920px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article img {
              max-width: 400px;
              width: 100%;
              height: auto; } }
          @media (max-width: 470px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article img {
              height: auto;
              max-width: 100%;
              margin: auto;
              margin-bottom: 1em;
              display: block; } }
        .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article h5 {
          height: 3rem;
          max-width: 400px; }
          @media (max-width: 920px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article h5 {
              height: auto;
              margin-bottom: 10px; } }
          @media (max-width: 375px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article h5 {
              margin: 1rem 0 10px 0; } }
        .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article p, .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article span {
          font-size: 12px;
          word-break: break-word;
          overflow: hidden;
          height: 3rem;
          color: #808285;
          max-width: 400px;
          display: block; }
          @media (max-width: 1024px) {
            .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article p, .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article span {
              height: 3rem; } }
        .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article span {
          font-size: 12px;
          color: #808285; }
        @media (max-width: 768px) {
          .blogBlock__container .blogBlock__content .blogBlock__articles .blogBlock__articlesRow article {
            margin: 0 0 2rem 0; } }
    @media (max-width: 1150px) {
      .blogBlock__container .blogBlock__content .blogBlock__articlesRow {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: center; } }
    @media (max-width: 920px) {
      .blogBlock__container .blogBlock__content {
        grid-template-columns: 1fr;
        grid-template-rows: 0.5fr 1fr;
        padding: 0; }
        .blogBlock__container .blogBlock__content .blogBlock__articles {
          display: flex;
          flex-direction: column;
          align-items: center; }
          .blogBlock__container .blogBlock__content .blogBlock__articles h3 {
            align-self: flex-start; }
        .blogBlock__container .blogBlock__content .blogBlock__ivents {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-bottom: 1rem; }
          .blogBlock__container .blogBlock__content .blogBlock__ivents img {
            max-width: 400px; } }
      @media (max-width: 920px) and (max-width: 425px) {
        .blogBlock__container .blogBlock__content .blogBlock__ivents img {
          max-width: 100%; } }

.ourPartners {
  background: #fff;
  padding: 2rem;
  margin-top: 3rem; }
  .ourPartners h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative; }
    .ourPartners h2:after {
      content: "";
      width: 60px;
      height: 2px;
      background: #208648;
      position: absolute;
      bottom: -1rem;
      left: 48%; }
  .ourPartners .partners__slider {
    display: flex;
    align-items: center; }
    .ourPartners .partners__slider .partners__slide .partners__slideWrap {
      padding: 1rem; }
      .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer {
        display: flex;
        align-items: baseline;
        height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        padding: 2rem 0;
        position: relative;
        transition: cubic-bezier(1, 0, 0.5, 0.5) 0.3s;
        border-color: transparent; }
        .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer span {
          max-width: 300px;
          font-size: 12px;
          padding: 1rem 2rem 0 2rem;
          text-align: center;
          color: transparent;
          transition: cubic-bezier(1, 0, 0.5, 0.5) 0.3s; }
        .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer .partners__btn {
          border: 1px solid #000;
          border-color: transparent;
          color: transparent;
          border-radius: 7px;
          padding: 5px 10px;
          background: #fff;
          position: absolute;
          z-index: 41;
          bottom: -1rem;
          box-shadow: 5px 16px 18px 32px white;
          transition: cubic-bezier(1, 0, 0, 1) 0.3s; }
        .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer:hover {
          border: 1px solid #999999;
          transition: cubic-bezier(1, 0, 0.5, 0.5) 0.3s; }
          .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer:hover span {
            color: #999999;
            transition: cubic-bezier(1, 0, 0.5, 0.5) 0.3s; }
          .ourPartners .partners__slider .partners__slide .partners__slideWrap .partners__slideContainer:hover .partners__btn {
            display: inline-block;
            color: #000;
            border-color: #000;
            transition: cubic-bezier(1, 0, 0.5, 0.5) 0.3s; }
  @media (max-width: 375px) {
    .ourPartners {
      padding: 2rem 1.5rem; } }
  @media (max-width: 350px) {
    .ourPartners {
      padding: 2rem 0; } }

.ourCredits__container {
  padding-top: 2rem;
  padding-left: 14rem;
  width: 100%; }
  .ourCredits__container h2 {
    margin-bottom: 3em;
    position: relative; }
    .ourCredits__container h2:after {
      content: "";
      width: 60px;
      height: 2px;
      background: #208648;
      position: absolute;
      bottom: -1em;
      left: 0; }
  .ourCredits__container .ourCredits__slider {
    margin-bottom: 2rem; }
    .ourCredits__container .ourCredits__slider .ourCredits__term {
      color: #999999;
      font-weight: 500;
      margin-left: 2rem;
      min-width: 200px;
      position: relative;
      top: 10px;
      float: left; }
      @media (max-width: 820px) {
        .ourCredits__container .ourCredits__slider .ourCredits__term {
          top: 0;
          margin-left: 0; } }
      .ourCredits__container .ourCredits__slider .ourCredits__term:before {
        content: "✓";
        color: #fff;
        background: #208648;
        width: 19px;
        height: 19px;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 16px;
        left: -30px;
        bottom: -1px; }
        @media (max-width: 820px) {
          .ourCredits__container .ourCredits__slider .ourCredits__term:before {
            display: none; } }
    .ourCredits__container .ourCredits__slider .ourCredits__terms .termTag_wrapper {
      padding: 12px 13px;
      padding-left: 0; }
    @media (max-width: 820px) {
      .ourCredits__container .ourCredits__slider .ourCredits__terms {
        clear: left; } }
    .ourCredits__container .ourCredits__slider .ourCredits__terms .ourCredits__termTag {
      text-decoration: none;
      white-space: nowrap;
      margin: 10px;
      margin-right: -12px;
      font-size: 12px;
      color: #000;
      border: 2px solid #208648;
      border-radius: 10px;
      padding: 10px 15px; }
      .ourCredits__container .ourCredits__slider .ourCredits__terms .ourCredits__termTag:hover {
        background: #208648;
        color: #fff; }
      @media (max-width: 820px) {
        .ourCredits__container .ourCredits__slider .ourCredits__terms .ourCredits__termTag {
          margin-right: 0;
          margin-left: 0; } }
  @media (max-width: 1024px) {
    .ourCredits__container {
      padding-left: 4rem; } }
  @media (max-width: 640px) {
    .ourCredits__container {
      padding-left: 1rem; } }

.loanGeo_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5em; }
  .loanGeo_container h2 {
    margin-bottom: 4rem;
    position: relative; }
    .loanGeo_container h2:after {
      content: "";
      width: 60px;
      height: 2px;
      background: #208648;
      position: absolute;
      bottom: -1rem;
      left: 40%; }
  .loanGeo_container .loanGeo__subtitle {
    text-align: center;
    color: #999999;
    max-width: 500px;
    margin: auto;
    font-weight: 200; }
    @media (max-width: 920px) {
      .loanGeo_container .loanGeo__subtitle {
        margin-bottom: 8rem; } }
  .loanGeo_container .loanGeo__map {
    position: relative; }
    .loanGeo_container .loanGeo__map #map {
      max-width: 920px;
      height: auto; }
    .loanGeo_container .loanGeo__map .loanGeo__marker {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 0; }
      .loanGeo_container .loanGeo__map .loanGeo__marker .loanGeo__circle {
        margin-top: .5rem;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #000; }
      .loanGeo_container .loanGeo__map .loanGeo__marker .loanGeo__cityLink {
        text-decoration: none;
        color: #000; }
    .loanGeo_container .loanGeo__map .loanGeo__marker.active > .loanGeo__circle {
      width: 8px;
      height: 8px;
      position: relative;
      z-index: 5; }
      .loanGeo_container .loanGeo__map .loanGeo__marker.active > .loanGeo__circle:before {
        content: "";
        width: 30px;
        height: 30px;
        position: absolute;
        background: rgba(248, 191, 4, 0.5);
        border-radius: 50%;
        left: -11px;
        top: -11px;
        z-index: 1;
        box-shadow: 3px 0px 35px 30p rgba(248, 191, 4, 0.5); }
    .loanGeo_container .loanGeo__map #marker_lutsk {
      top: 9%;
      left: 16.5%; }
    .loanGeo_container .loanGeo__map #marker_rivne {
      top: 13%;
      left: 21%; }
    .loanGeo_container .loanGeo__map #marker_chernivtsy {
      top: 43%;
      left: 18%; }
    .loanGeo_container .loanGeo__map #marker_zhitomyr {
      top: 18%;
      left: 32%; }
    .loanGeo_container .loanGeo__map #marker_vinnytsa {
      top: 28%;
      left: 32%; }
    .loanGeo_container .loanGeo__map #marker_kyiv {
      top: 16%;
      left: 47%; }
    .loanGeo_container .loanGeo__map #marker_chernigiv {
      top: 1%;
      left: 48%; }
    .loanGeo_container .loanGeo__map #marker_cherkasy {
      top: 27%;
      left: 51%; }
    .loanGeo_container .loanGeo__map #marker_mykolaiv {
      top: 57.3%;
      left: 49.7%; }
    .loanGeo_container .loanGeo__map #marker_odesa {
      top: 55%;
      left: 45%; }
    .loanGeo_container .loanGeo__map #marker_kherson {
      top: 64%;
      left: 54.5%; }
    .loanGeo_container .loanGeo__map #marker_kremenchug {
      top: 33.3%;
      right: 34.7%; }
    .loanGeo_container .loanGeo__map #marker_poltava {
      top: 24%;
      right: 28%; }
    .loanGeo_container .loanGeo__map #marker_krivuyRig {
      top: 47%;
      left: 56.4%; }
    .loanGeo_container .loanGeo__map #marker_dnipro {
      top: 39%;
      right: 27%; }
    .loanGeo_container .loanGeo__map #marker_zaporizhya {
      top: 47%;
      right: 24%; }
    .loanGeo_container .loanGeo__map #marker_mariupol {
      top: 57%;
      right: 10%; }
    .loanGeo_container .loanGeo__map #marker_sumy {
      right: 28%;
      top: 7%; }
    .loanGeo_container .loanGeo__map #marker_kharkiv {
      right: 21%;
      top: 18%; }
    .loanGeo_container .loanGeo__map #marker_lviv {
      left: 9%;
      top: 22%; }
    .loanGeo_container .loanGeo__map #marker_ivanoFrankivsk {
      top: 33%;
      left: 5%; }
    .loanGeo_container .loanGeo__map #marker_khmelnitsky {
      top: 29%;
      left: 19%; }
    .loanGeo_container .loanGeo__map #marker_uzhgorod {
      top: 39%;
      left: -2%; }
    .loanGeo_container .loanGeo__map .loanGeo__price {
      position: absolute;
      top: -2rem;
      right: 0;
      width: 210px;
      background: #FFD920;
      border-radius: 16px;
      padding: 1rem; }
      .loanGeo_container .loanGeo__map .loanGeo__price:before {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 25px;
        bottom: -40px;
        right: 25px;
        border: 25px solid;
        border-color: #FFD920 transparent transparent #FFD920; }
      .loanGeo_container .loanGeo__map .loanGeo__price h5 {
        text-align-last: left;
        font-size: 16px;
        margin-top: 15px; }
    @media (max-width: 920px) {
      .loanGeo_container .loanGeo__map {
        display: flex;
        flex-wrap: wrap;
        padding: 2em; }
        .loanGeo_container .loanGeo__map #map {
          display: none; }
        .loanGeo_container .loanGeo__map .loanGeo__marker {
          position: static;
          border: 2px solid #208648;
          padding: 0.4rem 0.7rem;
          border-radius: 12px;
          margin-right: 1rem;
          margin-bottom: 1.2rem; }
          .loanGeo_container .loanGeo__map .loanGeo__marker svg {
            display: none; }
          .loanGeo_container .loanGeo__map .loanGeo__marker .loanGeo__circle {
            display: none; }
        .loanGeo_container .loanGeo__map .loanGeo__price {
          top: -7rem;
          right: 37%; }
          .loanGeo_container .loanGeo__map .loanGeo__price:before {
            left: 80px;
            top: 90px;
            border-color: #FFD920 transparent transparent transparent; }
        .loanGeo_container .loanGeo__map .loanGeo__marker.active {
          background: #FFD920;
          border-color: #FFD920;
          box-shadow: 0px 0px 4px 8px rgba(255, 217, 32, 0.2);
          transition: linear 0.4s; } }
    @media (max-width: 768px) {
      .loanGeo_container .loanGeo__map .loanGeo__price {
        right: 30%; } }
    @media (max-width: 480px) {
      .loanGeo_container .loanGeo__map .loanGeo__price {
        right: 26%; } }
    @media (max-width: 340px) {
      .loanGeo_container .loanGeo__map .loanGeo__price {
        right: 16%; } }
  @media (max-width: 450px) {
    .loanGeo_container {
      padding: 2em; } }

.loanInvite {
  margin-top: 10rem;
  background: #fff;
  padding: 4rem 2em;
  outline: none; }
  @media (max-width: 920px) {
    .loanInvite {
      margin-top: 4rem; } }

.loanInvite__board {
  border-radius: 30px;
  border: 15px solid #fff;
  outline: 1px solid #e4e4e4;
  background: linear-gradient(180deg, #ffcd00 0%, #fce93c 100%);
  height: 367.5px;
  box-shadow: 2px 5px 13px 1px rgba(34, 60, 80, 0.23);
  outline: none; }
  .loanInvite__board .bg__container {
    background-image: url("../public/loanInvBg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    outline: none; }
    .loanInvite__board .bg__container .loanInvite__rightSection {
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .loanInvite__board .bg__container .loanInvite__rightSection p {
        color: #208648; }
        .loanInvite__board .bg__container .loanInvite__rightSection p span {
          position: relative;
          bottom: 7px;
          letter-spacing: 1px;
          font-size: 17px; }
      .loanInvite__board .bg__container .loanInvite__rightSection h3 {
        width: 281px;
        font-size: 26px;
        margin-bottom: 2em;
        letter-spacing: 1px;
        position: relative; }
        .loanInvite__board .bg__container .loanInvite__rightSection h3:after {
          content: "";
          background: #208648;
          width: 80px;
          height: 2px;
          position: absolute;
          bottom: -1em;
          left: 6rem; }
        @media (max-width: 374px) {
          .loanInvite__board .bg__container .loanInvite__rightSection h3 {
            max-width: 190px;
            font-size: 20px; }
            .loanInvite__board .bg__container .loanInvite__rightSection h3:after {
              left: 3.6rem; } }
      .loanInvite__board .bg__container .loanInvite__rightSection button {
        background: #208648;
        margin-top: 1rem;
        padding: 1.5rem 2rem;
        color: #fff;
        border: none;
        border-radius: 20px; }
    .loanInvite__board .bg__container .loanInvite__lefttSection {
      position: relative; }
      @media (max-width: 1024px) {
        .loanInvite__board .bg__container .loanInvite__lefttSection {
          display: flex;
          justify-content: center; } }
    .loanInvite__board .bg__container .loanInvite__loanGirl {
      position: absolute;
      bottom: 0;
      left: 1em;
      max-width: 640px;
      font-weight: 600; }
      @media (max-width: 1024px) {
        .loanInvite__board .bg__container .loanInvite__loanGirl {
          display: none; } }
    .loanInvite__board .bg__container .loanInvite__loanGirlM {
      display: none;
      position: relative; }
      @media (max-width: 1024px) {
        .loanInvite__board .bg__container .loanInvite__loanGirlM {
          display: block;
          position: static; } }
  @media (max-width: 1024px) {
    .loanInvite__board {
      height: auto; }
      .loanInvite__board .bg__container {
        display: flex;
        flex-direction: column-reverse;
        background: url("../public/Group7563M.png") no-repeat;
        background-size: cover;
        background-position: bottom center; }
        .loanInvite__board .bg__container .loanInvite__lefttSection {
          display: flex;
          justify-content: center; }
          .loanInvite__board .bg__container .loanInvite__lefttSection .loanInvite__loanGirlM {
            position: static;
            margin: 0 auto;
            margin-top: 2rem;
            width: 100%; }
        .loanInvite__board .bg__container .loanInvite__rightSection {
          padding-top: 2rem; } }
  @media (max-width: 375px) {
    .loanInvite__board .bg__container .loanInvite__lefttSection .loanInvite__loanGirlM {
      height: 239px; } }

.seoText {
  background: #fff; }
  @media (max-width: 1024px) {
    .seoText {
      padding: 0 1em; } }

.seoText__container {
  color: #e1e1e1;
  padding: 2rem;
  transition: linear .5s; }
  .seoText__container .seoText__title {
    color: #aaaaaa;
    margin-bottom: 1rem; }
  .seoText__container .seoText__txt {
    color: #2B2B2B;
    line-height: 1.7; }
    .seoText__container .seoText__txt p, .seoText__container .seoText__txt span, .seoText__container .seoText__txt ul > li {
      color: #2B2B2B;
      line-height: 1.7; }
  .seoText__container .seoText__txt.collapseText.hidden.fade {
    max-height: 130px; }

.aboutUs {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  padding: 3em 2rem; }
  .aboutUs .aboutUs__txt {
    color: #999999;
    font-size: 14px;
    line-height: 1.9; }
    .aboutUs .aboutUs__txt a {
      color: #208648; }
  .aboutUs .aboutUs__list {
    padding-left: 2em; }
    .aboutUs .aboutUs__list li {
      color: #208648;
      margin: 1rem 0;
      line-height: 1.5; }
      .aboutUs .aboutUs__list li a {
        color: #208648; }
      .aboutUs .aboutUs__list li span {
        color: #999999; }
    @media (max-width: 1024px) {
      .aboutUs .aboutUs__list .aboutUs__items {
        grid-template-columns: repeat(2, 1fr); } }
  .aboutUs .aboutUs__rightSection {
    display: grid;
    grid-template-rows: 1fr 1fr; }
    .aboutUs .aboutUs__rightSection .aboutUs__lists {
      margin-top: 1rem; }
      @media (max-width: 920px) {
        .aboutUs .aboutUs__rightSection .aboutUs__lists:after {
          top: 45%; } }
    .aboutUs .aboutUs__rightSection .guide__videoBlock {
      display: flex;
      justify-content: center; }
      .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper {
        background: #fff;
        border-radius: 50%;
        padding: 2rem 4rem 2rem 3rem;
        position: absolute;
        display: flex;
        align-items: center;
        flex-direction: column; }
        .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper .video__describe {
          font-size: 12px;
          margin-top: 2rem; }
        .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper .guide__video {
          border: 10px solid #f6f8fa;
          border-right: 15px;
          border-radius: 50%;
          box-shadow: 3px 25px 25px -8px rgba(34, 60, 80, 0.4); }
          .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper .guide__video img {
            width: 440px; }
        @media (max-width: 1024px) {
          .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper {
            width: fit-content;
            position: static;
            margin: auto;
            margin-bottom: 1em;
            padding: 3rem 4rem; } }
        @media (max-width: 768px) {
          .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper img {
            max-width: 350px; } }
        @media (max-width: 520px) {
          .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper {
            padding: 1rem 3rem; }
            .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper img {
              max-width: 240px; } }
        @media (max-width: 420px) {
          .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper {
            padding: 30px 55px; }
            .aboutUs .aboutUs__rightSection .guide__videoBlock .guide__video_wrapper img {
              max-width: 180px; } }
  @media (max-width: 920px) {
    .aboutUs {
      grid-template-columns: 1fr; }
      .aboutUs .aboutUs__rightSection {
        grid-template-rows: 1fr 0.1fr; }
        .aboutUs .aboutUs__rightSection .aboutUs__items {
          grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 420px) {
    .aboutUs {
      padding: 3em 1rem; } }

.achievments {
  margin: 1em 0;
  padding: 1em; }
  .achievments .achievments__container {
    border: 1px solid #999999;
    border-radius: 70px;
    padding: 1.2rem;
    margin-top: 2em; }
    .achievments .achievments__container .achievments__card {
      background: linear-gradient(180deg, #67b260 0%, #a0d98c 100%);
      border-radius: 70px;
      display: grid;
      grid-template-columns: 1.2fr 2fr;
      grid-template-rows: 3fr; }
      .achievments .achievments__container .achievments__card .achievments__leftSection {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1em 0 2em; }
        .achievments .achievments__container .achievments__card .achievments__leftSection h3 {
          font-size: 190px;
          color: #fff;
          font-weight: 500;
          text-align-last: left; }
        .achievments .achievments__container .achievments__card .achievments__leftSection h4 {
          font-size: 20px;
          font-weight: 600;
          word-spacing: 2px;
          padding-left: 15px; }
        .achievments .achievments__container .achievments__card .achievments__leftSection h5 {
          font-size: 10px;
          padding-left: 15px;
          font-weight: 300;
          margin-top: 2rem; }
        .achievments .achievments__container .achievments__card .achievments__leftSection svg {
          padding-top: 2rem; }
        @media (max-width: 768px) {
          .achievments .achievments__container .achievments__card .achievments__leftSection h3 {
            font-size: 150px; } }
        @media (max-width: 640px) {
          .achievments .achievments__container .achievments__card .achievments__leftSection {
            max-width: 340px;
            margin: auto;
            padding: 0; }
            .achievments .achievments__container .achievments__card .achievments__leftSection h3 {
              font-size: 130px; } }
        @media (max-width: 375px) {
          .achievments .achievments__container .achievments__card .achievments__leftSection h5 {
            max-width: 270px; } }
      .achievments .achievments__container .achievments__card .achievments__rightSection {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-gap: 1em;
        padding-bottom: 2em;
        background: url("../public/BG-logo.png") no-repeat;
        background-position-y: bottom;
        background-position-x: 95%; }
        .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item {
          display: flex;
          align-items: flex-end; }
          .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap {
            width: 300px;
            height: 100px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: flex-start; }
            .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap h4 {
              color: #fff;
              font-size: 26px;
              font-weight: 400;
              margin-bottom: 0.7em; }
            .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap span {
              display: block;
              margin-bottom: 10px; }
          .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item #last_achieve {
            border-bottom: none; }
        @media (max-width: 1024px) {
          .achievments .achievments__container .achievments__card .achievments__rightSection {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(5, 1fr);
            padding-bottom: 1em;
            padding-top: 1em; }
            .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item {
              justify-content: center;
              align-items: center; }
              .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap {
                justify-content: center; } }
        @media (max-width: 768px) {
          .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item {
            padding-right: 3em; }
            .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap {
              width: 100%;
              max-width: 300px; } }
        @media (max-width: 375px) {
          .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item {
            padding-left: 1em; }
            .achievments .achievments__container .achievments__card .achievments__rightSection .achievments__item .achievment__wrap h4 {
              font-size: 22px; } }
      @media (max-width: 768px) {
        .achievments .achievments__container .achievments__card {
          grid-template-columns: 2fr 2fr; } }
      @media (max-width: 640px) {
        .achievments .achievments__container .achievments__card {
          border-radius: 30px;
          grid-template-columns: 1fr; } }
    @media (max-width: 768px) {
      .achievments .achievments__container {
        border-radius: 30px;
        padding: 0.5em; } }

.documents {
  margin: 7em 0; }
  .documents .documents__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-gap: 2rem;
    height: 700px;
    padding: 0 1em; }
    .documents .documents__container .aboutUs__leftSection .documents__txt {
      width: 300px; }
    .documents .documents__container .aboutUs__leftSection .documents__list {
      margin-top: 2rem;
      list-style: none;
      height: 400px;
      overflow-y: auto; }
      .documents .documents__container .aboutUs__leftSection .documents__list::-webkit-scrollbar {
        border-radius: 10px;
        height: 10px;
        width: 8px;
        background: #dbdbdb; }
      .documents .documents__container .aboutUs__leftSection .documents__list::-webkit-scrollbar-thumb {
        background: #208648;
        border-radius: 10px; }
      .documents .documents__container .aboutUs__leftSection .documents__list::-webkit-scrollbar-track {
        border-radius: 10px; }
      .documents .documents__container .aboutUs__leftSection .documents__list .documents__item {
        display: flex;
        align-items: flex-start;
        padding: 1rem 0;
        border: 1px solid rgba(224, 224, 224, 0.3);
        border-right: none;
        border-left: none; }
        .documents .documents__container .aboutUs__leftSection .documents__list .documents__item button {
          background: transparent;
          border: none;
          padding-right: 0.3rem; }
        .documents .documents__container .aboutUs__leftSection .documents__list .documents__item .documents__item_txt {
          display: block;
          text-decoration: none;
          margin-left: 1rem;
          max-width: 320px;
          color: #000000; }
        .documents .documents__container .aboutUs__leftSection .documents__list .documents__item h5 {
          margin-bottom: 1em; }
        .documents .documents__container .aboutUs__leftSection .documents__list .documents__item span {
          color: #999999;
          font-size: 14px; }
    .documents .documents__container .documents__rightSection {
      border: 100px solid #fff;
      border-radius: 50%;
      max-height: 580px;
      height: 100%;
      width: 100%;
      max-width: 580px; }
      .documents .documents__container .documents__rightSection img {
        height: 280px; }
    @media (max-width: 1024px) {
      .documents .documents__container {
        grid-template-columns: 1fr;
        height: 900px; }
        .documents .documents__container .documents__rightSection {
          max-height: 400px;
          max-width: 400px;
          border-width: 76px;
          align-self: center;
          justify-self: center; } }
    @media (max-width: 375px) {
      .documents .documents__container .documents__rightSection {
        max-height: 350px;
        max-width: 320px;
        border-width: 60px; } }
    @media (max-width: 320px) {
      .documents .documents__container .documents__rightSection {
        max-height: 350px;
        max-width: 290px;
        border-width: 60px; } }

.prolongation__info {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 3em; }
  .prolongation__info .prlongationGuide {
    margin-left: 25%; }
    .prolongation__info .prlongationGuide .prolongationGuide__txt.underlined__subtitle.collapseText_notFade.hidden {
      max-height: 90px; }
    @media (max-width: 1280px) {
      .prolongation__info .prlongationGuide {
        margin-left: 0; } }
  .prolongation__info .prolongationGuide__title:after {
    width: 50px; }
  .prolongation__info .prolongation__arrows {
    background: url("../public/Arrows.png") no-repeat;
    background-size: cover;
    min-height: 600px; }
  .prolongation__info .close__arrows {
    background: url("../public/ClosingGroup.png") no-repeat;
    background-size: contain;
    min-height: 600px;
    background-position: center; }
  @media (max-width: 920px) {
    .prolongation__info {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 20px; }
      .prolongation__info .prolongation__arrows,
      .prolongation__info .close__arrows {
        visibility: hidden; } }

.prolongationOptions {
  padding: 3em 0; }
  .prolongationOptions .prolongationOptions__container {
    list-style: none;
    position: relative; }
    .prolongationOptions .prolongationOptions__container h2 {
      padding: 1em; }
    .prolongationOptions .prolongationOptions__container:after {
      content: "";
      width: 80px;
      height: 1px;
      background: #208648;
      position: absolute;
      left: 45%;
      bottom: -3rem; }
    .prolongationOptions .prolongationOptions__container .prolongationOptions__item {
      display: grid;
      grid-template-columns: 180px 3fr;
      background: #fff;
      border: 1px solid #208648;
      border-radius: 16px;
      margin: 1rem;
      margin-bottom: 4em;
      padding: 2em;
      outline: 1px solid rgba(224, 224, 224, 0.6);
      outline-offset: 1em;
      box-shadow: -3px 56px 21px -37px rgba(34, 60, 80, 0.3); }
      .prolongationOptions .prolongationOptions__container .prolongationOptions__item .PS__logo {
        align-self: center;
        justify-self: center; }
      .prolongationOptions .prolongationOptions__container .prolongationOptions__item .PS__info {
        font-size: 14px;
        padding: 0 2em; }
        .prolongationOptions .prolongationOptions__container .prolongationOptions__item .PS__info .PS__title {
          margin-bottom: 1em; }
        .prolongationOptions .prolongationOptions__container .prolongationOptions__item .PS__info .PS__txt {
          line-height: 1.4rem;
          color: #999999; }
      @media (max-width: 920px) {
        .prolongationOptions .prolongationOptions__container .prolongationOptions__item {
          grid-template-columns: 1fr; }
          .prolongationOptions .prolongationOptions__container .prolongationOptions__item .PS__logo {
            justify-self: start; } }

.feedback {
  border: 1px solid #208648;
  border-radius: 16px;
  padding: 1em; }
  .feedback .feedback__wrapper {
    background: #fff;
    background-image: url("../public/Intersect.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    padding: 2em; }
    .feedback .feedback__wrapper .feedback__leftSection p {
      margin-top: 1rem; }
    .feedback .feedback__wrapper .feedback__leftSection .feedback__call {
      margin-top: 2rem;
      font-size: 14px; }
    .feedback .feedback__wrapper .feedback__leftSection .feedback__text {
      display: flex;
      align-items: center; }
      .feedback .feedback__wrapper .feedback__leftSection .feedback__text .feedback__phone {
        color: #208648;
        font-size: 26px;
        margin-left: 1rem; }
    .feedback .feedback__wrapper .feedback__leftSection .feedback__info {
      font-size: 10px; }
    .feedback .feedback__wrapper .feedback__leftSection .apeal__steps {
      margin-top: 1em;
      color: #208648; }
      .feedback .feedback__wrapper .feedback__leftSection .apeal__steps span {
        color: #999999;
        font-size: 12px;
        line-height: 1.3em; }
    .feedback .feedback__wrapper .feedback__rightSection {
      display: flex;
      flex-direction: column;
      padding-left: 6rem; }
      .feedback .feedback__wrapper .feedback__rightSection .feedback__input {
        width: 100%;
        max-width: 600px;
        height: 45px;
        background: #f0f0f0;
        border: 1px solid #999999;
        border-radius: 5px;
        margin-bottom: 1rem;
        padding-left: 1rem; }
        .feedback .feedback__wrapper .feedback__rightSection .feedback__input:focus, .feedback .feedback__wrapper .feedback__rightSection .feedback__input:valid {
          outline: none;
          border: 2px solid #208648;
          background: #fff; }
      .feedback .feedback__wrapper .feedback__rightSection textarea {
        width: 100%;
        max-width: 600px;
        background: #f0f0f0;
        border: 1px solid #999999;
        border-radius: 10px;
        margin-bottom: 1rem;
        padding-left: 1rem;
        padding-top: 1rem;
        outline: none;
        border: 2px solid #208648; }
        .feedback .feedback__wrapper .feedback__rightSection textarea:focus, .feedback .feedback__wrapper .feedback__rightSection textarea:valid {
          outline: none;
          border: 2px solid #208648;
          background: #fff; }
      .feedback .feedback__wrapper .feedback__rightSection select {
        width: 100%;
        max-width: 600px;
        background: #f0f0f0;
        border: 1px solid #999999;
        border-radius: 10px;
        margin-bottom: 1rem;
        padding: 2rem 0 1rem 1rem;
        color: #808285; }
        .feedback .feedback__wrapper .feedback__rightSection select option {
          color: #808285; }
        .feedback .feedback__wrapper .feedback__rightSection select:focus, .feedback .feedback__wrapper .feedback__rightSection select:valid {
          outline: none;
          border: 2px solid #208648;
          background: #fff; }
      .feedback .feedback__wrapper .feedback__rightSection .feedback__btn {
        display: block;
        align-self: flex-start;
        width: 200px;
        padding: 1rem 0;
        background: #208648;
        border: none;
        border-radius: 16px;
        color: #fff;
        font-size: 14px;
        box-shadow: 0px 12px 14px -2px #208648; }
      .feedback .feedback__wrapper .feedback__rightSection .feedback__upload {
        max-width: 600px;
        border-radius: 16px;
        padding: 2em 1rem;
        font-size: 12px;
        border: 2px dashed #999999;
        margin-bottom: 1em;
        color: #808285; }
      .feedback .feedback__wrapper .feedback__rightSection .feedback__rating {
        list-style-type: none;
        display: flex;
        border: 1px solid #999999;
        border-radius: 16px;
        max-width: 600px;
        padding: 2rem;
        margin-bottom: 1em;
        justify-content: space-between; }
        .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item {
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
          width: 65px; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item input {
            visibility: hidden;
            position: absolute; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item svg {
            width: 49px;
            height: auto; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item .rate__enabled {
            position: absolute;
            left: 8px;
            opacity: 0; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item input ~ label:hover .rate__enabled {
            opacity: 1;
            transition: linear 0.4s; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item input:checked ~ label > .rate__enabled {
            opacity: 1; }
    @media (max-width: 768px) {
      .feedback .feedback__wrapper {
        grid-template-columns: 1fr; }
        .feedback .feedback__wrapper .feedback__rightSection {
          padding-left: 0;
          padding-top: 2rem; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__input,
          .feedback .feedback__wrapper .feedback__rightSection textarea,
          .feedback .feedback__wrapper .feedback__rightSection select {
            max-width: 100%; } }
    @media (max-width: 540px) {
      .feedback .feedback__wrapper .feedback__rightSection .feedback__rating {
        padding: 1em; }
        .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item {
          width: 55px; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item .rate_peach .rate__enabled,
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item .rate_peach .rate__disabled {
            width: 39px; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item label {
            font-size: 10px; } }
    @media (max-width: 400px) {
      .feedback .feedback__wrapper {
        padding: 2em 10px; }
        .feedback .feedback__wrapper .feedback__leftSection {
          padding-left: 1em; } }
    @media (max-width: 375px) {
      .feedback .feedback__wrapper .feedback__rightSection {
        width: 260px;
        margin: 0 auto; }
        .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item {
          width: 35px; }
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item .rate_peach .rate__enabled,
          .feedback .feedback__wrapper .feedback__rightSection .feedback__rating .feedback__rating_item .rate_peach .rate__disabled {
            width: 19px; } }
  .feedback .feddback__wrapper.subscribe {
    background-size: contain;
    padding: 3em; }

#apeal_feedback {
  background-position: bottom left; }

#feedback {
  margin: 2rem auto; }

.apealSelect {
  position: relative; }
  .apealSelect #problemLabel,
  .apealSelect #contactLabel {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 10;
    color: #b6b5b5;
    font-size: 12px; }

.terms {
  margin-bottom: 2em;
  max-width: 600px; }
  .terms #terms {
    width: 20px;
    height: 20px;
    position: relative; }
    .terms #terms:checked:after {
      content: "✓";
      width: 16px;
      height: 20px;
      background: #208648;
      color: #fff;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 10;
      font-weight: 600;
      font-size: 18px;
      line-height: 20px;
      padding-left: 4px; }
  .terms a {
    color: #208648; }

.loanSteps .loanStepsWrapper {
  padding: 2rem;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .loanSteps .loanStepsWrapper .loanSteps__txt {
    padding-top: 2em; }
  .loanSteps .loanStepsWrapper .loanSteps_identic {
    background: url("../public/Identic.png") no-repeat;
    background-size: contain;
    background-position: top;
    height: 350px; }
  @media (max-width: 768px) {
    .loanSteps .loanStepsWrapper {
      grid-template-columns: 1fr; }
      .loanSteps .loanStepsWrapper .loanSteps_identic {
        display: none; } }
.loanSteps .loanSteps__scheme .loanSteps__stepline {
  padding-bottom: 2em;
  border-bottom: 2px dotted #208648;
  margin-bottom: 3em; }
  .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding-left: 2em; }
    .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list .stepline__item {
      display: flex;
      flex-direction: column;
      width: 250px;
      color: #999999;
      font-size: 14px;
      position: relative; }
      .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list .stepline__item span {
        padding-bottom: 1em; }
      .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list .stepline__item:after {
        content: "";
        width: 10px;
        height: 10px;
        background: #fff;
        border: 5px solid #208648;
        border-radius: 50%;
        position: absolute;
        left: 4%;
        bottom: -2.7rem; }
.loanSteps .loanSteps__scheme .loanSteps__steps {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding-left: 2em; }
  .loanSteps .loanSteps__scheme .loanSteps__steps .loanSteps__item {
    display: flex;
    flex-direction: column;
    width: 250px;
    padding: 0 10px;
    position: relative; }
    .loanSteps .loanSteps__scheme .loanSteps__steps .loanSteps__item h5 {
      margin: 1.5em 0; }
    .loanSteps .loanSteps__scheme .loanSteps__steps .loanSteps__item p {
      font-size: 13px;
      color: #808285;
      line-height: 1.5; }
@media (max-width: 920px) {
  .loanSteps .loanSteps__scheme {
    display: grid;
    grid-template-columns: 0.3fr 2fr; }
    .loanSteps .loanSteps__scheme .loanSteps__stepline {
      border-bottom: transparent; }
      .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-left: 2rem;
        height: 100%;
        position: relative; }
        .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list:before {
          content: "";
          width: 1px;
          height: 82%;
          border-right: 2px dotted #208648;
          position: absolute;
          left: -2px;
          top: 0; }
        .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list .stepline__item {
          width: fit-content; }
          .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list .stepline__item:after {
            left: -3em;
            top: 0; }
    .loanSteps .loanSteps__scheme .loanSteps__steps {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 0; }
      .loanSteps .loanSteps__scheme .loanSteps__steps .loanSteps__item {
        width: 100%; }
        .loanSteps .loanSteps__scheme .loanSteps__steps .loanSteps__item h5 {
          margin: 10px 0; }
    .loanSteps .loanSteps__scheme #step1 {
      height: 245px; }
    .loanSteps .loanSteps__scheme #step2 {
      height: 215px; }
    .loanSteps .loanSteps__scheme #step3 {
      height: 298px; }
    .loanSteps .loanSteps__scheme #step4 {
      height: 350px; }
    .loanSteps .loanSteps__scheme #step5 {
      height: 260px; } }
@media (max-width: 600px) {
  .loanSteps .loanSteps__scheme #step4 {
    height: 400px; } }
@media (max-width: 480px) {
  .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list:before {
    height: 84%; }
  .loanSteps .loanSteps__scheme #step3 {
    height: 340px; }
  .loanSteps .loanSteps__scheme #step4 {
    height: 470px; } }
@media (max-width: 425px) {
  .loanSteps .loanSteps__scheme #step4 {
    height: 520px; } }
@media (max-width: 375px) {
  .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list:before {
    height: 85.5%; }
  .loanSteps .loanSteps__scheme #step1 {
    height: 260px; }
  .loanSteps .loanSteps__scheme #step2 {
    height: 230px; }
  .loanSteps .loanSteps__scheme #step3 {
    height: 380px; }
  .loanSteps .loanSteps__scheme #step4 {
    height: 600px; } }
@media (max-width: 320px) {
  .loanSteps .loanSteps__scheme .loanSteps__stepline .loanSteps__list:before {
    height: 86.5%; }
  .loanSteps .loanSteps__scheme #step1 {
    height: 280px; }
  .loanSteps .loanSteps__scheme #step2 {
    height: 260px; }
  .loanSteps .loanSteps__scheme #step3 {
    height: 420px; }
  .loanSteps .loanSteps__scheme #step4 {
    height: 650px; } }

.promotionsGrid .promotionGrid__title,
.promotionsGrid .blogGrid__title,
.blogGrid .promotionGrid__title,
.blogGrid .blogGrid__title {
  margin-top: 1em;
  padding-left: 1em; }
  .promotionsGrid .promotionGrid__title:after,
  .promotionsGrid .blogGrid__title:after,
  .blogGrid .promotionGrid__title:after,
  .blogGrid .blogGrid__title:after {
    left: 1em; }
.promotionsGrid .promotionGrid__items,
.promotionsGrid .blogGrid__items,
.blogGrid .promotionGrid__items,
.blogGrid .blogGrid__items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4em 1.5em;
  padding: 2em; }
  .promotionsGrid .promotionGrid__items .promotionGrid__item img,
  .promotionsGrid .promotionGrid__items .blogGrid__item img,
  .promotionsGrid .blogGrid__items .promotionGrid__item img,
  .promotionsGrid .blogGrid__items .blogGrid__item img,
  .blogGrid .promotionGrid__items .promotionGrid__item img,
  .blogGrid .promotionGrid__items .blogGrid__item img,
  .blogGrid .blogGrid__items .promotionGrid__item img,
  .blogGrid .blogGrid__items .blogGrid__item img {
    border-radius: 20px;
    width: 100%;
    height: auto; }
  .promotionsGrid .promotionGrid__items .promotionGrid__item .promotion__captions,
  .promotionsGrid .promotionGrid__items .blogGrid__item .promotion__captions,
  .promotionsGrid .blogGrid__items .promotionGrid__item .promotion__captions,
  .promotionsGrid .blogGrid__items .blogGrid__item .promotion__captions,
  .blogGrid .promotionGrid__items .promotionGrid__item .promotion__captions,
  .blogGrid .promotionGrid__items .blogGrid__item .promotion__captions,
  .blogGrid .blogGrid__items .promotionGrid__item .promotion__captions,
  .blogGrid .blogGrid__items .blogGrid__item .promotion__captions {
    padding: 1.5em 1em; }
    .promotionsGrid .promotionGrid__items .promotionGrid__item .promotion__captions span,
    .promotionsGrid .promotionGrid__items .blogGrid__item .promotion__captions span,
    .promotionsGrid .blogGrid__items .promotionGrid__item .promotion__captions span,
    .promotionsGrid .blogGrid__items .blogGrid__item .promotion__captions span,
    .blogGrid .promotionGrid__items .promotionGrid__item .promotion__captions span,
    .blogGrid .promotionGrid__items .blogGrid__item .promotion__captions span,
    .blogGrid .blogGrid__items .promotionGrid__item .promotion__captions span,
    .blogGrid .blogGrid__items .blogGrid__item .promotion__captions span {
      color: red; }
  .promotionsGrid .promotionGrid__items .promotionGrid__item .blog__captions,
  .promotionsGrid .promotionGrid__items .blogGrid__item .blog__captions,
  .promotionsGrid .blogGrid__items .promotionGrid__item .blog__captions,
  .promotionsGrid .blogGrid__items .blogGrid__item .blog__captions,
  .blogGrid .promotionGrid__items .promotionGrid__item .blog__captions,
  .blogGrid .promotionGrid__items .blogGrid__item .blog__captions,
  .blogGrid .blogGrid__items .promotionGrid__item .blog__captions,
  .blogGrid .blogGrid__items .blogGrid__item .blog__captions {
    display: grid;
    justify-content: center;
    padding: 1.5em 1em 0 1em;
    height: 280px; }
    .promotionsGrid .promotionGrid__items .promotionGrid__item .blog__captions h4, .promotionsGrid .promotionGrid__items .promotionGrid__item .blog__captions p,
    .promotionsGrid .promotionGrid__items .blogGrid__item .blog__captions h4,
    .promotionsGrid .promotionGrid__items .blogGrid__item .blog__captions p,
    .promotionsGrid .blogGrid__items .promotionGrid__item .blog__captions h4,
    .promotionsGrid .blogGrid__items .promotionGrid__item .blog__captions p,
    .promotionsGrid .blogGrid__items .blogGrid__item .blog__captions h4,
    .promotionsGrid .blogGrid__items .blogGrid__item .blog__captions p,
    .blogGrid .promotionGrid__items .promotionGrid__item .blog__captions h4,
    .blogGrid .promotionGrid__items .promotionGrid__item .blog__captions p,
    .blogGrid .promotionGrid__items .blogGrid__item .blog__captions h4,
    .blogGrid .promotionGrid__items .blogGrid__item .blog__captions p,
    .blogGrid .blogGrid__items .promotionGrid__item .blog__captions h4,
    .blogGrid .blogGrid__items .promotionGrid__item .blog__captions p,
    .blogGrid .blogGrid__items .blogGrid__item .blog__captions h4,
    .blogGrid .blogGrid__items .blogGrid__item .blog__captions p {
      margin-bottom: 1rem;
      text-overflow: ellipsis; }
    .promotionsGrid .promotionGrid__items .promotionGrid__item .blog__captions p,
    .promotionsGrid .promotionGrid__items .blogGrid__item .blog__captions p,
    .promotionsGrid .blogGrid__items .promotionGrid__item .blog__captions p,
    .promotionsGrid .blogGrid__items .blogGrid__item .blog__captions p,
    .blogGrid .promotionGrid__items .promotionGrid__item .blog__captions p,
    .blogGrid .promotionGrid__items .blogGrid__item .blog__captions p,
    .blogGrid .blogGrid__items .promotionGrid__item .blog__captions p,
    .blogGrid .blogGrid__items .blogGrid__item .blog__captions p {
      overflow: hidden;
      max-height: 200px;
      color: #808285;
      line-height: 1.5; }
    .promotionsGrid .promotionGrid__items .promotionGrid__item .blog__captions span,
    .promotionsGrid .promotionGrid__items .blogGrid__item .blog__captions span,
    .promotionsGrid .blogGrid__items .promotionGrid__item .blog__captions span,
    .promotionsGrid .blogGrid__items .blogGrid__item .blog__captions span,
    .blogGrid .promotionGrid__items .promotionGrid__item .blog__captions span,
    .blogGrid .promotionGrid__items .blogGrid__item .blog__captions span,
    .blogGrid .blogGrid__items .promotionGrid__item .blog__captions span,
    .blogGrid .blogGrid__items .blogGrid__item .blog__captions span {
      align-self: self-end;
      color: #808285; }
  @media (max-width: 768px) {
    .promotionsGrid .promotionGrid__items,
    .promotionsGrid .blogGrid__items,
    .blogGrid .promotionGrid__items,
    .blogGrid .blogGrid__items {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, 1fr);
      grid-gap: 1em; } }
.promotionsGrid .blogGrid__items,
.blogGrid .blogGrid__items {
  grid-template-columns: repeat(4, 1fr); }
  .promotionsGrid .blogGrid__items .blogGrid__item,
  .blogGrid .blogGrid__items .blogGrid__item {
    display: grid; }
  @media (max-width: 1024px) {
    .promotionsGrid .blogGrid__items,
    .blogGrid .blogGrid__items {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 920px) {
    .promotionsGrid .blogGrid__items,
    .blogGrid .blogGrid__items {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) {
    .promotionsGrid .blogGrid__items,
    .blogGrid .blogGrid__items {
      grid-template-columns: 1fr; } }
.promotionsGrid .pageNums,
.blogGrid .pageNums {
  display: flex;
  justify-content: center;
  list-style: none; }
  .promotionsGrid .pageNums .page__num,
  .blogGrid .pageNums .page__num {
    margin: 0 1em; }
  .promotionsGrid .pageNums .page__num.current,
  .blogGrid .pageNums .page__num.current {
    color: #208648;
    font-weight: 600;
    padding: 0 1rem 0.5rem 1rem;
    border-bottom: 1px solid #208648; }
  .promotionsGrid .pageNums .page__num.prev_num,
  .blogGrid .pageNums .page__num.prev_num {
    margin-right: 2em; }
  .promotionsGrid .pageNums .page__num.next_num,
  .blogGrid .pageNums .page__num.next_num {
    margin-left: 2em; }

.blogItem {
  max-width: 800px;
  margin: auto;
  padding: 2em; }
  .blogItem .blogItem__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em; }
    .blogItem .blogItem__info span {
      color: red; }
  .blogItem .blogImg {
    width: 100%; }
  .blogItem p {
    margin: 2em 0;
    color: #808285;
    line-height: 1.7; }
  .blogItem span {
    margin: 2em 0;
    color: #808285;
    line-height: 1.7; }
  .blogItem ul, .blogItem ol {
    color: #208648;
    line-height: 1.5;
    margin-left: 2em; }
    .blogItem ul li span, .blogItem ol li span {
      color: #808285; }

.documentsList {
  padding: 2em; }
  .documentsList .documentsList__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2em 1em;
    list-style-type: none; }
    .documentsList .documentsList__items .documentsList__item {
      background: rgba(32, 134, 72, 0.1);
      border-radius: 16px;
      padding: 1em;
      display: grid;
      grid-template-columns: 1fr 4fr; }
      .documentsList .documentsList__items .documentsList__item .documentsItem__txt {
        margin-left: 1rem; }
      .documentsList .documentsList__items .documentsList__item button {
        margin-top: 1em;
        border: 1px solid #000;
        border-radius: 10px;
        padding: 5px 15px;
        background: transparent;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 11px;
        transition: linear 0.4s; }
        .documentsList .documentsList__items .documentsList__item button:hover {
          background: #208648;
          color: #fff;
          transition: linear 0.4s;
          border-color: transparent; }
    @media (max-width: 768px) {
      .documentsList .documentsList__items {
        grid-template-columns: 1fr; } }

.textPage {
  max-width: 1000px;
  margin: auto;
  padding: 2em; }
  .textPage .textPage__title {
    max-width: 600px;
    text-align: center;
    margin: auto;
    position: relative;
    margin-bottom: 2em; }
    .textPage .textPage__title:after {
      content: "";
      width: 60px;
      height: 2px;
      background: #208648;
      position: absolute;
      bottom: -0.5em;
      left: 35%; }
  .textPage .textPage__description {
    margin-bottom: 1em; }
  .textPage img {
    width: 100%;
    margin-bottom: 1em; }
  .textPage h4 {
    margin: 1em 0; }
  .textPage ul {
    color: #208648;
    margin-left: 2em; }
    .textPage ul li {
      margin-bottom: 1em; }
  .textPage p {
    color: #999999;
    line-height: 2em; }

.faqBlock,
.loanGuide {
  padding: 2em 1em; }
  .faqBlock .faqBlock__wrapper,
  .faqBlock .loanGuide__wrapper,
  .loanGuide .faqBlock__wrapper,
  .loanGuide .loanGuide__wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr; }
    .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categoriesPointer,
    .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categoriesPointer,
    .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categoriesPointer,
    .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categoriesPointer,
    .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categoriesPointer,
    .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categoriesPointer,
    .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categoriesPointer,
    .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categoriesPointer {
      color: #208648;
      font-size: 11px; }
    .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories,
    .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories,
    .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories,
    .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories,
    .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories,
    .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories,
    .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories,
    .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories,
    .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories,
    .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories,
    .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories,
    .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories,
    .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories,
    .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories,
    .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories,
    .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories {
      list-style: none; }
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category,
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category,
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category,
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category {
        border: 1px solid #208648;
        border-radius: 24px;
        width: fit-content;
        padding: 0.5em 1em;
        margin-top: 0.7em;
        font-size: 14px;
        transition: linear 0.5s; }
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category:hover,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category:hover,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category:hover,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category:hover,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category:hover,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category:hover,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category:hover,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category:hover,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category:hover,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category:hover,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category:hover,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category:hover,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category:hover,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category:hover,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category:hover,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category:hover,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category:hover,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category:hover,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category:hover,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category:hover,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category:hover,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category:hover,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category:hover,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category:hover,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category:hover,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category:hover,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category:hover,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category:hover,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category:hover,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category:hover,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category:hover,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category:hover {
          background: #208648;
          color: #fff;
          transition: linear 0.5s; }
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category a,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category a,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category a,
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category a,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category a,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category a,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category a,
        .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category a,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category a,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category a,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category a,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category a,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category a,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category a,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category a,
        .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category a,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category a,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category a,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category a,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category a,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category a,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category a,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category a,
        .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category a,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category a,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .loanGuide__category a,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category a,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .loanGuide__category a,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category a,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .loanGuide__category a,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category a,
        .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .loanGuide__category a {
          text-decoration: none;
          color: #000; }
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .faqBlock .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .faqBlock .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .faqBlock .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .faqBlock .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .loanGuide .faqBlock__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .loanGuide .faqBlock__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .loanGuide .loanGuide__wrapper .faqBlock__leftSection .loanGuide__categories .faqBlock__category.chosen,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .faqBlock__categories .faqBlock__category.chosen,
      .loanGuide .loanGuide__wrapper .loanGuide__leftSection .loanGuide__categories .faqBlock__category.chosen {
        background: #208648;
        color: #fff;
        transition: linear 0.5s; }
    .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers,
    .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers,
    .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers,
    .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers {
      list-style: none;
      margin: 1rem; }
      .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer,
      .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer,
      .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer,
      .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer {
        display: grid;
        grid-template-columns: 0.5fr 5fr 0.5fr;
        border: 1px solid #999999;
        border-radius: 25px;
        padding: 1em;
        background: #fff;
        margin-bottom: 1rem; }
        .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__answerNum,
        .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__answerNum,
        .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__answerNum,
        .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__answerNum {
          color: #999999;
          font-weight: 600;
          font-size: 28px;
          text-align: center; }
        .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__txt,
        .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__txt,
        .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__txt,
        .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__txt {
          padding: 0 10px; }
        .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapse,
        .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapse,
        .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapse,
        .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapse {
          margin: 1rem 0;
          display: none; }
        .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper,
        .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper,
        .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper,
        .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper {
          display: flex;
          justify-content: center;
          align-items: flex-start; }
          .faqBlock .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper .faqBlock__collapseBtn,
          .faqBlock .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper .faqBlock__collapseBtn,
          .loanGuide .faqBlock__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper .faqBlock__collapseBtn,
          .loanGuide .loanGuide__wrapper .faqBlock__rightSection .faqBlock__answers .faqBlock__answer .faqBlock__collapseBtnWrapper .faqBlock__collapseBtn {
            background: transparent;
            border: transparent;
            font-size: 36px;
            font-weight: 400;
            color: #ffb800;
            text-align: center; }
    .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers,
    .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers,
    .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers,
    .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers {
      padding: 2em; }
      .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt {
        margin-bottom: 1em; }
        .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__subtitle,
        .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__subtitle,
        .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__subtitle,
        .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__subtitle {
          margin: 1em 0; }
        .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__collapse,
        .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__collapse,
        .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__collapse,
        .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt .loanGuide__collapse {
          font-size: 14px;
          line-height: 1.2rem;
          color: #808285; }
        .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol,
        .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol,
        .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol,
        .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol {
          margin: 1em 0;
          margin-left: 3em;
          color: #208648; }
          .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol span,
          .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol span,
          .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol span,
          .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt ol span {
            color: #808285; }
        .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt span,
        .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt span,
        .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt span,
        .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers .loanGuide__txt span {
          color: #808285; }
      .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ul li, .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ol li,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ul li,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ol li,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ul li,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ol li,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ul li,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ol li {
        color: #808285;
        margin-left: 2em; }
      .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ul li::marker, .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ol li::marker,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ul li::marker,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ol li::marker,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ul li::marker,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers ol li::marker,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ul li::marker,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers ol li::marker {
        color: green; }
      .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers p, .faqBlock .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers span,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers p,
      .faqBlock .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers span,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers p,
      .loanGuide .faqBlock__wrapper .loanGuide__rightSection .loanGuide__answers span,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers p,
      .loanGuide .loanGuide__wrapper .loanGuide__rightSection .loanGuide__answers span {
        color: #808285;
        line-height: 1.5;
        margin: 1em 0; }
    @media (max-width: 768px) {
      .faqBlock .faqBlock__wrapper,
      .faqBlock .loanGuide__wrapper,
      .loanGuide .faqBlock__wrapper,
      .loanGuide .loanGuide__wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: fit-content 1fr; }
        .faqBlock .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories,
        .faqBlock .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories,
        .loanGuide .faqBlock__wrapper .faqBlock__leftSection .faqBlock__categories,
        .loanGuide .loanGuide__wrapper .faqBlock__leftSection .faqBlock__categories {
          display: flex;
          width: 100%;
          flex-wrap: wrap;
          padding-bottom: 1em; } }

.contactsBlock {
  padding: 2em;
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-bottom: 4em; }
  .contactsBlock .contactsBlock__data .contactsBlock__companyName {
    margin-top: 3rem;
    margin-bottom: 2em; }
  .contactsBlock .contactsBlock__data .contactsBlock__adress span {
    color: #208648;
    font-size: 11px; }
  .contactsBlock .contactsBlock__data .contactsBlock__adress p {
    font-weight: 200;
    margin-top: 1em; }
  .contactsBlock .contactsBlock__data .contactsBlock__schedule {
    margin-top: 2em; }
    .contactsBlock .contactsBlock__data .contactsBlock__schedule .contactsBlock__schedule_title {
      color: #208648;
      font-size: 11px; }
    .contactsBlock .contactsBlock__data .contactsBlock__schedule .contactsBlock__schedule_values {
      list-style-type: none; }
      .contactsBlock .contactsBlock__data .contactsBlock__schedule .contactsBlock__schedule_values li {
        margin: 0.5em 0; }
        .contactsBlock .contactsBlock__data .contactsBlock__schedule .contactsBlock__schedule_values li span:first-child {
          display: inline-block;
          color: #808285;
          width: 69px; }
        .contactsBlock .contactsBlock__data .contactsBlock__schedule .contactsBlock__schedule_values li span:last-child {
          display: inline-block;
          width: 100px;
          padding-left: 5px; }
  .contactsBlock .contactsBlock__data .contactsBlock__email {
    margin: 3em 0;
    border-bottom: 1px dashed #000;
    width: fit-content; }
  .contactsBlock .contactsBlock__data .contactsBlock__text {
    display: flex;
    align-items: center; }
    .contactsBlock .contactsBlock__data .contactsBlock__text .contactsBlock__phone {
      color: #208648;
      font-size: 26px;
      margin-left: 1rem; }
  .contactsBlock .contactsBlock__data .contactsBlock__info {
    margin-top: 10px;
    font-size: 12px; }
  .contactsBlock .contactsBlock__geo {
    position: relative; }
    .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
      background: #fff;
      width: fit-content;
      padding: 3em 4em 3em 2em;
      border-radius: 50%;
      position: absolute;
      top: -2em;
      right: 0; }
      .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map {
        padding: 1.5em 2em 1.5em 1em;
        background: #f6f8fa;
        border-radius: 50%; }
        .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map img, .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map iframe {
          width: 450px;
          height: 450px;
          border-color: transparent;
          border-radius: 50%;
          max-width: 500px;
          box-shadow: -1px 20px 14px -5px rgba(34, 60, 80, 0.2); }
  @media (max-width: 920px) {
    .contactsBlock {
      grid-template-columns: 1fr;
      grid-template-rows: .8fr .8fr; }
      .contactsBlock .contactsBlock__geo {
        padding: 1em;
        display: flex;
        justify-content: center; }
        .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
          position: static; } }
  @media (max-width: 700px) {
    .contactsBlock .contactsBlock__geo {
      padding: 0;
      padding-top: 2em; }
      .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
        padding: 1em 1em 1em 1em;
        height: fit-content; }
        .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map {
          padding: 0.5em 1em 0.5em 0.1em; }
          .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map img, .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map iframe {
            max-width: 350px;
            max-height: 350px; } }
  @media (max-width: 425px) {
    .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
      position: absolute;
      top: 2em;
      left: 0; }
      .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map img, .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map iframe {
        max-width: 280px;
        max-height: 280px; } }
  @media (max-width: 375px) {
    .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
      left: -1em; } }
  @media (max-width: 350px) {
    .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper {
      left: -1.5em; }
      .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map img, .contactsBlock .contactsBlock__geo .contactsBlock__mapWrapper .contactsBlock__map iframe {
        max-width: 256px;
        max-height: 256px; } }

.cityHeader__wrap .cityHeader {
  height: 478px;
  background: url("../public/Kherson.png");
  background-size: cover; }
  .cityHeader__wrap .cityHeader .cityHeader__mask {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(32, 134, 72, 0.5) 0%, #208648 120%); }
@media (max-width: 1200px) {
  .cityHeader__wrap {
    display: grid;
    grid-template-rows: 1fr 1.4fr; } }

.footer {
  background: #191B37;
  padding: 4em 1em 1em 1em; }
  .footer h3 {
    color: #fff;
    font-weight: 200; }
  .footer .footer__container {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr; }
  .footer .footer__menu {
    color: #fff;
    list-style-type: none;
    font-size: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 1fr); }
  .footer .footer__menu > li {
    margin-bottom: 20px; }
  .footer .footer__phone {
    color: #208648;
    font-size: 2.3rem;
    vertical-align: top;
    font-weight: 600; }
  .footer .footer__phoneInfo {
    font-size: 14px;
    color: #808285; }
  .footer .footer__stores > a {
    display: inline-block;
    width: 148px;
    height: 48px; }
  .footer .footer__leftBlock p {
    color: #808285;
    font-size: 10px;
    margin-top: 15px;
    margin-bottom: 30px; }
  .footer .footer__rightBlock {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .footer .footer__copyrightBlock {
    margin-top: 2em;
    color: #808285;
    font-size: 12px; }
  .footer .footer__copyright_container {
    display: flex;
    justify-content: space-between;
    padding: 1em; }
  .footer .footer__hr {
    background: #999999;
    opacity: 0.2;
    margin: 3em 0; }
  @media (max-width: 1024px) {
    .footer .footer__container {
      display: flex;
      flex-direction: column-reverse;
      padding: 1em; }
    .footer .footer__logo {
      display: none; }
    .footer .footer__menu,
    .footer .footer__rightBlock,
    .footer .footer__text,
    .footer .footer__title,
    .footer .footer__phoneInfo {
      margin-bottom: 1em; } }
  @media (max-width: 768px) {
    .footer .footer__menu {
      display: none; } }
  @media (max-width: 400px) {
    .footer .footer__phone {
      font-size: 1.79em; } }

.calculator {
  background: #fff;
  border: 5px solid #ece9f1;
  border-radius: 60px;
  width: 500px;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  position: absolute;
  right: 9rem;
  bottom: -4rem;
  z-index: 105; }
  .calculator .calculator__title {
    font-size: 30px; }
  .calculator .calculator__subtitle {
    color: red;
    font-size: 14px;
    margin-bottom: 2em; }
  .calculator .calculator__preferredSum,
  .calculator .calculator__preferedDuration {
    width: 100%;
    margin-bottom: 1em; }
    .calculator .calculator__preferredSum .preferSum__control,
    .calculator .calculator__preferredSum .preferDuration__control,
    .calculator .calculator__preferedDuration .preferSum__control,
    .calculator .calculator__preferedDuration .preferDuration__control {
      display: flex;
      justify-content: space-between; }
      .calculator .calculator__preferredSum .preferSum__control .preferSum_input,
      .calculator .calculator__preferredSum .preferSum__control .preferDuration_input,
      .calculator .calculator__preferredSum .preferDuration__control .preferSum_input,
      .calculator .calculator__preferredSum .preferDuration__control .preferDuration_input,
      .calculator .calculator__preferedDuration .preferSum__control .preferSum_input,
      .calculator .calculator__preferedDuration .preferSum__control .preferDuration_input,
      .calculator .calculator__preferedDuration .preferDuration__control .preferSum_input,
      .calculator .calculator__preferedDuration .preferDuration__control .preferDuration_input {
        width: 100px;
        background: #e9e8e8;
        border: 1px solid #999999;
        border-radius: 6px;
        padding: 5px 10px;
        font-size: 16px;
        font-weight: 600; }
    .calculator .calculator__preferredSum .preferSum__limits,
    .calculator .calculator__preferredSum .preferDuration__limits,
    .calculator .calculator__preferedDuration .preferSum__limits,
    .calculator .calculator__preferedDuration .preferDuration__limits {
      display: flex;
      justify-content: space-between;
      margin: 5px;
      color: #999999;
      font-size: 12px; }
  .calculator .calculator__loanInfo {
    background: #eeeeee;
    list-style-type: none;
    width: 100%;
    border-radius: 16px;
    padding: 1em; }
    .calculator .calculator__loanInfo .calculator__loanParam {
      display: grid;
      grid-template-columns: fit-content(135px) 3fr fit-content(130px);
      margin-top: 1rem; }
      .calculator .calculator__loanInfo .calculator__loanParam .loanParam_key {
        font-size: 12px;
        color: #808285; }
      .calculator .calculator__loanInfo .calculator__loanParam .loanParam_divisor {
        border-bottom: 1px dotted #999999; }
      .calculator .calculator__loanInfo .calculator__loanParam .loanParam_value {
        font-size: 14px;
        text-align: right; }
      .calculator .calculator__loanInfo .calculator__loanParam #percents_key {
        position: relative;
        width: 150px;
        display: flex; }
        .calculator .calculator__loanInfo .calculator__loanParam #percents_key #percents_key-info {
          font-family: italic;
          width: 20px;
          height: 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          color: #000;
          background: #ffd920;
          border-radius: 50%;
          position: relative;
          top: -2px;
          right: -2px; }
        .calculator .calculator__loanInfo .calculator__loanParam #percents_key #percents_key-describe {
          position: absolute;
          left: -85px;
          bottom: 30px;
          width: 200px;
          border-radius: 16px;
          background: #fff;
          padding: 15px;
          z-index: 10;
          box-shadow: 0px 4px 27px 1px rgba(34, 60, 80, 0.2);
          display: none; }
          .calculator .calculator__loanInfo .calculator__loanParam #percents_key #percents_key-describe:after {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            left: 35%;
            bottom: -35px;
            right: 25px;
            border: 25px solid;
            border-color: #ffffff transparent transparent transparent; }
      .calculator .calculator__loanInfo .calculator__loanParam #percents_value {
        color: #208648;
        text-decoration: line-through; }
      .calculator .calculator__loanInfo .calculator__loanParam #cashback {
        color: #208648; }
    .calculator .calculator__loanInfo .calculator__loanParam.notification {
      grid-template-columns: 1fr; }
      .calculator .calculator__loanInfo .calculator__loanParam.notification .loanParam_key {
        display: grid;
        grid-template-columns: 20px 1fr; }
  .calculator .calculator__btn {
    display: block; }
  .calculator .calculator__loanTerms {
    text-decoration: none;
    margin-top: 1rem;
    color: #000; }
    .calculator .calculator__loanTerms span {
      border-bottom: 2px dotted #000; }
  @media (min-width: 2460px) and (max-width: 2600px) {
    .calculator {
      right: 50rem; } }
  @media (min-width: 2000px) and (max-width: 24460px) {
    .calculator {
      right: 30rem; } }
  @media (min-width: 1740px) and (max-width: 2000px) {
    .calculator {
      right: 18rem; } }
  @media (min-width: 1620px) and (max-width: 1740px) {
    .calculator {
      right: 12rem; } }
  @media (max-width: 1600px) {
    .calculator {
      top: 100px;
      right: 12rem; } }
  @media (max-width: 1440px) {
    .calculator {
      top: 20px;
      right: 4rem; } }
  @media (max-width: 1200px) {
    .calculator {
      position: static;
      margin: 3rem auto; } }
  @media (max-width: 560px) {
    .calculator {
      width: 380px; } }
  @media (max-width: 425px) {
    .calculator {
      width: 350px; } }
  @media (max-width: 375px) {
    .calculator {
      width: 310px; } }

#geoCalculator {
  top: 200px; }
  @media (max-width: 1600px) {
    #geoCalculator {
      top: 150px;
      right: 12rem; } }
  @media (max-width: 1440px) {
    #geoCalculator {
      right: 4rem; } }
  @media (max-width: 1200px) {
    #geoCalculator {
      position: absolute;
      left: 4em; } }
  @media (max-width: 620px) {
    #geoCalculator {
      width: 380px; } }
  @media (max-width: 500px) {
    #geoCalculator {
      left: 2em; } }
  @media (max-width: 425px) {
    #geoCalculator {
      width: 350px;
      left: 1em; } }
  @media (max-width: 375px) {
    #geoCalculator {
      width: 310px; } }
  @media (max-width: 340px) {
    #geoCalculator {
      left: 5px; } }

.calculatorAnchor {
  width: fit-content;
  text-decoration: none;
  background: #208648;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  border: 5px solid;
  box-shadow: 0px 0px 0px 8px rgba(32, 134, 72, 0.2);
  border: transparent;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transform: rotate(90deg);
  position: fixed;
  right: -90px;
  top: 70%;
  transition: opacity linear .4s;
  opacity: 1;
  z-index: 25; }
  .calculatorAnchor .calculatorAnchor__icon {
    width: 20px;
    height: 30px;
    transform: rotate(-90deg);
    margin-right: 10px; }
  .calculatorAnchor .calculatorAnchor__title {
    color: #fff; }
  @media (max-width: 420px) {
    .calculatorAnchor {
      top: 20%; } }

.calculatorAnchor.hidden {
  opacity: 0; }

.breadCrumbs {
  padding: 2em; }
  .breadCrumbs .breadCrumbs__path {
    display: flex;
    flex-wrap: wrap; }
    .breadCrumbs .breadCrumbs__path span {
      font-size: 11px;
      color: #808285; }
      .breadCrumbs .breadCrumbs__path span a {
        margin-right: 7px;
        font-size: 11px;
        color: #808285; }
      .breadCrumbs .breadCrumbs__path span span {
        margin-left: 7px;
        font-size: 11px;
        color: #808285; }

.topAnchor {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 85%;
  z-index: 100;
  opacity: 1; }
  .topAnchor .topAnchor__btn {
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 0 1rem;
    font-size: 26px;
    color: #000000;
    transition: linear .4s; }
    .topAnchor .topAnchor__btn:hover, .topAnchor .topAnchor__btn:active {
      background: #208648;
      color: #fff;
      border-color: #208648; }
    .topAnchor .topAnchor__btn:active {
      box-shadow: 1px 1px 24px 0px rgba(0, 0, 0, 0.5) inset; }

.topAnchor.hidden {
  opacity: 0;
  left: 35%; }

.payForm.feedback {
  margin: 2em auto; }
  @media (max-width: 1200px) {
    .payForm.feedback {
      margin: 1em; } }

.payForm__title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 500; }
  .payForm__title:after {
    content: "";
    width: 3rem;
    height: 2px;
    background: #289a55;
    position: absolute;
    left: 0;
    bottom: -10px; }

.payForm__btn {
  display: block;
  margin: 10px auto;
  background: #289a55;
  color: #fff;
  font-size: 14px;
  padding: 1em 3em;
  border-radius: 12px;
  text-align: center; }
  .payForm__btn:active {
    transition: linear 0.1s;
    box-shadow: inset -2px 4px 5px 0px rgba(0, 0, 0, 0.45); }

.payForm__input {
  width: 100%;
  height: 55px;
  background: #f0f0f0;
  border: 1px solid #999999;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding-left: 1rem; }
  .payForm__input:focus {
    outline: none;
    border: 1px solid #289a55;
    background: #fff;
    box-shadow: 0px 0px 2px 3px rgba(40, 154, 85, 0.3); }

.doubleInput {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .doubleInput .capcha__inputContainer {
    width: 50%; }
  @media (max-width: 560px) {
    .doubleInput .capcha__inputContainer {
      width: 100%; } }

.feedback .feedback__wrapper .feedback__rightSection .feedback__btn.inactive,
.payForm__btn.inactive {
  background: rgba(40, 154, 85, 0.7);
  box-shadow: 0px 12px 14px -2px rgba(32, 134, 72, 0.7); }

.payData {
  border: 1px solid #289a55;
  border-radius: 16px;
  padding-left: 0;
  padding: 3em;
  max-width: 650px; }
  .payData .dataRow {
    margin-bottom: 1em; }
    .payData .dataRow span {
      font-size: 14px; }
    .payData .dataRow .payData__param {
      display: inline-block;
      width: 208px;
      color: silver; }
    .payData .dataRow .payData__sum {
      color: red; }
    .payData .dataRow .payData__paid {
      color: #289a55; }

.payData__payAction {
  align-self: center;
  width: 100%;
  max-width: 650px;
  display: flex;
  margin-top: 1em;
  padding: 1em 0;
  align-items: center; }
  .payData__payAction .button.payForm__btn {
    margin: 0;
    margin-left: 1em;
    height: 100%;
    width: 50%; }
  .payData__payAction .payForm__input {
    margin-bottom: 0; }

.payForm__call {
  margin-top: 2em; }

#toMain {
  margin-left: 0;
  padding: 1em 4em; }

.popup__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1010; }
  .popup__wrapper .popup__msg {
    background: url("../public/BG-logo.png") no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-color: #FFF;
    padding: 2em 4em;
    border-radius: 16px;
    position: relative;
    max-width: 650px; }
    .popup__wrapper .popup__msg .popup__closeBtn {
      font-weight: 800;
      font-size: 26px;
      position: absolute;
      right: 1em;
      top: 1em;
      color: #000; }
      .popup__wrapper .popup__msg .popup__closeBtn:hover {
        color: #289a55; }
  .popup__wrapper h3 {
    margin-top: 1em;
    font-weight: 400; }

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'inter'; }

html {
  overflow-x: hidden; }

body {
  background: linear-gradient(180deg, rgba(246, 248, 250, 0) 67.5%, #F6F8FA 100%), linear-gradient(72.35deg, #FFFAE2 2.59%, #E9F9FE 49.17%, #FFFFFF 93.77%); }

.container {
  max-width: 1280px;
  margin: auto; }

a {
  text-decoration: none; }

.squares {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7em;
  color: #808285; }
  .squares svg {
    width: 100px;
    height: 100px; }
    @media (max-width: 425px) {
      .squares svg {
        width: 72px;
        height: 72px; } }

.button {
  display: inline-block;
  margin-top: 2em;
  background: #208648;
  border: none;
  border-radius: 12px;
  padding: 15px 25px;
  color: #fff;
  letter-spacing: 1.5px;
  font-size: 14px;
  box-shadow: -3px 12px 22px -13px #208648; }
  .button:hover {
    box-shadow: -3px 8px 22px -3px #208648; }
  @media (max-width: 600px) {
    .button {
      font-size: 12px; } }

.collapse__btn {
  background: transparent;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px 10px;
  vertical-align: baseline;
  margin-top: 2rem;
  transition: linear .5s; }
  .collapse__btn i {
    margin-left: 10px; }
  .collapse__btn:hover {
    color: #fff;
    background: #208648;
    transition: linear .5s; }

.underlined__title {
  font-size: 34px;
  margin-bottom: 1em;
  position: relative;
  color: #000000;
  line-height: 1.2; }
  .underlined__title:after {
    content: "";
    width: 80px;
    height: 2px;
    background: #208648;
    position: absolute;
    left: 0;
    bottom: -15px; }

.underlined__subtitle {
  color: #999999;
  font-size: 14px;
  line-height: 1.4rem; }

.collapseText,
.collapseText_notFade {
  position: relative;
  overflow: hidden;
  transition: linear 1s;
  max-height: 100%; }
  .collapseText:after,
  .collapseText_notFade:after {
    content: "";
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%);
    visibility: hidden; }

.collapseText.hidden,
.collapseText_notFade.hidden {
  max-height: 90px;
  transition: linear .6s; }

.collapseText.hidden.fade:after {
  visibility: visible; }

p a {
  color: #208648; }

ul > li > a {
  color: #208648; }

/*# sourceMappingURL=main.css.map */
