.Past-Exhibitors-wrapper {
    padding: 2rem 0;

    .container {
        max-width: 1110px;
    }

    h3 {
        font-size: clamp(1.375rem, 1.2159rem + 0.7955vw, 1.8125rem);
        font-weight: 600;
        margin-bottom: 50px;

        span {
            font-weight: 400;
        }
    }

    .PE-box {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        width: 100%;

        a {
            border: 1px solid #c36;
            border-radius: 25px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            overflow: hidden;
            padding: 10px;
            background: #fff;
            transition: all 0.3s ease-in-out;

            &:hover {
                border-color: #000;
                box-shadow: none;

            }
        }
    }


}