.lp-footer {
    background: #0b0b26;
	  color: #fefbe6;
    display: flex;
    padding: 5rem 20px 5rem 20px;
    margin-top: 100px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
}
.lp-footer h2 {
	  color: #fefbe6;
}
.lp-footer .divider {
    opacity: 0.6;
    border: 0;
    border-style: solid;
    border-bottom-width: 1px;
    width: 100%;
    border-color: var(--chakra-colors-brand-primary);
}
.lp-footer--content {
    width: 100%;
  	max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: 1.5;
    font-size: 14px;
}

.lp-footer--main-content-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.lp-footer--join-us h2 {
	margin-top: -10px;
  font-size: 2.25rem;
	line-height: 3.125rem;
}
.lp-footer--join-us {
	padding-right: 8%;
	flex-basis: 32%;
}
.lp-footer--join-us p {
 '1.125rem
}
.lp-footer--join-us a {
	text-decoration: none;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}
.lp-footer--join-us a:after {
	display: block;
	content: "";
	width: 1em;
	height: 1em;
	margin-left: 0.75rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: margin-left 0.3s ease;
}
.lp-footer--join-us a:hover:after {
    	margin-left: 1rem;
}

.lp-footer--columns-wrapper {
	flex-basis: 68%;
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
    font-size: 14px;
}
.lp-footer--column {
	flex: 1;
}
.lp-footer--column ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lp-footer--column ul li, .lp-footer--column p {
  font-size: 14px;
}
.lp-footer a {
  text-decoration-color: #fefbe6;
}
.lp-footer a:hover {
  text-decoration: none;
}

.lp-footer--slogan-link {
    display: flex;
    flex-direction: column;
    gap: 92px;
}

.lp-footer .footer-heading {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.22222rem;
    text-transform: uppercase;
	  letter-spacing: 1.7px;
}

.lp-footer--links-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lp-footer .legal-links svg,
.lp-footer .some-links svg {
    width: 8px;
}
.lp-footer .legal-links ul,
.lp-footer .some-links ul {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.lp-footer .legal-links ul li,
.lp-footer .some-links ul li {
    display: flex;
    gap: 16px;
}

.lp-footer .legal-links p {
    margin: 0;
    padding: 0;
}

.lp-footer .legal-links a {

}
.lp-footer a[href^="mailto:"], .lp-footer a[href^="tel:"] {
    display: flex;
    align-items: center;
}
.lp-footer a[href^="mailto:"]:before, .lp-footer a[href^="tel:"]:before {
    content: "";
    display: inline-block;
    text-decoration: none;
    width: 14px;
    height: 20px;
    margin-right: 10px;
    overflow: hidden;
    text-align: center;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .lp-footer {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lp-footer--content,
    .lp-footer--slogan-link {
        gap: 32px;
    }

    .lp-footer .mobile-slogan {
        display: block;
    }

    .lp-footer--slogan-link svg {
        display: none;
    }

    .lp-footer--slogan-link {
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
        padding-bottom: 35px;
    }

    .lp-footer--address-column {
        margin-top: 35px;
    }

    .lp-footer--links-row {
        flex-direction: column;
    }
    .lp-footer .legal-links ul,
    .lp-footer .some-links ul {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 16px;
    }
} 