.footer{
  background-color: var(--helperColor);
  color: var(--white);
}
.footer-row{
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  gap: 20px;
}
.footer-col1{
  width: 30%;
}
.footer-col2, .footer-col3, .footer-col4{
  width: 20%;
}
.footer-col h3{
  margin-bottom: 20px;
  color: var(--primaryColor) ;
}
.footer-col ul li{
  margin-bottom: 10px;
}
.footer-col4 ul li{
  display: flex;
  align-items: center;
  gap: 10px;  
}
.social-icons{
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-bottom{
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.footer-bottom-container{
  border-top: 0.2px solid var(--white);
  
}
@media (max-width: 768px) {
  .footer-row{
    flex-direction: column;
    align-items: start;
    text-align: start;
  }
  .footer-col1, .footer-col2, .footer-col3, .footer-col4{
    width: 100%;
  }
  
}