.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: #0d47a1;
}

.footerContent {
  height: 50px;
  width: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.footerCenter {
  display: flex;
  flex-direction: row;
  color: #ffffff;
}

.footerCenter>.navLink {
  color: #ffffff;
}

.footerLinkUnderline {
  width: 0%;
  margin: auto;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.navLink:hover .footerLinkUnderline {
  width: 100%;
}


.footerRight {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footerRight>a>img {
  height: 35px;
  width: 35px;
  margin-left: 35px;
}

@media only screen and (max-width : 1650px) {
  .footerContent {
    width: 1200px;
  }
  .footerBrand {
    font-size: 30px;
  }
}

@media only screen and (max-width : 1250px) {
  .footerContent {
    width: 900px;
  }
  .footerBrand {
    font-size: 26px;
  }
  .footerCenter>.navLink {
    margin: auto 6px;
  }
  .footerCenter>.navButtonRow>.navButton {
    padding: 5px 10px;
  }
  .footerRight>a>img {
    height: 30px;
    width: 30px;
    margin-left: 15px;
  }
}

@media only screen and (max-width : 992px) {
  .footer {
    padding: 20px 0px;
    height: 330px;
    align-items: flex-start;
    justify-content: center;
  }
  .footerContent {
    width: 300px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footerCenter {
    flex-direction: column;
  }
  .footerBrand {
    font-size: 30px;
  }
  .footerCenter>.navLink {
    font-size: 20px;
    padding: 5px 0px;
  }
  .footerLinkUnderline {
    opacity: 0;
  }
  .navButtonRow {
    margin: 12px 0px;
  }
  .footerCenter>.navButtonRow>.navButton {
    padding: 5px 10px;
    font-size: 20px;
  }
  .footerRight {
    width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footerRight>a>img {
    height: 35px;
    width: 35px;
    margin-left: 0px;
  }
}