@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ----------------------Scroll-Footer--------------------------- */
/* ----------------------Scroll--------------------------- */
.section-6{
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos img{
  width: 100px;
  margin: 10px 20px;
  cursor: pointer;
}
.scroll{
  position: relative;
  display: flex;
  width: 1200px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.scroll div{
  white-space: nowrap;
  animation: animate 30s linear infinite;
}
@keyframes animate {
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}
.scroll:hover div{
  animation-play-state: paused;
}

/* ----------------------Footer--------------------------- */
footer{
  position: relative;
  background: linear-gradient(to right, #4b79a1, #283e51);
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 150px;
  height: 1px;
  width: 100%;  
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px 20px 40px;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/* footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
} */
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.content .link-boxes .box .link_name2{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  /* opacity: 0.8; */
  
}
.content .link-boxes .box li a:hover{
  text-decoration: underline;
  color: #00B0F0;
}
footer .bottom-details{
  width: 100%;
  border-top: 1px solid #b3b6af;
  background: linear-gradient(to right, #4b79a1, #283e51);
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  /* opacity: 0.8; */
  text-decoration: none;
}
.bottom-details .bottom_text a{
  color: #00B0F0;
}
.bottom-details .bottom_text a:hover{
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}

.logo-details img{
  width: 100px;
}

/* Button */
.redes{
  display: flex;
  gap: 10px;
}
.redes a {
  text-decoration: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0px 1px 10px black;
          box-shadow: 0px 1px 10px black;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 20px;
  margin-bottom: 10px;  

}
.fa-facebook-f {
  background: #074783;
  color: white;
}
.fa-facebook-f:hover {
  background: rgba(255, 255, 255, 0.815);
  color: #074783;
}
.fa-youtube {
  color: #fff;
  background: red;
}
.fa-youtube:hover {
  background: #fff;
  color: red;
}
.fa-tiktok{
  background: rgba(0, 0, 0, 0.925);
  color: white;
}
.fa-tiktok:hover {
  background: white;
  color: rgba(0, 0, 0, 0.925);
}

/* responsive */
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
}


