@charset 'UTF-8';

.banner{
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/case-banner-bg.jpg);
}

.banner h2{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

section{
    width: 100%;
    padding-bottom: 60px;
}

section h2 {
    font-size: 32px;
    color: #314a82;;
    padding: 50px 0 30px;
    text-align: center;
}

section h2+p{
    color: #D8E0EC;
	font-size: 20px;
	width: 100%;
    text-align: center;
    margin-top: -20px;
}

section ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 40px 0 20px;
}

section ul.rpa-virtues-list>li{
    width: 380px;
    padding: 40px 28px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    background-color: #fff;
}

section ul.rpa-virtues-list>li>img{
    width: 120px;
    height: 120px;
}

section ul.rpa-virtues-list>li>h3{
    font-size: 22px;
    margin-bottom: 20px;
}

section ul.rpa-virtues-list>li>p{
    font-size: 14px;
    color: #666;
    line-height: 24px;
}

@media screen and (max-width:1024px){
    section {
        width: 100%;
        padding: 1rem;
        background-size: cover;
    }
    section ul.rpa-virtues-list>li {
        width: 32%;
        padding: 1rem;
    }

}

@media screen and (max-width:767px){
    .banner{
        padding: 1rem;
        height: auto;
        min-height: 13rem;
    }
    .banner h2{
        font-size: 1.4rem;
        text-align: center;
    }
    section h2 {
        font-size: 1.6rem;
        padding: 1rem 0;
    }
    section h2+p {
        font-size: 1.2rem;
        margin-top: 0;
    }
    section ul.rpa-virtues-list{
        flex-direction: column;
        align-items: center;
    }
    section ul.rpa-virtues-list>li {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    section ul.rpa-virtues-list>li>img {
        width: 5rem;
        height: 5rem;
    }
	section ul.rpa-virtues-list>li>h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    }
    
}