/* fonts */
@font-face {
    font-family: 'Nunito';
    src: local('Nunito SemiBold'), local('Nunito-SemiBold'),
    url('../fonts/nunito/Nunitosemibold.woff2') format('woff2'),
    url('../fonts/nunito/Nunitosemibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito ExtraBold'), local('Nunito-ExtraBold'),
    url('../fonts/nunito/Nunitoextrabold.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoextrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito SemiBold Italic'), local('Nunito-SemiBoldItalic'),
    url('../fonts/nunito/Nunitosemibolditalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitosemibolditalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito ExtraLight Italic'), local('Nunito-ExtraLightItalic'),
    url('../fonts/nunito/Nunitoextralightitalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoextralightitalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Bold'), local('Nunito-Bold'),
    url('../fonts/nunito/Nunitobold.woff2') format('woff2'),
    url('../fonts/nunito/Nunitobold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Regular'), local('Nunito-Regular'),
    url('../fonts/nunito/Nunitoregular.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoregular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito ExtraLight'), local('Nunito-ExtraLight'),
    url('../fonts/nunito/Nunitoextralight.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoextralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Light Italic'), local('Nunito-LightItalic'),
    url('../fonts/nunito/Nunitolightitalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitolightitalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Black Italic'), local('Nunito-BlackItalic'),
    url('../fonts/nunito/Nunitoblackitalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoblackitalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Italic'), local('Nunito-Italic'),
    url('../fonts/nunito/Nunitoitalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoitalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito ExtraBold Italic'), local('Nunito-ExtraBoldItalic'),
    url('../fonts/nunito/Nunitoextrabolditalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoextrabolditalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Bold Italic'), local('Nunito-BoldItalic'),
    url('../fonts/nunito/Nunitobolditalic.woff2') format('woff2'),
    url('../fonts/nunito/Nunitobolditalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Black'), local('Nunito-Black'),
    url('../fonts/nunito/Nunitoblack.woff2') format('woff2'),
    url('../fonts/nunito/Nunitoblack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: local('Nunito Light'), local('Nunito-Light'),
    url('../fonts/nunito/Nunitolight.woff2') format('woff2'),
    url('../fonts/nunito/Nunitolight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
/* end fonts */

/* global */
* {margin: 0;padding: 0;outline: none;box-sizing: border-box;}
body {
    font-size: 16px;
    color: #212121;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}
html,body{
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    font-family: 'Nunito', sans-serif;
    color: #2C3442;
}
li {
    list-style-type: none;
}
.container {
    width: 100%;
    max-width: 1474px;
    padding: 0 17px;
    margin: 0 auto;
}
input {
    border: none;
    background: none;
    font-family: 'Nunito', sans-serif;
    border-radius: 0;
    color: #2C3442;
}
p {
    margin: 0 0 20px;
}
img,
svg
{
    max-width: 100%;
    max-height: 100%;
}

*.required::after {
    color: red;
    content: "*";
}
.alert {
    font-size: 14px;
}
.alert.active {
    padding: 10px;
    margin-bottom: 16px;
}
.alert p {
    margin-bottom: 5px;
}
.alert p:last-child {
    margin-bottom: 0;
}
.alert-danger {
    color: red;
    font-weight: bold;
    background: rgba(255, 0, 0, 0.2);
}
.alert-success {
    color: #DCBB61;
}
.alert a {
    color: #DCBB61;
    text-decoration: underline;
}

.alert a:hover {
    text-decoration: none;
}

.color_gold {
    color: #DCBB61;
}
.color_white {
    color: #ffffff;
}
.color_red {
    color: #ea5353;
}
.bold {
    font-weight: bold;
}
/* end global */

/* buttons */

button,
.btn
{
    cursor: pointer;
    border: none;
    background: none;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    font-family: 'Nunito', sans-serif;
}
.btn_blue {
    border-radius: 20px;
    padding: 0 24px;
    box-shadow: inset -2px -2px 5px 0 rgba(7, 137, 192, 0.9), inset 2px 2px 4px 0 rgba(9, 167, 234, 0.9), inset -2px 2px 4px 0 rgba(7, 137, 192, 0.2), inset 2px -2px 4px 0 rgba(7, 137, 192, 0.2);
    background: #0898d5;
    color: #fff;
}
.btn_gold {
    border-radius: 20px;
    padding: 0 24px;
    background: #DCBB61;
    color: #000000;
    text-transform: uppercase;
    border: 1px solid #DCBB61;
}
.btn_gold:hover {
    background: #ffffff;
}
.btn_default {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
.btn_default img,
.btn_default svg
{
    transition: all 0.5s ease 0s;
}
.btn_default svg path {
    transition: all 0.5s ease 0s;
}

/* end buttons */

/*yandex map color*/
/*[class*="ymaps-2"][class*="-ground-pane"] {*/
/*    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/
/*    -webkit-filter: grayscale(100%);*/
/*    filter: grayscale(1);*/
/*}*/
/*end yandex map color*/

/* swiper */
.swiper_control {
    background-color: #101010;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    transition: all 0.5s ease 0s;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 8px;
}
.swiper_control.prev {
    left: 0;
}
.swiper_control.next {
    right: 0;
}
.swiper_control.swiper-button-disabled {
    display: none;
}
.swiper_control svg path {
    transition: all 0.5s ease 0s;
}
.swiper_control:hover {
    background-color: #DCBB61;
}
.swiper_control:hover path {
    fill: #101010;
}
@media (max-width: 600px) {
    .swiper_control {
        width: 36px;
        height: 36px;
        padding: 5px;
        border-radius: 10px;
    }
    .swiper_control.prev {
        left: -16px;
    }
    .swiper_control.next {
        right: -16px;
    }
}
/* end swiper */

@media (max-width: 1440px) {
    h1, .h1, h2, .h2 {
        font-size: 40px;
        margin-bottom: 24px;
    }
}

@media (max-width: 1234px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1025px) {
    .btn_transparent:hover {
        box-shadow: 1px 1px 3px 0 rgba(153, 153, 153, 0.9), -1px -1px 2px 0 rgba(255, 255, 255, 0.9), 1px -1px 2px 0 rgba(153, 153, 153, 0.2), -1px 1px 2px 0 rgba(153, 153, 153, 0.2), inset -1px -1px 2px 0 rgba(153, 153, 153, 0.5), inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3);
        background: #0898d5;
        color: #fff;
    }
    .btn_blue:hover {
        box-shadow: inset -1px -1px 3px 0 rgba(5, 91, 128, 0.9), inset 1px 1px 2px 0 rgba(11, 213, 255, 0.9), inset -1px 1px 2px 0 rgba(5, 91, 128, 0.2), inset 1px -1px 2px 0 rgba(5, 91, 128, 0.2), 1px 1px 2px 0 rgba(5, 91, 128, 0.5), -1px -1px 2px 0 rgba(11, 213, 255, 0.3);
        background: #fff;
        color: #0898d5;
    }
    .btn_white:hover {
        box-shadow: 1px 1px 3px 0 rgba(153, 153, 153, 0.9), -1px -1px 2px 0 rgba(255, 255, 255, 0.9), 1px -1px 2px 0 rgba(153, 153, 153, 0.2), -1px 1px 2px 0 rgba(153, 153, 153, 0.2), inset -1px -1px 2px 0 rgba(153, 153, 153, 0.5), inset 1px 1px 2px 0 rgba(255, 255, 255, 0.3);
        background: #0898d5;
        color: #fff;
    }
}

@media (max-width: 1024px) {
    h1, .h1, h2, .h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    h1, .h1, h2, .h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    p {
        margin: 0 0 10px;
    }
    h1, .h1, h2, .h2 {
        font-size: 24px;
    }
    .btn_default {
        height: 46px;
        font-size: 14px;
    }
    .container {
        max-width: 100%;
    }
}

header {
    background: #FFFFFF;
    position: relative;
    z-index: 9;
}
header .header_city {
    display: none;
    border-bottom: 2px solid #e7e7e7;
    padding: 8px 0;
    box-shadow:
            0 4px 4px -2px rgba(24, 39, 75, 0.08),
            0 2px 4px -2px rgba(24, 39, 75, 0.12);
}
header .header_city.open {
    display: block;
}
header .header_city .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .header_city_question {
    font-weight: bold;
    font-size: 12px;
    color: #333;
    margin-right: 36px;
}
header .header_city_variants {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header .header_city_yes {
    border-radius: 15px;
    padding: 0 15px;
    height: 25px;
    background: #0a84ff;
    border: 1px solid #0a84ff;
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    text-align: center;
    color: #fff;
    margin-right: 15px;
}
header .header_city_yes:hover {
    background: #fff;
    color: #0a84ff;
}
header .header_city_other {
    border-radius: 15px;
    padding: 0 15px;
    height: 25px;
    background: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    text-align: center;
    color: #0a84ff;
}
header .header_city_other:hover {
    border-color: #0a84ff;
}
header .header_main .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header .logo {
    width: 80px;
    margin-right: 20px;
    line-height: 0;
    padding: 2px 0;
}
.header_container {
    width: 100%;
}
header .header_top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #d6d6d6;
}
.header_mobile {
    display: none;
    align-items: center;
    justify-content: flex-start;
    margin-left: auto;
}
header .menu_info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: auto;
}
header .menu_info a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 3px;
    min-width: 85px;
    border-bottom: 2px solid #ffffff;
    white-space: nowrap;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.03em;
    color: rgba(51, 51, 51, 0.5);
}
header .menu_info a:hover {
    color: #0a84ff;
    border-bottom: 2px solid #0a84ff;
}
header .header_city_now {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.03em;
    text-align: right;
    min-width: 110px;
    padding-right: 10px;
    position: relative;
    color: rgba(51, 51, 51, 0.5);
}
header .header_city_now:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4c4c4;
    position: absolute;
    top: calc(50% - 3px);
    right: 0;
}
header .header_bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header .header_services {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
}
header .header_services_main {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #333;
    white-space: nowrap;
    padding-right: 30px;
    position: relative;
    margin-right: 25px;
}
header .header_services_main:hover {
    color: #DCBB61;
}
header .header_services_main:after {
    content: '';
    display: block;
    display: none;
    position: absolute;
    top: calc(50% - 3px);
    right: 0;
    width: 10px;
    height: 5px;
    background: url("/htdocs/img/icons/arrow_black.svg") no-repeat center;
    background-size: contain;
}
header .header_services_list {
    display: none;
    align-items: center;
    justify-content: flex-start;
}
header .header_other_menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
}
header .header_other_item {
    margin-right: 25px;
}
header .header_other_item:last-child {
    margin-right: 0;
}
header .header_other_item a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #333;
    white-space: nowrap;
}
header .header_other_item a:hover {
    color: #DCBB61;
}
header .header_social_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 4px;
}
header .header_social_item {
    width: 30px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
header .header_social_item:last-child {
    margin-right: 0;
}
header .header_separate {
    height: 54px;
    width: 1px;
    background: #d6d6d6;
}
header .header_contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 10px;
}
header .header_callback {
    margin-right: 10px;
}
header .header_contacts_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header .header_contacts_item {
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
    text-align: center;
    color: #333;
    margin-bottom: 3px;
    white-space: nowrap;
}
header .header_contacts_item:hover {
    color: #DCBB61;
}
header .header_contacts_item:last-child {
    margin-bottom: 0;
}
header .btn_burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 50px;
    background-position: center right;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url("/htdocs/img/icons/burger_gold.svg");
}

@media (max-width: 1024px) {
    header .logo {
        margin-right: auto;
        width: auto;
        height: 50px;
    }
    header .btn_burger {
        display: flex;
    }
    header .btn_burger.open {
        background-image: url("/htdocs/img/icons/close_gold.svg");
    }
    .header_container {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: #ffffff;
        width: 360px;
        max-width: 100%;
        padding: 15px;
    }
    .header_container.open {
        display: flex;
    }
    header .header_top {
        align-items: flex-start;
        flex-direction: column-reverse;
        width: 100%;
        margin-bottom: 10px;
    }
    header .header_city_now {
        min-width: auto;
        padding-right: 0;
        padding-left: 10px;
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
    }
    header .header_city_now:after {
        right: auto;
        left: 0;
    }
    header .menu_info {
        flex-direction: column;
        margin-right: 0;
        width: 100%;
    }
    header .menu_info li {
        width: 100%;
    }
    header .menu_info li a {
        width: 100%;
        justify-content: flex-start;
        padding: 0;
        min-width: auto;
        height: auto;
        margin-bottom: 10px;
        font-size: 14px;
    }
    header .header_bottom {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    header .header_other_menu {
        flex-direction: column;
        align-items: flex-start;
        margin-right: 0;
        width: 100%;
    }
    header .header_separate {
        width: 100%;
        height: 1px;
        background: #d6d6d6;
    }
    header .header_services {
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 0;
    }
    header .header_services_main {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    header .header_other_item {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }
    header .header_other_item a {
        width: 100%;
    }
    header .header_social_list {
        margin-right: 0;
        margin-bottom: 10px;
    }
    header .header_contacts {
        margin-left: 0;
        margin-top: 10px;
    }
    .header_mobile {
        display: flex;
    }
    .header_mobile .header_social_list {
        padding-right: 11px;
        border-right: 1px solid #d6d6d6;
        margin: 0 10px 0 0;
    }
    header .header_mobile .header_contacts {
        margin: 0 10px 0 0;
    }
    header .header_mobile .header_contacts_item {
        font-size: 13px;
    }
    header .header_mobile .header_social_item {
        width: 25px;
    }
}



footer {
    background: #FFFFFF;
    padding: 12px 0 0;
}
footer .container {
    border-top: 2px solid #DCBB61;
}
footer .logo {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100px;
    margin-bottom: 20px;
    margin-top: 20px;
}
footer .footer_top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
footer .footer_block {
    margin-right: 30px;
}
footer .footer_title {
    white-space: nowrap;
    font-weight: bold;
    font-size: 16px;
    color: #0a142f;
    text-transform: uppercase;
    margin-bottom: 25px;
}
footer .footer_menu {
    max-width: 300px;
}
footer .footer_menu li {
    margin-bottom: 10px;
}
footer .footer_menu li a {
    font-weight: bold;
    font-size: 16px;
    color: rgba(10, 20, 47, 0.7);
}
footer .footer_menu li a:hover {
    color: #DCBB61;
}
footer .footer_link_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}
footer .footer_link_item:last-child {
    margin-bottom: 0;
}
footer .footer_link_item .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    line-height: 0;
}
footer .footer_link_item .title {
    font-weight: 500;
    font-size: 16px;
    color: rgba(10, 20, 47, 0.7);
}
footer .footer_link_item a.title {
    text-decoration: underline;
}
footer .footer_link_item a.title:hover {
    color: #DCBB61;
}
footer .footer_bottom {
    border-top: 2px solid rgba(10, 20, 47, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .copyright {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: rgba(10, 20, 47, 0.7);
    margin-bottom: 5px;
}
footer .footer_personal {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: rgba(10, 20, 47, 0.7);
    text-align: center;
    margin-top: 10px;
}
footer .footer_socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
}
footer .footer_socials_title {
    font-weight: 400;
    font-size: 14px;
    color: rgba(10, 20, 47, 0.5);
    margin-right: 20px;
}
footer .footer_socials_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
footer .footer_socials_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    line-height: 1;
}
footer .footer_socials_item:last-child {
    margin-right: 0;
}
footer .footer_policy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 0;
}
footer .footer_policy a {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-align: center;
    color: rgba(10, 20, 47, 0.7);
}
footer .footer_policy a:hover {
    color: #DCBB61;
}
footer .footer_policy a:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    footer .footer_top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    footer .footer_block {
        margin: 0 0 15px;
    }
    footer .footer_title {
        margin-bottom: 10px;
        font-size: 14px;
    }
    footer .footer_menu li {
        margin-bottom: 5px;
    }
    footer .footer_menu li a {
        font-size: 14px;
    }
    footer .footer_link_list {
        text-align: left;
    }
}

.popup_contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #101010;
    border-radius: 100px;
    border: 3px solid rgba(220, 187, 97, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.5s ease 0s;
    z-index: 6;
}
.popup_contacts:not(.open) {
    animation-duration: 3s;
    animation-name: contacts_anim;
    animation-iteration-count: infinite;
}
.popup_contacts .btn_social {
    border-radius: 50%;
    width: 110px;
    height: 110px;
    padding: 15px;
    line-height: 0;
}
.popup_contacts .btn_social:hover {
    background: #ffffff;
}
.popup_contacts .btn_social img {
    max-width: calc(100% - 15px);
    max-height: calc(100% - 15px);
}
.popup_contacts .popup_contacts_list {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0 30px;
}
.popup_contacts.open .popup_contacts_list {
    display: flex;
}
.popup_contacts .popup_contacts_item {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  #DCBB61;
    line-height: 1;
    margin-bottom: 10px;
}
.popup_contacts .popup_contacts_item img {
    width: 40px;
}
.popup_contacts .popup_contacts_item:last-child {
    margin-bottom: 0;
}
.popup_contacts .popup_contacts_item:hover {
    background: #ffffff;
}

@keyframes contacts_anim {
    from {
        border-color: transparent;
    }
    50% {
        border-color: #DCBB61;
    }
    to {
        border-color: transparent;
    }
}

@media (max-width: 1024px) {
    .popup_contacts {
        border-radius: 55px;
    }
    .popup_contacts .btn_social {
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    .popup_contacts .popup_contacts_list {
        margin: 5px 0 5px;
    }
    .popup_contacts .popup_contacts_item {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }
    .popup_contacts .popup_contacts_item img {
        width: 30px;
    }
}
