footer {
  padding: clamp(40px, 10vw, 70px) var(--padding-sides) clamp(1rem, 5vw, 20px) var(--padding-sides);
  background-color: var(--color-primary);
  z-index: 1000;
  position: relative;
}

.footerContentWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logoContentWrapper,
footer .linkWrapper {
  width: 50%;
}

.logoContentWrapper .logoWrapper img {
  height: auto;
  width: 15%;
  margin-bottom: 2rem;
}

.addressWrapper p,
.contactWrapper p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: white;
}

.address {
  padding-bottom: 1.5rem !important;
}

footer .linkWrapper {
  display: flex;
  gap: clamp(40px, 10vw, 100px);
  align-items: flex-start;
}

footer .linkWrapper h1 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

footer .linkContainer {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

footer .linkWrapper a {
  text-decoration: none;
  font-weight: 400 !important;
  color: white;
}

footer .linkWrapper a:hover {
  cursor: pointer;
  color: var(--color-secondary-light);
}

.subContentWrapper {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin-top: 2rem;
  align-items: center;
}

.socialWrapper {
  width: 10%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.socialWrapper a {
  text-decoration: none;
  font-size: 32px;
  color: white;
}

.socialWrapper a:hover {
  cursor: pointer;
  color: var(--color-secondary-light);
}

.breadCrumbs p {
  font-weight: normal;
}

.copyRight {
  width: 90%;
  color: white;
  font-size: 14px;
}

.copyRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem
}

.dash {
  width: 100%;
  height: 1px;
  background-color: white;
}

.linkWrapper .dash {
  display: none;
}

.mobileStickyFooterContainer {
  display: none;
}

@media (max-width: 1024px) {


  .logoContentWrapper,
  footer .linkWrapper {
    max-width: 100%;
  }

  .logoContentWrapper {
    text-align: center;
  }

  footer .linkWrapper {
    justify-content: space-between;
  }

  .logoContentWrapper .logoWrapper img {
    width: 120px;
  }

  footer p {
    text-align: center;
  }

  .footerContentWrapper {
    align-items: flex-start;
  }

  footer * {
    text-align: start !important;
  }

  footer .linkWrapper {
    /* align-items: flex-start !important; */
    gap: 2rem !important;
  }

  footer .linkContainer {
    align-items: flex-start;
    min-width: 100px;
  }

  .socialWrapper {
    align-items: flex-start;
    /* width: 100%; */
    justify-content: flex-start;
  }

  .copyRight {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 80px 1.5rem 30px;
  }


  .footerContentWrapper {
    gap: 40px;
    flex-direction: column;

  }


  .logoContentWrapper .logoWrapper img {
    width: 100px;
    margin: 0 auto 1.5rem;
  }

  .addressWrapper {
    text-align: center;
  }

  footer .linkWrapper {
    flex-direction: column;
    gap: 30px;
    /* align-items: center; */
    text-align: center;
  }

  footer .linkContainer {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .subContentWrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .socialWrapper {
    width: auto;
    justify-content: center;
  }

  .copyRight {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .dash {
    width: 100%;
  }

  .footerContentWrapper {
    align-items: flex-start;
  }

  footer * {
    text-align: start !important;
  }

  .footer .linkWrapper {
    align-items: flex-start !important;
  }

  footer .linkContainer {
    align-items: flex-start;
  }

  .socialWrapper {
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
  }

  .copyRight {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {

  .mobileStickyFooterContainer {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    align-items: center;
    padding: 0 var(--padding-sides);
    left: 0;
    height: 65px;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 1001;
  }

  .mobileStickyFooterContainer .contactUs {
    width: fit-content;
  }

  .mobileStickyFooterContainer .socialWrapper {
    width: fit-content;
  }

  .mobileStickyFooterContainer .socialWrapper a {
    display: block !important;
  }

  .mobileStickyFooterContainer .contactUs a {
    width: fit-content;
    text-decoration: none;
    color: white
  }

  .mobileStickyFooterContainer .contactUs a:hover {
    color: var(--color-secondary-light)
  }

  footer {
    padding: 40px 0;
  }

  .logoContentWrapper,
  footer .linkWrapper {
    width: 100%;
  }

  .linkWrapper .dash {
    display: block;
  }

  .copyright {
    margin-bottom: 65px;
  }

  footer .linkWrapper h1 {
    font-size: 13px;
  }

  footer .linkWrapper a {
    font-size: 14px;
  }

  .subContentWrapper {
    margin-top: 1.5rem;
    margin-bottom: 50px;
  }

  .subContentWrapper .socialWrapper a {
    font-size: 26px;
    display: none;
  }

  .copyRight {
    font-size: 13px;
  }

  .footer .linkWrapper {
    align-items: flex-start !important;
  }

  footer .linkContainer {
    align-items: flex-start;
  }

  .socialWrapper {
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
  }

  .copyRight p {
    font-size: 12px;
  }

  .copyRight {
    align-items: flex-start;
  }

  footer .linkWrapper h1 {
    margin-bottom: 0;
  }
}
