/* footer */
.footer {
  background: #222;
  color: #999;
  text-align: left;
  position: relative;
}
.footer-row {
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1000px;
}
.footer-row .subscribe {
  width: 50%;
  margin-right: 20%;
  position: relative;
}
.footer-row .follow-us {
  width: 50%;
}
.footer-row .title {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer .input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.input-group i {
  position: absolute;
  left: 16px;
  font-size: 18px;
}
.footer .input-group input {
  height: 42px;
  line-height: 42px;
  max-width: 476px;
  width: 100%;
  background: #333;
  color: #777;
  border-radius: 20px;
  padding: 0 4px 0 48px;
  transition: all .2s ease;
}
.footer .input-group button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 4px;
  width: 124px;
  height: 34px;
  border-radius: 18px;
  background-color: #000;
  color: #999;
  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);
  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 li {
  float: left;
  margin-right: 20px;
}
.footer .follow-us a {
  width: 32px;
  line-height: 32px;
  height: 32px;
  display: block;
  border-radius: 100%;
  font-size: 18px;
  text-align: center;
  color: #999;
  border: 1px solid #999;
  transition: all .2s ease;
}
.follow-us ul {
  padding-top: 5px;
}
.footer .follow-us a:hover {
  color: #fff;
  background: var(--theme-color);
  border: 1px solid var(--theme-color)
}
.footer .footer-bottom {
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-privacybox {
  display: inline;
}
.footer-privacybox a {
  margin-left: 20px;
  position: relative;
  color: #999;
}
.footer-privacybox a:nth-child(-n+2):after {
  content: '';
  position: absolute;
  right: -12px;
  top: 4px;
  width: 1px;
  height: 12px;
  background: #595959;
}

.footer-style-fix{
    position: fixed;
    width: 100%;
    bottom: 0;
}
@media (max-width: 1023px) {
  .footer-row {
    flex-direction: column;
  }
  .footer .footer-bottom {
    text-align: left;
  }
  .footer-row .subscribe {
    margin-bottom: 36px;
    max-width: 476px;
    width: auto;
  }
  .follow-us ul {
    padding-top: 0;
  } 
  
}
@media (max-width: 767px) {
  .footer-row {
    display: block;
    padding: 24px 0;
  }
  .footer-row .subscribe,
  .footer-row .follow-us {
    width: 100%;
    margin-right: 0;
  }
  .footer-row .subscribe {
    margin-bottom: 24px;
  }
  .footer-privacybox {
    display: block;
  }
  .footer-privacybox a:first-child {
    margin-left: 0;
  }

}