.rubix-contacts.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    background: #0d0d0d;
}
.contacts__list {
    width: 30%;
}
.contacts__item {
    background: #1a1a1a;
    border-radius: 10px;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #FFFFFF;
    /*transition: height 0.4s;*/
    overflow: hidden;
}
.contacts__item + .contacts__item {
    margin-top: 30px;
}
.contact_item__name {
    display: flex;
    width: 100%;
    padding: 25px 25px 20px;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    align-items: center;
    justify-content: space-between;
}
.contact_item__properties {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 25px 25px 25px;
    box-sizing: border-box;
}
.contact_item__property {
    display: flex;
    align-items: center;
}
.contact_item__property span {
    margin-left: 15px;
}
.contact_item__property + .contact_item__property {
    margin-top: 10px;
}
.contact_item__property a {
	text-decoration: none;
}
[data-expanded='false'] .contact_item__properties-wrap {
    display: none;
}
.contacts__map {
    width: 100%;
    height: 465px;
}
.contacts__map-wrap {
    width: calc(70% - 30px);
    border-radius: 10px;
    overflow: hidden;
}
.contacts__map-wrap .bx-yandex-view-layout,
.contacts__map-wrap .bx-yandex-view-map {
    height: 100%;
    width: 100%;
}
.contact_item__name .arrow {
    height: 10px;
    line-height: 10px;
    font-size: 0;
    transition: transform 0.4s;
}
[data-expanded='false'] .contact_item__name .arrow {
    transform: rotate(180deg);
}
.contacts__get-direction_title {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #FFFFFF;
}
.contacts__get-directions {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}
.contacts__get-direction {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    color: #FFFFFF;
    padding: 13px 20px;
    background: rgba(145, 92, 229, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 500px;
    text-decoration: none!important;
}
.contacts__get-direction span {
    margin-right: 10px;
}

@media (max-width: 1000px) {
    .contacts__get-direction_title {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .rubix-contacts.contacts {
        flex-direction: column;
    }
    .contacts__map-wrap {
        width: 100%;
    }

    .contacts__list {
        order: 2;
        width: 100%;
    }
}