.backBtn:hover span {
    color: #ff6565;
    transition: all;
    transition-duration: 300ms;
}

.backBtn:hover svg>path {
    fill: #ff6565;
    transition: all;
    transition-duration: 300ms;
}

.aLink:hover>svg>path {
    fill: #ff6565;
    transition: all;
    transition-duration: 300ms;
}

.rotate {
    transform: rotateY(180deg);
}

.categoryP:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    transition: all 0.5s ease 0s;
}

.categoryP img {
    transform: rotateY(180deg);
    transition: all 0.8s ease 0s;
}

.categoryP:hover img {
    transform: rotateY(1.5turn);
}

.hoverItem:hover div>a>img {
    transform: scale(1.05);
}

.hoverItem:hover div>div>.button {
    transform: translateY(-35px);
    opacity: 1;
}

.imageItem:hover img {
    transform: scale(1.03);
}

.imageItem::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 200%;
    left: -280px;
    top: -50%;
    background-color: #ffffff17;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    z-index: 1;
}

.imageItem::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 200%;
    left: 180%;
    top: -50%;
    background-color: #ffffff17;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    z-index: 1;
}

.imageItem:hover::before {
    left: 180%;
    background-color: #ffffff17;
    content: "";
    height: 200%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    width: 80px;
    z-index: 1;
}

.imageItem:hover::after {
    left: -280px;
    background-color: #ffffff17;
    content: "";
    height: 200%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    width: 80px;
    z-index: 1;
}

.blogItem:hover .blogItemChild a img {
    transform: scale(1.03);
}

.blogItem .blogItemChild a::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 200%;
    left: -280px;
    top: -50%;
    background-color: #ffffff17;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    z-index: 1;
}

.blogItem .blogItemChild a::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 200%;
    left: 180%;
    top: -50%;
    background-color: #ffffff17;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    z-index: 1;
}

.blogItem:hover .blogItemChild a::before {
    left: 180%;
    background-color: #ffffff17;
    content: "";
    height: 200%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    width: 80px;
    z-index: 1;
}

.blogItem:hover .blogItemChild a::after {
    left: -280px;
    background-color: #ffffff17;
    content: "";
    height: 200%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(.19, 1, .22, 1);
    width: 80px;
    z-index: 1;
}

.footerLink::after {
    position: absolute;
    content: "";
    bottom: -4px;
    right: -4px;
    background-color: #ff6565;
    height: 1px;
    width: 0px;
    transition: all 500ms ease;
}

.footerLink:hover::after {
    width: 100%;
}

.rotateY {
    transform: rotateY(90deg);
}

/* .animation{
animation: show 2500ms;
opacity: 1;
} */

.animation .imgItem {
    opacity: 0;
    animation: showImg 2500ms forwards;
    /* animation-fill-mode: both; */

}

.animation .absItem img {
    opacity: 0;
    animation: showImage 1.5s 1.3s forwards;
    /* animation-fill-mode: both; */
}

.animation .absItem h2 {
    opacity: 0;
    animation: showHeading 1000ms 2.2s forwards;
    /* animation-fill-mode: both; */
}

.animation .absItem p {
    opacity: 0;
    animation: showP 1.5s 2.8s forwards;
    /* animation-fill-mode: forwards; */
}

.animation .absItem a {
    opacity: 0;
    animation: showLink 1.5s 3.2s forwards;
}

/* @keyframes show{
    0%{
        opacity: 0;
    }
    25%{
        opacity: 0.25;
    }
    50%{
        opacity: 0.5;
    }
    75%{
        opacity: 0.75;
    }
    100%{
        opacity: 1;
    }
} */

@keyframes showImg {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes showImage {
    0% {
        opacity: 0;
        right: -3rem;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

@keyframes showHeading {
    0% {
        opacity: 0;
        transform: translate3d(0, 80%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes showP {
    0% {
        opacity: 0;
        transform: translate3d(0, 80%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes showLink {
    0% {
        opacity: 0;
        transform: translate3d(0, 80%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffedb4;
    border-radius: 5px;
}

.translate {
    transform: translate(-50%);
    box-shadow: 0 1px 24px 0 rgba(0, 0, 0, .09);
}

.translateParent:hover .translate {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    /* pointer-events: visible; */
    top: 56px;
}

.shadowItemList {
    box-shadow: 0 0 3.76px .24px rgba(0, 0, 0, .05);
}

.parentShadowItemList:hover .shadowItemList {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.linkArrowBlog svg path {
    transition: all 500ms;
}

.linkArrowBlog:hover svg path {
    fill: #ff6565;
}