@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: #111111;
  padding-top: 2%;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #6134b7;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: #6134b7;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: linear-gradient(to right, #6134b7, #ffa700) !important;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
}
.footer-col .social-links a:hover {
  color: #6134b7;
  background-color: #ffffff;
}
.copyright-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #020138;
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-footer p {
  text-align: center;
  padding: 15px 0;
  color: #e8e5e5;
  font-size: 14px;
  line-height: 1.4;
}

.copyright-footer p a,
.copyright-footer p #year,
.copyright-footer p .copy {
  display: inline;
  transition: opacity 0.3s ease;
}

.copyright-footer p a:hover {
  opacity: 0.8;
}
/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 1px;
    margin-top: 15px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.image-swapper {
  position: relative;
}

.image-swapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

.image-swapper img.active {
  opacity: 1;
}

.image-swapper img:not(.active) {
  opacity: 0;
}

/* Add animation to swap images */
.image-swapper img:nth-child(1) {
  animation: swap 10s infinite;
}

.image-swapper img:nth-child(2) {
  animation: swap 10s infinite 2s;
}

.image-swapper img:nth-child(3) {
  animation: swap 10s infinite 4s;
}

/* Add more animations for each image */

@keyframes swap {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
