body {
    background-color: aqua;
    font-family: 'Roboto', sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
a {
    text-decoration: none;
}
.row {
    display: flex;
}
.jc-center {
    justify-content: center;
}
.rotate {
    animation: rotation 3s infinite linear;
}
.stack-wrap {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    overflow-y: scroll;
}
.stack-wrap::-webkit-scrollbar-track {
    background-color: aqua;
    border-radius: 25px;
}
.stack-wrap::-webkit-scrollbar {
    width: 5px;
}
.stack-wrap::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 25px;
}
.stack-wrap::-webkit-scrollbar-thumb:hover {
    background: white;
}
.stack-wrap img {
    padding: 1rem;
    align-self: end;
}
.color-white {
    color: white;
}
.fw-l {
    font-weight: lighter;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-0 {
    margin-top: 0;
}
.div-50 {
    width: 50%;
}
.div-auto {
    width: auto;
}
.mt-3 {
    margin-top: 3rem;
}
.mt-5 {
    margin-top: 5rem;
}
.d-flex {
    display: flex;
}
@keyframes rotation {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(359deg);
    }
}
.card {
    width: 50%;
    background-color: black;
    border-radius: 25px;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .card {
        width: 100%;
    }
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes fallWitBounce {
    0% {
        transform: translateY(-200%);
        opacity: 0;
    }
    25% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.card {
    animation: 1s ease-out 0s 1 slideInLeft;
}
.card h1 {
    animation: 1s ease-in 0s 1 slideInLeft;
}
.card h4 {
    animation: 1.5s ease-in 0s 1 slideInLeft;
}
.media-p svg {
    opacity: 0;
    animation: 1s cubic-bezier(0.11, 0.9, 1, 1) 1.5s 1 fallWitBounce forwards;

}
.icon-link:hover svg {
    opacity: 0.75 !important;
}
