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

.serviceInner{
    padding:100px 0;
    background:#f7f7f7;
}

/*========================
TOP
========================*/

.serviceInner-top{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

.serviceInner-photo{
    overflow:hidden;
    background:#ddd;
    aspect-ratio:16 / 10;
    border-radius: 30px;
}

.serviceInner-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.serviceInner-content span{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    letter-spacing:.22em;
    margin-bottom:12px;
}

.serviceInner-content h2{
    font-size:42px;
    line-height:1.3;
    margin:0 0 20px;
    color:#222;
}

.serviceInner-content p{
    color:#666;
    line-height:2;
    margin-bottom:35px;
}

.serviceInner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:52px;
    background:var(--yellow);
    color:#111;
    font-weight:800;
    transition:.3s;
    border-radius: 20px;
}

.serviceInner-btn:hover{
    background:var(--orange);
    color:#fff;
}

/*========================
Article
========================*/

.serviceInner-article{
    background:#fff;
    border:1px solid #e8e8e8;
    padding:50px;
    margin-bottom:60px;
    border-radius: 30px;
}

.serviceInner-article h3{
    font-size:30px;
    margin:0 0 25px;
    color:#222;
    position:relative;
    padding-bottom:15px;
}

.serviceInner-article h3:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:var(--yellow);
}

.serviceInner-article p{
    color:#666;
    line-height:2.1;
    margin:0 0 22px;
}

.serviceInner-article p:last-child{
    margin-bottom:0;
}

/*========================
Feature
========================*/

.serviceInner-feature{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:70px;
}

.serviceInner-box{
    background:#fff;
    border:1px solid #ececec;
    padding:35px 30px;
    transition:.3s;
    border-radius: 30px;
}

.serviceInner-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.serviceInner-box h4{
    margin:0 0 15px;
    color:#222;
    font-size:22px;
}

.serviceInner-box p{
    margin:0;
    color:#666;
    line-height:1.9;
}

/*========================
Back
========================*/

.serviceInner-back{
    text-align:center;
}

.serviceInner-back a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:220px;
    height:56px;
    background:var(--yellow);
    color:#111;
    font-weight:900;
    transition:.3s;
    border-radius: 20px;
}

.serviceInner-back a:hover{
    background:var(--orange);
    color:#fff;
}

/*==========================================
1024
==========================================*/

@media(max-width:1024px){

.serviceInner-top{
    gap:45px;
}

.serviceInner-content h2{
    font-size:36px;
}

.serviceInner-feature{
    gap:20px;
}

}

/*==========================================
900
==========================================*/

@media(max-width:900px){

.serviceInner-top{
    grid-template-columns:1fr;
}

.serviceInner-content{
    text-align:center;
}

.serviceInner-btn{
    margin:auto;
}

.serviceInner-feature{
    grid-template-columns:1fr;
}

}

/*==========================================
768
==========================================*/

@media(max-width:768px){

.serviceInner{
    padding:70px 0;
}

.serviceInner-top{
    margin-bottom:55px;
}

.serviceInner-content h2{
    font-size:32px;
}

.serviceInner-article{
    padding:35px 28px;
    margin-bottom:45px;
}

.serviceInner-article h3{
    font-size:26px;
}

.serviceInner-feature{
    margin-bottom:50px;
}

}

/*==========================================
480
==========================================*/

@media(max-width:480px){

.serviceInner-content h2{
    font-size:28px;
}

.serviceInner-content p{
    font-size:14px;
}

.serviceInner-article{
    padding:28px 22px;
}

.serviceInner-article p{
    font-size:14px;
}

.serviceInner-box{
    padding:28px 22px;
}

.serviceInner-box h4{
    font-size:20px;
}

.serviceInner-box p{
    font-size:14px;
}

.serviceInner-back a{
    width:100%;
    min-width:0;
}

}