/*

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

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: 1.0.1

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/


.category-thumbnail img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
}

.category-thumbnail {
    width: 35%;
    margin-right: 40px;
}

.category-details {
    display: flex;
    flex-direction: row;
}

.category-content {
    width: 60%;
    font-family: "Manrope", Sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.category-name{
    
    font-family: "Cormorant Garamond", Sans-serif;
    font-size: 40px;
    font-weight: 400;
    position:relative;
}



.category-name:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0;
	border-bottom: solid 1px #000;
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
.category-description {
    margin: 25px 0px;
}