/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.single-post-content h2 {
    font-size: 30px;
    font-weight: 500 !important;
}
.single-post-content h3 {
    font-size: 25px;
    font-weight: 500 !important;
}
.our-blog .jltma-blog-wrapper.jltma-blog-grid.jltma-row {
    display: flex;
    column-gap: 30px;
    row-gap: 30px;
}
.jltma-post-entry-meta {
    padding: 0 20px;
}
.number h2 {
    height: 50px;
    width: 50px;
    background: var( --e-global-color-secondary );
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1em !important;
}
/* .single-post main {
    padding-top: 3%;
    padding-bottom: 5%;
} */
.rotate-img {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@media (max-width: 767px) {
.our-blog .jltma-blog-wrapper.jltma-blog-grid.jltma-row {
    flex-direction: column;
	column-gap:10px;
	row-gap:10px;
}
}