.container .section
{
    margin-top: 70px;
    padding: 70px;
    width: calc(100% - 140px);
}

.container .section .row.n1 .col.left
{
    float: left;
    width: 100%;
}

.container .section .row.n1 .col.left h1
{
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

.container .section .row.n1 .col.right
{
    float: right;
    width: calc(100% - 300px);
}

.container .section .row.n1 .col.right .banner
{
    float: right;
    height: 140px;
}

.container .section .row.n2
{
    margin: 70px auto;
}

.teachers
{
    float: left;
    width: 100%;
}

.teachers .teacher
{
    /*
    float: left;
    margin: 15px;
    width: calc(20% - 30px);
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding-top: calc(20% - 150px);
    padding-bottom: 0;
    background-position: center center;
    border-radius: 15px;
    cursor: pointer;
    */
    float: left;
    margin: 15px;
    width: calc(25% - 30px);
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding-top: calc(25% - 150px);
    padding-bottom: 0;
    background-position: center center;
    border-radius: 15px;
    cursor: pointer;
}

.teachers .teacher:hover
{
    background-size: auto 110%;
}

.teachers .teacher .data
{
    float: left;
    width: 100%;
    height: 30px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-top: 90px;
    cursor: pointer;
}

.teachers .teacher:hover .data
{
    background-image: url(../images/pages/teachers/gradient.png);
    background-size: 100% 100%;
}

.teachers .teacher .data .name
{
    float: left;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
}

.teachers .teacher .data .profile
{
    /*
    float: right;
    padding-right: 10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #FFF;
    */
    float: right;
    padding-right: 10px;
    font-size: 12px;
    line-height: 21px;
    font-weight: 400;
    color: #FFF;
}

@media (orientation: portrait) {
    .container .section
    {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .container .section .row.n1 .col.left h1
    {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }

    .container .section .row.n2
    {
        margin: 70px auto;
        margin-top: 40px;
        margin-bottom: 0;
    }

    .teachers .teacher
    {
        float: left;
        margin: 15px;
        width: calc(100% - 30px);
        background-size: cover;
        background-repeat: no-repeat;
        padding-top: calc(40% - 45px);
        padding-bottom: 5px;
        background-position: center center;
        border-radius: 15px;
        cursor: pointer;
    }

    .teachers .teacher:hover
    {
        background-size: cover;
    }

    .teachers .teacher:hover .data
    {
        background-image: unset;
    }
    .teachers .teacher .data .name
    {
        font-size: 16px;
        line-height: 16px;
    }

    .teachers .teacher .data .profile
    {
        font-size: 14px;
        line-height: 16px;
    }
}