.footer {
  background: #1E1E1E;
  padding: 46px 0 20px;
  border-radius: 46px 46px 0 0;
}
.footer .icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .icon-box i {
  width: 50px;
  height: 50px;
  border: 1px solid var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: var(--red);
}
.footer a:hover { color: #fff; }
.footer .social-icons i {
  padding: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.footer-bottom {
border-top: 1px solid #333;
margin-top: 40px;
padding-top: 15px;
text-align: center;
color: #aaa;
}
.footer .contact-info a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.footer .contact-info a:hover {
  color: var(--yellow);
}
.footer .contact-info .icon-box .text { width: 50%;}
.footer .social-icons .icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  padding: 12px;
}
.footer .social-icons .icon img {
  filter: invert(1);
}
.footer .social-icons li:nth-child(1) .icon { padding: 15px;}
.footer .social-icons .icon:hover {
  background: var(--red);
}
.footer .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.footer .address .icon {
  background: var(--red);
  border-radius: 6px;
  width: 48px;
  height: 48px;
  padding: 14px;
}
.footer .f-list li a {
  color: #fff;
}
.footer .f-list li { margin-bottom: 14px; position: relative; padding-left: 11px;}
.footer .f-list li::before {
  content: "";
  background: url(../images/icons/angle-right-white.svg) no-repeat;
  width: 6px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 7px;
  background-size: cover;
}
.footer .f-list li:nth-last-child(1) { margin-bottom: 0;}
.footer .f-list li a:hover {color: var(--yellow);}
.footer .about p { padding-right: 20px;}
.footer-logo { width: 170px;}