header .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header .container .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .container .content-box .synopsis {
    text-align: center;
}

section .header-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

section .header-title p {
    display: inline-block;
}

section .content-box .article {
    max-width: 80%;
    margin: 0 auto;
}

section .content-box .article li {
    color: #666666;
    margin: 20px 0;
    position: relative;
}

section .content-box .article li:before {
    content: '';
    position: absolute;
    top: 14px;
    left: -20px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #666666;
}

section .content-box ul.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

section .content-box ul.row li {
    margin-bottom: 20px;
}

section .content-box ul.row li .item {
    min-height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
    border-radius: 4px;
    position: relative;
}

section .content-box ul.row li .item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    top: 0;
    background-color: #00A4FF;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 4px 4px 0px 0px;
}

section .content-box ul.row li:hover .item:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

section .content-box ul.row li .item img {
    max-width: 60px;
}

section .content-box ul.row li .item h5 {
    margin: 30px 0 20px;
}

section .content-box ul.row li .item:hover p {
    color: #666666;
}
@media screen and (max-width: 768px) {
    section .content-box ul.row li .item{
        padding: 15px;
    }

}