@media screen and (min-width: 1220px) {

  /* ------------footer------------ */
  footer {
    width: 100%;
    height: 400px;
    background-color: #a3d4eb;
    display: flex;
    flex-direction: column;
    
  }

  .foot-top {
    height: 375px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

  }

  .ft-1 {

    width: 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .ft-1 h1 {
    margin: 15px 0px 0px 0px;
  }

  .ft-1 a {
    margin-bottom: 10px;
  }

  .foot-bottom {
    height: 25px;
    display: flex;
    justify-content: center;
  }

  .foot-bottom p {
    margin: 0px;
  }
}

@media screen and (max-width: 1220px) {

/* ------------footer------------ */
  footer {
    width: 100%;
    height: 100%;
    background-color: #a3d4eb;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
  }

  .foot-top {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

  }

  .ft-1 {

    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .ft-1 h1 {
    margin: 15px 0px 0px 0px;
    font-size: 20px;
  }
  .ft-1 h2{
    font-size: 18px;
  }

  .ft-1 a {
    margin-bottom: 10px;

  }

  .foot-bottom {
    height: 25px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .foot-bottom p {
    margin: 0px;
  }

}