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

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget .widget-logo {
  margin-bottom: 25px;
}
.single-footer-widget p {
  color: #8F8F8F;
}
.single-footer-widget h3 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--whiteColor);
}
.single-footer-widget ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.single-footer-widget ul li {
  list-style-type: none;
  margin-bottom: 20px;
}
.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul li a {
  color: #8F8F8F;
}
.single-footer-widget ul li a:hover {
  color: var(--secondaryColor);
  letter-spacing: 0.2px;
}
.single-footer-widget.widget_texam_footer_info {
  flex: 14%;
  margin-right: 60px;
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 75px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-area p {
  color: #8F8F8F;
}
.copyright-area p span {
  color: var(--secondaryColor);
}
.copyright-area p a {
  color: var(--secondaryColor);
  position: relative;
}
.copyright-area p a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
}
.copyright-area p a:hover::before {
  width: 100%;
}
.copyright-area .copyright-social {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: end;
}
.copyright-area .copyright-social li {
  list-style-type: none;
  margin-right: 10px;
}
.copyright-area .copyright-social li:last-child {
  margin-right: 0;
}
.copyright-area .copyright-social li a {
  display: inline-block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  background-color: rgba(255, 255, 255, 0.13);
  color: var(--whiteColor);
  border-radius: 50px;
  text-align: center;
}
.copyright-area .copyright-social li a:hover {
  background-color: var(--secondaryColor);
}

.subscribe-inner-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 100px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.subscribe-inner-box .content {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.subscribe-inner-box .content h2 {
  font-size: 37px;
  color: var(--whiteColor);
  margin-bottom: 0;
  line-height: 1.4;
}
.subscribe-inner-box .content .newsletter-form {
  max-width: 500px;
  margin: 30px auto 0;
  position: relative;
}
.subscribe-inner-box .content .newsletter-form .input-newsletter {
  display: inline-block;
  width: 100%;
  height: 57px;
  background-color: var(--whiteColor);
  border-radius: 50px;
  border: none;
  box-shadow: unset;
  outline: 0;
  color: #8F8F8F;
  font-size: 14px;
  padding: 15px 25px;
}
.subscribe-inner-box .content .newsletter-form .input-newsletter::-moz-placeholder {
  color: #8F8F8F;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribe-inner-box .content .newsletter-form .input-newsletter::placeholder {
  color: #8F8F8F;
  transition: var(--transition);
}
.subscribe-inner-box .content .newsletter-form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-inner-box .content .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}
.subscribe-inner-box .content .newsletter-form .default-btn {
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 57px;
  background-color: var(--secondaryColor);
  color: var(--blackColor) !important;
}
.subscribe-inner-box .content .newsletter-form .default-btn i {
  line-height: 0;
  margin-left: 10px;
  color: var(--blackColor);
  transition: var(--transition);
}
.subscribe-inner-box .content .newsletter-form .default-btn:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor) !important;
}
.subscribe-inner-box .content .newsletter-form .default-btn:hover i {
  color: var(--whiteColor);
}
.subscribe-inner-box .content .newsletter-form .alert-danger {
  background-color: transparent;
  border-color: transparent;
  color: var(--whiteColor);
}
.subscribe-inner-box .content p {
  margin-top: 17px;
  margin-bottom: 0;
}
.subscribe-inner-box .wrap-shape {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: -1;
}

/*================================================
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(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
#backtotop::before {
  position: absolute;
  content: "";
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 0;
  background: var(--primaryColor);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
#backtotop:hover {
  color: var(--whiteColor);
}
#backtotop:hover::before {
  opacity: 1;
  visibility: visible;
}
#backtotop .active {
  opacity: 1;
}

.go-top.active {
  opacity: 1 !important;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .single-footer-widget.pe-5 {
    padding-right: 0 !important;
  }
  .copyright-area {
    margin-top: 25px;
    text-align: center;
  }
  .copyright-area .copyright-social {
    justify-content: center;
    margin-top: 20px;
  }
  #back-to-top {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 20px;
  }
  #back-to-top::before {
    height: 35px;
    width: 35px;
    line-height: 35px;
  }
  .subscribe-inner-box {
    margin-bottom: 50px;
  }
  .subscribe-inner-box .content h2 {
    font-size: 30px;
  }
  .single-footer-widget.widget_texam_footer_info {
    flex: 100%;
    margin-right: 0;
  }
  .single-footer-widget.col {
    flex: 100%;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-footer-widget.pe-5 {
    padding-right: 0 !important;
  }
  .single-footer-widget.widget_texam_footer_info {
    flex: 100%;
    margin-right: 0;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-footer-widget.pe-5 {
    padding-right: 0 !important;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single-footer-widget.pe-5 {
    padding-right: 0 !important;
  }
}