.main-footer {
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upper-footer {
  height: 230px;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.footer-logo {
  flex: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-image {
  height: 100px;
  width: 100px;
}
.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.footer-logo-subtext {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.footer-info {
  flex: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer-info a {
  text-decoration: none;
  color: black;
}
.footer-info-text {
  font-size: 12px;
}
.footer-info-icon {
  height: 12px;
}
.footer-rights {
  padding-top: 40px;
  flex: 3;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #8896ab;
}
.width-full {
  width: 100%;
  border-top: 1px solid black;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
@media (min-width: 992px) {
  .upper-footer {
    flex-direction: column;
  }
	.footer-rights {
  padding-top: 40px;
  flex: 3;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #8896ab;
}
  .footer-info {
    flex-direction: row;
    gap: 100px;
    flex: 1;
  }
  .footer-logo {
    flex: 4;
  }
  .footer-info-text {
    font-size: 20px;
    line-height: 30px;
  }
  .footer-info-icon {
    height: 20px;
  }
  .footer-socials {
    gap: 30px;
  }
  .footer-logo-image {
    height: 70px;
    width: 70px;
  }
}
