

.left-right-section {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left */
.footer-left {
  max-width: 420px;
}
.footer-left .brand {
  position: absolute;
  top: 0;
  transform: translateY(-80px);
  z-index: 9;
  margin: 0px;
  padding: 0;
  display: block;
}
.footer-left .brand img {
  display:block;
}
.brand {
  font-size: 36px;
  margin-bottom: 10px;
  margin-top:0px;
}

.brand span {
  color: #ff2f6d;
}

.footer-left p {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: 600;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
}

.social-icons a {
  border-radius: 10px;
  width: 32px;
  height: 32px;
  background: #ff2f6d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.copyright {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

/* Right */
.footer-right {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.footer-col a:hover {
  color: #06ae85;
}
.footer-right .footer-col ul {
  display: block;
  list-style: none;
  padding: 0;
  margin:0px;
}


/* Waves */
.footer-waves {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-waves span {
  width: 180px;
  height: 6px;
  background: #ff2f6d;
  border-radius: 10px;
  opacity: 0.7;
}
.copyright-section {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-bottom: 50px;
  align-items: center;
}
.right-text-copyr-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width:600px;
}
/* Responsive */
@media (max-width: 991px) {
  .left-right-section {
    flex-direction: column;
  }

  .footer-right {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  /*   .footer-right {
  flex-direction: column;
  gap: 20px;
} */

  .footer-waves {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-right {
    flex-direction: row;
    gap: 40px;
  }
  .left-text-copyr {
    position: relative;
    z-index: 9;
    margin-bottom: 60px;
  }
  .left-right-section {
    flex-direction: column !important;
  }
  .copyright-section {
    margin-top: 48px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .left-right-section {
    flex-direction: row;
  }
  .right-text-copyr-img {
    width: 300px !important;
  }
}
@media (max-width: 1100px) {
  /*  .right-text-copyr-img {
  width: 600px!important;
} */
  .left-text-copyr  {
    position: relative;
    z-index: 9;
  }
}
.copyright a {
  text-decoration: underline;
  color: #fff;
}
}