.lectors{
    padding: 0;
    display: grid;
    grid-template-columns: 33% 33% 32%;
    grid-template-rows: auto auto auto auto;
    grid-row-gap: 12px;
    grid-column-gap: 12px;
    grid-template-areas: "ltit ltit ltit" "lb1 lb2 lb3" "llist llist llist" "l_ab l_ab l_ab";
    border-radius: 3px;
}
.lector_tit{
    grid-area: ltit;
}
.lb > *{
    display:block;
}
.lb > img {
    margin: 0 0 10px 0;
    width: 50px;
}
.l_b1{
    grid-area: lb1;
}
.l_b2{
    grid-area: lb2;
}
.l_b3{
    grid-area: lb3;
}
.lector_List{
    grid-area: llist;
}
.l_btn{
    grid-area: l_ab;
    text-align: right;
    padding-top: 1em;
}
.l_btn .btn {
    font-size: 0.78em;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-weight: 400;
}
.lector_img{
    height: 295px;
    width: 100%;
    border-radius: 3px;
    object-fit: cover;
}
.lector_txt{
    display: block;
    height: 180px;
    overflow-y: hidden;
    background: linear-gradient(180deg,rgba(211, 211, 211, 0) 90%, rgba(211, 211, 211, 1) 100%);
    position: relative;
    line-height: 12px;
    font-size: 13px;
}
.lector_txt:after {
    position: absolute;
    top:140px;
    height: 40px;
    width: 100%;
    background: linear-gradient(180deg, transparent 0, #f4f4f4 100%);
    content: "";
}
.lector_block{
    padding: 0 10px 10px 10px;
}
.lector_add{
    width: 100%;
    text-align: right;
    color:#000;
    font-size: 13px;
}
.lector_block h3{
    margin-top: 0;
    padding-top: 10px;
}
.lector_List> div {
    display: inline-block;
    width: 24%;
    margin: 0 8px 15px 0;
}
.spec_prog {
    border-radius: 3px;
}
.spec_prog img{
    border-radius: 3px 3px 0 0;
}

.cons{
    display: grid;
    grid-template-columns: 280px auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: "cd cf1 cf2" "cp cp cp";
    width: 100%;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}
.cons div {
    padding: 0 15px 15px 15px;
}
.cons_descr{
    grid-area: cd;
}
.cons_fblock1{
    grid-area: cf1;
}
.cons_fblock2{
    grid-area: cf2;
}
.cons_fblock1 h4, .cons_fblock2 h4 { margin-bottom: 4px;}
.cons_fblock1 input, .cons_fblock2 input, .cons_fblock2 textarea { width: 95%;}
.cons_phones{
    grid-area: cp;
}
.cons_phones div {
    display: inline-block;
    text-align: center;
    width: 21%;
    font-weight: 600;
}
.cons_phones > div > img {
    height: 14px;
}
.cons_btn{
    clear: both;
    width: 160px;
    height: 30px;
    background-color: #E42320;
    border-radius: 5px;
    text-align: center;
    float: right;
    margin: 20px 20px 0 0;
    padding: 3px!important;
}
.cons_btn a{
    display: inline-block;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 0.9em;
    text-align: center;
    line-height: 2.1;
    text-decoration: none;
}


@media only screen and (max-width: 1110px) {
    .lector_List> div {
        display: inline-block;
        width: 31%;
        margin: 0 8px 15px 0;
    }
}
@media only screen and (max-width: 810px) {
    .lector_List> div {
        width: 48%;
        margin: 0 12px 15px 0;
    }
    .lector_List> div:nth-child(2n) {
       margin: 0 0px 15px 0;
    }


}