@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.footer{
  background:#1E3A8A;
  color:#fff;
  padding:90px 30px 30px;
  overflow:hidden;
}

.footer-container{
  max-width:1300px;
  margin:auto;
}

.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:60px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-brand img{
  width:180px;
  margin-bottom:24px;
}

.footer-brand p{
  color:rgba(255,255,255,.75);
  font-size:16px;
  line-height:1.9;
  max-width:420px;
}

.footer-links h3,
.footer-contact h3{
  font-size:20px;
  margin-bottom:24px;
  font-weight:600;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a,
.footer-contact a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  margin-bottom:14px;
  font-size:15px;
  transition:.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover{
  color:#f4b400;
  transform:translateX(4px);
}

.footer-contact p{
  color:rgba(255,255,255,.75);
  font-size:15px;
  line-height:1.8;
  margin-bottom:18px;
}

.footer-bottom{
  padding-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-bottom p{
  color:rgba(255,255,255,.65);
  font-size:14px;
}

.footer-social{
  display:flex;
  gap:24px;
}

.footer-social a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  font-size:14px;
  transition:.3s ease;
}

@media(max-width:992px){

  .footer-top{
    grid-template-columns:repeat(2,1fr);
    gap:45px;
  }

}

@media(max-width:768px){

  .footer{
    padding:70px 20px 25px;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:40px;
    padding-bottom:40px;
  }

  .footer-brand img{
    width:150px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-social{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
  }

}