.wrap{
    padding: 80px 2.6%;
    background: #ffffff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 2500px;
    margin: 0 auto;
}

.box {
    width: calc(50% - 20px);
    height: 400px;
    margin: 10px;
    background: #c4c4c4;
     border: 1px solid #ffffff;
     border-radius: 8px;
     padding: 20px;
     box-sizing: border-box;
     text-align: center;
     font-size: 18px;
     transform: transform 0.5s ease;
     display: flex;
     align-items: center;
     justify-content: center;
}

.box.full-img {
    padding: 0;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    max-width: 80%;
    text-align: right;
}

.image-overlay h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.image-overlay p {
    font-size: 14px;
    margin: 0;
}

.box.full-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.box.full-img:hover img {
    transform: scale(1.05);
}

.box.full-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.box:hover {
    transform: scale(1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.more a{
    font-size: 60px;
}

.category-container {
    position: relative;
    top: 70px;
    display: flex;
    padding: 10px;
    background: #ffffff3d;
    border-radius: 8px;
    margin: 0 auto;
    width: fit-content;
}

.category {
    font-size: 18px;
    color: #000000;
    margin-right: 20px;
    font-weight: 400;
}

.category-all {
    font-size: 18px;
    color: #b4b4b4;
    margin-right: 20px;
}

.category:last-child {
    margin-right: 0;
}

.jump-arrow {
    display: inline-block;
    font-size: 5em;
    color: #c6cacc;
    animation: bounce 1s infinite;
    cursor: pointer;
    text-decoration: none;
    transform: rotate(90deg);
    position: relative;
    bottom: 10px;
  }

  @keyframes bounce {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(10px); }
  }

  .jump-arrow:hover {
    color: #ff0000;
  }

