.sqm-footer {
  background-color: white;
}

.sqm-footer__logo {
  padding: 70px 110px;
}

.sqm-footer__content-container {
  padding: 0px 100px;
}

.sqm-footer__content {
  display: flex;
  justify-content: space-around;
}

.sqm-footer__content-columns-wrapper {
  display: flex;
  padding-bottom: 124px;
  gap: 80px;
}

.sqm-footer__content-column {
  display: flex;
  flex-direction: column;
  width: 160px;
  gap: 40px;
}

.sqm-footer__content-column-title {
  font-family: inherit;
  font-weight: 700;
  font-size: 20px;
  color: #05022d;
}

.sqm-footer__content-column-rows a{
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: inherit;
  font-weight: 400;
  font-size: 18px;
  margin-top: 18px;
  color: #51535f;
  text-decoration: none;
}

.sqm-footer__subscribe-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  gap: 40px;
  padding-bottom: 124px;
}

.sqm-footer__copy-right {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #51535f;
  display: flex;
  justify-content: space-between;
  padding: 38px 0px;
}

.sqm-footer__social-media {
  color: #05022d;
  display: flex;
  gap: 16px;
}

.sqm-footer__social-media:hover {
  cursor: pointer;
}

.sqm-footer__input-with-button {
  display: flex;
  width: 360px;
  border: 1px solid #dcdddf;
  border-radius: 30px;
  padding: 9px;
  overflow: hidden;
}

.sqm-footer__input {
  flex: 1 1 auto;
  border: none;
  font-size: 16px;
  padding-left: 24px;
  font-family: inherit;
}

.sqm-footer__input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.sqm-footer-button {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 44px;
  font-size: 16px;
  padding: 0px 30px;
  color: white;
  background: #592f83;
  border-color: #592f83;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-footer-button:hover {
  color: #592f83;
  background: transparent;
  border-color: #592f83;
  cursor: pointer;
}

@media (max-width: 1139px) {
  .sqm-footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .sqm-footer__content-columns-wrapper {
    width: 100%;
    padding-bottom: 0px;
  }
  .sqm-footer__subscribe-wrapper {
    width: 100%;
    padding-top: 0px;
  }
}

@media (max-width: 639px) {
  .sqm-footer__content-container {
    padding: 0px 50px;
  }
  .sqm-footer__content-columns-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 220px);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .sqm-footer__input-with-button {
    flex-direction: column;
    width: 100%;
    padding: 0;
    border: none;
  }

  .sqm-footer__input {
    width: 90%;
    border: 1px solid #dcdddf;
    border-radius: 30px;
    padding: 12px 16px;
    margin-bottom: 12px;
  }

  .sqm-footer-button {
    width: 100%;
    border-radius: 30px;
  }
}