@charset "utf-8";

/* 모바일기기 */
@media only screen and (max-width: 320px) {
.img-card_3 {width: 100%; height:100px; display:block; overflow: hidden;}
.img-card_3 img{ width: 100%;  height:100px;  object-fit:cover;   transition: all .25s ease; margin-bottom:20px;} 
.margin_bottom_img {margin-bottom:20px;}

}
/* 모바일기기 + 태블릿 */
@media only screen and (min-width: 321px) and (max-width: 768px){
.img-card_3 {width: 100%; height:100px; display:block; overflow: hidden;}
.img-card_3 img{ width: 100%;  height:100px;  object-fit:cover;   transition: all .25s ease; } 
.margin_bottom_img {margin-bottom:20px;}

}
/* 태블릿 */
@media only screen and (min-width: 769px) and (max-width: 1200px){
.img-card_3 {width: 100%; height:130px; display:block; overflow: hidden;}
.img-card_3 img{ width: 100%;  height:130px;  object-fit:cover;   transition: all .25s ease;}
.margin_bottom_img {margin-bottom:20px;}

}
/* 데스크탑 */
@media only screen and (min-width: 1201px) {
.img-card_3 {width: 100%; height:130px; display:block; overflow: hidden;}
.img-card_3 img{ width: 100%;  height:130px; object-fit:cover;   transition: all .25s ease;} 
.margin_bottom_img {margin-bottom:0px;}

}