@charset "utf-8";
*{margin: 0; padding: 0; }
ul{list-style: none;}
a{text-decoration: none; color: #000;}

/* 메뉴화면 메인사진 */
.img{width: 100%; position: relative;}
.img-wrap img{
    width: 100%;
}
.img-wrap h2{
    font-size: 32px;
    position: absolute;
    left: 50%; transform: translateX(-50%);
    top: 50%;
    color: #fff;
}

/* 제품화면 */
.product{
    width: 100%;
    position: relative;
    top: -5px;
}
.product-wrap{
    width: 1200px; margin: 0 auto;
}
.product-wrap .aircom .title{
    margin-top: 70px;
    text-align: center;
}
.product-wrap .aircom .title h3{
    font-size: 34px;
}
.product-wrap .aircom .title .line{
    position: absolute;
    width: 230px; height: 40px;
    background-color: #fff;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.product-wrap .aircom .title .line2{
    position: absolute;
    width: 700px; height: 0.5px;
    background-color: #000;
    top: 35px; left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.product-wrap .aircom .top{
    margin-top: 50px;
    display: flex; justify-content: space-between;
}
.product-wrap .aircom .middle{
    margin-top: 50px; margin-top: 50px;
    display: flex; justify-content: space-between;
}
.product-wrap .aircom .bottom{
    margin-top: 50px; margin-top: 50px;
    display: flex; justify-content: space-between;
}
.product-wrap .aircom .pro{
    width: 350px;
    position: relative;
    display: block;
    text-align: center; padding: 20px 15px;
    /* background-color: #fafafa; */
}
.product-wrap .aircom .pro img{
    width: 300px;
}
.product-wrap .aircom .pro h3{
    margin: 20px 0;
}
.product-wrap .aircom .pro h2{
    margin: 15px 0;
    font-size: 18px;
}



/* 모바일 */
.m_img{
    max-width: 100%;
    margin-top: 80px;
    position: relative;
    text-align: center;
    display: none;
}
.m_img img{max-width: 100%; position: relative;}
.m_img .img-wrap2 h2{
    font-size: 28px;
    color: #fff;
    position: absolute;
    top: 25%; left: 50%;
    transform: translateX(-50%);
}


/* 모바일 제품 */
.m_product{
    width: 330px; margin: 0 auto;
    margin-top: 70px;
    display: none;
    text-align: center;
}
.m_product .product-wrap2 .aircom .title{
    position: relative;
}
.m_product .product-wrap2 .aircom .title h3{
    font-size: 28px;
}
.m_product .product-wrap2 .aircom .title h3:nth-of-type(2){
    margin-top: -10px;
}
.m_product .product-wrap2 .aircom .title .box{
    width: 170px; height: 20px;
    background-color: #fff;
    position: absolute;
    top: 25px; left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.m_product .product-wrap2 .aircom .title .m_line{
    width: 330px; height: 0.5px;
    background-color: #000;
    position: absolute;
    top: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.m_product .product-wrap2 .aircom .pro{
    width: 300px;
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 15px;
    margin-top: 50px;
    overflow: hidden;
    /* background-color: #fafafa; */
}
.m_product .product-wrap2 .aircom .pro img{
    width: 280px;
}
.m_product .product-wrap2 .aircom .pro h3{
    margin: 20px 0;
}
.m_product .product-wrap2 .aircom .pro span{
    font-weight: bold;
}

@media screen and (min-width: 501px) and (max-width: 1000px){
    .img{display: none;}
    .m_img{display: block;}
    .product{display: none;}
    .m_product{display: block;}
}
@media screen and (min-width: 326px) and (max-width: 500px){
    .img{display: none;}
    .m_img{display: block;}
    .product{display: none;}
    .m_product{display: block;}
}
@media screen and (max-width: 325px){
    .img{display: none;}
    .m_img{display: block;}
    .product{display: none;}
    .m_product{display: block;}
}