.tsMn>div>div>a{
    display: flex;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
}
.tsList{
    background-color: var(--grey-color);
    margin-bottom: 45px;
    padding: 30px;
    border-radius: 3px;
}
.tsList a{
    background-color: var(--white-color);
    padding:21px 24px;
    color: var(--dark-color);
    border: none;
    display: block;
    font-family: var(--title-fonts);
    font-weight: 500;
    font-size: 16px;
    border-radius: 3px;
    margin: 0 0 10px 0;
}
.tsMn .tsList a img:nth-of-type(2) {
    display: none;
}
.tsMn .tsList a img:first-of-type {
    display: block;
}
.tsMn .tsList a:hover img:nth-of-type(2), .tsMn .tsList a.active img:nth-of-type(2){
    display: block;
}
.tsMn .tsList a:hover img:first-of-type, .tsMn .tsList a.active img:first-of-type {
    display: none; 
}
.rTs>div>a>img,.kt>img,.ktS>img{
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}
.tsMn>div>div>p{
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    line-height: 2;
    color: var(--secondary-color);
}
.tsMn > div > div > a:hover {
    color: var(--white-color);
    background-color:  var(--primary-color);
}

.tsMn a.active{
    background-color:  var(--primary-color);
    color: var(--white-color);
}

.edList{
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    line-height: 2;
    color: var(--secondary-color);
   padding-left: 35px;
   padding-bottom: 30px;
}
@media all and (max-width:500px){
       .tsMn>div>div>p {
        font-size: 14px!important;
        line-height: 1.5!important;
       }
}
@media all and (max-width:320px){
    .tsMn>div>div>p {
       
        margin-bottom: 20px!important;
    }
    .tsMn>div>div>img {
        max-width: 100%!important;
        object-fit: contain!important;
        width: 100%!important;
        margin-bottom: 21px!important;
    }
    .tsList a {
        font-size: 13px;
    }
}