:root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
    --Paragraph-Text-Footer: #B5B5B5;
}



footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    border-top: 1px solid var(--Background-Color);
    overflow-y: hidden;
    padding: 30px 50px 0px 50px;
    background-color: var(--Background_Body);
}

footer .part1 h1 {
    color: var(--Basic-Text-Color);
}

footer .part1 p {
    color: var(--Paragraph-Text-Color);
    font-weight: 500;
    font-size: 1.1rem;
}

footer .part1 ul li a {
    color: var(--Basic-Text-Color);
    font-size: 1.05rem;
    transition: all 0.3s;
    font-weight: 500;
}

footer .part1 ul li a:hover {
    color: var(--Paragraph-Text-Color);
}

footer .part1 ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


footer .Buttons_Footer a:first-child {
    background-color: var(--Background-Color);
    border: 1px solid var(--Background-Color);
}


footer .Buttons_Footer {
    flex-direction: column;
    text-align: center;
}

.buttons_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.part1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    display: flex;
}

.Buttons_Footer {
    display: flex;
    gap: 10px;
}

.Buttons_Footer a:hover {
    transform: translateY(-5px);
}

.Buttons_Footer a:last-child {
    cursor: not-allowed;
}

footer .part2 {
    margin-top: 10px;
}

footer .part2 h1 {
    font-size: 1.2rem;
    color: var(--Basic-Text-Color);
}



.Buttons_Footer a {
    background-color: var(--Background-Color);
    color: var(--White-Color);
    padding: 12px 50px;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid var(--Background-Color);
    transition: all 0.3s ease;
}

.Buttons_Footer a:last-child {
    background-color: var(--Background_Body);
    color: var(--Background-Color);
}

.Buttons_Footer a i {
    color: var(--Background-Color);
}

footer .part2 a{
    color: var(--Secondary-Text-Color);
    font-weight: 500;
}

@media only screen and (max-width:1100px) {
    footer .part1 h1 {
        font-size: 1.4rem;
    }

    footer .part1 p {
        font-size: 0.9rem;
    }

    .Buttons_Footer a {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    footer .part2 h1{
        font-size: 1.2rem;
    }

    footer .part1 ul li a{
        font-size: 0.8rem;
    }

    footer .part1 ul li{
        width: fit-content;
        height: fit-content;
    }

    footer .part1 ul{
        gap: 0;
    }

    footer .part2 h1{
        font-size: 1rem;
    }

    footer .part2 a{
        font-size: 0.8rem;
    }

    footer .part2 {
        margin-top: 0px;
    }

}

@media only screen and (max-width:700px) {
    .part1{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    footer{
        padding: 20px 20px 0px;
    }

    footer .part2{
        text-align: center;
    }

    footer .part1 ul{
        display: none;
    }

    footer .part1 h1{
        font-size: 1.5rem;
    }

    footer .part1 p{
        font-size: 1rem;
    }

    footer .part1 ul li a{
        font-size: 0.9rem;
    }

    footer .part2{
        margin-top: 10px;
    }
   
}