.qualityBox{
    background: #fff;
    padding: 3%;
    margin-bottom: 5%;
    color: var(--color-navy);
}

.qualityBox h3{
    color: var(--color-lightblue);
    text-align: center;
    font-size: clamp(16px, 2.4vw, 20px);
    border-bottom: 1px solid var(--color-lightblue);
    padding-bottom: 3%;
    margin-bottom: 3%;
    font-weight: bold;
}

.qualityBox ol{
    list-style: inside decimal;
    color: var(--color-navy);
    padding-left: 30%;
    font-size: clamp(16px, 2.4vw, 20px);
}

.qualityBox .flex p{
    width: 70%;
}

.qualityBox .flex figure{
    width: 25%;
}

.serviceList{
    position: relative;
    margin: 10% 0;
}

.serviceList::before{
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 6px;
    background: var(--color-lightblue);
}

.serviceList li{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
}

.serviceList li:not(:last-child){
    padding-bottom: 5%;
}

.serviceList li::before{
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 0.7rem;
    background: var(--color-lightblue);
}

.serviceList .serviceTxt{
    width: 55%;
}

.serviceList figure{
    width: 40%;
}

.serviceList figure img{
    max-width: 100%;
    height: auto;
}

.serviceList h3{
    font-size: clamp(20px, 2.4vw, 24px);
    margin-bottom: 1.5rem;
}

.serviceList p{
    color: var(--color-bluegrey);
}

.productList{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.productList li{
    width: 49%;
    background: #fff;
    margin-bottom: 2%;
    padding: 3%;
    color: var(--color-navy);
}

.productList h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    color: var(--color-lightblue);
    margin-bottom: 1.5rem;
}

.productList p{
    width: 75%;
}

.productList figure{
    width: 30%;
}

.productList figure img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}


@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 820px) {}

@media screen and (max-width: 640px) {
    .qualityBox{
        padding: 5%;
    }
    .qualityBox ol{
        padding-left: 0;
    }
    .qualityBox .flex p,
    .qualityBox .flex figure{
        width: 100%;
    }
    .qualityBox .flex figure{
        text-align: center;
        margin: 30px auto;
    }

    .productList p,
    .productList figure{
        width: 100%;
    }

    .productList figure{
        text-align: center;
    }

    .productList figure img{
        width: 60%;
        margin-bottom: 20px;
    }
}
