﻿
#FooterContainer {
    --footer-text-color:#85a3bf;
    --footer-link-color:#85a3bf;
    --footer-link-color-hover:#7ac3ff;
    --footer-title-color:#ffc107;
    --footer-backcolor: var(--nx-footer-backcolor,#2c2c42);
    --footer-border-top-color:var(--nx-color-secondary, whitesmoke);
    --footer-text-copyright-color:#6a8297;
    --footer-text-copyright-color-hover:var(--footer-link-color-hover);
    --footer-toggle-btn-color:var(--footer-link-color);
    --footer-toggle-btn-color-hover:var(--footer-link-color-hover);
    background-color: var(--footer-backcolor);
    padding: 2rem 0 1rem;
    border-top: 4px var(--footer-border-top-color) solid;
}

#FooterLogoContainer {
    width: 100%;
    max-width: 12rem;
    margin: 0 0 .5rem;
}

#FooterMainLogoContainer {
    text-align: center;
}

    #FooterMainLogoContainer h3 {
        font-size: 1.8rem;
        color: white;
        font-family: artinx, shabnam;
        line-height: 1;
    }

    #FooterMainLogoContainer p {
        color: var(--footer-title-color);
        font-size: 1rem;
        font-weight: 100;
    }

#FooterLogoPane h3 {
    font-size: 1.8rem;
    color: white;
    font-family: artinx, shabnam;
    line-height: 1;
}

.footer-text-logo-info {
    font-size: 1rem;
    color: var(--footer-title-color);
    font-weight: 100;
    margin: 0;
}

.footer-text-title {
    font-size: 1em;
    color: var(--footer-title-color);
    font-weight: bold;
    margin: 0;
    text-align: right;
}

.footer-text {
    font-size: 1rem;
    color: var(--footer-text-color);
    font-weight: 100;
    margin: 0;
    text-align: justify;
    text-justify: distribute;
    letter-spacing: -.03rem;
}

#FooterToggleBtnContainer {
    display: flex;
    justify-content: center;
}

.footer-toggle-btn {
    color: var(--footer-toggle-btn-color);
    margin: 1rem 0 0;
    cursor: pointer;
    transition: .3s ease all;
    min-width: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-toggle-btn:hover {
        color: var(--footer-toggle-btn-color-hover);
    }

#FooterContainer a {
    color: var(--footer-link-color);
    font-weight: 200;
    transition: .3s ease color,.7s ease letter-spacing;
    letter-spacing: -.03rem;
}

    #FooterContainer a:hover {
        color: var(--footer-link-color-hover);
        letter-spacing: 0;
    }

#FooterContainer hr {
    background-color: #39362f;
    border: 0;
    height: 1px;
}

#FooterContainer p {
    margin: .2rem 0;
}

.footer-text-copyright {
    font-size: .8rem;
    color: #6a8297;
    font-weight: 100;
    margin: 2rem 0 0;
    text-align: center;
    display: block;
}

.footer-copyright-sep {
    height: 1rem;
    width: 1px;
    display: inline-block;
    margin: 0 .5rem;
    background-color: #5a6f82;
    position: relative;
    top: .3rem;
}

.footer-text-copyright a {
    font-size: .8rem;
    color: var(--footer-text-copyright-color) !important;
    font-weight: 100 !important;
    transition: .5s ease all;
    letter-spacing: 0 !important;
}

    .footer-text-copyright a:hover {
        color: var(--footer-text-copyright-color-hover) !important;
    }

#FooterCreditContainer {
    text-align: center;
    padding: 3rem 0 1rem;
}

.footer-credit-logo {
    width: 6rem;
    margin: .3rem;
    opacity: .7;
    transition: .5s ease all;
}

    .footer-credit-logo:hover {
        opacity: 1;
    }

@media (max-width: 1199px) {
    #FooterLogoContainer {
        margin: .3rem auto;
    }

    #FooterLogoPane h3 {
        text-align: center;
    }

    .footer-text-logo-info {
        text-align: center;
    }

    #FooterLogoPane {
        margin: 0 0 2rem;
    }
}

@media (max-width: 767px) {
    .footer-text {
        line-height: 2em;
    }

    .footer-credit-logo {
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .footer-copyright-sep {
        height: 0;
        width: 0;
        display: block;
        margin: 0;
    }
}

#FooterDropSection {
    display: none;
}

#FooterToggleIcon {
    font-size: 1.5rem;
    position: relative;
    top: .3rem;
}

    #FooterToggleIcon::before {
        transition: .5s ease all;
    }

    #FooterToggleIcon.rotate-icon::before {
        transform: rotate(180deg);
    }


#FooterContainer .footer-lic-holder {
    background-color: rgba(255,255,255,.3);
    display: flex;
    justify-content:center;
    align-items:center;
    border-radius: 0.5rem;
    transition:.3s ease all;
}
#FooterContainer .footer-lic-holder:hover {
    background-color: rgba(255,255,255,1);
}

#FooterContainer .footer-lic-img {
    max-width: 5rem;
}
