.footer {
    width: 100%;
    min-height: 150px;
    background-color: #171718;
    background-size: cover;
    background-position: center;
}
.footer * {
    margin: auto;
}

.footer .text-area {
    width: 50%;
    min-height: 150px;
    display: flex;
    padding-top: 10px;
}

.footer .text-area .left-text {
    width: 30%;
    height: 80%;
    margin-left: 10px;
}

.footer .text-area .right-box {
    width: 30%;
    height: 80%;
    margin-right: 10px;
}

.right-box .soc-site {
    width: fit-content;
    height: fit-content;
}
.right-box .soc-site p {
    color: #AFC6C6;
    font-size: 1.2rem;
    background: linear-gradient(to right, #7b39ff, #ff39a6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.2rem;
}

.right-box .soc-site a img {
    width: 32px;
    height: auto;
    transition: .4s;
}
.right-box .soc-site a:hover img {
    transform: scale(1.2);
}
.left-text span a:hover {
    color: #9762ff;
}





@media screen and (max-width: 1074px) {
    .footer .text-area {
        width: 80%;
    }
}