.footer {
    background: var(--light);
    color: var(--dark);
    position: relative;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer {
    }
}

.footer a {
    color: var(--dark);
}

.footer.light {
    color: var(--light);
    background: var(--dark);
}

.footer.light a {
    color: var(--light);
}

.footerSlantedShape {
    position: absolute;
    top: -8.5vh;
    right: auto;
    left: auto;
    width: 105%;
    height: 10rem;
    background-image: url("/wp-content/uploads/footer-background.svg");
    background-size: 250%;
    background-position: left top;
    background-repeat: no-repeat;
}

@media (min-width: 1200px) {
    .footerSlantedShape {
        background-size: 125%;
        top: -12vh;
    }
}

.footerLogo {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1512px;
    margin: auto;
    padding: 3rem 1.5rem 3rem;
}

@media (min-width: 768px) {
    .footerLogo {
        padding: 5rem 3rem 3rem;
    }
}

@media (min-width: 1500px) {
    .footerLogo {
        padding: 5rem 5rem 3rem;
    }
}

.footerLogoWrapper img {
    width: auto;
    object-fit: contain;
}

.footerWrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    padding: 3rem 1.5rem;
    width: 100%;
    max-width: 1512px;
    margin: auto;
    margin-top: 0rem;
}

@media (min-width: 768px) {
    .footerWrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 5rem 3rem 3rem;
        margin-top: -3rem;
    }
}

@media (min-width: 1200px) {
    .footerWrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1500px) {
    .footerWrapper {
        padding: 4rem 5rem 5rem;
    }
}

.footerCol {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    width: 100%;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .footerCol {
        padding-right: 0;
    }
}

.footerCol .footerContact iframe{
    height: 290px;
    width: 100%;
}

@media (max-width: 767px) {
    .footerCol .footerContact iframe{
        height: 260px;
    }
}

@media (min-width: 1200px) {
    .hasSeperator::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        height: 100%;
        background: var(--dark);
        opacity: .15;
    }

    .footer.light .hasSeperator::after {
        background: var(--light);
    }
}

.footerContact {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 1rem;
}

.footerContactItem {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footercontactIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--lightAlt);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

@media (min-width: 1500px) {
    .footercontactIcon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.footer.light .footercontactIcon {
    background: var(--darkAlt);
}

.footercontactIcon svg {
    width: 1rem;
    height: 1rem;
    fill: var(--dark);
}

@media (min-width: 1500px) {
    .footercontactIcon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.footer.light .footercontactIcon svg {
    fill: var(--lightAlt);
}

.footerContactText {
    flex-basis: calc(100% - 3.5rem - 0.875rem);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 150%;
}

@media (min-width: 1500px) {
    .footerContactText {
        flex-basis: calc(100% - 3.5rem - 0.875rem);
    }
}

.footerContactText p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.footerContactText strong {
    font-weight: 700;
    line-height: 1;
}

.footerNav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footerNav li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    padding: 0;
    margin: 0;
}

.footerNav svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: var(--primary);
}

.footerNav a {
    font-family: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 175%;
    opacity: 0.85;
    transition: var(--ease);
}

.footerNav a:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .footerNav a {
        font-size: 1rem;
    }
}

.footer.light .footerNav a {
    color: var(--light);
}

.footerSocial {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerSocial li {
    padding: 0;
    margin: 0;
}

.footerSocial a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--lightAlt);
    transition: var(--ease);
}

.footerSocial a:hover {
    transform: translateY(-0.25rem);
}

.footerSocial svg {
    fill: var(--dark);
    width: 50%;
    height: 50%;
}

.footer.light .footerSocial a {
    background: var(--darkAlt);
}

.footer.light .footerSocial svg {
    fill: var(--light);
}

.footerSocial .googleReviewsLogo {
    width: 100%;
    height: auto;
}

.footerCopyrightWrapper {
    display: flex;
    text-align: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 1512px;
    margin: auto;
}

@media (min-width: 768px) {
    .footerCopyrightWrapper {
        padding: 2rem 3rem;
    }
}

@media (min-width: 1500px) {
    .footerCopyrightWrapper {
        padding: 2rem 5rem;
    }
}

@media (max-width: 767px) {
    .footerCopyrightWrapper {
        padding: 1.5rem 1rem;
    }
}

.footerCopyrightText {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 150%;
    opacity: 0.85;
}