.card-section {
    position: relative;
    padding: 100px 0;
}

.card-section > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
}

/*.card-element-reverse {*/
/*    flex-direction: row-reverse;*/
/*}*/


.animation-btn {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 9px 27px;
    border: 1px solid;
    width: fit-content;
    border-radius: 14px;
    background: #ff5f09;
}

.animation-btn span {
    color: #fff !important;
}

.animation-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 55px;
    background-color: #fff;
    transform: translate(-110%, 0) skew(-30deg);
    transition: 0.5s;
    z-index: 1;
}

.animation-btn.black-btn::before {
    background-color: #000;
}

.animation-btn:hover {
    transform: unset;
    border: 1px solid #fff;
}

.animation-btn > span{
    position: relative;
    z-index: 2;
    transition: 500ms;
}

.animation-btn:hover > span{
    color: #ff5f09 !important;
    z-index: 2;
}

.animation-btn.black-btn:hover > span{
    color: #fff;
    z-index: 2;
}

.animation-btn:hover::before {
    transform: translate(-5%, 0) skew(-15deg);
}
