footer {
  position: relative;
  background: #14468B;
  padding-top: 80px;
}

.footerTop {
  display: flex;
  padding-bottom: 80px;
}

.footerTop .footerNav {
  width: 60%;
  display: flex;
  justify-content: space-between;
}

.footerNav .dropdown {
  display: flex;
  flex-direction: column;
}

.footerNav .dropdown a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 3;
  text-align: left;
}

.footerNav .dropdown a:first-child {
  margin-bottom: 15px;
  color: #FFF;
  font-size: 18px;
}

.footerTop .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footerTop .right .desc {
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.footerBottom {
  border-top: 1px solid #fff;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.footerBottom a {
  color: #fff;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 1440px) and (min-width:0px) {
  footer {
    padding-top: 45px;
  }

  .footerTop {
    display: flex;
    padding-bottom: 45px;
  }

  .footerNav .dropdown a {
    line-height: 2;
    text-align: left;
  }
}

@media screen and (max-width: 1200px) and (min-width:0px) {}

@media screen and (max-width: 992px) and (min-width:0px) {}

@media screen and (max-width: 640px) and (min-width:0px) {
  .footerTop .footerNav {
    display: none;
  }

  .footerTop .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footerTop .right .desc {
    margin-top: 30px;
    text-align: center;
  }
}