﻿/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
/* lineup class and keyframes */
.lineUp {
    animation: 2s anim-lineUp step-start;
}

.lineUp4 {
    animation: 4s anim-lineUp ease-out;
}

.lineUp6 {
    animation: 6s anim-lineUp ease-out;
}

.lineUp8 {
    animation: 8s anim-lineUp ease-out;
}

@keyframes anim-lineUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.menu-item:hover > .menu-link, .menu-item.current > .menu-link {
    color: #333;
}

.fbox-content p {
    color: #fff !important;
}

.fbox-content h3 {
    color: #fff !important;
}
