footer {
  margin-top: auto;
  position: absolute;
  width: 100vw;
  left: 0;
}

.footer-container {
  padding: 150px 50px 50px 50px;
  color: #fff;
  background-image: url("assets/svg/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 50px auto;
}

.footer-section {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.footer-section-social-media {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-top: 30px;

}

.footer-title {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
  font-family: 'DM Sans';
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  white-space: nowra;
}

.social-media-icons {
  display: flex;
}

.social-media-icon {
  margin-right: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #b2b2b2;
}

.social-media-icon img {
  width: 24px;
  height: 24px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.info {
  display: flex;
  flex-direction: column;
}

.item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-around;
  padding-top: 64px;
  padding-bottom: 15px;
  width: 100%;
  margin: 0 auto;
}

.title-social-media {
  color: #b2b2b2;
  font-family: 'Heebo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

.info-item {
  text-decoration: none;
  color: #b2b2b2;
  font-family: 'Heebo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.contact-item {
  text-decoration: none;
  color: #b2b2b2;
  font-family: 'Heebo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.footer-bottom-item {
  text-decoration: none;
  color: #b2b2b2;
  font-family: 'Heebo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.footer-bottom-links {
  display: flex;
  gap: 5rem;
  margin-right: 10rem;
}

@media (max-width:1600px) {
  .footer-bottom-links {
    margin-right: 6rem;
  }
}

@media (max-width:1400px) {
  .footer-bottom-links {
    margin-right: 2rem;
  }
}

@media (max-width:1100px) {
  .footer-bottom-links {
    margin-right: 0;
  }
}

@media (max-width: 1024px) {
  .footer-wrapper {
    gap: 1rem;
    width: 100%;
  }

  .footer-title {
    font-size: 18px;
  }

  .info-item,
  .contact-item,
  .title-social-media,
  .footer-bottom-item {
    font-size: 14px;
  }

  .social-media-icon img {
    width: 20px;
    height: 20px;
  }

  .social-media-icon {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    width: 95%;
  }



}

@media (max-width: 900px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    width: 95%;
  }

  .footer-column {
    margin-left: 0;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    width: 95%;
  }

  .footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-bottom-item {
    margin-bottom: 10px;
  }

  .footer-container {
    background-color: #1B2430;
    padding: 50px 50px 50px 30px;
  }
}