.section-title{
    font-size: 32px;
    font-family: Arial;
    font-weight: bold;
    color: #505050;
    margin-bottom: 10px;
    padding-left: 26px;
}
.slider-section{
    background-color: #E8E8E8;
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
    height: 350px;
    width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
    box-sizing: border-box;
}
.slider-section > a:first-child{
    display: grid;
    place-items: center;
}
.slider-section-picture{
    grid-area: 1 / 1;
    transition: opacity .2s ease;
}
.slider-section-picture-hover{
    opacity: 0;
}
.slider-section:hover .slider-section-picture-default{
    opacity: 0;
}
.slider-section:hover .slider-section-picture-hover{
    opacity: 1;
}
.slider-section-a{ 
    color: #fff;
    background: #212121;
    font-size: 36px;
    text-transform: uppercase;
    padding: 18px 0px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media screen and (max-width: 2150px) {
    .slider-section{
        height: 250px;
        width: 250px;
        padding-bottom: 30px;
    }
    .slider-section img{
        width: 100%;
        padding: 0px 40px;
    }
    .slider-section-a{
        font-size: 24px;
        padding: 12px 0px;
    }
}
@media screen and (max-width: 1920px) {

    .section-title {
        font-size: 20px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 1600px) {
    .slider-section{
        height: 175px;
        width: 175px;
        padding-bottom: 20px;
    }
    .slider-section img {
        padding: 0px 15px;
    }
    .slider-section-a {
        font-size: 24px;
        padding: 5px 0px;
    }

}

@media screen and (max-width: 1240px) {
    .slider-section{
        /*
        height: 155px;
        width: 140px;
        */
        height: auto;
        width: auto;
        padding-bottom: 20px;
    }
    .slider-section-a {
        font-size: 16px;
        padding: 0px;
    }
}
@media screen and (max-width: 750px) {

}