/*==========================================
Service Detail
==========================================*/

.serviceDetail{
    padding:90px 0;
    background:#fff;
}

.serviceWrap{
    display:flex;
    align-items:center;
    gap:70px;
}

.serviceImg{
    width:48%;
    flex-shrink:0;
}

.serviceImg img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.5s;
}

.serviceImg:hover img{
    transform:scale(1.02);
}

.serviceContent{
    width:52%;
}

.serviceNo{
    display:inline-block;
    color:#b58a4c;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.serviceContent h2{
    font-size:44px;
    font-weight:700;
    color:#222;
    line-height:1.2;
    margin-bottom:8px;
}

.serviceContent h3{
    font-size:18px;
    color:#888;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:35px;
}

.serviceContent p{
    color:#555;
    font-size:17px;
    line-height:2;
    margin-bottom:22px;
}

.serviceLineBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:15px;

    height:56px;
    padding:0 34px;

    background:#06C755;
    color:#fff;
    text-decoration:none;

    border-radius:999px;

    font-size:16px;
    font-weight:600;

    transition:.35s;
}

.serviceLineBtn img{
    width:24px;
}

.serviceLineBtn:hover{
    background:#05ad4a;
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(6,199,85,.28);
}

/*==========================================
Tablet
==========================================*/

@media screen and (max-width:991px){

.serviceDetail{
    padding:70px 0;
}

.serviceWrap{
    gap:40px;
}

.serviceContent h2{
    font-size:36px;
}

}


/*==========================================
Mobile
==========================================*/

@media screen and (max-width:767px){

.serviceDetail{
    padding:55px 0;
}

.serviceWrap{
    display:block;
}

.serviceImg{
    width:100%;
    margin-bottom:35px;
}

.serviceContent{
    width:100%;
}

.serviceContent h2{
    font-size:30px;
}

.serviceContent h3{
    margin-bottom:25px;
}

.serviceContent p{
    font-size:16px;
    line-height:1.9;
}

.serviceLineBtn{
    width:100%;
    height:52px;
    padding:0;
}

}