/* SHOWCASE */
.showcase {
    background-image: url('../assets/images/family.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.showcase .content {
    padding-top: 104px;
    padding-bottom: 184px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.showcase-title,
.showcase-subtitle {
    max-width: 370px;
    text-align: left;
    width: 70%;
}

.showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: black;
    line-height: 1.15;
}

.showcase-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: black;
    line-height: 1.4;
}

/* ABOUT */
.about > div {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.about .item {
    text-align: center;
}

.about .content * {
    line-height: 1.8;
}

.about h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about p {
    color: #616161;
    font-size: 16px;
}

/* SERVICE */
.service {
    background: #f5f5f5;
    padding-top: 48px;
    padding-bottom: 48px;
}
.service .content {
    display: flex;
    gap: 32px;
    flex-direction: column;
    align-items: center;
}
.service-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}
.service-item {
    padding-left: 90px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: 68px 68px;
    background-position: 4px center;
}
.service-item.item1 {
    background-image: url(../assets/images/service_icon1.png);
}
.service-item.item2 {
    background-image: url(../assets/images/service_icon2.png);
}
.service-item.item3 {
    background-image: url(../assets/images/service_icon3.png);
}
.service-item__title {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 0.75em;
}
.service-item__desc {
    font-size: 13px;
    color: #999999;
    line-height: 1.4;
}

/* Media Query */
@media screen and (min-width: 992px) {
    .showcase .content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 204px;
        padding-bottom: 244px;
    }
    .showcase-title,
    .showcase-subtitle {
        max-width: 632px;
        text-align: left;
        width: 82%;
        margin: 0 auto;
        margin-left: 0;
    }
    .showcase-title {
        font-size: 64px;
    }
    .showcase-subtitle {
        font-size: 25px;
    }

    .about > div {
        flex-direction: row;
        gap: 102px;
        padding-top: 134px;
        padding-bottom: 134px;
    }
    .about .item {
        flex: 1;
        text-align: left;
    }
    .about h2 {
        font-size: 36px;
    }
    .about p {
        font-size: 18px;
    }

    .service {
        padding-top: 77px;
        padding-bottom: 77px;
    }
    .service .content {
        flex-direction: row;
        gap: 52px;
    }
    .service-item__title {
        font-size: 20px;
    }
    .service-item__desc {
        font-size: 14px;
    }
    .service-item {
        padding-left: 115px;
        padding-top: 25px;
        padding-bottom: 25px;
        background-repeat: no-repeat;
        background-size: 78px 78px;
        background-position: 8px center;
    }
    .service-img {
        flex: 0 0 56%;
    }
}

@media screen and (min-width: 1560px) {
    .showcase .content {
        padding-top: 208px;
        padding-bottom: 248px;
        gap: 46px;
    }
    .showcase-title {
        font-size: 88px;
    }
    .showcase-subtitle {
        font-size: 30px;
    }

    .about > div {
        gap: 174px;
        padding-top: 200px;
        padding-bottom: 200px;
    }
    .about h2 {
        font-size: 40px;
    }
    .about p {
        font-size: 20px;
    }
    .item.about-img {
        flex: 0 0 598px;
    }

    .service {
        padding-top: 107px;
        padding-bottom: 107px;
    }
    .service-item__title {
        font-size: 22px;
    }
    .service-item__desc {
        font-size: 16px;
    }
    .service-item {
        padding-left: 150px;
        padding-top: 35px;
        padding-bottom: 35px;
        background-repeat: no-repeat;
        background-size: 98px 98px;
        background-position: 12px center;
    }
}

@media screen and (min-width: 1920px) {

    .showcase .content {
        padding-top: 348px;
        padding-bottom: 388px;
        gap: 46px;
    }
    .showcase-title {
        font-size: 88px;
    }
    .showcase-subtitle {
        font-size: 30px;
    }
}
