/* 
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 */
.product-owl-slider .owl-stage-outer{
    padding: 20px 0;
}
.product-owl-slider .item{
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: 0 0 25px #74cac15c;
    border-radius: 70px 0;
    text-align: center;
}
.product-owl-slider .item a h3{
    color: #0e5226;
    font-size: 18px;
    margin: 0;
}
.product-owl-slider .item img{
    border-radius: 20px 0;
    max-width: 100%;
    width: 175px;
    text-align: center;
    min-height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
    margin-bottom: 15px;
}
.product-owl-slider .owl-nav{
    position: absolute;
    top: 47%;
    width: 100%;
}
.product-owl-slider .owl-nav .owl-prev{
    position: absolute;
    left: -35px;
    font-size: 30px;
}
.product-owl-slider .owl-nav .owl-next{
    position: absolute;
    right: -35px;
    font-size: 30px;
}
.product-owl-slider .owl-nav button{
    font-size:30px !important;
}

.latest-news-widget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-item {
    box-shadow: 0px 0px 20px 0px #75CAC140;
    padding: 20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: 20px;
}

h3.news-title{
    margin:0;
    margin-bottom:15px;
}

.news-title a{
    font-size: 16px;
    color: #1D807B;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-readmore {
    font-size: 14px;
    color: #1D807B;
    font-weight: 600;
}
.product-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-item {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    transition: all .3s ease;
    border:1px solid #dbdddc;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.product-thumb img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.product-title{
    line-height: 1.3;
    margin: 0;
    margin-bottom: 10px;
}
.product-title a{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #288a85;
}

.product-excerpt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.product-readmore{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    background: #288a85;
    padding: 8px 20px;
    border-radius: 5px;
}
.product-readmore:hover{
    color: #fff;
    background: #288a70;
}
.menu-image-title-after.menu-image-not-hovered img, .menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper, .menu-image-title-before.menu-image-title{
	padding-right:0 !important;
}
@media (max-width:991px){
    .product-grid-3col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media (max-width:767px){
    .latest-news-widget {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:480px){
    .product-grid-3col {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    .latest-news-widget {
        grid-template-columns: repeat(1, 1fr);
    }
}