/*categoryContainer*/
.categorySubtitle{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    margin: 25px auto 35px;
    max-width: 800px;
}
.categoryBlock{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.categoryMain{
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 77%;
    z-index: 2;
    transform: translate(0, -50%);
    background: linear-gradient(90deg, #c0c0bd 10%, rgba(192, 192, 189, 0.75) 40%, transparent 100%);
    padding: 10px;
}
.categoryMainHeader{
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 35px;
}
.categoryMain ul{
    margin-left: 20px;
    line-height:35px;
}
.categoryImg{
    width: 80%;
    height:760px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}
.categoryText{
    line-height:35px;
}
/*categoryContainer end*/

@media screen and (max-width: 1400px) {
    .categoryMain{
        max-width: unset;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        margin-top: -50px;
        background: linear-gradient(180deg, #c0c0bd 30%, rgba(192, 192, 189, 0.75) 50%, transparent 100%) !important;
    }
    .categoryImg{
        width: 100%;
        height: 440px;
    }
}
@media screen and (max-width: 500px) {
    * {
        line-height: 30px !important;
    }
    .categoryImg{
        height: 300px;
    }
    .blockTitle {
        font-size: 30px !important;
        margin-bottom: 20px !important;
    }
    .categorySubtitle, .categoryMainHeader{
        font-size: 22px;
    }
    .categoryMain ul>li{
        font-size: 18px;
    }
}