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

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

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

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

/* 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.5;
}

.about h2 {
    font-size: 30px;
    font-weight: 600;
    color: #25262C;
    margin-bottom: 1.5rem;
}

.about p {
    color: #939396;
    font-size: 16px;
    line-height: 1.8;
}

.about .item.about-img {
    border-radius: 20px;
    width: 66%;
    max-width: 280px;
    margin: 0 auto;
}

/* SERVICE */
.service {
    background: #f5f5f5;
    padding-top: 48px;
    padding-bottom: 48px;
}
.service .content {
    display: flex;
    /* gap: 32px; */
    flex-direction: column-reverse;
    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: 600;
    font-size: 16px;
    color: #25262C;
    line-height: 1.5;
    margin-bottom: 0.75em;
}
.service-item__desc {
    font-size: 13px;
    color: #939396;
    line-height: 1.5;
}

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

    .about > div {
        flex-direction: row-reverse;
        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;
        text-align: justify;
    }
    .about .item.about-img {
      max-width: 428px;
    }
    .about .item.content {
      margin-right: 20%;
    }

    .service {
        padding-top: 77px;
        padding-bottom: 77px;
    }
    .service .content {
        flex-direction: row-reverse;
        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 50%;
    }
}

@media screen and (min-width: 1560px) {
    .showcase .content {
        padding-top: 175px;
        padding-bottom: 400px;
        /* padding-left: 240px; */
        gap: 46px;
    }
    .showcase-title {
        font-size: 84px;
        margin-left: 30px;
    }

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

    .service {
        padding-top: 107px;
        padding-bottom: 107px;
    }
    .service .content {
      gap: 104px;
    }
    .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: 208px;
        padding-bottom: 528px;
        gap: 46px;
    }
    .showcase-title {
        font-size: 88px;
    }
}

@media screen and (max-width: 480px) {
  .showcase {
    background-position: 83% center;
  }
}
