/* Strax footer — copied from rtl/assets/css/style.css (Footer Area) */
.footer-area {
  background-color: #080a3c;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.footer-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: imageChange 1s linear 1s infinite;
  background-image: url(../assets/img/footer-shape1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-area::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: imageChangeTwo 1s linear 1s infinite;
  background-image: url(../assets/img/footer-shape2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-area .divider {
  width: 100%;
  position: absolute;
  height: 100px;
  pointer-events: none;
  mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
  -webkit-mask-size: 100% 101%;
  mask-size: 100% 101%;
  background: #080a3c;
  top: -100px;
  left: 0;
  z-index: -1;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  color: #ffffff;
  margin-bottom: 29px;
  font-weight: 500;
  font-size: 22px;
}

.single-footer-widget .logo {
  margin-bottom: 15px;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.single-footer-widget p {
  color: #acc5db;
}

.single-footer-widget .services-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .services-list li {
  color: #acc5db;
  margin-bottom: 10px;
}

.single-footer-widget .services-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .services-list li a {
  display: inline-block;
  color: #acc5db;
  text-decoration: none;
  transition: 0.5s;
}

.single-footer-widget .services-list li a:hover {
  color: #13c4a1;
  padding-left: 5px;
}

.single-footer-widget .support-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .support-list li {
  color: #acc5db;
  margin-bottom: 10px;
}

.single-footer-widget .support-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .support-list li a {
  display: inline-block;
  color: #acc5db;
  text-decoration: none;
  transition: 0.5s;
}

.single-footer-widget .support-list li a:hover {
  color: #13c4a1;
  padding-left: 5px;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  color: #ffffff;
  margin-bottom: 10px;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #acc5db;
  text-decoration: none;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #13c4a1;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 5px;
}

.single-footer-widget .social li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 33px;
  background-color: #4e6e8a;
  text-align: center;
  font-size: 17px;
  border-radius: 2px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
}

.single-footer-widget .social li a:hover {
  color: #080a3c;
  background-color: #ffffff;
}

.copyright-area {
  border-top: 1px solid #1c2250;
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  line-height: initial;
  color: #acc5db;
  margin: 0;
}

.copyright-area p a {
  display: inline-block;
  color: #ff612f;
  text-decoration: none;
  transition: 0.5s;
}

.copyright-area p a:hover {
  color: #13c4a1;
}

html[dir="rtl"] .single-footer-widget .services-list li a:hover,
html[dir="rtl"] .single-footer-widget .support-list li a:hover {
  padding-left: 0;
  padding-right: 5px;
}

html[dir="rtl"] .single-footer-widget .social li {
  margin-right: 0;
  margin-left: 5px;
}

@keyframes imageChange {
  0% { opacity: 0; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes imageChangeTwo {
  0% { opacity: 1; }
  75% { opacity: 0; }
  100% { opacity: 1; }
}

/* rtl/assets/css/responsive.css — footer */
@media only screen and (max-width: 767px) {
  .footer-area {
    padding-top: 60px;
  }

  .single-footer-widget h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .single-footer-widget .social li a {
    width: 32px;
    height: 32px;
    line-height: 36px;
    font-size: 20px;
  }

  .footer-area .divider {
    display: none;
  }
}
