/*THESES*/
.theses {
    background: #FFFFFF;
    box-shadow: 0px 8px 20px rgba(25, 46, 80, 0.15);
    border-radius: 16px 16px 0px 0px;
    margin-top: 50px;
    display: flex;
}
.theses-item {
    padding: 25px 19px;
    position: relative;
    border-bottom: 4px solid #E4EDFF;
    flex-grow: 1;
}
.theses .theses-item:first-child {
    padding-left: 39px;
}
.theses .theses-item:last-child {
    padding-right: 39px;
}
.theses-item-title{
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: #6D7885;
    white-space: nowrap;
}
.theses-item-descr {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    margin-top: 6px;
    color: #636F7D;
}
.active .theses-item-title {
    color: #222222;
    -webkit-transition: color .2s;
    transition: color .2s;
}
.theses-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    height: 4px;
    width: 0;
    background: #3F6AA9;
}
.theses-item.active::after {
    width: 100%;
    -webkit-transition: width 3s linear;
    transition: width 3s linear;
}
@media (max-width: 1185px) {
    .theses-item {
        padding: 22px 18px;
    }
    .theses .theses-item:first-child {
        padding-left: 18px;
    }
    .theses .theses-item:last-child {
        padding-right: 18px;
    }
}
@media (max-width: 978px) {
    .theses {
        flex-wrap: wrap;
    }
    .theses-item {
        flex-basis: 50%;
        border-bottom: none;
    }
    .theses-item-title br {
        display: none;
    }
}
@media (max-width: 576px) {

    .theses-item {
        flex-basis: 100%;
    }
}
/*/THESES*/