/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background: #131111;
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget .logo {
  margin-bottom: 30px;
}
.single-footer-widget p {
  letter-spacing: 0.05em;
  color: #a8a8a8;
  margin-bottom: 0;
}
.single-footer-widget a {
  color: #a8a8a8;
}
.single-footer-widget .social-links {
  margin-top: 30px;
}
.single-footer-widget .social-links span {
  display: block;
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.single-footer-widget .social-links li {
  display: inline-block;
  margin-right: 25px;
}
.single-footer-widget .social-links li:last-child {
  margin-right: 0;
}
.single-footer-widget .social-links li a i {
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-size: 18px;
}
.single-footer-widget h3 {
  font-size: 20px;
  color: var(--whiteColor);
  margin-bottom: 30px;
  font-weight: 600;
}
.single-footer-widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget ul li {
  list-style-type: none;
  margin-bottom: 15px;
  color: #a8a8a8;
}
.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul li a:hover {
  color: var(--whiteColor);
}
.single-footer-widget .list li {
  margin-bottom: 20px;
}
.single-footer-widget .list li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .list li a:hover {
  color: var(--whiteColor);
}
.single-footer-widget .info-list li {
  margin-bottom: 20px;
}
.single-footer-widget .info-list li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .info-list li span {
  color: var(--whiteColor);
}
.single-footer-widget .info-list li a:hover {
  color: var(--whiteColor);
}
.single-footer-widget:nth-child(1) {
  padding-right: 3rem !important;
}
.single-footer-widget:nth-child(2) {
  padding-left: 3rem !important;
}
.single-footer-widget:nth-child(3) {
  padding-left: 3rem !important;
}

/*================================================
Copyright Area CSS
=================================================*/
.copyright-area {
  background: var(--secondaryGradientColor);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-area p {
  color: #FFECE7;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 15.5px;
}
.copyright-area p b {
  color: var(--whiteColor);
}
.copyright-area p a {
  color: var(--whiteColor);
  font-weight: bold;
}

/*================================================
Back to Top CSS
=================================================*/
#backtotop {
  opacity: 0;
  right: 20px;
  z-index: 99;
  bottom: 20px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 25px;
  transition: 0.5s;
  background: var(--primaryGradientColor);
  color: var(--whiteColor);
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
#backtotop::before {
  position: absolute;
  content: "";
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50px;
  left: 0;
  right: 0;
  top: 0;
  background: var(--secondaryGradientColor);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
#backtotop:hover {
  color: var(--whiteColor);
}
#backtotop:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .single-footer-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .single-footer-widget:nth-child(2) {
    padding-left: 12px !important;
  }
  .single-footer-widget:nth-child(3) {
    padding-left: 12px !important;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .single-footer-widget {
    width: 50%;
  }
  .single-footer-widget:nth-child(2) {
    padding-left: 12px !important;
  }
  .single-footer-widget:nth-child(3) {
    padding-left: 12px !important;
  }
}/*# sourceMappingURL=footer.css.map */