.foot{
    width: 100%;
    min-height: 120px;
    height: fit-content;
    background-image:linear-gradient(
        rgb(var(--secondary-color)),
        rgb(var(--bg-color))
    );
    position: relative;
    clear: both;
    display: flex;
    flex-flow: column;
    z-index: 999999999;
    box-sizing: border-box;
    padding-top: 20px;
    justify-content: space-between;
    gap: 20px;
    margin-top: 100px;
}
.copyright{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(var(--txt-color));
    text-align: center;
    font-size: 1em;
}
.f_bar{
    width: 100%;
    height: 20px;
    background-color: rgb(var(--main-color));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: small;
}
.f_bar a{
    text-decoration: none;
    color: #fff;
}
.foot_menu{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-inline: 20px;
    box-sizing: border-box;
}
.foot_menu_item{
    width: 75px;
    height: 75px;
    font-size: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    border:4px solid rgba(var(--main-color),0.2);
    box-sizing: border-box;
    transition: all 400ms;
}
.foot_menu_item:hover{
    background-color: rgb(var(--secondary-color));
}
.foot a{
    text-decoration: none;
}
.foot_contact{
    width: 75px;
    height: 75px;
    font-size: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    border:4px solid rgba(var(--main-color),0.2);
    box-sizing: border-box;
    transition: all 400ms;
    position: absolute;
    top:-80px;
    right: 5px;
    background-color: rgb(var(--main-color));
}
.foot_contact:hover{
    background-color: rgb(var(--accent-color));
}