:root {
    --swiper-theme-color: #117593;
    --swiper-pagination-bullet-inactive-color: #117593;
    --swiper-scrollbar-drag-bg-color: #117593;
}

.ur-container {
    max-width: 1334px;
    margin: 0 auto;
}

.ur-title-h2 {
    text-align: center;
    font-size: clamp(32px, calc(6.154px + 3.365vw), 60px);
    line-height: 1.46;
    font-weight: 700;
    color: #132D42;
}

.ur-video {
    position: relative;
    background: #EAF2F5;
}

.ur-video-toggle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 0 20px 0 rgba(17, 117, 147, 1);
    visibility: hidden;
}

.ur-video:has(.is-playing) .ur-video-toggle {
    visibility: visible;
}

.ur-video-toggle:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #fff;
}

.ur-video-toggle:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.ur-video-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ur-video-toggle-icon--play {
    display: none;
}

.ur-video-toggle.is-paused .ur-video-toggle-icon--pause {
    display: none;
}

.ur-video-toggle.is-paused .ur-video-toggle-icon--play {
    display: flex;
}

.ur-video-container {
    position: relative;
    z-index: 0;
    width: 100%;
    padding-bottom: 31.51%;
    background: #EAF2F5;
}

/*.ur-video-container::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 30%;
    width: 100%;
    content: "";
    background: linear-gradient(to top, rgba(17, 117, 147, 0.1) 0%, rgba(246, 250, 251, 0.1) 100%);
    z-index: 3;
}*/

.ur-video-poster {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 50%;
    z-index: 1;
}

.ur-video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ur-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ur-video-container:not(.container-with-data) .ur-video-embed {
    opacity: 1;
}

.ur-video-embed.is-playing {
    opacity: 1;
}

.ur-video-embed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ur-video-elements {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: end;
    background: linear-gradient(to top, rgba(17, 117, 147, 1) 0%, rgba(246, 250, 251, 0) 100%);
    padding-bottom: 13px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ur-video-elements.is-visible {
    opacity: 1;
}

.ur-video-element {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding: 0 20px;
}

.ur-video-element::before,
.ur-video-element:nth-last-of-type(1)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
    transition: height 0.5s var(--ur-delay, 0s);
}

.ur-video-element:nth-last-of-type(1)::after {
    right: auto;
    left: 0;
    transition: height 0.5s calc(var(--ur-delay, 0s) + 0.5s);
}

.ur-video-element.is-animated::before,
.ur-video-element.is-animated:nth-last-of-type(1)::after {
    height: 100%;
}

.ur-video-element-number {
    font-size: clamp(30px, calc(19.333px + 0.667vw), 32px);
    line-height: 1.1;
    font-weight: 500;
    opacity: 0;
    transform: translateY(16px);
}

.ur-video-element-text {
    font-size: clamp(18px, calc(7.333px + 0.667vw), 20px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
    min-height: 40px;
    opacity: 0;
}

.ur-video-element.is-animated .ur-video-element-number {
    animation: ur-fade-up 0.5s ease forwards;
    animation-delay: var(--ur-delay, 0s);
}

.ur-video-element.is-animated .ur-video-element-text {
    animation: ur-fade-in 0.5s ease forwards;
    animation-delay: var(--ur-delay, 0s);
}

.ur-video-container h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*color: #000000;*/
    color: #ffffff;
    font-size: clamp(70px, calc(24.581px + 3.548vw), 92px);
    font-weight: 700;
    z-index: 3;
    margin: 0;
    white-space: nowrap;
    visibility: hidden;
    padding: 0 4vw;
}

.ur-video-container h1.is-animated {
    visibility: visible;
    animation: ur-h1-color 1.5s ease 3s forwards;
}

@keyframes ur-h1-color {
    from { /*color: #000000;*/ background: rgba(17, 117, 147, 0); }
    to   { /*color: #ffffff;*/ background: rgba(17, 117, 147, 0.6); }
}

.ur-h1-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.ur-video-container h1.is-animated .ur-h1-word {
    animation: ur-fade-up 0.5s ease forwards;
    animation-delay: var(--word-delay, 0s);
}

@keyframes ur-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ur-fade-in {
    to {
        opacity: 1;
    }
}

@media (max-width: 1600px) {
    .ur-video-toggle {
        bottom: 100px;
    }
}

@media (max-width: 1099px) {
    .ur-video-element {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.8s ease;
        padding: 0;
        min-width: max-content;
    }

    .ur-video-element.is-current {
        opacity: 1;
    }

    .ur-video-element::before,
    .ur-video-element:nth-last-of-type(1)::after {
        display: none;
    }

    .ur-video-element-number,
    .ur-video-element-text {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media screen and (max-width: 1280px) {
    .ur-video-container h1 {
        font-size: clamp(40px, calc(16.667px + 4.167vw), 70px);
    }
}

@media screen and (max-width: 1680px) {
    .ur-video-elements {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 992px) {
    .ur-video-container {
        padding-bottom: 40%;
    }
}

@media screen and (max-width: 568px) {
    .ur-video-container {
        padding-bottom: 150%;
    }

    .ur-video-element-number {
        font-size: 32px;
    }
    .ur-video-element-text {
        font-size: 20px;
    }

    .ur-video-poster {
        height: auto;
    }
}

.to-form-button {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #ffffff;
    background: #132D42;
    z-index: 100;
}

.to-form-button-wrap a {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .to-form-button {
        width: 154px;
        height: auto;
        padding: 12px;
        border-radius: 15px;
        right: 30px;
        left: auto;
        bottom: 30px;
    }

    .to-form-button-wrap a {
        flex-direction: column;
        text-align: center;
        line-height: 0.9;
    }
}

.ur-projects {
    padding: 40px max(40px, 4.16vw) 10px;
}

.ur-projects-title {
    margin-bottom: 30px;
}

.ur-projects-slider .swiper-wrapper {
    padding: 30px 0;
}

.ur-project {
    position: relative;
    width: 100%;
    /*background: #EAF2F5;*/
    border-radius: 15px;
    cursor: pointer;
}

.ur-project-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 134.69%;
    z-index: 0;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.ur-project-flip-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    border-radius: 15px;
}

.ur-project--has-hover:hover .ur-project-flip-inner {
    transform: rotateY(180deg);
}

@media (hover: none) {
    .ur-project--has-hover:hover .ur-project-flip-inner {
        transform: none;
    }
    .ur-project--has-hover.is-flipped .ur-project-flip-inner {
        transform: rotateY(180deg);
    }
}

.ur-project-flip-front,
.ur-project-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    clip-path: inset(0 round 15px);
}

.ur-project-flip-back {
    transform: rotateY(180deg);
}

.ur-project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: #117593;
    color: #ffffff;
    font-size: 20px;
    line-height: 0.9;
    padding: 0.3125em 0.46875em;
    border-radius: 5px;
}

.ur-project-badge span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ur-project-badge span::before {
    content: "";
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background: #ffffff;
}

.ur-project-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ur-project-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.ur-project-image-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ur-project-image-hover img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

.ur-project-data {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 46%;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 2;
}

.ur-project-data-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    font-size: 20px;
    line-height: 1.25;
}

.ur-project-data-content h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
}

.ur-project-city {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(to left, rgba(17, 117, 147, 1) 40%, rgba(0, 0, 0, 0) 100%);
    padding: 0.3125em 20px 0.3125em 30px;
    color: #ffffff;
    font-size: 24px;
    line-height: 0.9;
    font-weight: 300;
}

.ur-project-city::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9 13h2v-2.75h2V13h2V8.25l-3-2l-3 2zm3 9q-4.025-3.425-6.012-6.362T4 10.2q0-3.75 2.413-5.975T12 2t5.588 2.225T20 10.2q0 2.5-1.987 5.438T12 22'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.ur-project-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 75px;
}

.ur-projects-navigation {
    position: relative;
    margin-top: 14px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
    z-index: 1;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    transform: scale(0.5);
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-button-next svg, .swiper-button-prev svg {
    width: 8px;
    height: 16px;
}

.ur-team-navigation--btns .swiper-button-next svg,
.ur-media-navigation--btns .swiper-button-next svg {
    transform: scaleX(-1);
}

.ur-team-navigation--btns .swiper-button-prev svg,
.ur-media-navigation--btns .swiper-button-prev svg {
    transform: scaleX(1);
}

@media screen and (max-width: 768px) {
    .ur-projects {
        padding: 48px 0 25px;
    }

    .ur-projects-title {
        margin-bottom: 20px;
    }

    .ur-project-data-content h3 {
        font-size: 24px;
    }

    .ur-project-description {
        font-size: 16px;
        height: 64px;
    }

    .ur-projects-navigation {
        margin-top: 20px;
        gap: 10px;
    }

    .ur-projects-navigation .swiper-button-next,
    .ur-projects-navigation .swiper-button-prev {
        background: rgba(17, 117, 147, 0.15);
        border-radius: 50%;
        width: 42px;
        height: 42px;
    }
}
/* ── End projects block ───────────────────────────── */

/* ── Map block ───────────────────────────── */
.ur-map {
    background: #EAF2F5 url(../images/urban-renewal/map-bg.svg) no-repeat right 40% top 0;
    background-size: auto 100%;
    height: auto;
    padding: 110px 70px;
}

.ur-map-wrap {
    display: flex;
    align-items: center;
    height: auto;
}

.ur-map-cities {
    width: 40%;
}

.ur-map-cities ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    list-style: none;
    margin: 0 0 0 -25%;
    padding: 0;
    font-weight: 600;
    line-height: 1;
    gap: 0;
}

.ur-map-city-item {
    cursor: pointer;
    white-space: nowrap;
    line-height: 0.7;
    transition: color 0.2s;
    width: 100%;
    display: block;
    overflow: hidden;
}

.ur-map-city-item > span {
    display: inline-block;
}

.item-city-1  { font-size: clamp(32px, 4.2vw,  80px); padding-inline-start:  25%; }
.item-city-2  { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 28%; }
.item-city-3  { font-size: clamp(32px, 4.2vw,  80px); padding-inline-start:  34%; }
.item-city-4  { font-size: clamp(40px, 5.2vw, 100px); padding-inline-start:  51%; }
.item-city-5  { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 44%; }
.item-city-6  { font-size: clamp(40px, 4.7vw,  90px); padding-inline-start: 28%; }
.item-city-7  { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 0; width: 56%; text-align: end; }
.item-city-8  { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 0; width: 21%; text-align: end; }
.item-city-9  { font-size: clamp(70px, 9.4vw, 180px); padding-inline-start: 34%; }
.item-city-10 { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start:  31%; width: 70%; text-align: end; }
.item-city-11 { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 4%; width: 20%; }
.item-city-12 { font-size: clamp(40px, 4.7vw,  90px); padding-inline-start:  57%; }
.item-city-13 { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 0; width: 66%; text-align: end; }
.item-city-14 { font-size: clamp(28px, 3.6vw,  70px); padding-inline-start: 0; width: 17%; text-align: end;}
.item-city-15 { font-size: clamp(52px, 6.8vw, 130px); padding-inline-start: 15%; }
.item-city-16 { font-size: clamp(24px, 3.1vw,  60px); padding-inline-start:  0; text-align: end; }


.ur-map-city-item.active {
    color: #117593;
}

.ur-map-projects {
    position: relative;
    display: flex;
    width: 40%;
}

.ur-map-projects::after {
    position: absolute;
    right: -30px;
    top: 0;
    height: 100%;
    width: 2px;
    content: "";
    background: #117593;
}

.ur-map-projects-bottom-text {
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}

.ur-map-delimiter {
    position: relative;
    flex: 1;
}

.ur-map-delimiter::after {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 60%;
    max-width: min(170px, 9vw);
    content: "";
    background: #117593;
}

.ur-map-project-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 15px;
    height: 100%;
    width: 513px;
}

.ur-map-project-items.active {
    display: flex;
}

.ur-map-project-item {
    width: calc((100% - 15px * 2) / 3);
    background: #ffffff;
    border-radius: 15px;
    padding: clamp(14px, calc(2px + 0.938vw), 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ur-map-project-item-city span {
    background: #117593;
    color: #ffffff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
}

.ur-map-project-item-count {
    font-size: clamp(34px, calc(10px + 3.125vw), 60px);
    line-height: 1;
    color: #117593;
    font-weight: 500;
    margin-top: 5px;
}

.ur-map-project-item-count span {
    font-size: 0.4em;
}

.ur-map-project-item-name {
    white-space: nowrap;
    text-align: center;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 1680px) {
    .ur-map-cities ul {
        margin-left: -18%;
    }
}

@media screen and (max-width: 1280px) {
    .ur-map {
        padding: 50px 70px;
    }
}

@media screen and (max-width: 1180px) {
    .ur-map {
        padding: 50px 15px;
    }

    .ur-map-cities {
        width: 42%;
    }

    .ur-map-projects {
        width: 42%;
    }


    .ur-map-project-item-name {
        font-size: 16px;
        white-space: normal;
    }
}

@media screen and (max-width: 768px) {
    .ur-map {
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        background-size: auto 435px;
        background-position: top 0 right 2%;
    }

    .ur-map-wrap {
        flex-direction: column;
        align-items: start;
        height: auto;
    }

    .ur-map-cities {
        padding-top: 40px;
        padding-bottom: 40px;
        width: 70%;
    }

    .ur-map-cities ul {
        font-size: 20px;
    }

    .ur-map-projects {
        width: 100%;
        padding-top: 70px;
        padding-bottom: 20px;
    }

    .ur-map-projects::after {
        left: 15px;
        right: 0;
        width: 100%;
        height: 2px;
        top: 50px;
    }

    .ur-map-delimiter {
        width: 100%;
    }

    .ur-map-delimiter::after {
        height: 30px;
        width: 2px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 576px) {
    .ur-map {
        background-position: top 0 right 12%;
    }
}

/* ── End map block ───────────────────────────── */

.ur-team-image {
    margin-top: 40px;
    margin-bottom: 50px;
}

.ur-team-image-wrap {
    width: 100%;
    text-align: center;
}

.ur-team-image-wrap img {
    max-width: 100%;
    border-radius: 15px;
}

.ur-team {
    padding: 100px 40px;
}

.ur-team-text {
    margin: 0 auto;
    max-width: 564px;
    text-align: center;
    font-size: 28px;
}

.ur-team-swiper .swiper-slide {
    width: 194px;
    height: 199px;
    /*height: 220px;*/
}

.ur-team-list-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: #117593;
}

.ur-team-list-item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ur-team-list-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.ur-team-list-item-data {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #117593;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ur-team-list-item:hover .ur-team-list-item-data {
    opacity: 1;
}

.ur-team-person {
    position: relative;
    padding: 10px;
    min-height: 75px;
}

.ur-team-person-image {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    overflow: hidden;
}

.ur-team-person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ur-team-person-name {
    font-size: 28px;
    font-weight: 500;
    line-height: 0.9;
    max-width: 64%;
    margin-bottom: 10px;
}

.ur-team-person-position {
    line-height: 1.25;
    max-width: 68%;
}

.ur-team-item-231 .ur-team-person-position {
    max-width: 68%;
}

.ur-team-person-text {
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.25;
}

.ur-team-navigation {
    position: relative;
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.ur-team-navigation--btns {
    position: relative;
    width: 108px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
}

.ur-team-navigation--btns .swiper-button-next,
.ur-team-navigation--btns .swiper-button-prev {
    background: rgba(17, 117, 147, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.ur-team-swiper-scrollbar-wrapper {
    position: relative;
    width: calc(100% - 120px);
}

.ur-team-navigation .swiper-scrollbar {
    bottom: 22px;
}

@media screen and (max-width: 768px) {
    .ur-team {
        padding: 48px 0 27px;
    }

    .ur-team h2,
    .ur-team .ur-team-text,
    .ur-team .ur-team-image,
    .ur-team-navigation {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ur-team-text {
        font-size: 20px;
    }

    .ur-team-image {
        margin-bottom: 18px;
        margin-top: 30px;
    }

    .ur-team-swiper .swiper-slide {
        height: 169px;
    }

    .ur-team-person-position {
        font-size: 16px;
    }

    .ur-team-person-text {
        font-size: 16px;
    }

    .ur-team-person {
        min-height: 68px;
    }

    .ur-team-navigation {
        margin-top: 20px;
        /*padding: 0 15px;*/
    }

    .ur-team-navigation--btns .swiper-button-next, .ur-team-navigation--btns .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .ur-team-navigation--btns {
        width: 100%;
        justify-content: center;
    }

    .ur-team-navigation .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}

/* ── Panorama carousel (Three.js) ───────────────────────────── */
.ur-videos {
    position: relative;
}

.ur-videos-title-wrapper {
    margin-bottom: -10vw;
}

.ur-videos-canvas {
    width: 100%;
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
}

@media (max-width: 599px) {
    .ur-videos-canvas {
        aspect-ratio: 4 / 3;
    }
}

.ur-videos-canvas canvas {
    display: block;
}

.ur-videos-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    pointer-events: none; /* handled by canvas click */
    transition: opacity 0.2s, transform 0.2s;
}

.ur-videos-play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.ur-videos-play svg {
    width: clamp(50px, calc(29.692px + 2.644vw), 72px);
    height: clamp(50px, calc(29.692px + 2.644vw), 72px);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}


.ur-videos-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ur-videos-current-title {
    font-size: clamp(24px, 1.8vw, 28px);
    text-align: center;
    min-height: 1.4em;
    transition: opacity 0.25s;
    padding: 0 16px;
    position: absolute;
    left: 50%;
    bottom: 7vw;
    transform: translateX(-50%);
    max-width: 400px;
    color: #117593;
    font-weight: 500;
}

.ur-videos-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.ur-videos-btn::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-top: 2px solid #117593;
    border-right: 2px solid #117593;
}

.ur-videos-btn--prev::before { transform: rotate(-135deg); }
.ur-videos-btn--next::before { transform: rotate(45deg); }

.ur-videos-dots {
    display: flex;
    gap: 8px;
    margin-top: -10vw;
}

.ur-videos-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
    transform: scale(0.8);
}

.ur-videos-dot.active {
    background: #117593;
    transform: scale(1);
}

.fancybox__content {
    background: transparent !important;
    max-width: 936px !important;
}

.fancybox__content video {
    outline: none;
}

@media (max-width: 600px) {
    .ur-videos {
        padding-bottom: 27px;
    }

    .ur-videos-title-wrapper {
        margin-bottom: -4vw;
    }

    .ur-videos-dots {
        margin-top: 0;
    }

    .ur-videos-dot {
        width: 12px;
        height: 12px;
    }
}
/* ── End Panorama carousel ───────────────────────────────────── */


/* ── Media mentions slider ───────────────────────────────────── */
.ur-media {
    padding: 7.3vw max(40px, 4.16vw);
    background: #117593;
    color: #ffffff;
}

.ur-media-title {
    margin-bottom: 30px;
    color: inherit;
    line-height: 1.35;
}

.ur-media-swiper .swiper-wrapper {
    align-items: stretch;
}

.ur-media-swiper .swiper-slide {
    height: auto;
}

.ur-media-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #EAF2F5;
    border-radius: 15px;
    padding: 15px;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

a.ur-media-item:hover {
    background: #d4e8ef;
}

.ur-media-item-logo {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 48px;
    margin-bottom: 10px;
}

.ur-media-item-logo img {
    max-height: 48px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    object-position: right center;
}

.ur-media-item-date {
    font-size: 16px;
    color: #132D42;
}

.ur-media-item-title {
    font-size: 20px;
    line-height: 1.25;
    color: #132D42;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 83px;
}

.ur-media-arrow {
    position: absolute;
    left: 15px;
    bottom: 15px;
    width: 18px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ur-media-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.ur-media-navigation--btns {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ur-media-navigation--btns .swiper-button-next,
.ur-media-navigation--btns .swiper-button-prev {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0;
    color: #ffffff;
}

.ur-media-swiper-scrollbar-wrapper .swiper-scrollbar-drag {
    background: #ffffff;
}

.ur-media-swiper-scrollbar-wrapper .swiper-scrollbar .swiper-scrollbar-horizontal {
    background: rgba(255,255,255,0.15);
}

.ur-media-swiper-scrollbar-wrapper {
    position: relative;
    flex: 1;
}

.ur-media-navigation .swiper-scrollbar {
    bottom: 0;
}
@media screen and (max-width: 768px) {
    .ur-media {
        padding: 48px 0 26px 0;
    }

    .ur-media-title {
        margin-bottom: 20px;
    }

    .ur-media-item {
        padding: 8px;
        border-radius: 10px;
    }

    .ur-media-item-logo {
        min-height: 24px;
        margin-bottom: 16px;
    }

    .ur-media-item-logo img {
        max-height: 24px;
        max-width: 70px;
    }

    .ur-media-item-title {
        font-size: 16px;
        height: 60px;
        -webkit-line-clamp: 4;
        line-height: 0.93;
        margin-bottom: 4px;
    }

    .ur-media-arrow {
        width: 10px;
        bottom: 12px;
    }

    .ur-media-navigation {
        margin-top: 20px;
        padding-left: 15px;
        justify-content: center;
    }

    .ur-media-navigation--btns .swiper-button-next,
    .ur-media-navigation--btns .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .ur-media-navigation .swiper-pagination-bullet {
        background: rgba(255,255,255,0.8);
        width: 12px;
        height: 12px;
    }

    .ur-media-navigation .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: rgba(255,255,255,1);
    }
}
/* ── End Media mentions slider ───────────────────────────────── */

/* ── Form section ───────────────────────────────── */
.ur-form-section {
    background: #EAF2F5;
    padding: 40px 0 20px;
}

.ur-form-title {
    margin-bottom: 0;
    line-height: 1.25;
}

.ur-form-description {
    text-align: center;
    font-size: clamp(24px, calc(18.462px + 0.721vw), 30px);
    font-weight: 500;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .ur-form-section {
        padding: 30px 0 15px;
    }

    .ur-form-description {
        margin-bottom: 10px;
    }
}

/* ── End form section ───────────────────────────────── */


/* ── Awards ──────────────────────────────────────────────────── */
.ur-awards {
    padding: 60px max(40px, 4.16vw);
}

/* Desktop: flex row, swiper disabled */
@media (min-width: 768px) {
    .ur-awards-list {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        transform: none !important;
    }

    .ur-awards-list .swiper-wrapper {
        display: contents;
    }

    .ur-awards-item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 32px;
        width: auto !important;
        margin: 0 !important;
    }

    .ur-awards-item + .ur-awards-item {
        border-right: 1px solid #D0D9DD;
    }
}

.ur-awards-item img {
    max-height: 119px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Mobile: swiper */
@media (max-width: 767px) {
    .ur-awards {
        padding: 20px 0;
    }

    .ur-awards-item {
        width: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 16px;
    }

    .ur-awards-item:nth-child(n) {
        display: flex;
    }

    .ur-awards-item + .ur-awards-item {
        border-right: 1px solid #D0D9DD;
    }

    .ur-awards-item img {
        max-height: 50px;
    }
}
/* ── End Awards ──────────────────────────────────────────────── */
