.content {
    padding: 0;
}

.content h1 {
    margin-top: 50px;
    font-size: 1.5em;
}

.content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: rgb(15, 119, 53);
    margin-top: 10px;
}

.allbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.allbox .box {
    margin: 20px 20px 20px 0;
    width: 377px;
    background: rgb(248, 248, 248);
    transition: 0.5s;
}

.allbox .box:hover {
    background: rgb(220, 220, 220);
}

.allbox .box .img {
    height: 230px;
    overflow: hidden;
    background: white;
}

.allbox .box .img img {
    transition: 0.5s;
}

.allbox .box:hover img {
    transform: scale(1.07);
}

.allbox .box .text {
    padding: 5%;
}

.allbox .box .text h3 {
    margin-bottom: 40px;
}

.content .more {
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
}

.content .more::after {
    content: '﹀';
    font-size: 1.8em;
    color: rgb(200, 23, 39);
    position: absolute;
    margin-left: 10px;
}

@media screen and (max-width: 1200px) {
    .allbox .box .img {
        max-height: 168px;
    }
    .allbox .box .text h3 {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 900px) {
    .allbox {
        justify-content: center;
    }
    .allbox .box{
        width: 98%;
    }
}
