.section {
    padding: 120px 0 230px
}

.section .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px
}

.section .wrap .item {
    display: block;
    width: 680px
}

.section .wrap .item .img {
    width: 100%;
    height: 440px;
    border-radius: 10px;
    overflow: hidden
}

.section .wrap .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s
}

.section .wrap .item h5 {
    font-weight: bold;
    font-size: 18px;
    color: #111111;
    margin: 40px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.6s
}

.section .wrap .item p {
    font-weight: 400;
    font-size: 16px;
    color: #5F6977;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.section .wrap .item:hover h5 {
    color: #004C9C
}

.section .wrap .item:hover .img img {
    transform: scale(1.1)
}

@media screen and (max-width: 1919px) {
    .section{
        padding: 6.25vw 0px 11.9791666667vw;
    }
    .section .wrap{
        gap: 3.125vw 2.0833333333vw;
    }
    .section .wrap .item{
        width: 35.4166666667vw;
    }
    .section .wrap .item .img{
        height: 22.9166666667vw;
        border-radius: 0.5208333333vw;
    }
    .section .wrap .item h5{
        font-size: 0.9375vw;
        margin: 2.0833333333vw 0px 0.5208333333vw;
    }
    .section .wrap .item p{
        font-size: 0.8333333333vw;
    }
}


@media screen and (max-width: 1024px) {
    .section{
        padding: 40px 0;
    }
    .section .wrap{
        gap: 30px;
    }
    .section .wrap .item{
        width: 100%;
    }
    .section .wrap .item .img{
        height: auto;
        border-radius: 10px;
    }
    .section .wrap .item h5{
        font-size: 18px;
        margin: 15px 0 7px;
    }
    .section .wrap .item p{
        font-size: 13px;
    }
}
