html,
body {
    overflow-x: hidden;
}

.climax-hover {
    transition: .7s ease;
    cursor: pointer;
}

.climax-hover:hover {
    transform: scale(.95);
    opacity: .8;
}

.climax-cm-floting {
    animation: float 3.7s ease-in-out infinite !important;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}