.container-w-100p {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #f5f5f5;
    height: 100%;
}
.container-w-1200 {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.column {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}
.con-col-1-ar-r {
    display: flex;
    align-items: center;
}
.footer-btn-sty {
    text-decoration: none;
    color: #1e1e1e;
}
.h6-footer-sty {
    padding: 0;
    margin: 10px 0;
    display: none;
}
#bg-solid-color {
    background: #03339F;
    color: #fff;
    height: auto;
}
.footer-copyright {
    margin: 30px 0;
    font-size: 20px;
}
@media (max-width: 435px) {
  .container-w-1200 {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .column {
    width: 100%;
    padding: 10px 0;
  }

  .footer-btn-sty {
    font-size: 16px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
  }

  .h6-footer-sty {
    display: block;
    font-size: 14px;
    text-align: center;
  }

  #bg-solid-color {
    padding: 20px 10px;
  }
}