.round-logo {
    display: flex;
    border-radius: 50%;
    transition: all 0.25s, box-shadow 0.25s cubic-bezier(0, 0.9, 1, 1);
    position: relative;
    transform: scale(1);
    box-shadow: 2px 4px 0px 0px rgba(0, 0, 0, 0.3);
}
.round-logo.size-xl {
    height: 96px;
    width: 96px;
}
.round-logo.hoverable:hover {
    box-shadow: 7px 21px 0px -1px rgba(0, 0, 0, 0.15);
    transform: scale(1.25);
}
.round-logo__container {
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    border: 0 none;
    background: none;
}
.round-logo__img {
    border-radius: 50%;
    transition: all .25s;
    object-fit: cover;
}
.round-logo.size-xl img {
    height: 96px;
    width: 96px;
}
.round-logo.hoverable:hover .round-logo__img {
    transform: rotate(-10deg);
}

.round-logo.lifted {
    box-shadow: 7px 21px 0px -1px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
}
