.tel__item {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    position: relative;
}
.tel__item:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.tel__item:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 15px;
    border-bottom: 1px solid #939393;
}
.tel__label {
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    font-size: 10px;
    flex: 0 0 65px;
    text-align: right;
    margin-right: 5px;
}
.tel__label span {
    opacity: .7;
}
.tel__value {
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
    flex: 1;
    display: flex;
    align-items: center;
}
.tel__value span {
    opacity: .5;
}

.social-list {
    display: flex;
    align-items: center;
    justify-content: space-between
}
@media (max-width:600px) {
    .social-list {
        padding: 0 25px
    }
}
.social-list__link {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center
}
.social-list__link svg {
    width: 100%;
    height: 100%
}
.social-list__link-wa svg {
    width: 75%;
    height: 75%
}
@media (min-width:1025px) {
    .social-list__link {
        transition: opacity 150ms ease
    }
    .social-list__link:hover {
        opacity: .8
    }
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 40px 0;
}
.footer__inner .logo {
    width: 227px;
    height: auto;
    padding: 0;
}
.footer__inner .logo:hover {
    background: transparent;
}
.footer__bar {
    flex: 1;
    margin-left: 145px;
}
@media (max-width:1024px) {
    .footer__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 0 40px;
    }
    .footer__bar {
        flex: 1 1 100%;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

.gallery3clmn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.gallery3clmn .one_third.project {
    float: none;
    width: 100%;
}
@media (max-width:1024px) {
    .gallery3clmn {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:767px) {
    .gallery3clmn {
        grid-template-columns: 1fr;
    }
}

.main_menu ul:first-child > li > a {
    padding: 0 8px;
}
.main_menu {
    display: flex;
    align-items: center;
}
@media (max-width: 959px) {
    .main_menu {
        box-sizing: border-box;
    }
    #top .mobileMenu {
        margin-bottom: 0;
    }
}
.main_menu > div:not(.main_menu-lang) {
    flex: 1;
}
.main_menu-lang {
    position: relative;
    padding: 0 11px;
    margin-left: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}
.main_menu-lang__toggle {
    position: relative;
    user-select: none;
    outline: 0;
    padding: 16px 14px 16px 0;
    border: 0;
    background: transparent;
    color: #a9a9a9;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 12px;
    font-weight: 400;
    cursor: pointer;
}
.main_menu-lang__toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #a9a9a9;
    border-bottom: 2px solid #a9a9a9;
    transform: rotate(45deg);
}
.main_menu-lang__toggle:hover {
    color: #fff;
}
.main_menu-lang__toggle:hover:after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.main_menu-lang__list {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    background: #fff;
    color: #594E63;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    margin-top: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 150ms ease;
}
.main_menu-lang.--open .main_menu-lang__list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.main_menu-lang__list:after {
    content: '';
    display: block;
    position: absolute;
    right: 6px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.main_menu-lang__link {
    text-align: left;
    color: #594E63;
    padding: 10px 0 8px 0;
    font-size: 13px;
    min-height: 23px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    outline: 0;
    user-select: none;
    text-transform: uppercase;
    white-space: nowrap;
}
.main_menu-lang__link:not(:last-child) {
    border-bottom: 1px solid #d4d4d4;
}
.main_menu-lang__link:hover {
    color: #D4363A;
}
.main_menu-lang__link.--active {
    color: #D4363A;
    font-weight: 700;
}