.sec-card{display:flex;flex-direction:column;margin-bottom:8rem;gap:3.5rem;}
.card{display:flex;flex-direction:row;justify-content:center;gap:3rem;}
.card>div{display:flex;flex-direction:column;width:30%;height:auto;box-shadow:1px 1px 15px 0px #c5c5c5;transition:0.3s;}
.card>div:hover{scale:1.1;}
.card>div>.card-img{height:300px;background-size:cover;background-position:50% 50%;}
.card>div>.card-con{padding:2.5rem 2rem;}
@media screen and (min-width:769px) and (max-width:1024px){
	.card>div>.card-img{height:200px;}
	.card>div:hover{scale:1.0;}
} 
@media screen and (max-width: 768px){
	.card{flex-direction:column;justify-content:center;align-items:center;}
	.card>div{width:100%;flex-direction:row;}
	.card>div>.card-img{width:50%;height:200px;}
	.card>div>.card-con{width:50%;align-content:center;}
}	