@charset "UTF-8";
/* snippet-row-main-services START */
#snippet-row-main-services {
    .icon-services {
        animation: infinite 4s floatIcon ease;
    }
    .floatShadow {
        animation: floatShadow 4s ease-out infinite;
        transform-origin: center center;
        ellipse {transform-origin: center center; }
    }
}
@keyframes floatIcon {
    50% { transform: translate(0, -4px) scale(1.1); }
}
@keyframes floatShadow {
    100% { width: 90%; }
    50% { width: 60%; }
    0% { width: 90%; }
}
/* snippet-row-main-services END */