/* ===================================================================================

* Theme Name: Delishs Child
* Theme URI: https://wp.rrdevs.net/delishs/
* Author: RRdevs
* Author URI: https://themeforest.net/user/rrdevs/portfolio
* Description: Delishs - Restaurant Cafe WordPress Theme
* Version: 1.0.2
* Tested up to: 6.7
* Requires PHP: 7.4
* Template: delishs
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

.leftRight {
    animation: leftRight 1.3S infinite alternate;
}

.floatingRight {
    animation: floatRotateRight 6s ease-in-out infinite;
    animation-delay: 500ms;
}

@keyframes floatRotateRight {
    0% {
        transform: translate(0, 0) rotate(-45deg);
    }
    25% {
        transform: translate(-15px, 15px) rotate(-15deg);
    }
    50% {
        transform: translate(0px, 10px) rotate(-35deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(15deg);
    }
    100% {
        transform: translate(0, 0) rotate(-45deg);
    }
}

.floatingLeft {
    animation: floatRotateLeft 6s ease-in-out infinite;
}

@keyframes floatRotateLeft {
    0% {
        transform: translate(0, 0) rotate(45deg);
    }
    25% {
        transform: translate(-20px, 20px) rotate(15deg);
    }
    50% {
        transform: translate(0px, 10px) rotate(45deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(-15deg);
    }
    100% {
        transform: translate(0, 0) rotate(45deg);
    }
}

.about-our-company_shape-1 {
    top: 225px;
    right: -50px;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
}
.about-our-company_shape-2 {
    top: -80px;
    left: 20px;
    width: 160px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 600px) {
    .about-our-company_shape-1 {
        top: 225px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-size: contain;
    }
    .about-our-company_shape-2 {
        top: -100px;
        left: -120px;
        width: 200px;
        height: 175px;
        background-size: contain;
    }
}