.promo__content {}



.promo__image {
    order: 2;
}

.promo__desc {
    position: relative;
    z-index: 10;
    max-width: 515px;
}

.promo__text {
    margin-top: 56px;
    font-size: 18px;
}

.promo__text span {
    color: #FF3535;
    font-weight: 700;
}

.about__list {
    display: flex;
    border-radius: 20px;
    background-color: #ffffff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about__item--person {
    flex: 0 0 50%;
    position: relative;
    border-radius: 20px;

}

.about__item--person div {
    position: absolute;
    bottom: 26px;
    left: 26px;

}

.about__item--person div p {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}

.about__item--person div p:nth-child(1) {
    font-weight: 700;
}

.about__item--person img {
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    height: 100%;
    object-position: right;
    object-fit: cover;
}

.about__item--text {
    flex: 1 1 50%;
    padding: 56px 40px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about__paragraph {
    font-size: 16px;
    color: #415465;
    line-height: 24px;
}

.about__paragraph span {
    color: #FF3535;
    font-weight: 700;
}

.map-container {
    border-radius: 16px;
    background: #ffffff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

#map {
    border-radius: 16px;
    width: 100%;
    height: 533px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* .overlay-map {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: #415465;
    z-index: 2;
} */

.map-data {
    border-radius: 1;
    padding: 20px 40px 40px 40px;
}

.map-data ul {
    display: flex;
    gap: 48px;
    gap: 39px;
    justify-content: space-between;
}

.map-data ul li {
    display: flex;
    flex-direction: column;
}

.map-data ul li:nth-child(1) p {
    max-width: 319px;
}

.map-data ul li:nth-child(3) a {
    white-space: nowrap;
}

.map-data ul li svg {
    margin-bottom: 16px;
}

.map-data ul li p,
.map-data ul li a {
    font-size: 16px;
    line-height: 24px;
    color: #415465;
}

.map-container {
    position: relative;
}

.map-container:before {
    position: absolute;
    content: '';
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    inset: 0;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(to top right, #FF005E, #FFCB00);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

.feedback__list {
    border-radius: 16px;
    background: linear-gradient(227.93deg, #FFCB00 4.5%, #FF005E 126.04%);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.feedback__item {
    width: calc(50% - 20px);
}

.feedback__title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    max-width: 250px;
    margin-bottom: 25px;
}

.feedback__subtitle {
    color: #ffffff;
    font-size: 16px;
    max-width: 403px;
    line-height: 24px;
}

.feedback__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback__field {
    width: 100%;
    position: relative;
}



.feedback__input {
    height: 52px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    border-radius: 16px;
    padding: 0 22px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    font-size: 16px;
    color: #ffffff;
    width: 100%;
    margin-bottom: 30px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-4px);
    }

    40%,
    80% {
        transform: translateX(4px);
    }
}

.feedback__input.error,
.feedback__textarea.error {
    border: 2px solid #FF005E;

}

.shake {
    animation: shake 0.4s;
}

.feedback__error {
    display: none;
    color: #ffffff;
    position: absolute;
    left: 24px;
    top: -16px;
    font-size: 12px;
    line-height: 16px;

}

.feedback__input::placeholder,
.feedback__textarea::placeholder {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.feedback__textarea {
    width: calc(100% - 40px);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 24px;
    border: 2px solid #fff;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    height: 157px;
    padding: 20px 22px;
    background: inherit;
    margin-bottom: 30px;
    transition: .3s;
    font-family: "Montserrat", sans-serif;
}

.feedback__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 0;
    margin-bottom: 15px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    z-index: 20;
    transition: .3s;
}

.feedback__submit span {
    background: linear-gradient(187.93deg, #FFCB00 4.5%, #FF5736 90%, #FF005E 126.04%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    transition: .3s;
}

.feedback__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 24px;
    z-index: -1;
    transition: .3s;
}

.feedback__submit::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid #fff;
    opacity: 0;
    z-index: -1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.feedback__submit:hover::before {
    opacity: 0;
    transition: .3s;
}

.feedback__submit:hover::after {
    opacity: 1;
    transition: .3s;
}

.feedback__submit:hover span {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
    transition: .3s;
}


.policy {
    max-width: 413px;
}

.policy,
.policy a {
    font-size: 12px;
    text-align: center;
    color: #ffffff;
}

#successNotification {
    position: fixed;
    z-index: 20000;
    top: 50%;
    left: 50%;
    background: linear-gradient(227.93deg, #FFCB00 4.5%, #FF005E 126.04%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    width: 307px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    pointer-events: none;
}

.fade {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(40px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 50%;
    left: 50%;
}

.fade.visible {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

#successOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 19999;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

#successOverlay.visible {
    opacity: 1;
    pointer-events: auto;
    /* блокируем клики, когда видим */
}

.press {}

.press__list {
    margin: 56px 0 72px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;

}

.press__all-news {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    color: #ffffff;
    font-size: 14px;
    width: 131px;
    height: 44px;
    font-weight: 500;
    margin: 0 auto;
    position: relative;
}

.press__all-news:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(227.93deg, #FFCB00 4.5%, #FF005E 126.04%);
    opacity: 1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    pointer-events: none;
    z-index: -1;
}

.press__all-news:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(227.93deg, #FFCB00 4.5%, #FF005E 126.04%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    pointer-events: none;
}

.press__all-news:hover::before {
    opacity: 0;
}

.press__all-news:hover::after {
    opacity: 1;
}

.press__all-news:hover {
    color: #415465;
    font-weight: 500;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.press__item:hover .press__headline {
    background: linear-gradient(187.93deg, #FFCB00 4.5%, #FF5736 90%, #FF005E 126.04%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.press__image {
    width: 100%;
    height: 100%;
    max-height: 224px;
}

.press__item {
    width: calc(33% - 12px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 20;
}

.press__date {
    margin: 20px 0 12px 0;
    font-size: 14px;
    color: #575759;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-type {
    padding: 4px 11px;
    background: #535353;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    color: #ffffff;
    font-size: 9px;
    line-height: 11px;
}

.press__headline {
    margin-bottom: 20px;
    color: #415465;
    font-weight: 700;
    line-height: 24px;
    font-size: 20px;
}

.press__preview {
    color: #415465;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Ограничение 3 строками */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.bg-3 {
    width: 100%;
    height: 100%;
    z-index: -2;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 100px;
    background-image: url('/wp-content/themes/safetech/assets/img/bg-3.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -3;
}

@media(max-width: 1060px) {}

@media(max-width: 920px) {
    .map-data ul {
        flex-wrap: wrap;
        gap: 24px;
    }

    .map-data ul li:nth-child(1) {
        width: calc(50% - 24px);
    }

    .map-data ul li:nth-child(2) {
        width: calc(50% - 24px);
    }

    .map-data ul li:nth-child(3) {
        width: 100%;
        align-items: center;
    }

    .promo {
        padding-top: 120px !important;
    }

    #map {
        height: 420px;
    }
}

@media(max-width: 768px) {
    .about__item--text {
        padding: 16px;
    }

    .about__list {
        flex-direction: column;
    }

    .map-data ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .map-data {
        padding: 24px;
    }

    .map-data ul li:nth-child(1) {
        width: 100%;
    }

    .map-data ul li:nth-child(2) {
        width: 100%;
    }

    .map-data ul li:nth-child(3) {
        width: 100%;
        align-items: flex-start;
    }

    .feedback__list {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .feedback__item {
        width: 100%;
    }
}

@media(max-width: 855px) {
    .promo {
        padding-top: 120px;
    }

    .promo__desc h1 {
        text-align: center;
    }

    .promo__text {
        margin-top: 42px;
    }

    .feedback__title {
        font-size: 32px;
    }
}

@media(max-width: 400px) {
    .promo__text {
        margin-top: 24px;
    }
}

.map-marker {
    position: absolute;
    width: 50px;
    /* фикс ширина */
    height: 50px;
    /* фикс высота */
    transform: translate(-50%, -100%);
    /* центр по X, низ по Y */
    pointer-events: none;
    /* если не нужно, чтобы клики ловил */
}

.map-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

* {
    scroll-behavior: smooth !important;
}

@media(max-width: 855px) {
    .promo__bg--5 {
        top: 400px;
        right: -200px;
    }
}