footer {
  background-color: #ECECEC;
}
footer .container .f-con {
  padding-top: 4.75rem;
  padding-bottom: 3.625rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .container .f-con .logos {
  display: flex;
  align-items: center;
  gap: 1.325rem;
}
footer .container .f-con .logos .logo {
  height: 45px;
  display: block;
  background-color: #f5f5f5;
}
footer .container .f-con .logos .logo img {
  height: 100%;
  display: block;
  width: 200px;
}
footer .container .f-con .logos .space {
  width: 1px;
  background-color: rgba(112, 112, 112, 0.2);
  display: block;
  height: 2.5rem;
}
footer .container .f-con .menus {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 372px;
}
footer .container .f-con .menus ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.75rem;
}
footer .container .f-con .menus ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(50% - 0.875rem);
}
footer .container .f-con .menus ul li a {
  text-decoration: none;
  font-size: 1.25rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.35s ease-in-out;
  position: relative;
}
footer .container .f-con .menus ul li a:hover {
  color: #F06423;
}
footer .container .f-con .menus ul li a:hover::after {
  width: 100%;
}
footer .container .f-con .menus ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #F06423;
  transition: width 0.35s ease-in-out;
}
footer .container .f-con .menus .socials {
  display: flex;
  gap: 1.125rem;
}
footer .container .f-con .menus .socials .social {
  border-radius: 50%;
  border: 1px solid #F06423;
  color: #F06423;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .f-con .menus .socials .social:hover {
  background-color: #F06423;
  color: #fff;
}
footer .container .copyright {
  border-top: 1px solid #D4D4D4;
  padding: 1.325rem 0;
}
footer .container .copyright p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.33;
}
