/*introductionContainer*/
#introductionContainer{
    max-width: 700px;
}
.introductionSubtitle{
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 35px;
    font-weight: bold;
    text-align: center;
}
.introductionText{
    line-height: 35px;
}
/*introductionContainer end*/

.shadowBlock{
    padding: 10px;
    background: linear-gradient(90deg, #c0c0bd 10%, rgba(192, 192, 189, 0.75) 40%, transparent 100%);
}

/*categoryContainer*/
.categoryBlocks{
    width: 100%;

}
.categoryItem{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 140px;
}
.categoryItem:last-child{
    margin-bottom: 0;
}
/*.categoryItem>div{*/
/*    width: 48%;*/
/*}*/
.categoryFill{
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(192, 192, 189, 1) 70%, transparent 90%);
    opacity: 0;
    position: relative;
    z-index: 3 !important;
    transition-duration: 300ms;
}
.categoryItem>a{
    width: 100%;
    height: 100%;
    display: inline-block;
    color:black;
    text-decoration: none;
    outline: none;
    position: absolute;
    opacity: 0;
    z-index: 3;
    transition-duration: 300ms;
}
.categoryItem>a>i{
    z-index: 3;
    font-size: 80px;
    color: white;
    position: absolute;
    top:50%;
    left:40%;
    transform: translate(-35%, -50%);
}
.categoryItem:hover .categoryFill{
    opacity: 0.6;
}
.categoryItem:hover a{
    opacity: 1;
}
.categoryItem>a:hover{
    cursor: pointer;
}
.categoryImg{
    transition-duration: 300ms;
    width: 80%;
    height:760px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: 0 7px 15px -2px rgba( 0, 0, 0, 0.67 );
}
.categorySubtitle{
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 25px;
}
.categoryInfo{
    max-width: 400px;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 77%;
    transform: translate(0, -50%);
    z-index: 2;
    background: linear-gradient(90deg, #c0c0bd 10%, rgba(192, 192, 189, 0.75) 40%, transparent 100%);
}
.categoryText{
    line-height: 35px;
}
/*categoryContainer end*/

@media screen and (max-width: 1100px) {
    .categoryItem>a>i{
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .categoryImg{
        width: 100%;
        height: 440px;
    }
    .categoryItem{
        flex-direction: column;
    }
    .categoryItem:last-child{
        margin-bottom: 0 !important;
    }
    .categoryInfo{
        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;
    }
    .shadowBlock{
        text-align: justify;
    }
    .categoryFill{
        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 10%, rgba(192, 192, 189, 1) 70%, transparent 90%);
    }
}
@media screen and (max-width: 500px) {
    * {
        line-height: 30px !important;
    }
    .categoryImg{
        height: 300px;
    }
    .blockTitle {
        font-size: 30px !important;
        margin-bottom: 20px !important;
    }
    .introductionSubtitle, .categorySubtitle{
        font-size: 22px !important;
    }
    .shadowBlock, .categoryText{
        font-size: 18px !important;
    }
    .categoryItem{
        margin-bottom: 50px !important;
    }
}