.collection_title{
    text-align: center;
    color: #fff;
    padding: 3.4375rem 0 5.625rem 0;
}
.collection_title h3{
    font-size: 3rem;
    margin-bottom: 10px;
}
.collection_title p{
    font-size: 1.125rem;
}
.collection_table{
    max-width: 75.5vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8.75rem;
}
.collTable_card{
    width: 18.5%;
    transition: all ease-out .3s;
}
.collTable_card ul li,.collTable_card p{
    height: 3.4375rem;
    font-size: 1.125rem;
    color: var(--second-textColor);
    background-color: var(--second-bgColor);
    text-align: center;
    margin-bottom: 5px;
    padding: 0 1.75rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collTable_card ul li:hover{
    background:rgba(33,29,29,0.8);
    cursor: pointer;
}
.collTable_card ul li.active{
    color: #fff;
    position: relative;
    font-family: Gotham-Medium;
}
.collTable_card ul li.active svg path{
    stroke: #fff;
}
.collTable_card ul li.active::before{
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--red-color);
}
.collTable_content{
    width: 79.9%;
}
.collTable_section{
    display: none;
}
.collTable_section.active{
    display: flex;
    flex-wrap: wrap;
}
.collTable_box{
    width: 32%;
    background: #1F1C1C;
    padding: 0 1.125rem 2.5rem 1.125rem;
    box-sizing: border-box;
    margin: 0 2% 1.25rem 0;
    text-align: center;
}
.collTable_box:nth-of-type(3n){
    margin-right: 0;
}
.collTable_box .am{
    /* max-width: 20.875rem; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.collTable_box .am img{
    max-width: 100%;
    max-height: 15.625rem;
}
.collTable_box h5{
    font-size: 1.5rem;
    margin: 0.875rem 0 0.5rem 0;
    color: #fff;
    font-family: Gotham-Medium;
    font-weight: normal;
}
.collTable_box p{
    font-size: 0.875rem;
    color: var(--second-textColor);
    line-height: 1.1rem;
    margin-bottom: 2.5rem;
}
.collTable_box section{
    display: flex;
    justify-content: center;
}
.collTable_box section a{
    width: 8rem;
    height: 3.125rem;
}
.collTable_box section a:first-child{
    margin-right: 0.75rem;
}
@media only screen and (max-width: 1300px) {
    .collTable_box h5{
        margin: 0.625rem 0 0.5rem 0;
    }
    .collTable_box p{
        margin-bottom: 2rem;
    }
}
@media only screen and (max-width: 1024px) {
    .collTable_card{
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background: var(--second-bgColor);
    }
    .collTable_card ul{
        display: none;
        box-shadow: 0px 3px 2px -4px #aaaaaa;
    }
    .collTable_card ul li svg{
        display: none;
    }
    .collTable_card ul li.active{
        color: var(--second-textColor);
    }
    .collTable_card ul li.active::before{
        display: none;
    }
    .collTable_card p{
        display: flex!important;
        justify-content: flex-start;
        color: #fff;
        height: 50px;
    }
    .collTable_card p svg{
        height: 12px;
        margin: -4px 0 0 8px;
        transform: rotateZ(90deg);
        transition: all ease-out .1s;
    }
    .collTable_card p svg path{
        stroke: #fff;
    }
    .collTable_card p.open svg{
        transform: rotateZ(-90deg);
        margin-top: 2px;
    }
    .collection_title{
        padding: 70px 0 30px 0;
    }
    .collection_title h3{
        font-size: 20px;
        margin-bottom: 2px;
    }
    .collection_title p{
        font-size: 12px;
    }
    .collection_table{
        max-width: 92%;
    }
    .collTable_content{
        width: 100%;
    }
    .collTable_box{
        width: 100%;
        margin: 0 0 10px 0;
        padding: 30px 12px;
    }
    .collTable_box .am{
        max-width: 86%;
    }
    .collTable_box .am img{
        max-height: 184px;
    }
    .collTable_box h5{
        font-size: 18px;
        margin: 5px 0 10px 0;
    }
    .collTable_box p{
        font-size: 14px;
        line-height: inherit;
    }
    .coll_header{
        top: 0;
        z-index: 999;
    }
}