@charset "UTF-8";

/*
    1. core
    2. header
    3. sections
*/

/* 1. core */
@-webkit-keyframes blink_fade_out_before {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    to {
        opacity: 0;
    }
}

@keyframes blink_fade_out_before {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes blink_fade_out_after {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    to {
        opacity: 0;
    }
}

@keyframes blink_fade_out_after {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    to {
        opacity: 0;
    }
}

* {
    box-sizing: border-box;
}

.modal .close {
    box-sizing: initial;
}

.modal .modal-header {
    padding: 22px 0 40px;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #313945;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
}

h1 {
    font-size: 48px;
    line-height: 57px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 auto;
}

h2 {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 28px;
    margin: 0 auto;
}

h3 {
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0.5px;
    margin: 0 auto;
}

.intro {
    width: 1200px;
    margin: 0 auto;
}

/* 3. sections */
.button {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #ffffff;
    background: #53D86A;
    border: 2px solid;
    border-color: #53D86A;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 100px;
    transition: background .2s ease, border .2s ease, color .2s ease;
    -webkit-transition: background .2s ease, border .2s ease, color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover {
    background: #1aaf5d;
    border-color: #1aaf5d;
    color: #ffffff;
    text-decoration: none;
}

.button > span {
    display: inline-block;
    vertical-align: middle;
}

.button > i {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    line-height: 18px;
    margin: 0 4px 0 0;
}

.button.button--small {
    padding: 8px 24px 10px;
    font-size: 16px;
    line-height: 20px;
}

.button.button--bordered {
    background: transparent;
    border-color: #53D86A;
    color: #313945;
}

.button.button--bordered:hover {
    background: #53D86A;
    border-color: #53D86A;
    color: #ffffff;
}

.button.button--blue {
    background: #488bfa;
    border-color: #488bfa;
    color: #ffffff;
}

.button.button--blue:hover {
    background: #6ca2fb;
    border-color: #6ca2fb;
    color: #ffffff;
}

.button.button--bordered.button--blue {
    background: transparent;
    border-color: #488bfa;
    color: #313945;
}

.button.button--bordered.button--blue:hover {
    background: #488bfa;
    border-color: #488bfa;
    color: #ffffff;
}

.button.button--bordered.button--white {
    background: transparent;
}

.button.button--orange {
    background: #FEB640;
    border-color: #FEB640;
    color: #ffffff;
}

.button.button--orange:hover {
    background: #ffc059;
    border-color: #ffc059;
    color: #ffffff;
}

.button.button--white {
    background: #ffffff;
    border-color: #ffffff;
    color: #09C47E;
}

.button.button--white:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #09C47E;
}

.button.button--arrow {
    position: relative;
    padding: 16px 66px 16px 40px;
}

.button.button--arrow:after {
    content: '\e90c';
    font-family: 'uPartner-bonus';
    display: inline-block;
    transform: rotate(90deg) translateX(-70%);
    -webkit-transform: rotate(90deg) translateX(-70%);
    font-size: 24px;
    position: absolute;
    top: 50%;
    right: 32px;
}

.pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.bg {
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section {
    position: relative;
    padding: 60px 0;
}

section.top {
    padding: 50px 0;
}

section.top > .intro {
    position: relative;
    z-index: 2;
}

section.top > .role-buttons {
    position: relative;
    z-index: 3;
}

section.grey {
    background: #FAFAFC;
    color: #313945;
}

.role-buttons {
    overflow: hidden;
    margin: 50px auto 0;
}

.role-buttons > a {
    width: 48%;
    display: block;
    float: left;
    text-decoration: none;
    color: #ffffff;
    margin-left: 2%;
    border-radius: 100px 0 0 100px;
    overflow: hidden;
    position: relative;
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    transition: transform .4s ease, background .4s ease;
    -webkit-transition: transform .4s ease, background .4s ease;
}

.role-buttons > a:before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 70px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: translateX(-100px) skewX(-15deg);
    transform: translateX(-100px) skewX(-15deg);
}

.role-buttons > a:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: translateX(-100px) skewX(-15deg);
    transform: translateX(-100px) skewX(-15deg);
}

.role-buttons > a:hover:before {
    -webkit-transform: translateX(300px) skewX(-15deg);
    transform: translateX(300px) skewX(-15deg);
    opacity: 0;
    -webkit-transition: 1s;
    transition: 1s;
    animation: blink_fade_out_before 1s;
    -webkit-animation: blink_fade_out_before 1s;
}

.role-buttons > a:hover:after {
    -webkit-transform: translateX(300px) skewX(-15deg);
    transform: translateX(300px) skewX(-15deg);
    opacity: 0;
    -webkit-transition: 1s;
    transition: 1s;
    animation: blink_fade_out_after 1s;
    -webkit-animation: blink_fade_out_after 1s;
}

.role-buttons > a:first-child {
    text-align: right;
    margin-right: 2%;
    margin-left: 0;
    border-radius: 0 100px 100px 0;
    transform: translateX(-110%);
    -webkit-transform: translateX(-110%);
}

.role-buttons > a:first-child:before {
    right: 0;
    left: auto;
    -webkit-transform: translateX(100px) skewX(15deg);
    transform: translateX(100px) skewX(15deg);
}

.role-buttons > a:first-child:after {
    right: 0;
    left: auto;
    -webkit-transform: translateX(100px) skewX(15deg);
    transform: translateX(100px) skewX(15deg);
}

.role-buttons > a:first-child:hover:before {
    -webkit-transform: translateX(-340px) skewX(15deg);
    transform: translateX(-340px) skewX(15deg);
}

.role-buttons > a:first-child:hover:after {
    -webkit-transform: translateX(-340px) skewX(15deg);
    transform: translateX(-340px) skewX(15deg);
}

.role-buttons.role-buttons--show > a {
    transition: transform .4s ease-out .2s, background .4s ease;
    -webkit-transition: transform .4s ease-out .2s, background .4s ease;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.role-buttons > a > span {
    margin: 28px;
    display: inline-block;
    vertical-align: middle;
    padding: 18px 58px;
    border-radius: 100px;
    font-size: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 20px;
}

.role-button-freelancer {
    background: rgba(254, 182, 64, 0.3);
}

.role-button-freelancer > span {
    background: #FEB640;
}

.role-button-freelancer:hover {
    background: rgba(254, 182, 64, 0.5);
}

.role-button-employer {
    background: rgba(83, 216, 106, 0.3);
}

.role-button-employer > span {
    background: #53D86A;
}

.role-button-employer:hover {
    background: rgba(83, 216, 106, 0.5);
}

.centered {
    text-align: center;
}

.page-title {
    text-align: center;
}

.page-descr {
    text-align: center;
    margin: 34px auto 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin: 0 auto 60px;
}

.section-content img {
    max-width: 100%;
    max-height: 100%;
}

.quad-block {
    width: 100%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.quad-item {
    width: 24%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
    padding: 0 30px;
}

.quad-item-image {
    display: block;
    min-height: 180px;
    position: relative;
}

.quad-item-image > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.quad-item span {
    display: block;
    margin: 40px auto 0;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* projects list */
.projects-list {
    text-align: center;
    width: 100%;
    margin: 0 auto 40px;
}

.project {
    width: 48%;
    display: inline-block;
    position: relative;
    vertical-align: top;
    text-align: left;
    margin: 0 2% 3% 0;
    padding: 24px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.11);
}

.project.project--pro {
    background: #fffaf4;
}

.project:nth-child(2n) {
    margin: 0 0 1% 0;
}

.project-content {
    position: relative;
}

.project-title {
    font-size: 24px;
    line-height: 28px;
    margin: 0;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project.project--pro .project-title {
    padding-right: 70px;
}

.project.project--pro .project-title:after {
    content: 'PRO';
    background: #FEB640;
    color: #ffffff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
}

.project-descr {
    font-size: 18px;
    line-height: 26px;
    margin: 18px auto 20px;
    color: #464D57;
    min-height: 52px;
}

.project-details {
    overflow: hidden;
}

.project-price {
    font-size: 36px;
    line-height: 36px;
    color: #09C47E;
    font-weight: 500;
}

.project-price .no-cost {
    font-size: 18px;
    line-height: 18px;
}

.project-counters {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #A4AEBC;
    font-weight: 500;
}

.project-counters > div {
    margin: 0 30px 0 0;
}

.project-counters > div:last-child {
    margin: 0;
}

.project-views {
    display: inline-block;
    vertical-align: middle;
    background: none;
}

.project-views:before {
    content: '\e906';
    font-family: 'uPartner-bonus';
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px 0 0;
}

.project-views > span {
    display: inline-block;
    vertical-align: middle;
}

.project-comments {
    display: inline-block;
    vertical-align: middle;
}

.project-comments:before {
    content: '\e907';
    font-family: 'uPartner-bonus';
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px 0 0;
}

.project-comments > span {
    display: inline-block;
    vertical-align: middle;
}

.project-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(83, 216, 106, 0.8);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    -webkit-transition: opacity .4s ease, visibility .4s ease;
}

.project-more-button {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.project-more-button > a {
    text-transform: uppercase;
    transition: transform .25s ease;
    -webkit-transition: transform .25s ease;
    transform: scale(0);
    -webkit-transform: scale(0);
}

.project:hover .project-more {
    opacity: 1;
    visibility: visible;
}

.project:hover .project-more-button > a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

/* search info block */
.search-info-block {
    width: 80%;
    margin: 0 auto 50px;
    clear: both;
    overflow: hidden;
}

.search-info-image {
    float: left;
}

.search-info-text {
    font-size: 18px;
    line-height: 24px;
    padding-left: 380px;
}

.search-info-text a {
    color: #313945;
}

.search-info-text a:hover {
    text-decoration: none;
}

/* freelancers list */
.freelancers-list {
    width: 100%;
    text-align: center;
    margin: 0 auto 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.freelancer {
    width: 19%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.3px;
}

.freelancer-photo {
    position: relative;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.freelancer-photo > a {
    display: block;
    border-radius: 50%;
}

.freelancer-photo img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.freelancer-pro-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #FEB640;
    color: #ffffff;
    text-transform: uppercase;
    padding: 7px 12px;
    line-height: 14px;
    border-radius: 30px;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
}

.freelancer-name {
    font-weight: 500;
    font-size: 18px;
    padding: 0 20px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.freelancer-name > a {
    text-decoration: none;
    color: #313945;
}

.freelancer-rating {
    font-weight: 500;
    color: #1AAF5D;
    margin: 10px auto 0;
    padding: 0 20px;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.freelancer-main-activity {
    margin: 8px auto 0;
    padding: 0 20px;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* work stages */
.work-stages-block {
    overflow: hidden;
    text-align: center;

}

.work-stages-mobile {
    display: none;
}

.work-stages {
    width: 80%;
    height: 4px;
    background: #666D78;
    margin: 230px auto;
    position: relative;
    display: inline-block;
}

.work-stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.work-stage:first-child {
    top: 12px;
    left: 0;
    transform: translate(-50%, -100%);
}

.work-stage:first-child .work-stage-number,
.work-stage:first-child .work-stage-number:after,
.work-stage:first-child:after {
    background: #F35657;
}

.work-stage:nth-child(2) {
    bottom: 12px;
    left: 25%;
    transform: translate(-50%, 100%);
    flex-direction: column-reverse;
}

.work-stage:nth-child(2) .work-stage-number,
.work-stage:nth-child(2) .work-stage-number:before,
.work-stage:nth-child(2):after {
    background: #FFCB2F;
}

.work-stage:nth-child(2) .work-stage-number {
    margin: 40px auto 0;
}

.work-stage:nth-child(3) {
    top: 12px;
    left: 50%;
    right: auto;
    transform: translate(-50%, -100%);
}

.work-stage:nth-child(3) .work-stage-number,
.work-stage:nth-child(3) .work-stage-number:after,
.work-stage:nth-child(3):after {
    background: #B57EC2;
}

.work-stage:nth-last-child(2) {
    bottom: 12px;
    right: 25%;
    transform: translate(50%, 100%);
    flex-direction: column-reverse;
}

.work-stage:nth-last-child(2) .work-stage-number,
.work-stage:nth-last-child(2) .work-stage-number:before,
.work-stage:nth-last-child(2):after {
    background: #70C4E0;
}

.work-stage:nth-last-child(2) .work-stage-number {
    margin: 40px auto 0;
}

.work-stage:last-child {
    top: 12px;
    right: 0;
    transform: translate(50%, -100%);
}

.work-stage:last-child .work-stage-number,
.work-stage:last-child .work-stage-number:after,
.work-stage:last-child:after {
    background: #53D86A;
}

.work-stage-title {
    background: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    line-height: 24px;
    max-width: 230px;
    border-radius: 6px;
    position: relative;
    margin: 0 auto 20px;
}

.work-stage-title:after {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, 50%) rotate(45deg);
    -webkit-transform: translate(-50%, 50%) rotate(45deg);
}

.work-stage-number {
    width: 64px;
    height: 64px;
    line-height: 66px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 40px;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
}

.work-stage-number:after {
    content: '';
    display: block;
    margin: -2px auto 0;
    width: 3px;
    height: 40px;
    background: #ccc;
}

.work-stage:nth-child(2) .work-stage-number:before,
.work-stage:nth-last-child(2) .work-stage-number:before {
    content: '';
    display: block;
    margin: -40px auto 0;
    width: 3px;
    height: 40px;
}

.work-stage:nth-child(2) .work-stage-title,
.work-stage:nth-last-child(2) .work-stage-title {
    margin: 20px auto 0;
}

.work-stage:nth-child(2) .work-stage-title:after,
.work-stage:nth-last-child(2) .work-stage-title:after {
    top: 0;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
}

.work-stage:nth-child(2) .work-stage-number:after,
.work-stage:nth-last-child(2) .work-stage-number:after {
    content: none;
}

.work-stage:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto;
    background: #ccc;
}

/* support block */
.support-block {
    background: #FAFAFC;
    padding: 60px 40px;
    border-radius: 17px;
}

.support-block .section-title {
    font-weight: 300;
    margin: 0 auto 40px;
}

/* footer */
.footer, .footer * {
    box-sizing: initial;
}

.footer {
    font: 14px/1.6 'PT Sans', sans-serif;
}

.footer-navigation {
    position: static;
    padding: 0;
}

.footer-navigation h3 {
    line-height: 1.2;
    font: 14px/1.6 'PT Sans', sans-serif;
    font-weight: bold;
}

/* media */
@media only screen and (max-width: 1280px), only screen and (max-device-width: 1280px) {

    .intro {
        width: 1100px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 22px;
    }

    .quad-item {
        font-size: 18px;
    }

}

@media only screen and (max-width: 1140px), only screen and (max-device-width: 1140px) {

    .intro {
        width: 1000px;
    }

}

@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {

    .intro {
        width: 900px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-descr {
        font-size: 16px;
        line-height: 22px;
    }

    .project-price {
        font-size: 32px;
        line-height: 32px;
    }

    .project-more-button .button {
        font-size: 18px;
    }

}

@media only screen and (max-width: 940px), only screen and (max-device-width: 940px) {

    .intro {
        width: 800px;
    }

    .project {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .project:nth-child(2n) {
        margin: 0 0 30px 0;
    }

    .search-info-block {
        width: 100%;
    }

    .freelancer {
        width: 24%;
    }

    .freelancer:last-child {
        display: none;
    }

    .work-stages {
        display: none;
    }

    .work-stages-mobile {
        display: block;
    }

    .work-stage {
        position: static;
        flex-direction: column !important;
        transform: none !important;
        margin: 0 auto 40px !important;
    }

    .work-stage:after {
        content: none !important;
    }

    .work-stage-number:before {
        content: none !important;
    }

    .work-stage-number {
        margin: 0 auto 20px !important;
    }

    .work-stage-number:after {
        content: none !important;
    }

    .work-stage-title {
        margin: 0 auto !important;
    }

    .work-stage-title:after {
        top: 0;
        bottom: auto;
        transform: translate(-50%, -50%) rotate(45deg);
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
    }

}

@media only screen and (max-width: 840px), only screen and (max-device-width: 840px) {

    .intro {
        width: 700px;
    }

    .logo {
        width: 102px;
        height: 38px;
    }

    .button {
        font-size: 18px;
    }

    .button.button--arrow:after {
        transform: rotate(90deg) translateX(-89%);
        -webkit-transform: rotate(90deg) translateX(-89%);
        font-size: 21px;
    }

    .button.button--arrow {
        padding: 14px 60px 14px 34px;
    }

    .section-title {
        font-size: 32px;
    }

    h3 {
        line-height: 38px;
        font-size: 32px;
    }

    .quad-item {
        width: 48%;
        margin: 0 0 80px;
    }

    .quad-item:nth-last-child(2),
    .quad-item:last-child {
        margin: 0;
    }

    .role-buttons > a > span {
        font-size: 18px;
        line-height: 18px;
        padding: 16px 40px;
        margin: 22px;
    }

    h1 {
        font-size: 38px;
        line-height: 48px;
    }

    h2 {
        font-size: 20px;
        line-height: 24px;
    }

}

@media only screen and (max-width: 740px), only screen and (max-device-width: 740px) {

    .intro {
        width: 600px;
    }

    .search-info-image {
        width: 100%;
        float: none;
        margin: 0 auto 40px;
        text-align: center;
    }

    .search-info-text {
        width: 100%;
        padding: 0;
    }

    .freelancer {
        width: 48%;
        margin: 0 0 60px;
    }

    .freelancer:nth-last-child(3),
    .freelancer:nth-last-child(2) {
        margin: 0 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

}

@media only screen and (max-width: 640px), only screen and (max-device-width: 640px) {

    .intro {
        width: 500px;
    }

    .role-buttons > a > span {
        font-size: 16px;
        line-height: 16px;
        padding: 16px 32px;
    }

    h1 {
        font-size: 32px;
        line-height: 38px;
    }

    h2 {
        font-size: 18px;
    }

    .section-title {
        margin: 0 auto 40px;
        font-size: 24px;
    }

}

@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {

    .intro {
        width: 100%;
        padding: 0 20px;
    }

    h1 {
        font-size: 24px;
        line-height: 30px;
    }

    h2 {
        font-size: 16px;
        line-height: 22px;
    }

    .page-descr {
        margin: 22px auto 0;
    }

    section.top {
        padding: 30px 0 40px;
    }

    .quad-item {
        width: 100%;
    }

    .quad-item:nth-last-child(2) {
        margin: 0 0 80px;
    }

    .quad-item-image {
        min-height: 120px;
    }

    .project-title {
        font-size: 16px;
    }

    .project-descr {
        font-size: 14px;
        line-height: 18px;
    }

    .project {
        padding: 18px 20px;
    }

    .project-price {
        font-size: 28px;
        line-height: 28px;
    }

    .project-counters > div {
        margin: 0 20px 0 0;
    }

    .project-more-button .button {
        font-size: 16px;
    }

    .role-buttons > a > span {
        font-size: 12px;
        line-height: 12px;
        padding: 12px 18px;
        margin: 10px;
    }

    .project-price .no-cost {
        font-size: 16px;
        line-height: 16px;
    }

}