/**************************\
  Basic Modal Styles
\**************************/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal__container {
    background-color: #fff;
    padding: 50px 70px;
    max-width: 1100px;
    max-height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

.landing {
    margin-bottom: 50px;
}

.landingHeader {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.landingHeader:before {
    content: ' ';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.landingHeader__text {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 540px;
    color: #ffffff;
    font-weight: normal;
    font-size: 42px;
    line-height: 51px;
}


.clients {
    padding: 0;
    margin: 70px auto 0 auto;
}

.clients .cnt {
    max-width: 1120px;
    margin: 0 auto;
}

.clients__desc {
    text-align: center;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.clients__mobile {
    display: none;
}

.clients__title {
    display: block;
    color: rgba(0, 0, 0, .9);
    line-height: 1.2;
    font-size: 34px;
    text-align: center;
    padding: 0;
    margin: 0 auto 70px;
}

.clients__unit {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(20% - 8px);
    flex: 0 1 calc(20% - 8px);
    margin-bottom: 52px;
    transition: all 300ms ease;
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clients__cell .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    opacity: .6;
}

.clients__cell .icon img {
    width: auto;
    height: auto;
}

.clients__cell svg {
    opacity: .6;
    transition: all 450ms ease;
}

.clients__cell p {
    height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    color: #6e6e6e;
    padding: 0;
}

.clients__cell:hover .icon,
.clients__cell:hover svg {
    opacity: 1;
    transition: all 450ms ease;
}

.clients__cell:hover p {
    height: 130px;
    padding: 10px 0 0;
    transition: all 450ms ease;
}
@media (max-width:767px) {

    .clients__mobile {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 60px;
    }

    .clients__desc {
        display: none;
    }

    .clients__unit {
        display: inline-block;
        width: 140px;
        transition: all 300ms ease;
        cursor: pointer;
        overflow: hidden;
    }

    .clients__title {
        font-size: 22px;
        margin: 0 auto 39px;
        padding: 0 7.5%;
    }



}

.landingProjects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    position: relative;
-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1310px;
    padding: 0 20px;
    margin: 0 auto;
}

.landingProjectsItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(33.33% - 15px);
    flex: 0 1 calc(33.33% - 13px);
    position: relative;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-right: 19px
}

.landingProjectsItem:nth-child(3n){
    margin-right: 0
}


.landingProjectsItem__link {
    display: block;
    padding-bottom: 70%;
    background: none;
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out
}

.landingProjectsItem:hover .landingProjectsItem__link {
    background: rgba(0, 0, 0, 0.35);
}

.landingProjectsItem__label {
    position: absolute;
    padding: 20px;
    display: block;
    bottom: 0;
    left: 0;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    transform: translateY(100%);
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out
}

.landingProjectsItem:hover .landingProjectsItem__label {
    transform: translateY(0);
}

@media (max-width:1024px) {
    .landingProjectsItem {
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
        margin-right: 15px
    }

    .landingProjectsItem:nth-child(3n){
         margin-right: 15px
    }
        .landingProjectsItem:nth-child(2n){
         margin-right: 0px
    }
}

.feedback {
    display: inline-block;
    background-color: #f2f5f8;
    width: 100%;
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}

.feedback .cnt {
    max-width: 880px;
    padding: 0 20px;
    margin: 0 auto;
}


.feedback__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.feedback__form__fieldset-message {
    width: 100%;
}

.feedback .field {
    margin-bottom: 20px;
    font-size: 15px;
}

.feedback .field input {
    font-size: 15px;
    height: 33px;
}

.feedback__form__fieldset-message textarea{
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
    height: 87px;
    font-size: 15px;
}

.feedback__bottom {
    text-align: left;
    margin-left: 20px;
    margin-top: 17px;
}

.feedback__bottom input {
    width: 200px;
    margin-right: 20px;
}

.reviewsSlider {
    max-width: 1012px;
    margin: 0 auto;
    padding: 0 20px;
}


.reviewsSliderItem {
    background: #f1f2f3;
    position: relative;
    margin-bottom: 70px;
    height: auto;
}

.reviewsSliderItem:after{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 10;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent transparent #f1f2f3;
}

.reviewsSliderItem__text{
    padding: 20px;
    text-align: center;
}

.reviewsSliderItem__author {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -15px;
    transform: translateY(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviewsSliderItem__ico{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    overflow: hidden;
    background-position: center;
    background-size: 100%;
}

.reviewsSliderItem__name {
    width: calc(100% - 55px);
    text-align: center;
    font-size: 15px;

}

.reviews__title h2{
    margin: 70px 0;
    text-align: center;
}

.reviewsSliderBtns {
    max-width: 1012px;
    margin: 0 auto;
    position: relative;
}

.reviewsSliderBtns .swiper-button-prev {
     left: -70px;
     top: 120px;
 }

.reviewsSliderBtns .swiper-button-next {
    right: -70px;
    top: 120px;
}

.preimSlider {
    max-width: 1012px;
    margin: 0 auto;
    padding: 0 20px;
}

.preimSliderItem {

}


.preim__title h2{
    margin: 70px 0;
    text-align: center;
}

.preimSliderItem__ico {
    text-align: center;
    margin-bottom: 50px;
}

.preimSliderItem__ico img {
    max-height: 60px;
}

.preimSliderItem__text {
    text-align: center;
    font-size: 18px;
}

.team {

}

.team__title h2{
    margin: 70px 0;
    text-align: center;
}

.teamList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    position: relative;
    -webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1012px;
    padding: 0 20px;
    margin: 0 auto;
}

.teamItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 20px);
    flex: 0 1 calc(25% - 20px);
    position: relative;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.teamItem__img {
    margin-bottom: 10px;
}

.teamItem__name {
    text-align: center;
    font-size: 19px;
    margin-bottom: 5px;
}

.teamItem__dolj {
    text-align: center;
    color: #9ea2a5;
    font-size: 14px;
}

.reviewsSliderDots {
    position: relative;
    margin-top: 15px;
    height: 25px;
}

.reviewsSliderDots .swiper-pagination {
    width: 100%;
}

.reviewsSliderDots .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 100%;
    background: none;
    border: 1px solid #8b8b8b;
    opacity: 1;
    margin: 0 3px;
}

.reviewsSliderDots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #8b8b8b;
}


.preimSliderDots {
    position: relative;
    margin-top: 15px;
    height: 25px;
}

.preimSliderDots .swiper-pagination {
    width: 100%;
}

.preimSliderDots .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 100%;
    background: none;
    border: 1px solid #8b8b8b;
    opacity: 1;
    margin: 0 3px;
}

.preimSliderDots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #8b8b8b;
}

.landingProjectsMob {
    display: none;
 padding: 0 20px;
    margin-bottom: 35px;
}

.landingProjectsMobItem__img{
    display: block;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center;
}



.landingProjectsMob .swiper-pagination{
    top: 0;
    bottom: auto;
    position: relative;
}

.landingProjectsMobDots {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: calc(70% - 25px);
    height: 25px;
}

.landingProjectsMobDots .swiper-pagination {
    width: 100%;
}

.landingProjectsMobDots .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 100%;
    background: none;
    border: 1px solid #ffffff;
    opacity: 1;
    margin: 0 3px;
}

.landingProjectsMobDots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
}

.landingProjectsMobItem__text {
    text-align: center;
    margin-top: 15px;
}


.landing-page .main {
    padding-top: 55px;
}

.landing-page header.header .parent_cont {
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    transition: left 300ms ease;
}


.hdr-nav {
    display: block;
    position: relative;
    top: 0;
    float: right;
    margin: 68px 0 0;
}

.hdr-nav__lt {
    display: none;
}

.hdr-nav__lt__el {
    display: table-cell;
    width: auto;
    vertical-align: middle;
    height: 20px;
    padding: 0 14.5px;
}

.hdr-nav__lt__el:last-of-type {
    padding: 0 0 0 15px;
}

.hdr-nav__lt__el_cur {
    padding: 0 8px;
}

.hdr-nav__lt__el_cur .hdr-nav__ref {
    color: #fff;
    padding: 3px 5px;
    background: #2e8af7;
    border-radius: 4px;
    border-bottom: 1px solid transparent;
}

.hdr-nav__lt__el_cur .hdr-nav__ref:hover {
    color: #fff;
}

.hdr-nav__ref {
    display: inline-block;
    vertical-align: baseline;
    font-size: 16px;
    line-height: 1;
    color: rgba(0, 0, 0, .85);
    border-bottom: 1px solid #2e8af7;
    letter-spacing: .05px;
}

.hdr-nav.tablet .hdr-nav__ref:hover,
.hdr-nav__ref:hover {
    color: #2e8af7;
}

.hdr-nav__navbar {
    display: none;
    position: absolute;
    right: -40px;
    top: 0;
}

.hdr-nav__navbar .hdr-nav__toggle-btn {
    margin: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    opacity: 1;
    display: inline-block;
}

.hdr-nav__navbar .hdr-nav__toggle-btn span {
    background: #2e8af7;
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 5px;
    transition: all 150ms linear;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span {
    width: 23px;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span:nth-child(1) {
    -webkit-transform: translate(0, 10px) rotate(-45deg) scalex(1.2);
    -ms-transform: translate(0, 10px) rotate(-45deg) scalex(1.2);
    transform: translate(0, 10px) rotate(-45deg) scalex(1.2);
    margin: 0;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span:nth-child(3) {
    margin: 0;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span:nth-child(2) {
    height: 0;
    margin: 0;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span:nth-child(4) {
    height: 0;
    margin: 0;
}

.hdr-nav__navbar .hdr-nav__toggle-btn.open span:nth-child(3) {
    -webkit-transform: translate(0, 6px) rotate(45deg) scalex(1.2);
    -ms-transform: translate(0, 6px) rotate(45deg) scalex(1.2);
    transform: translate(0, 8px) rotate(45deg) scalex(1.2);
}

.hdr-nav.tablet .hdr-nav__lt {
    display: table;
}

.hdr-nav.tablet .hdr-nav__lt__el {
    display: table-cell;
    vertical-align: middle;
    height: 60px;
    padding: 0 12px;
}

.hdr-nav.tablet .hdr-nav__ref {
    display: inline-block;
    vertical-align: baseline;
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
    border-bottom: 1px solid #2e8af7;
    transition: all 300ms;
}

.hdr-nav_slide-up {
    top: -200px;
    opacity: 0;
}

.hdr_fixed .hdr-nav__lt__phone {
    display: table-cell;
}

.hdr-nav {
    display: none;
}

@media screen and (max-width: 1100px) {
    header.header a.email {
        padding-right: 15px;
    }

    header.header .parent_cont a.email {
        background: url('../images/at.svg');
        display: block;
        width: 25px;
        height: 25px;
        background-size: 25px;
        background-repeat: no-repeat;
    }

    header.header .parent_cont a.email span {
        display: none;
    }

    header.header .parent_cont .header-links a {
        float: left;
    }

    header.header .parent_cont a.tel {
        background: url('../images/phone.svg');
    }

    header.header .parent_cont a.tel span {
        display: none;
    }

    header.header .parent_cont a.tel {
        display: block;
        width: 25px;
        height: 25px;
    }

    header.header .parent_cont .header-links a {
        float: left;
    }
}

@media screen and (max-width: 900px) {

    .header-menu {
        max-width: 350px;
        padding: 5px;
        text-align: center;
    }
}

.header-menu {display: block}

@media (max-width:767px) {
    .header-menu {
        display: none;
    }
    .header-links {
        padding-right: 40px;
    }

    .landingProjects {
        display: none;
    }

    .landingProjectsMob {
        display: block;
    }


    .teamItem {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
        flex: 0 1 calc(50% - 10px);
        position: relative;
        margin-bottom: 30px;
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .landingHeader__text {
        position: relative;
        z-index: 20;
        text-align: center;
        max-width: 540px;
        color: #ffffff;
        font-weight: normal;
        font-size: 30px;
        line-height: 34px;
        max-width: 230px;
    }

    .landingHeader {
        height: auto;
        padding: 40px 0;
    }

    .clients {
        padding: 0;
        margin: 25px auto 0 auto;
    }

    .clients__title {
        font-size: 22px;
        margin: 0 auto 39px;
        padding: 0 8.5%;
        font-weight: 400;
        font-family: 'BasisGrotesquePro-Regular', Arial, Helvetica, sans-serif;
    }

    .clients__mobile {
        margin-bottom: 0;
    }

    .feedback {
        display: inline-block;
        background-color: #f2f5f8;
        width: 100%;
        margin: 0 auto;
        padding: 35px 0;
        text-align: center;
    }

    .feedback__title h2 {
        font-size: 22px;
        margin: 0 auto 39px;
        padding: 0 8.5%;
        font-weight: 400;
        font-family: 'BasisGrotesquePro-Regular', Arial, Helvetica, sans-serif;
    }

    .feedback__form{
        -ms-flex-wrap: wrap;flex-wrap: wrap;
    }

    .feedback__form__fieldset-text {
        width: 100%;
    }

    .feedback .field input {
        font-size: 15px;
        height: 33px;
        width: 100%;
    }

    .feedback__form__fieldset-message textarea {
        width: 100%;
        margin: 0;
        height: 87px;
        font-size: 15px;
    }

    .feedback__bottom {
        text-align: left;
        margin-left: 0;
        margin-top: 17px;
    }

    .feedback__bottom input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        display: block;
    }

    .feedback__bottom span {
        display: block;
        width: 100%;
        text-align: center;
    }

    .feedback__bottom span a {
        color: #2e8af7;
        text-decoration: none;
        display: block;
        margin-top: 10px;
    }

    .reviews__title h2 {
        margin: 35px 0;
        text-align: center;
        font-size: 22px;
        padding: 0 8.5%;
        font-weight: 400;
        font-family: 'BasisGrotesquePro-Regular', Arial, Helvetica, sans-serif;
    }

    .preim__title h2 {
        margin: 35px 0 20px 0;
        text-align: center;
        font-size: 22px;
        padding: 0 8.5%;
        font-weight: 400;
        font-family: 'BasisGrotesquePro-Regular', Arial, Helvetica, sans-serif;
    }

    .team__title h2 {
        margin: 35px 0;
        text-align: center;
        font-size: 22px;
        padding: 0 8.5%;
        font-weight: 400;
        font-family: 'BasisGrotesquePro-Regular', Arial, Helvetica, sans-serif;
    }

    .feedback .cnt {
        max-width: 880px;
        padding: 0 30px;
        margin: 0 auto;
    }


    .hdr {
        width: 100%;
        top: 0;
        padding: 0 7.5% 35px;
        background: #fff;
        z-index: 9999;
    }

    .hdr .hdr__top-section {
        padding: 0;
    }

    .hdr.hdr_fixed,
    .hdr.hdr_visible {
        box-shadow: 0 1px 5px rgba(0, 0, 0, .15);
    }

    .hdr.hdr_fixed .uh-logo .svg-icon-uh-logo {
        width: 254px;
        height: 71px;
        opacity: 1;
        transition: all 150ms ease;
    }

    .hdr.hdr_fixed .hdr__top-section:after,
    .hdr.hdr_fixed .uh-logo-scrollTop,
    .hdr.hdr_fixed:after {
        display: none;
    }

    .hdr.hdr_fixed .hdr__top-section {
        padding: 0;
        background: 0 0;
    }

    .hdr.open-hdr-nav {
        left: -170px;
    }

    .hdr.hdr_hidden {
        top: -87px;
    }

    .uh-logo .svg-icon-uh-logo {
        width: auto;
        height: 58px;
    }

    .uh-logo {
        margin-top: auto;
    }

    .hdr-nav {
        display: block;
        margin: 0;
    }

    .hdr-nav .hdr-nav__lt {
        display: block;
        position: fixed;
        top: -18px;
        right: -170px;
        width: 170px;
        height: 100%;
        padding: 30px 0 0 30px;
        background: #2e8af7;
        transition: right 300ms ease;
        box-sizing: border-box;
    }

    .hdr-nav .hdr-nav__lt__el {
        display: inline-block;
        width: 100%;
        vertical-align: middle;
        height: auto;
        padding: 0;
        text-align: left;
    }

    .hdr-nav .hdr-nav__lt__el_cur .hdr-nav__ref {
        padding: 0;
    }

    .hdr-nav .hdr-nav__lt.open {
        right: 0;
    }

    .hdr-nav .hdr-nav__ref {
        line-height: 1.7;
        color: #fff;
        border-bottom: none;
    }

    .hdr-nav .hdr-nav__navbar {
        display: block;
    }

    body {
        position: relative;
        transition: left 300ms ease;
        left: 0;
    }

    body.open-hdr-nav {
        left: -170px;
        overflow: hidden;
        height: 100vh;
    }

    .landing-page.open-hdr-nav header.header .parent_cont {
        left: -170px;
    }

    li.hdr-nav__lt__title {
        color: #dadada;
        list-style: none;
        font-size: 16px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 1019px) and (min-width: 681px) {
    .open-hdr-nav .img-block-wrap {
        left: calc(50% - 170px);
        width: 50%;
    }
    
}




@media screen and (max-width: 340px) {
    .logo img {
        width: 135px;
    }
}

.header-menu {

}

.header-menu span, .header-menu a {
    font-size: 14px;
    margin-right: 20px;
    display: inline-block;
    padding: 3px 0;
}

.header-menu a{
    border-bottom: 1px solid transparent;
}



.header-menu a:hover {
    text-decoration: none;
    border-bottom: 1px solid #2e8af7;
}


.header-menu a.active {
    color: #000000;
    border-bottom: 1px solid #000000;
}


.header-menu a:last-child {
    margin-right: 0;
}

.header-menu span {
    color: #9ea2a5;
}



@media (min-width:768px) {
    .reviewsSliderDots, .preimSliderDots {
        display: none;
    }
}

.projSliderWrap {
    position: relative;
}

.projSliderWrap .swiper-button-prev{
    left: -50px;
}

.projSliderWrap .swiper-button-next{
    right: -50px;
}

.projSlider__title {
    font-size: 21px;
    margin: 20px 0 5px;
}

.projSlider__text {
    font-size: 16px;
    line-height: 20px;

}

button.modal__close, button.modal__close:hover {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 0;
    background: url('../images/close.svg') no-repeat;
    display: block;
    border: none;
    box-shadow: none;
    text-indent: -9999em;

}

@media (max-width:767px) {

    .modal__container {
        padding: 50px 20px;
    }

    .projSlider__title {
        font-size: 18px;
        margin: 20px 0 5px;
    }

    .projSlider__text {
        font-size: 14px;
        line-height: 20px;
    }

}

.projSliderDots .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 100%;
    background: none;
    border: 1px solid #ffffff;
    opacity: 1;
    margin: 0 3px;
}

.projSliderDots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
}

.feedback__form__fieldset-message textarea.parsley-error {
    background-color: #fdeaea;
}

.feedback .field input.parsley-error {
    background-color: #fdeaea;
}

.reviewsSliderItem__full {
    display: block;
    margin-top: 5px;
}


.reviewsSliderItem__text{
	text-align: left;
}