.home-contacts{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 250px;
    width: calc(100% - 250px);
    transition: var(--tran-05);
}
.sidebar.close ~ .home-contacts{
    left: 88px;
    width: calc(100% - 88px);
}
.contacts-con{
    position: relative;
    height: 300px;
    margin: 240px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.contacts-con .contacts{
    position: relative;
    width: calc(400px - 30px);
    height: calc(300px - 30px);
    background: rgba(255, 255, 255, 0.2);
    float: left;
    margin: 15px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
}
.contacts-con .contacts .icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 49, 64);
    transition: 0.5s;
    z-index: 1;
}
.contacts-con .contacts:hover .icon{
    top: 20px;
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.contacts-con .contacts .icon .ic{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    transition: 0.5s;
    color: #fff;
}
.contacts-con .contacts:hover .icon .ic{
    font-size: 60px;
}
.contacts-con .contacts .discord{
    position: absolute;
    top: 100px;
    height: calc(100% - 100px);
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
}
.contacts-con .contacts .discord button{
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    position: absolute;
    width: 115px;
    margin-left: 260%;
    margin-top: 150%;
}
.contacts-con .contacts .discord button:hover{
    background: #fff;
    color: #000000;
}
.contacts-con .contacts .mail{
    position: absolute;
    top: 0px;
    height: calc(100% - 100px);
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
}
.contacts-con .contacts .mail .butt{
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    position: absolute;
    width: 170px;
    margin-left: 63%;
    margin-top: 120%;
}
.contacts-con .contacts .mail .butt:hover{
    background: #fff;
    color: #000000;
}
.contacts-con .contacts .mail .copyd{
    opacity: 0;
    transition: var(--tran-05);
}
.contacts-con .contacts .mail-active .copyd{
    opacity: 2;
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    position: absolute;
    width: 170px;
    margin-left: -6%;
    margin-top: 47.5%;
    transition: var(--tran-04);
}
.contacts-con .contacts .mail-active .copyd:hover{
    background-color: #FFF;
    color: #000000;
}
.contacts-con .contacts .mail-active .butt{
    opacity: 0;
}