.navbar-scroll-change {
    background: var(--bg-color);
    padding-bottom: 9vh;
    animation: scroll 0.5s ease-in-out;
}

.resume-content > div:hover{
    transform: scale3d(1.05, 1.05, 1.05);
}

#services .card-set > div:hover .circle{
    transition: 0.5s ease-in-out;
    background: var(--secondary-color);
}

#services .card-set > div:hover svg path {
    transition: 0.5s ease-in-out;
    stroke: var(--bg-color);
}

aside .follow-icons div:hover{
    transition: 0.5s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--secondary-color);
}

aside .follow-icons div:hover svg path{
    transition: 0.5s ease-in-out;
    fill: var(--bg-color);
}

@keyframes scroll {
    0%{
        transform: translateY(-100%);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

#my-project .card img + div > div .arrow-btn:hover svg{
    transform: rotate(-45deg);
    transition: 0.5s ease-in-out;
}