/* ===============  Google fonts ============ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===== Main Css =======
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Poppins',sans-serif;
}

body {
background: white;
min-height: 100vh;  /* viewporthigh 
display: flex;
justify-content: center;
align-items: center;
}

/* ========== Card Css ===== 
.carousel-inner{
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
flex-wrap: wrap;
margin: 15px;
}

.card{
position: relative;
background: #fff;
width: 350px; /*100%
box-shadow: 0 5px 25px rgb(2 2 2 / 25%);
border-radius: 10px;
overflow: hidden;
}

.card .img-wrapper{
position: relative;
width: auto; /*350px; /*100%
max-width: 800px;
height: auto; /*200px;
display: flex;
justify-content: center;
align-items: center;
}

.card .img-wrapper img{
width: 102%;
height:102%;
}
*/
.card-body{
position: relative;
text-align: center;
margin: 15px;
overflow: hidden;
}

.card-body .card-text{
position: relative;
font-size: .9em;
text-align: left;
height: 100px;
overflow:hidden;
transition: height 0.3s ease; // insert 23:03
}

.card-body .card-text:before{  /* set for both classes the content "" in front the context */
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, #fff, transparent); 
display: none;

}

.card.gradient .card-body .card-text:before{
display: block;
}

.card-body.see-more-btn{
font-size: .85em;
color: gray; /* #777 */
user-select: none;
cursor: auto;
transition: color 0.3s ease;
}

.card-body .see-more-btn:hover{
color: black;  /* #111 */
}

/* ---=== Media queries (max-width: 450px) ====--- 
@media screen and (max-width: 450px){
.card-container {
margin: 15px;	
    }
.card {
width: 100%;
}	

.card .card-img {
width: 100%;
max-width:800px;
height:auto;
}}

*/	


