* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background-color: #000;
    color: white;
    padding: 50px;
    height: max-content;
}

.footer>.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* max-width: 1381px; */

    /* height: 281px; */
    margin: 0 auto;
    border-width: 1px;

}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.logo {
    width: 148px;
    height: 39px;
    top: 2230px;
    left: 305px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    width: 300px;
}

.blue-dot {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    border-radius: 50%;
    margin-right: 10px;
}

.logo-text {
    font-size: 32px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 80px;
}

.social-icons svg {
    width: 60px;
    height: 60px;
    margin-right: 20px
}

.footer-middle {
    flex: 1;
    margin: 0 20px;
}

.footer-middle h3 {
    margin-bottom: 10px;
}

.footer-middle p.subtitle {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-middle ul {
    list-style: none;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    font-family: Alibaba PuHuiTi;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #6A6A6A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-middle ul li a:hover {
    color: #007bff;
}

.footer-right {
    flex: 2;
}

.footer-right h3 {
    margin-bottom: 10px;
}

.footer-right p.subtitle {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-right .text {
    font-family: Alibaba PuHuiTi;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: justify;
    text-transform: uppercase;
    color: #6A6A6A;
    /* width: 512px; */
    height: 112px;
}

.footer {
    height: max-content;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    font-family: Alibaba PuHuiTi;
    font-weight: 400;

    line-height: 100%;
    letter-spacing: 14%;
    text-transform: uppercase;
    color: #6A6A6A;

}

.social-icons {
    width: 100%;
    margin-right: 50px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}




@media screen and (max-width: 800px) {
    .logo img {
        width: 200px;
    }
    .copyright>p {
        font-size: 2rem;
    }

    .footer .content>div {
        min-width: 40%;
    }

    .logo {
        transform-origin: top left;
        transform: scale(2);
    }


    .social-icons {
        margin-top: 80px;
        transform: scale(2);
    }

    .footer-middle>h3 {
        font-size: 4rem;
    }

    .footer-middle>p.subtitle {
        font-size: 2.5rem;
    }

    .footer-middle>ul>li>a {
        font-size: 2.5rem;
    }

    .footer-middle>ul>li {
        margin-bottom: 40px;
    }

    .footer-right>h3 {
        font-size: 4rem;
    }

    .footer-right>p.subtitle {
        font-size: 2.5rem;
    }

    .footer-right>.text {
        font-size: 2.5rem;
       line-height: 4rem;
       margin-bottom: 18rem;
    }



    .text:has(h1){
        padding: 20px 40px;
    }
}