footer {
  width: 100%;
  background: #1f1f1f;
  margin-top: 50px;
  padding-bottom: 20px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  img {
    width: 50vw;
    max-width: 300px;
    filter: invert(1);
  }
  p {
    font-size: clamp(1rem, 1vw, 3rem);
    text-align: center;
  }
  .sm-links {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 20px;
    li a svg path {
      fill: #FFFFFF;
    }
    li a:hover {
      svg path {
        fill: var(--primary-color);
      }
    }
  }
  h3 {
    font-weight: 400;
  }
  ul {
    list-style: none;
    padding: 0;
    a {
      text-decoration: none;
      color: #FFFFFF;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    a:hover {
      color: var(--primary-color);
    }
  }
  h4 {
    font-weight: 400;
    text-align: center;
    margin: 0;
    margin-top: 40px;
    a {
      text-decoration: none;
      color: var(--primary-color);
    }
  }
}
.info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 50px;
  padding: 40px 0;
  background:#EEEEEE;
  width: 100%;
  color: #1f1f1f;
  .item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.3rem, 1.5vw, 1.4rem);
    cursor: pointer;
    strong {
      transition: all 0.1s ease !important;
    }
    svg {
      width: 35px;
      height: 35px;
      path {
        fill: #1f1f1f;
      }
    }
  }
  .item:hover {
    color: var(--primary-color);
    svg path {
      fill: var(--primary-color);
    }
  }
}
@media screen and (max-width: 1300px) {
    .info {
        grid-template-columns: repeat(1, 1fr);
    }
}