/**
START SHORTCODE
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap');

.block-hiring {
    position: relative;
    display: flex;
}

.block-hiring:after {
    position: absolute;
    top: 150px;
    left: 94px;
    content: url(../png/hiring_bg.png);
}

.block-hiring > div {
    max-width: 50%;
    width: 50%;
}

.block-hiring > .left {
    padding: 90px 78px 90px 110px;
}

.block-hiring > .right {
    padding: 90px 88px;
}

.hiring__avatar img {
    width: 124px;
    height: 124px;

    margin-left: 20px;
    margin-bottom: 34px;

    object-fit: cover;
    object-position: top center;
    overflow: hidden;

    border-radius: 100%;
}

.hiring__content {
    font-family: Minion Pro;
    font-style: italic;
    font-weight: normal;
    font-size: 24px;
    line-height: 36px;
    /* or 150% */

    color: #000000;
}

.hiring__name {
    margin-bottom: 0 !important;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height */

    color: #000000;
}

.hiring__position {
    margin-bottom: 0 !important;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 24px;
    /* identical to box height, or 185% */

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #767676;
}


.hiring__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
    padding: 70px 40px 40px;

    background: url(../svg/vector-2.svg) no-repeat center;
}

.hiring__inner__title {
    margin-bottom: 40px !important;
    font-family: Rollerscript;
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 134.19%;
    /* or 64px */

    text-align: center;
    font-feature-settings: 'ss01' on, 'liga' off;

    color: #2E333C;

}

.hiring__inner__description {
    margin-bottom: 50px !important;
    font-family: Minion Pro;
    font-style: italic;
    font-weight: normal;
    font-size: 24px;
    line-height: 134.19%;
    /* or 32px */

    text-align: center;

    color: #000000;
}

.hiring__inner__link {
    position: relative;
    display: inline-flex;
    padding: 17px 60px;

    background: #2E333C;

    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #FFFFFF;
}


.hiring__inner__link:hover {
    color: #eee;
}

@media (max-width: 1280px) {
    .hiring__inner {
        background: none;
        border: 4px solid #E2B29A;
    }
}


@media (max-width: 991px) {
    .block-hiring {
        flex-direction: column;
    }

    .block-hiring > div {
        max-width: 100%;
        width: 100%;
        padding: 30px 0;
    }

    .block-hiring:after {
        top: 125px;
    }
}

@media (max-width: 767px) {
    .block-hiring > .left {
        margin-top: 30px;
        padding: 30px;
    }
    .block-hiring > .right {
        padding: 30px;
    }
}