.myfooter {
  border-top: 16px solid #037fc8;
  background: #014c78;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.myfooter .footer_l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.myfooter .footer_l .footer_logo {
  display: flex;
  align-items: center;
}
.myfooter .footer_l .footer_logo img {
  width: 200px;
}
.myfooter .footer_l .footer_c {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  margin: 10px 0;
}
.myfooter .footer_r {
  display: flex;
  align-items: end;
}
.myfooter .footer_r a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  margin: 10px 0 10px 15px;
}
.myfooter .goTop {
  cursor: pointer;
  position: absolute;
  right: 60px;
  padding: 3px;
  background: #349edb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myfooter .goTop img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .myfooter {
    justify-content: space-around;
  }
  .myfooter .footer_r {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
  }
  .myfooter .goTop {
    right: 30px;
  }
}
@media screen and (max-width: 600px) {
  .myfooter {
    flex-direction: column-reverse;
  }
  .myfooter .footer_l {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .myfooter .footer_r {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .myfooter .footer_r a {
    margin: 10px 15px;
  }
  .myfooter .goTop {
    top: 30px;
  }
}
@media screen and (max-width: 400px) {
  .myfooter {
    border-top-width: 4vw;
    padding: 7.5vw 15vw;
  }
  .myfooter .footer_l .footer_logo img {
    width: 50vw;
  }
  .myfooter .footer_l .footer_c {
    font-size: 3.5vw;
    margin: 2.5vw 0;
  }
  .myfooter .footer_r a {
    font-size: 3.75vw;
    margin: 2.5vw 3.75vw;
  }
  .myfooter .goTop {
    top: 7.5vw;
    right: 4.5vw;
    padding: 1vw;
    border-radius: 2vw;
  }
  .myfooter .goTop img {
    width: 7.5vw;
  }
}
