@media screen and (max-width: 768px) {

    .item-text{
        font-size: 18px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .experts-container{
        width: 98%;
        margin: 20px 1% 50px;
    }
    .expert-item{
        width: 100%;
        margin-bottom: 40px;
    }
    .name{
        text-align: center;
        margin-bottom: 16px;
    }
    .name:hover{
        text-decoration: underline;
    }
    .position{
        text-align: center;
        color: #2b75a6;
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

    .item-text{
        font-size: 18px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .experts-container{
        width: 98%;
        margin: 20px 1% 50px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        align-items: center;
    }
    .expert-item{
        width: 40%;
        margin-bottom: 40px;
    }
    .name{
        text-align: center;
        margin-bottom: 16px;
    }
    .name:hover{
        text-decoration: underline;
    }
    .position{
        text-align: center;
        color: #2b75a6;
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 1200px) {

    .item-text{
        font-size: 18px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .experts-container{
        width: 98%;
        margin: 20px 1% 50px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }
    .expert-item{
        width: 40%;
        margin-bottom: 40px;
    }
    .name{
        text-align: center;
        margin-bottom: 16px;
    }
    .name:hover{
        text-decoration: underline;
    }
    .position{
        text-align: center;
        color: #2b75a6;
        margin-bottom: 15px;
    }

}