footer {
  background: #f8fafc;
  width: 100%;
  margin-top: 80px;
}

footer>.container {
  padding-top: 75px;
  padding-bottom: 90px;
  display: flex;
  justify-content: space-between;
}

footer .footerLeft {
  display: flex;
  flex-direction: column;
}

footer .footerLogo {
  display: flex;
  align-items: center;
}

footer .footerLogo img {
  width: auto;
  max-width: 100%;
}

footer .footerLogo .text {
  margin: 0 30px;
}

footer .footerLogo .text h3 {
  text-align: center;
  font-size: 20px;
  color: rgb(0, 68, 155);
  text-transform: uppercase;
  line-height: 2;
  font-weight: bold;
  margin: 0;
}

footer .footerLogo .text h4 {
  font-size: 30px;
  color: rgb(218, 0, 0);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-weight: bold;
}

footer .contact {
  margin-top: 40px;
  display: flex;
}

footer .contact .text {
  display: flex;
  flex-direction: column;
}

footer .contact .text span {
  display: flex;
  align-items: flex-start;
}

footer .contact .text span img {
  width: 30px;
  margin-right: 8px;
}

footer .contact .text span p {}

footer .contact .EWM {
  display: flex;
  align-items: center;
}

footer .contact .EWM .img {
  margin: 5px;
}

footer .contact .EWM .img p {
  margin: 0;
  text-align: center;
}

.footeRight {
  width: 50%;
}

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

.footerNavList {
  display: flex;
  flex-direction: column;
}

.footerNavList a:first-child {
  font-size: 18px;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  line-height: 3;
  font-weight: bold;
}

.footerNavList a {
  font-size: 16px;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  line-height: 2;
}

.footer_bottom {
  background: #333333;
  line-height: 60px;
  color: #fff;
}

@media screen and (max-width: 992px) and (min-width:0px) {
  footer .footerLogo img {
    max-width: 200px;
  }

  .footeRight {
    display: none;
  }
}

@media screen and (max-width: 640px) and (min-width:0px) {
  footer .footerLogo {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  footer .contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer_bottom {
    line-height: 2;
    padding: 15px 0;
    font-size: 12px;
    text-align: center;
  }

  .footer_bottom a {
    line-height: 2;
    padding: 15px 0;
    font-size: 12px;
    font-family: auto;
  }

  footer .footerLeft {
    width: 100%;
  }
}