.contacts {
    padding-top: 55px;
    position: relative;
    z-index: 10;
}
.contacts__wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 56px;
}
.contacts__left {
    max-width: 889px;
}
.contacts__maps {
    position: relative;
    z-index: 10;
}
.contacts__maps-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}
.contacts__tabs {
    display: flex;
    margin-bottom: 32px;
    align-items: flex-end;
    height: 50px;
    gap: 48px;
}
.contacts__tab {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #fff;
    opacity: 0.25;
    cursor: pointer;
    transition: all 0.3s;
}
.contacts__tab:first-of-type {
    width: 180px;
}
.contacts__tab:last-of-type {
    width: 327px;
}
.contacts__tab:hover {
    opacity: 0.55;
}
.contacts__tab.active {
    opacity: 1;
    font-size: 40px;
}
.contacts__map {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0s;
}
.contacts__map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.contacts__map-img--mob,
.contacts__order-title br {
    display: none;
}
.contacts__block.active,
.contacts__map.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}
.contacts__order {
    max-width: 500px;
    margin-top: 92px;
}
.contacts__order-title {
    margin-bottom: 25px;
}
.contacts__order--table {
    display: none;
}
.contacts__right {
    width: 48%;
    max-width: 645px;
    position: relative;
    padding-top: 56px;
}
.contacts__block {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0s;
}
.contacts__block-title,
.contacts__container-title {
    margin-bottom: 24px;
    color: #fff;
}
.contacts__container-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacts__accordion {
    padding: 40px;
    border: 1px solid #2b3547;
    border-radius: 24px;
}
.contacts__accordion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.contacts__accordion-top .contacts__caption {
    width: 100%;
    font-size: 20px;
    line-height: 120%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.contacts__accordion-top .contacts__caption-inner p:last-of-type {
    display: none;
}
.contacts__accordion-top .contacts__caption span {
    display: flex;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    gap: 40px;
}
.contacts-requisites__caption br,
.contacts-requisites__value br,
.contacts__accordion-hidden {
    display: none;
}
.contacts__accordion-text ol {
    padding: 0;
    list-style: none;
    counter-reset: myCounter;
    margin-top: 16px;
}
.contacts__accordion-text ol li {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #ffff;
    padding-left: 22px;
}
.contacts__accordion-text ol li::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
    counter-increment: myCounter;
    content: counter(myCounter) ".";
}
.contacts__accordion-text ol li + li {
    margin-top: 15px;
}
.contacts__accordion.active .contacts__accordion-top span img {
    transform: rotate(135deg);
}
.contacts__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacts__item {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #2b3547;
}
.contacts__item-top .contacts__caption {
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
}
.contacts__item-box {
    display: flex;
    justify-content: space-between;
}
.contacts__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #a9ff35;
    border-radius: 50%;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #000;
    margin-right: 20px;
}
.contacts__caption {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #fff;
}
.contacts__caption span {
    text-align: end;
}
.accordion__article p,
.contacts__value {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #fff;
}
.contacts .line {
    background: linear-gradient(45deg, #2b3547 0, #2b3547 0.01%, #3b414b 100%);
}
.contacts #main {
    transform-origin: center;
    transform-box: fill-box;
    -webkit-animation: mainPoint 2s linear infinite;
    animation: mainPoint 2s linear infinite;
}
.contacts #line-1,
.contacts #line-2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.contacts #map-contact-1.active #line-1,
.contacts #map-contact-1.active #line-2 {
    -webkit-animation: dash 7s linear forwards;
    animation: dash 7s linear forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.contacts #point-1,
.contacts #point-2 {
    opacity: 0;
    transition: 0.3s;
}
.contacts #map-contact-1.active #point-1,
.contacts #map-contact-1.active #point-2 {
    opacity: 1;
    transition-delay: 2.5s;
}
@media (max-width: 1600px) {
    .contacts__wrap {
        gap: 15px;
    }
}
@media (max-width: 1430px) {
    .contacts__left,
    .contacts__right {
        max-width: 50%;
    }
    .contacts__map svg {
        height: 100%;
    }
}
@media (max-width: 1320px) {
    .contacts__tabs {
        height: 45px;
    }
    .contacts__tab {
        font-size: 24px;
    }
    .contacts__tab.active {
        font-size: 32px;
    }
    .contacts__tab:first-of-type {
        width: 145px;
    }
}
@media (max-width: 1190px) {
    .contacts__wrap {
        flex-wrap: wrap;
        gap: 24px;
    }
    .contacts__right {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }
    .contacts__left {
        max-width: 65%;
    }
}
@media (max-width: 1024px) {
    .contacts__left {
        max-width: 100%;
    }
}
@media (max-width: 1010px) {
    .contacts__accordion,
    .contacts__item {
        padding: 32px;
    }
}
@media (max-width: 768px) {
    .contacts__maps-container {
        border-radius: 0;
    }
    .contacts__container-body,
    .contacts__items {
        gap: 8px;
    }
    .contacts__wrap {
        flex-wrap: wrap;
        gap: 32px;
    }
    .contacts__right {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }
    .contacts__left {
        max-width: 100%;
    }
    .contacts__accordion,
    .contacts__item {
        padding: 24px;
    }
    .contacts__tabs {
        height: auto;
        margin-bottom: 16px;
    }
    .contacts__tab,
    .contacts__tab.active {
        font-size: 20px;
    }
    .contacts__tab:first-of-type {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .contacts__block-title,
    .contacts__container-title {
        font-size: 16px;
        font-weight: 400;
    }
    .contacts__block-title {
        margin-bottom: 16px;
    }
    .contacts__item-top .contacts__caption {
        font-size: 18px;
    }
    .contacts__accordion-top .contacts__caption {
        font-size: 16px;
    }
    .contacts__accordion-text ol li {
        font-size: 12px;
        margin-top: 8px !important;
    }
    .contacts__item-box {
        flex-wrap: wrap;
        gap: 16px;
    }
    .contacts__item-box .contacts__caption {
        flex-shrink: 0;
    }
}
@media (max-width: 500px) {
    .contacts__map-img {
        display: none;
    }
    .contacts__map-img--mob {
        display: block;
    }
    .contacts__item-box {
        flex-direction: column;
        gap: 4px;
    }
    .contacts__caption-inner p:last-of-type {
        display: block !important;
        font-weight: 400;
        font-size: 16px;
        line-height: 145%;
        margin-top: 4px;
    }
    .contacts__caption span span {
        display: none !important;
    }
}
.contacts-promo {
    padding-top: 30px;
    position: relative;
    z-index: 10;
}
.contacts-promo__title {
    color: #fff;
    margin-bottom: 24px;
}
.contacts-promo__left,
.contacts-promo__wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.contacts-promo__wrap {
    margin-bottom: 56px;
}
.contacts-promo__left {
    width: 50%;
    max-width: 761px;
}
.contacts-promo__link {
    display: inline-flex;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-decoration: underline;
    color: #fff;
    transition: color 0.3s;
}
.contacts-promo__item:hover,
.contacts-promo__link:hover {
    color: #a9ff35;
    transition: color 0.3s;
}
.contacts-promo__right {
    width: 48%;
    max-width: 648px;
}
.contacts-promo__box {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex-shrink: 0;
}
.contacts-promo__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    color: #fff;
}
.contacts-promo__item {
    display: inline-flex;
    color: #fff;
    transition: color 0.3s;
}
.contacts-promo__address,
.contacts-promo__work {
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    color: #fff;
}
.contacts-promo__address span,
.contacts-promo__work span {
    margin: 0 15px;
}
.contacts-promo__work {
    margin-bottom: 12px;
}
.contacts-promo__info {
    display: flex;
    align-items: center;
}
.contacts-promo__caption {
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    color: #fff;
    margin-right: 24px;
}
.contacts-promo__nav {
    display: flex;
    gap: 10px;
}
.contacts-promo__link {
    height: 32px;
    width: 32px;
}
.contacts-promo__link svg path {
    transition: 0.3s ease-in;
}
.contacts-promo .line {
    background: linear-gradient(45deg, #2b3547 0, #2b3547 0.01%, #3b414b 100%);
}
@media (max-width: 1320px) {
    .contacts-promo__address,
    .contacts-promo__items,
    .contacts-promo__work {
        font-size: 18px;
    }
}
@media (max-width: 1190px) {
    .contacts-promo__wrap {
        flex-wrap: wrap;
    }
    .contacts-promo__left {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    .contacts-promo__right {
        width: 48%;
        max-width: 415px;
    }
    .contacts-promo__address,
    .contacts-promo__caption,
    .contacts-promo__items,
    .contacts-promo__work {
        font-size: 16px;
    }
}
@media (max-width: 1010px) {
    .contacts-promo__right {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 760px) {
    .contacts-promo {
        padding-top: 32px;
    }
    .contacts-promo__left,
    .contacts-promo__wrap {
        flex-wrap: wrap;
        gap: 16px;
        width: 100%;
    }
    .contacts-promo__left {
        flex-direction: column;
    }
    .contacts-promo__items {
        flex-direction: row;
    }
    .contacts-promo__link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contacts-promo__nav {
        gap: 16px;
    }
    .contacts-promo__address,
    .contacts-promo__work {
        font-weight: 500;
    }
    .contacts-promo__address span,
    .contacts-promo__work span {
        opacity: 0;
        margin: 0;
    }
    .contacts-promo__work {
        margin-bottom: 16px;
    }
}
@media (max-width: 560px) {
    .contacts-promo__box {
        width: 100%;
        gap: 16px;
    }
    .contacts-promo__item {
        width: 48%;
    }
    .contacts-promo__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .contacts-promo__caption {
        margin-right: 0;
    }
}
.contacts-requisites__title {
    margin-bottom: 32px;
}
.contacts-requisites__block {
    display: flex;
    justify-content: space-between;
}
.contacts-requisites__left,
.contacts-requisites__right {
    max-width: 889px;
    width: 889px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contacts-requisites__right {
    width: 647px;
    max-width: 647px;
}
.contacts-requisites__item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 145%;
    color: #8e9297;
}
.contacts-requisites__caption,
.contacts-requisites__value {
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    flex-shrink: 0;
}
.contacts-requisites__value {
    color: #fff;
}
.contacts-requisites__dashed-space {
    border-bottom: 1px dashed #8e9297;
    width: 100%;
}
@media (max-width: 1600px) {
    .contacts-requisites__block {
        gap: 16px;
    }
    .contacts-requisites__left,
    .contacts-requisites__right {
        max-width: 50%;
    }
}
@media (max-width: 1430px) {
    .contacts-requisites__block {
        flex-direction: column;
        gap: 10px;
    }
    .contacts-requisites__left,
    .contacts-requisites__right {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 1010px) {
    .contacts-requisites__caption,
    .contacts-requisites__value {
        font-size: 16px;
    }
}
@media (max-width: 760px) {
    .contacts-requisites__caption,
    .contacts-requisites__value {
        font-size: 12px;
    }
    .contacts-requisites__title {
        margin-bottom: 24px;
    }
}
@media (max-width: 500px) {
    .contacts-requisites__value {
        text-align: end;
    }
    .contacts-requisites__caption br,
    .contacts-requisites__value br {
        display: block;
    }
}
.contacts-subscribe {
    padding-top: 56px;
}
.contacts-subscribe .subscribe {
    margin-top: 0;
}
@media (max-width: 760px) {
    .contacts-subscribe {
        padding-top: 60px;
    }
}