body {
    position: relative;
    min-height: 100vh;
}
footer {
    width: 100%;
    min-height: 70vh;
    max-height: 150vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--footerBackColor);
    color: var(--footerTextColor);
    bottom: 0px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}
.footerMainDiv {
    width: 100%;
    height: 95%;
    display: flex;
}
.footerDivs {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footerHeaders {
    width: 100%;
    height: 5%;
    margin-top: 1rem;
    line-height: 100%;
    text-align: center;
    color: var(--footerTextColor);
    font-size: 1.5rem;
}
.footerHeadersHr {
    width: 50%;
    height: 0.2rem;
    border-radius: 0.1rem;
    margin-top: 0.5rem;
    background-color: var(--footerTextColor);
}
.footerLabelDivs {
    width: 80%;
    height: 2rem;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 600ms;
    cursor: pointer;
    margin-top: 1rem;
}
.footerLabelDivs:hover {
    background-color: var(--primaryBackgroundColor);
    border-radius: 0.5rem;
    width: 50%;
}
.footerLabelDivs:hover > .footerLinks {
    color: var(--primaryTextColor);
}
.footerLinks {
    text-align: center;
    text-decoration: none;
    color: var(--footerTextColor);
    transition: 400ms;
    font-size: 1.2rem;
}
.footerHeaders + .footerLabelDivs {
    margin-top: 2rem;
}
/*----------------------------------------------*/
.footerProductsDiv {
    width: 20%;
}
.footerProductsHeader {
}
.footerProductLabelDivs {
}

.footerProductLabel {
}
/*----------------------------------------------*/
.footerPageDiv {
    width: 40%;
}
.footerPagesHeader {
}
.footerPageLinksDiv {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    text-align: center;
    align-items: center;
}
.footerPageLinkDivs {
    height: 2.5rem;
    width: 100%;
}
.footerPageLinkDivs:hover {
    width: 80%;
    margin-left: 10%;
}
.footerPageLinks {
}
/*----------------------------------------------*/
.footerContactDiv {
    width: 40%;
}
.footerContactsHeader {
}

.footerContactLinkDivs {
    width: 90%;
    height: 100%;
    justify-content: start;
    padding-left: 1rem;
}
.footerContactLinkDivs:hover {
    background: none;
    border-radius: 0;
    width: 90%;
}
.footerContactLinkDivs:hover > .footerContactLink {
    color: var(--secondaryTextColor);
}
.footerContactLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95%;
}
.footerContactIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    color: var(--footerTextColor);
    fill: var(--footerTextColor);
    stroke: var(--footerTextColor);
}
.footerContactLabel {
    margin-left: 1rem;
    font-size: 1rem;
    text-align: justify;
}
.footerSubDiv {
    text-align: center;
    margin-bottom: 1rem;
}
.footerSubHr {
    width: 80%;
    margin: 0.5rem 0rem 0rem 10%;
    height: 0.2rem;
    background-color: var(--footerTextColor);
}
