body {
    background: #F3F4F8;
}

.section {
    padding: 95px 0 45px;
}

.section .wrap {
    display: grid;
  grid-template-columns: repeat(3,1fr);
    gap: 17px;
}

.section .wrap .item .item_box {
    display: block;
    padding: 60px 58px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #d9dbe3;
    transition: 0.6s;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0);
}

.section .wrap .item .item_box .item_title {
    font-family: 'Handel Gothic BT';
    font-weight: 400;
    font-size: 24px;
    color: #004178;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section .wrap .item .item_box .item_text {
    font-weight: 400;
    font-size: 16px;
    color: #004178;
    line-height: 24px;
    text-align: center;
    height: 48px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section .wrap .item .item_box .more {
    display: flex;
    align-items: center;
    gap: 0 9px;
    width: fit-content;
    height: 34px;
    background: #004178;
    border-radius: 20px 20px 20px 20px;
    padding: 0 17px 0 15px;
    margin: 28px auto 28px;
}

.section .wrap .item .item_box .more p {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.section .wrap .item .item_box .item_img {
    width: 262px;
    height: 201px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
}

.section .wrap .item .item_box:hover {
    border: 1px solid rgba(217, 219, 227, 0);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.section .wrap .item .item_box:hover .item_img {
    transform: scale(1.05);
}

/*# sourceMappingURL=pro.css.map */
