/*
Theme Name: Hello Elementor Child
Theme URI: https://amplivista.com/
Description: Astra Child Theme for Techproc website.
Author: Amplivista Web Solutions Pvt Ltd
Author URI: https://amplivista.com/
Template: hello-elementor
Version: 1.0
Text Domain: Mushroomology
*/

/* Home Page Start  */
.community-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.community-card {
    position:relative;
    height:480px;
    overflow:hidden;
    border-radius:6px;
}
.community-video {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.community-card:before {
     content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.95) 25%,
        rgba(0,0,0,.75) 55%,
        rgba(0,0,0,.25) 80%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}
.play-btn {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border:2px solid #ff6b00;
    border-radius:50%;
    z-index:5;
    cursor:pointer;
}
.play-btn span {
    position:absolute;
    top:50%;
    left:53%;
    transform:translate(-50%,-50%);
    width:0;
    height:0;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    border-left:18px solid #ff6b00;
}
.community-content {
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:4;
}
.community-type {
	font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    color: #EDE6D6;
    background: #5C7A3E;
    display: inline-block;
}
.community-content h3{
    margin: 0 0 5px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 300;
    color: #EDE6D6;
    display: block;
    line-height: 1.2;
}
.community-content p {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #C4A882;
    display: block;
}
.amp_our_community_grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}
.amp_community_item {
    text-align:center;
}
.amp_community_image {
    overflow:hidden;
}
.amp_community_image img {
    width:100%;
    height:auto;
    display:block;
    border-radius: 4px 4px 0 0;
}
.amp_community_title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    background: var(--e-global-color-6291836);
    padding: 12px;
    border-radius: 0 0 4px 4px;
    color: var(--e-global-color-primary);
}
.amp_community_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.amp_community_item {
    background: #d8d1c2;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}
.amp_community_video_wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}
.amp_community_video_wrap video,
.amp_community_video_wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.amp_community_title {
    padding: 12px;
    font-size: 16px;
    font-weight: 400;
    color: var(--e-global-color-primary);
    font-family: "Fraunces", Sans-serif;
    background: var(--e-global-color-e009064);
}
/* Why Mushroom Page */
.why_mush_rightcrp_con{
	transition: all ease-in 0.3s;
}
.why_mush_rightcrp_con:hover{
	background: #3B2A1A !important;
}
.why_mush_rightcrp_con:hover .elementor-widget-text-editor p,
.why_mush_rightcrp_con:hover .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-title{
	color: #C4A882;
}
.why_mush_rightcrp_con:hover .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-description{
	color: #EDE6D6;
}
@media(max-width:1024px){
    .community-grid{
        grid-template-columns:repeat(2,1fr);
    }
	.amp_our_community_grid{
        grid-template-columns:repeat(3,1fr);
    }
    .amp_community_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:767px){
    .community-grid{
        grid-template-columns:1fr;
    }
    .community-card{
        height:500px;
    }
    .community-content h3{
        font-size:30px;
    }
	.amp_our_community_grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
    .amp_community_wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .amp_community_title {
        font-size: 16px;
    }
}
/* Home Page End */