/*--Home Category Card-----------*/

.homeCategoryCard {
    background: #fff;
    /*background: -moz-linear-gradient(135deg, #000 0%, #000 25%, #450045 50%, rgba(255, 71, 155, 0.51) 75%, #291051 100%);*/
    background: -moz-linear-gradient(135deg, #000 0%, #000 25%, #450045 50%, rgba(255, 71, 155, 0.51) 75%, #f01687 100%);
    background: -webkit-linear-gradient(135deg, #000 0%, #000 25%, #450045 50%, rgba(255, 71, 155, 0.51) 75%, #f01687 100%);
    background: linear-gradient(135deg, #000 0%, #000 25%, #450045 50%, rgba(255, 71, 155, 0.51) 75%, #f01687 100%);
    background-size: 400% 400%;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: 0.5s all;
    overflow: hidden;
}

.homeCategoryCard:hover {
    background-position: 100% 100%;
}

.homeCategoryCardImage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .5;
    mix-blend-mode: screen;
    transition: 1s;
}

.homeCategoryCardImage:hover {
    transform: scale(1.08);
}

.homeCategoryCardTitleWrapper {
    position: absolute;
    bottom: 10px;
    margin-right: 15px;
    margin-left: 5px;
    text-align: right;
    z-index: 1;
}

.magCardTitle {
    color: #fff;
    font-family: kalameh_bold;
    /*text-shadow: 3px 5px 4px rgba(0, 0, 0, 0.42);*/
    font-weight: normal;
}

/*--------------*/

.contentsList {
    text-align: center;
    margin: 0 10% 0 10%;
    transition: .4s;
}

.magHomeMainTitleLine1 {
    display: inline-block;
    vertical-align: top;
    width: 250px;
    height: 1px;
    margin-top: 15px;
    background: #450045;
    opacity: .3;
}

.magHomeMainTitleLine2 {
    display: inline-block;
    vertical-align: bottom;
    width: 250px;
    height: 1px;
    margin-right: -5px;
    margin-bottom: 15px;
    background: #450045;
    opacity: .3;
}

.magListMainTitle {
    font-family: kalameh_bold;
    font-size: 32px;
    color: #450045;
}

.magListDesc {
    font-family: yekan_bakh_bold;
    font-size: 25px;
    color: #f01687;
    margin-top: -6px;
    margin-right: 20px;
}

/*----------------------Responsive------------------------*/

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

    .magListMainTitle {
        font-size: 24px;
    }

    .magListDesc {
        font-size: 22px;
    }

    .magHomeMainTitleLine1 {
        width: 20%;
    }

    .magHomeMainTitleLine2 {
        width: 20%;
    }
}