/* color */
/* font */
/* transition */
.dataItem .title {
  transition: all 0.65s ease-in-out; }

.insBox {
  background-image: url("../assets/images/partnerBg.jpg");
  background-position: center bottom; }

.dataBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 30px; }
  @media (max-width: 640px) {
    .dataBox {
      grid-template-columns: repeat(2, 1fr); } }

.dataItem {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 1281px) {
    .dataItem:hover .title {
      color: #f18e00; } }
  .dataItem .imgBox {
    width: 300px;
    height: 300px;
    max-width: 100%;
    aspect-ratio: 1/1; }
    .dataItem .imgBox img {
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .dataItem .link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .dataItem .title {
    font-size: 20px;
    font-weight: 500; }
