.logo_header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    font-size: 0;
}

.logo_header img {
    max-width: 100%;
}

.logo_header-mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .logo_header-desktop {
        display: none
    }

    .logo_header-mobile {
        display: block;
    }
}

@media screen and (max-width: 375px) {
    .logo_header {
        padding-top: 15px;
    }
}

.logo_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}

.logo_footer img {
    max-width: 115px;
}

@media screen and (max-width: 767px) {
    .logo_footer {
        padding-top: 25px;
    }

    .logo_footer img {
        max-width: 145px;
    }
}

@media screen and (max-width: 575px) {
    .registration__card .form {
        padding: 0;
        margin: 0 0 24px;
    }

    .registration-card__title {
        margin-bottom: 0;
    }

    .registration__card .form__hint {
        max-width: 100%;
    }
}

/* google translate */
/* Кнопка смены языков */
.lang-btn {
    position: relative;
    color: #b5bbc2;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
}
.lang-btn__title {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.lang-btn__title img{
    margin-right: 8px;
}
.lang-btn::after {
    position: absolute;
    top: 3px;
    right: -10px;
    content: "";
    flex: 0 0 4px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #b5bbc2;
    border-right: 1px solid #b5bbc2;
    transform: rotate(135deg);
    transition: all 0.3s ease 0s;
}
.lang-btn:hover .lang-btn__body {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.lang-btn__body {
    position: absolute;
    top: 100%;
    z-index: 100;
    padding-top: 12px;
    left: -10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
}
.page-header__mobile-callback .lang-btn__body {
    right: auto;
}
.lang-btn__list {
    margin: 0;
    list-style: none;
    border-radius: 4px;
    background-color: #FFF;
    padding: 10px 7px;
}
.lang-btn__item {
    padding: 7px 0;
}
.lang-btn__item:first-child {
    padding-top: 0;
}
.lang-btn__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.lang-btn__link {
    display: flex;
    align-items: center;
    color: #172A3F;
    padding: 2px 6px;
    font-size: 13px;
    text-transform: none;
    transition: all 0.3s ease 0s;
}
.lang-btn__link img {
    max-width: 19px;
    margin-right: 10px;
}
.lang-btn__link:hover {
    color: #008CFF;
}

/* /Кнопка смены языков */
/* Прячем панель гугла */

body {
    top: 0 !important;
    position: static !important;
}
.skiptranslate {
    display: none !important;
}
/* Убираем подсветку ссылок */
.goog-text-highlight {
    background-color: inherit;
    box-shadow: none;
    box-sizing: inherit;
}
