.ppc-site-footer {
 padding: 30px 0 20px;
 background: #1C1B20;
 font-family: "Source Code 3", "IBM Plex Mono", monospace;
}

.ppc-site-footer .ppc-footer-container {
 max-width: 1390px;
 margin: 0 auto;
 padding: 0 15px;
}

.ppc-site-footer .footer__top {
 padding-bottom: 10px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.ppc-site-footer .footer__logo {
 width: 203px;
 max-width: 203px;
 height: 55px;
 display: block;
}

.ppc-site-footer .footer__logo img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}

.ppc-site-footer .footer__nav {
 display: block;
}

.ppc-site-footer .footer__menu {
 display: flex;
 align-items: center;
 gap: 35px;
 list-style: none;
 margin: 0;
 padding: 0;
}

.ppc-site-footer .footer__menu li {
 margin: 0;
 padding: 0;
}

.ppc-site-footer .footer__nav a {
 color: #FFF;
 font-size: 16px;
 font-weight: 400;
 line-height: 20px;
 transition: all .3s;
 text-decoration: none;
}

.ppc-site-footer .footer__nav a:hover {
 color: #E85711;
}

.ppc-site-footer .btn {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 transition: all .3s;
 text-decoration: none;
}

.ppc-site-footer .btn:hover {
 transform: translateY(-2px);
}

.ppc-site-footer .btn:active {
 transform: translateY(0);
}

.ppc-site-footer .btn--accent {
 border-radius: 333px;
 background: linear-gradient(90deg, #E85711 0%, #F37A1E 100%);
 color: #fff;
}

.ppc-site-footer .btn--accent:hover {
 filter: brightness(1.08);
}

.ppc-site-footer .btn__footer {
 padding: 15px 25px;
 gap: 10px;
}

.ppc-site-footer .footer__middle {
 border-bottom: 1px solid rgba(255, 255, 255, 0.20);
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 0 20px;
}

.ppc-site-footer .footer__partner {
 display: flex;
 align-items: center;
 gap: 10px;
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 line-height: 15px;
 margin: 0;
 text-decoration: none;
}

.ppc-site-footer .footer__partner img {
 width: 32px;
 height: auto;
}

.ppc-site-footer .footer__mail {
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 line-height: 15px;
 transition: all .3s;
 border-bottom: 1px solid #fff;
 text-decoration: none;
}

.ppc-site-footer .footer__mail:hover {
 color: #E85711;
 border-color: #E85711;
}

.ppc-site-footer .footer__bottom {
 padding-top: 10px;
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 line-height: 15px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.ppc-site-footer .footer__bottom p {
 margin: 0;
}

.ppc-site-footer .footer-link {
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 line-height: 15px;
 transition: all .3s;
 text-decoration: none;
}

.ppc-site-footer .footer-link:hover {
 color: #E85711;
}

.ppc-site-footer .footer__legal {
 display: block;
}

.ppc-site-footer .footer__legal-menu {
 display: flex;
 align-items: center;
 gap: 18px;
 list-style: none;
 margin: 0;
 padding: 0;
}

.ppc-site-footer .footer__legal-menu li {
 margin: 0;
 padding: 0;
}

.ppc-site-footer .footer__legal-menu a {
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 line-height: 15px;
 transition: all .3s;
 text-decoration: none;
}

.ppc-site-footer .footer__legal-menu a:hover {
 color: #E85711;
}

@media (max-width: 1200px) {
 .ppc-site-footer .ppc-footer-container {
  padding: 0 20px;
 }

 .ppc-site-footer .footer__top,
 .ppc-site-footer .footer__middle,
 .ppc-site-footer .footer__bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
 }

 .ppc-site-footer .footer__nav {
  width: 100%;
 }

 .ppc-site-footer .footer__menu {
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
 }

 .ppc-site-footer .footer__legal-menu {
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 14px;
 }
}

@media (max-width: 767px) {
 .ppc-site-footer {
  padding: 24px 0 18px;
 }

 .ppc-site-footer .ppc-footer-container {
  padding: 0 12px;
 }

 .ppc-site-footer .footer__logo {
  width: 154px;
  max-width: 154px;
  height: 42px;
 }

 .ppc-site-footer .footer__menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
 }

 .ppc-site-footer .footer__legal-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
 }

 .ppc-site-footer .footer__partner {
  align-items: flex-start;
 }

 .ppc-site-footer .btn__footer {
  width: 100%;
 }
}