/* footer */
.footer {
  background: #000;
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 2;
}
.footer-row {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 60px 0;
  max-width: 1440px;
}
.footer-row  .explore {
  width: 30%;
}
.footer-row  .explore a {
  color: #fff;
  font-size: 18px;
}
.footer-row .subscribe,
.footer-row .follow-us {
  position: relative;
  width: 40%;
}
.footer-row .subscribe {
  padding-right: 7%;
}
.footer-row .title {
  font-size: 28px;
  line-height: 41px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-row .des{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer .input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.footer .input-group i {
  position: absolute;
  left: 16px;
  font-size: 18px;
}
.footer .input-group input {
  width: 600px;
  height: 42px;
  line-height: 42px;
  background: #D8D8D8;
  color: #333;
  border-radius: 24px;
  padding: 0 4px 0 16px;
  transition: all .2s ease;
}
.footer .input-group input:-webkit-autofill{
  box-shadow: none;
  -webkit-text-fill-color: black
}
.footer .input-group input:focus{
  background-color: #fff;
}
.footer .input-group input::placeholder{
  color: #757575;
}
.footer .input-group button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 4px;
  width: 124px;
  height: 34px;
  border-radius: 18px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  transition: all .2s ease;
}
.footer .input-group.focus input {
  background-color: #555;
  color: #fff;
}
.footer .input-group button:hover {
  background-color: var(--theme-color-hover);
  color: #fff;
}
.footer .tips {
  margin-top: 4px;
  position: absolute;
  top: 100%;
  width: 100%;
  max-width: 360px;
  padding: 8px 16px;
  color: #000;
  background-color: #fff;
}
.footer .tips i {
  font-size: 16px;
  margin-right: 6px;
  color: #009900;
}
.footer .tips i,.footer .tips span {
  vertical-align: middle;
}
.footer .description {
  margin: 8px 0 16px;
}
.footer .follow-us ul{
  display: flex;
}
.footer .follow-us li {
  float: left;
  margin-right: 32px;
}
.footer .follow-us li:last-child{
  margin-right: 0;
}
.footer .follow-us a {
  width: 40px;
  line-height: 40px;
  height: 40px;
  display: block;
  border-radius: 100%;
  font-size: 18px;
  text-align: center;
  color: #fff;
  border: 1px solid #999;
  transition: all .2s ease;
}
.follow-us .title {
  margin-bottom: 20px;
}
.footer .follow-us a:hover {
  color: #fff;
  background: var(--theme-color);
  border: 1px solid var(--theme-color)
}
.footer .footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 0 48px;
  text-align: left;
  border-top: 1px solid var(--theme-color);
  font-size: 16px;
  color: #666;
}
.footer .footer-bottom>p{
  width: 50%;
  min-width: 900px;
  text-transform:uppercase;
}
.footer-privacybox {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-privacybox a {
  margin-left: 20px;
  position: relative;
  color: #666;
}
.footer-privacybox a:after {
  content: '';
  position: absolute;
  right: -12px;
  top: 4px;
  width: 1px;
  height: 12px;
  background: #595959;
}
.footer-privacybox a:last-child::after {
  background: none;
}
.footer-privacybox a:hover{
  color: var(--theme-color);
}

@media (max-width: 1023px) {
  .footer-row {
    flex-direction: column;
  }
  .footer .footer-bottom {
    text-align: left;
  }
    .footer .footer-bottom > p{
      width: 100%;
      min-width: 320px;
    }
  .footer-row .subscribe {
    max-width: 476px;
    width: auto;
  }
  .footer-row .follow-us {
    margin: 36px 0;
  }
  .footer-row .title{
    font-size: 22px;
  }
  .follow-us ul {
    padding-top: 0;
  }

}
@media (max-width: 767px) {
  .footer-row {
    display: block;
    padding: 38px 0 32px;
  }
  .footer-row .subscribe,
  .footer-row .follow-us {
    width: 100%;
    margin-right: 0;
  }
  .footer-row .follow-us {
    margin: 24px 0;
  }
  .footer-privacybox {
    display: block;
  }
  .footer-privacybox a:first-child {
    margin-left: 0;
  }

}