footer 
{
    padding-bottom: 1px;
}
.Footer
{
    display: flex;
    gap: 100px;
    justify-content: left;
    padding-inline: var(--main-padding);
    padding-block: var(--content-padding);
    background-color: var(--main-color2);
    color: white;
    position: relative;
    margin-top: 50px;
    padding-bottom: 100px;
    margin:15px;
    border-radius: 15px;
}
.FooterLogo
{
    width: 175px;
}
.FooterBlock1
{
    max-width: 350px;
}
.FooterBlock1 p
{
    color: rgba(255, 255, 255, 0.65);
    line-height: 26px;
    font-family: Lexend;
    font-weight: 300;
    font-size: 14px;
}
.FooterSocial
{
    display: flex;
    align-items: center;
    gap: 20px;
}
.FooterSocial svg *
{
    fill: var(--main-color1);
}
.FooterBlock2 ul,.FooterBlock3 ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}
.FooterTitle
{
    margin:0;
    margin-bottom: 10px;
    font-size: 22px;
    border-bottom: 1px Solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    font-family: 'Poppins';
}
.Footer a
{
    color: white;
    text-decoration: none;
    padding-block: 7px;
    display: block;
    transition: var(--ts-slow);
    font-weight: 400;
    opacity: 0.75;
    font-family: 'Poppins';
}
.Footer a:hover
{
    cursor: pointer;
    opacity: 0.5;
}
.Copyright
{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins';
    color: #ffffffc4;
}
.Copyright a
{
    color: white;
    font-weight: bold;
    font-family: "Poppins";
    opacity: 1;
}
.DesktopFooterMenuItem
{
    color: white !important;
}
.footerStoreArea
{
    display: grid;
    gap: 20px;
}
.footerStoreImage
{
    width: 200px;
}
@media screen and (min-width:200px) and (max-width: 1100px)
{
    .Footer
    {
        display: grid;
        gap: 50px;
    }
    .Copyright
    {
        font-size: 14px;
        line-height: 12px;
        display: flex;
        align-items: center;
    }
    .footerStoreImage
    {
        width: 100%;
    }
    .FooterTitle
    {
        font-size: 18px;
        font-weight: 600;
    }
    .Footer a
    {
        font-size: 15px;
    }
}