@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 80px;
  background: #00026d;
  margin-top: 10px;
}
footer .container-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-gap: 40px;
}
footer .container-footer .sec h2 {
  position: relative;
  color: #fff;

  font-weight: 500;
  margin-bottom: 20px;
}
footer .container-footer .sec h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #ff008c;
}
footer .container-footer .sec p {
  font-size: 16px;
  /* line-height: 26px; */
  color: #fff;
}
.socila-icon {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 40px);
  grid-gap: 10px;
}
.socila-icon li {
  list-style: none;
}
.socila-icon li a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  height: 40px;
  width: 40px;
  display: inline-block;
  background: #00039d;
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.socila-icon li a::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 0;
  top: 0;
  left: 0;
  background: #ff008c;
  transition: 0.5s;
  z-index: -1;
}
.socila-icon li a:hover::before {
  width: 40px;
}
.usefullinks {
  position: relative;
}
.usefullinks li {
  list-style: none;
}
.usefullinks li a {
  text-decoration: none;
  font-size: 16px;
  list-style: none;
  line-height: 30px;
  color: #fff;
  transition: 0.3s;
}
.usefullinks li a:hover {
  color: #ff008c;
}
.shop {
  position: relative;
}
.shop li {
  list-style: none;
}
.shop li a {
  text-decoration: none;
  font-size: 16px;
  list-style: none;
  line-height: 30px;
  color: #fff;
  transition: 0.3s;
}
.shop li a:hover {
  color: #ff008c;
}
.info {
  position: relative;
}
.info li {
  display: grid;
  grid-template-columns: 35px 1fr;
}
.info li span {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.info li span i {
  color: #fff;
  font-size: 20px;
}
.info li span i.bx {
  margin-top: 5px;
}
footer .container-footer .sec p a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
footer .container-footer .sec p a:hover {
  color: #ff008c;
}

@media screen and (max-width: 990px) {
  footer .container-footer {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  footer {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 500px) {
  footer .container-footer {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  footer .copyright {
    left: 25%;
    font-size: 13px;
  }
  /* .footer-section p {
    justify-content: center;
  } */
}

.copyright {
  position: absolute;
  left: 35%;
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.7;
  color: #fff;
}

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e10d25;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.scroll-top:hover {
  background: #0056b3;
}

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e10d25;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.scroll-top:hover {
  background: #0056b3;
}

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* icons */

/* phone icons */
.phone-icon,
.whatsapp-icon {
  position: fixed;
  transform: translateY(-50%);
  font-size: 24px;
  padding: 15px;
  transition: transform 0.3s ease-in-out;
  animation: 1.5s infinite bounce;
}

.phone-icon,
.whatsapp-icon {
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.phone-icon {
  top: 70%;
  right: 20px;
  background-color: #0c8cd5;
}
.phone-icon:hover,
.whatsapp-icon:hover {
  transform: translateY(-50%) scale(1.2);
}
.whatsapp-icon {
  top: 80%;
  right: 20px;
  background-color: #25d366;
}
