footer {
    position: relative;
    display: block;
	width: 100%;
    height: fit-content; /*292px*/
    background-color: var(--black);
    padding: 2.447vw var(--lateralMargin) 2.031vw;
}

footer .footer-inner {
    position: relative;
    display: flex;
	width: 100%;
    height: 100%;
    background-color: var(--black);
}

footer .footer-inner .right,
footer .footer-inner .left {
    position: relative;
    display: flex;
	width: 50%;
    height: 10.27vw;
}

footer .footer-inner .right {
    flex-flow: column;
    justify-content: space-between;
}

footer .footer-inner .right .logo-footer {
    position: relative;
    display: block;
    height: 2.586vw;
    width: fit-content;
}

footer .footer-inner .right .logo-footer svg {
    position: relative;
    display: block;
    fill: var(--white);
    width: auto;
    height: 100%;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
}

footer .footer-inner .left .columns {
    position: relative;
    display: flex;
	width: 100%;
    height: 100%;
    justify-content: space-between;
}

footer .footer-inner .left .columns .column {
    position: relative;
    display: flex;
	flex-flow: column;
    justify-content: space-between;
}

footer .footer-inner .left .columns .column ul {
    position: relative;
    display: flex;
	flex-flow: column;
    row-gap: .572vw;
    cursor: default;
    line-height: 1.3;
}

footer .footer-inner .left .columns .column ul.credits {
    row-gap: .534vw;
}

footer .footer-inner .credits {
    opacity: .6;
}

footer .p2 a,
footer .p1 a {
    position: relative;
    display: inline-block;
    width: fit-content;
}

footer .p2 a::after,
footer .p1 a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--white);
    transition: width .4s ease;
    bottom: 0px;
    right: 0;
}

footer .p2 a:hover::after,
footer .p1 a:hover::after{
    width: 100%;
    left: 0;
    right: auto;
}

footer .footer-inner-sm {
    display: none;
}

footer .footer-inner .right ul.credits-sm {
    display: none;
}


@media only screen and (max-width: 980px) {
    footer {
        padding: 23px var(--lateralMargin) 26px;
    }

    footer .footer-inner .left {
        display: none;
    }

    footer .footer-inner .right {
        flex-flow: column-reverse;
        justify-content: normal;
        width: 100%;
        height: fit-content;
        /*margin-top: -15px;*/
    }

    footer .footer-inner .right .copy {
        position: absolute;
        top: -15px;
        width: 50%;
    }

    footer .footer-inner .right .logo-footer {
        height: fit-content;
        width: 100%;
        padding-top: 43px;
    }

    footer .footer-inner .right .logo-footer svg {
        width: 100%;
        height: auto;
    }

    footer .footer-inner .right ul.credits-sm {
        position: relative;
        display: flex;
        padding-top: 26px;
        column-gap: 10px;
    }

    footer .footer-inner .right ul.credits-sm li {
        position: relative;
        display: inline-block;
        width: 50%;
    }

    footer .footer-inner-sm {
        position: relative;
        display: flex;
        column-gap: 10px;
    }

    footer .footer-inner-sm .left,
    footer .footer-inner-sm .right {
        position: relative;
        display: flex;
        flex-flow: column;
        width: 50%;
        row-gap: 36px;
    }

    footer .footer-inner-sm .left ul,
    footer .footer-inner-sm .right ul {
        display: flex;
        position: relative;
        flex-flow: column;
        row-gap: 6px;
    }
}


@media only screen and (max-width: 740px) {
    footer .footer-inner .right .copy {
        top: -29px;
    }

    footer .footer-inner .right .copy span {
        display: block;
    }
}