.collections .header-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collections .card-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}




.collections .header-row a {
    margin-right: 12px;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
    color: #003f6a;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s ease-in-out;
    font-weight: 600;
    font-size: 16px;
}
.view_all {
    color:#012D4E;
    transition: color .2s ease-in; 
}
.view_all:hover {
    color: #0270D1; 
}
.collections .collection-card:hover .card_cat {
    color: #95E038;
}

.collections {
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.collections .collection-card {
    border-radius: 15px;
    margin: 16px 12px;
    justify-content: flex-end;
    width: 250px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.2);
    transition: all .2s ease-in-out;
    padding: 20px 15px;
    transform: scale(.98);
}


.collections .collection-card:hover {
    /* 	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.collections .collection-row h4 {
    margin: 32px 12px 16px;
    width: fit-content;
    text-align: left;
    color: #003F6A;
    font-family: 'Helvetica;

}

.collections .collection-card span,
.collections .dt {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Helvetica';
}
.collections .card_cat {
    width: 100%;
    padding-bottom: 3px;
    margin-bottom: 8px;
    border-bottom: 2px solid #2CB2FF;
    transition: color .2s ease-in-out;
}

.collections .collection-card h4 {
    font-family: 'Helvetica';
    color: #fff;
    font-size: 16px;
    margin: 0;
    text-wrap: balance;
    font-weight: 600;
}

.collections .collection-card p:not(.dt) {
    text-wrap: balance;
    width: 100%;
    font-size: 17px;
    line-height: 19px;
    font-family: 'Helvetica';
    color: #fff;
}

.collections .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
}
.collection-flex {
    max-width: 1200px;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.collections .collection-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
}
.collections .topic-holder {
    max-width: 25%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #0270D1;
    flex-direction: column;
}
.collections .topic-holder span {
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 20px;
    cursor: pointer;
    width: fit-content;
    transition: all .2s ease-in-out;
}
.collections span.selected {
    background-color: rgba(44, 178, 255, .14) !important;
    color: #0270D1 !important;
    font-weight: 600;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.collections span:hover {
    background-color: rgba(44, 178, 255, .14) !important;
    color: #0270D1 !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.collections i {
    margin-left: 4px;
}

.collections .content-filter {
    position: relative;
    display: inline-block;
}


.abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}

@media screen and (max-width:875px) {
    .collections .collection-row {
        justify-content: center;
        max-width: 100%;
    }
    .collections .topic-holder {
        max-width: 100%;
        justify-content: center;
        align-items: flex-start;
    }
    .collections .card-row  {
        justify-content: center;  
    }
}