
/*---footer---*/
.footer {
  --text-color: #e8e8e8;
  background: #020202;
  padding: 10rem var(--padding-wrapper) 3rem;
  color: #fff;
  
}
.footer ::placeholder {
  color: #ccc;
}
.footer .footer-info {
  /* font-size: min(1.6rem, 16px); */
  font-size: 16px;
}
.footer .follow-us {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer .input-group {
  display: -webkit-flex;
  display: flex;
  background: #939393;
  border-radius: 6rem;
}
.footer .follow-us li {
  margin: 0 30px;
}
.footer .follow-us a {
  color: #fff;
  font-size: 28px;
}
.footer .follow-us a:hover {
  color: var(--theme-color);
}
.footer .title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.14;
  text-align: center;
  margin-bottom: 6rem;
}
.footer .input-group input {
  height: 10rem;
  color: #fff;
  padding: 0 4rem;
  background: #939393;
  width: 100%;
  flex: 1;
  font-size: 2.8rem;
  border-radius: 6rem 0 0 6rem;
}
.footer .input-group input:-webkit-autofill {
  -webkit-text-fill-color: rgba(255,255,255, 0.29);
}
.footer .input-group button {
  height: 10rem;
  background: #2A2A2A;
  color :#fff;
  width: 100%;
  max-width: 32rem;
  font-size: 2.8rem;
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-radius: 6.5rem;
  justify-content: center;
  gap: 1.2rem
}

.footer .input-group button span {
  /* font-size: 2.8rem; */
  color: #fff;
  font-weight: 600;
}
.footer .input-group button i {
  font-size: 4.8rem;
}
.footer .input-group button:hover {
  color: #fff;
}
.footer .input-group button:hover span {
  color: #fff;
}
.footer .input-group button:hover .arrow {
  color: #fff;
}
.footer .customer-service a {
  text-decoration: underline;
  color: rgba(255,255,255,0.85);
}
.footer .customer-service a:hover {
  color: var(--theme-color);
}
.footer .customer-service li {
  margin-top: 24px;
  color: rgba(255,255,255,0.85);
}
.footer .customer-service li p {
  display: inline-block;
  margin-left: 8px;
  color: rgba(255,255,255,0.5);
}
.footer .footer-info {
  padding-top: 1.25vw;
  margin-top: 12rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
}
.footer .follow-us {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer .input-group {
  display: -webkit-flex;
  display: flex;
  max-width: 96rem;
  margin: 0 auto;
}

.footer .footer-info {
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
}
.footer-info .copyright, .footer-info ul, .footer-info li {
  display: inline-block;
}
.footer-info .copyright {
  margin-right: 30px;
}
.footer-info li {
  position: relative;
  margin-right: 24px;
}
.footer-info li:after {
  content: '';
  position: absolute;
  display: block;
  right: -14px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: var(--text-color)
}
.footer-info li:last-child {
  margin-right: 0;
}
.footer-info li:last-child:after {
  display: none;
}
.footer-info li a {
  color: var(--text-color);
}
.footer-info li a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.back-to-top {
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  width: 175px;
  margin: 92px auto 0;
}
.back-to-top img {
  width: 100%;
  margin-bottom: 60px;
}
.back-to-top i {
  display: block;
  transform: rotate(180deg);
  margin: 60px 0 12px;
}

@media (max-width: 828px){

  /* footer */
  .footer {
    padding: 4rem 2.4rem 2.4rem;
  }
  .footer .footer-info {
    font-size: 1.3rem;
    flex-direction: column;
  }
  .footer .title {
    font-size: 2rem;
    margin-bottom: 3.2rem;
  }
  .footer .input-group {
    flex-direction: column;
    background: transparent;
  }
  .footer .input-group input {
    border-radius: 4rem;
    margin-bottom: 1.6rem;
    height: 4.8rem;
    font-size: 1.6rem;
    flex:initial;
    padding: 1.2rem 1.6rem;
  }
  .footer .input-group button {
    height: 4.8rem;
    font-size: 1.8rem;
    max-width: 20rem;
    margin: 0 auto;
    gap: 0.8rem;
  }
  .footer .input-group button i {
    font-size: 2.4rem;
  }
  .footer .footer-info {
    margin-top: 4rem;
    text-align: center;
  }
  .footer-info .copyright {
    margin-right: 0;
    margin-bottom: 4px;
  }
  /* .back-to-top {
    margin-top: 60px;
    width: 118px;
  }
  .back-to-top i {
    margin-top: 40px;
  } */
}