/* ОБЩИЕ КОНФИГИ */

.footer-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-subBlock {
  width: 100%;
}
.arrow-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.child-container:first-child p {
  text-align: left;
}
.child-container:last-child p {
  text-align: right;
}
/* ОБЩИЕ МЕДИА ЗАПРОСЫ */
@media (max-width: 1199px) {
  .parent-container {
    gap: 15%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* FOOTER */
  .child-container {
    width: 100%;
    height: fit-content;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .child-container {
    width: 100%;
    height: fit-content;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .parent-container {
    flex-direction: row;
  }
}
@media (max-width: 419px) {
  /* FOOTER */

  .parent-container {
    flex-direction: column;
    gap: 20px;
  }
  .child-container:first-child p {
    text-align: center;
  }
  .child-container:last-child p {
    text-align: center;
  }
}
