@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');


.footer {
background-color: #283238;
color: #ffffff;
padding: 40px 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
font-family: 'Raleway';
}

.logo-footer {
  flex: 1 2 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-footer img {
  max-width: 150px;
  height: 60px;
}

.footer-info {
  flex: 2 1 400px;
  font-size: 14px;
  font-family: 'Raleway';
  margin-right: 10%;
  margin-bottom: 0;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Raleway';
}

.footer-social {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}


.footer-social a {
  color: #ffffff;
  transition: color 0.3s;
  font-size:xx-large;

}

.footer-social a:hover {
  color: #8cf0f5;
}

.footer-copy {
  width: 100%;
  text-align: left;
  margin-top: 30px;
  margin-left: 10%;
  font-size: 14px;
  /* border-top: 1px solid #444; */
  padding-top: 15px;
  font-family: 'Raleway';
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info {
    padding: 0;
    margin-right: 0%;
  }

  .footer-social {
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: center;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-left: 0%;
  }

}
