/* Collection Cards */
.collection_cards .banner_content{
    padding: 10px 15px;
    display: flex;
    height: 15%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4em;
    color: var(--main-color);
    
    align-items: center;
    border-bottom-right-radius: 1em;
    border-bottom-left-radius: 1em;

    margin-top: 20px;
}

.collection_cards .banner_txt_box{
    color: var(--black-color);
    margin-bottom: 0px;

    text-shadow: var(--text-shadow);
}

.collection_cards .banner_subtitle{
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    letter-spacing: 1.1px;
    margin-bottom: 5px;
}

.collection_cards .banner_title{
    font-size: 20px;
    color: var(--black-color);
    letter-spacing: 0;

    font-family: var(--accent-font);
}

.collection_cards .banner_descp {
    font-size: 13px;
    color: var(--black-color);
    margin-bottom: 16px;
}

.collection_cards .banner_descp p{
    margin-bottom: 0;
}

.collection_cards .banner_sub_txt_descp {
    color: var(--light-grey-color-2);
}

.collection_cards .banner_btn_txt{
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 34px;
    transition: all .3s linear;
    letter-spacing: 0.1rem;
    max-width: 45rem;
    border: 0px solid var(--black-color);
    font-size: 10px;
}

.collection_cards .banner_btn_txt:hover {
    background-color: rgba(var(--current-btn-bg-color), 1) !important;
    color: var(--black-color) !important;
}

.collection_cards .sub_banner_panel{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    /* grid-template-columns: repeat(auto-fit, minmax(12vw, 1fr)); */
    max-width: 80vw;
    column-gap: 4vw;
    row-gap: 4vw;
}

/* .collection_cards .sub_banner_panel{
    margin-top: 30px;
} */

.collection_cards .sub_banner_box,
.collection_cards .sub_banner_box img{
    border-radius: var(--border-radius-1);
    overflow: hidden;
}

/* .collection_cards .sub_banner_img_special{
    clip-path: circle(100%);
}

.collection_cards .sub_banner_img_special:hover{
    clip-path: circle(0%);
    
} */

@media only screen and (max-width: 850px) {
    .collection_cards .sub_banner_panel{
        grid-template-columns: repeat(2,1fr);
    }
}

@media only screen and (max-width: 610px) {

	.collection_cards .mobile_sub_2in_1_section .container{
        padding: 0 35px !important;
    }

    /* .collection_cards .banner_title{
        font-size: 20px;
    } */

    .collection_cards .banner_subtitle {
        margin-bottom: 5px;
    }

    .collection_cards .sub_banner_panel{
        grid-template-columns: repeat(2,1fr);
    }

    .collection_cards .banner_btn_txt {
        font-size: 10px;
        padding: 5px 15px;
    }

    .collection_cards .banner_title{
        font-size: 14px;
    }

    .collection_cards .banner_content {
        padding: 5px 10px;
        margin-top: 0px;
    }
}
@media only screen and (max-width: 610px) {
}