/* temporarily (пока не починили) */

@media (max-width: 992px) {
    .side-bar {
        display: none;
    }

    .detail-block {
        flex-direction: column !important;
    }

    .footer__container {
        flex-direction: column !important;
    }

    .main {
        overflow: hidden;
    }
}

/* visually-hidden */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* bayan (общие стили) */

.bayan *,
.bayan *::before,
.bayan *::after {
    box-sizing: border-box;
}

.bayan {
    min-width: 320px;
}

.bayan__item--opened {
    border-bottom: 2px solid #ffffff;
}

.bayan__item--closed {
    border-bottom: 2px solid #bcbcbe;
    transition: ease-in-out 300ms;
}

.bayan__item--closed:hover {
    border-bottom: 2px solid #ffffff;
}

.bayan__question {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px 40px 20px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #ffffff;
    background: #1d1f25;
    border: none;
    cursor: pointer;
}

.bayan__question::before,
.bayan__question::after {
    content: '';
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    background: #bcbcbe;
    border-radius: 5px;
    transition: ease-in-out 300ms;
}

.bayan__question::before {
    right: 20px;
    width: 14px;
    height: 3px;
}

.bayan__question::after {
    right: 25.5px;
    height: 14px;
    width: 3px;
}

.bayan__question:hover::before,
.bayan__question:hover::after {
    background: #ffffff;
}

.bayan__item--closed .bayan__question::before,
.bayan__item--closed .bayan__question::after {
    transform: translate(0, -50%);
}

.bayan__item--opened .bayan__question::before,
.bayan__item--opened .bayan__question::after {
    transform: translate(0, -50%) rotate(135deg);
}

.bayan__answer {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #bcbcbe;
    background: #1d1f25;
    overflow: hidden;
    transition: ease-in-out 300ms;
}

.bayan__answer-inner {
    flex-direction: column;
    padding: 20px;
}

.bayan__answer p {
    margin: 0;
}

.bayan__answer p:not(:last-child) {
    margin: 0 0 20px;
}

.bayan__answer ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.bayan__answer ul:not(:last-child) {
    margin: 0 0 20px;
}

.bayan__link {
    font-weight: 700;
    text-decoration: none;
}

.bayan__link:link,
.bayan__link:visited {
    color: #007afe;
    transition: ease-in-out 300ms;
}

.bayan__link:hover {
    color: #ffffff;
}

.bayan__link:active {
    color: #007afe;
    transition: ease-in-out 100ms;
}

.bayan__answer-video {
    position: relative;
    align-self: center;
    width: 69.5%;
    padding: 39% 0 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px -25px #1e1e20;
}

.bayan__answer-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .bayan__answer-video {
        width: 100%;
        padding: 60% 0 0;
    }
}

@media (max-width: 820px) {
    .bayan__item--closed:hover {
        border-bottom: 2px solid #bcbcbe;
    }

    .bayan__question:hover::before,
    .bayan__question:hover::after {
        background: #bcbcbe;
    }

    .bayan__question:active::before,
    .bayan__question:active::after {
        background: #ffffff;
        transition: background-color ease-in-out 0ms;
        transition: transform ease-in-out 300ms;
    }

    .bayan__link:hover {
        color: #007afe;
    }

    .bayan__link:active {
        color: #ffffff;
    }
}

@media (max-width: 576px) {
    .bayan__question {
        font-size: 14px;
    }

    .bayan__answer {
        font-size: 14px;
    }

    .bayan__answer-video {
        padding: 56% 0 0;
    }
}

/* ubntsu-tabs (общие для табов) */

.ubntsu-tabs__content-part--on {
    display: block;
}

.ubntsu-tabs__content-part--off {
    display: none;
}

/* ubntsu-link-1 (общие для ссылок) */

a.ubntsu-link-1 {
    font-weight: 600;
    color: #005EE0;
    text-decoration: none;
}

a.ubntsu-link-1:hover,
a.ubntsu-link-1:focus {
    color: #ffffff;
}

/* ubntsu-01 */

.ubntsu-01 {
    position: relative;
    min-width: 300px;
    padding: 40px 0;
    overflow: hidden;
}

.ubntsu-01__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px;
}

.ubntsu-01__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    color: #ffffff;
}

.ubntsu-01__text {
    max-width: 75%;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #bcbcbe;
    text-align: center;
}

.ubntsu-tabs__content {
    width: 100%;
}

.ubntsu-tabs__content-part .ubntsu-01__text {
    max-width: 800px;
    margin: 10px auto 0;
    font-weight: 400;
}

.ubntsu-01__video video {
    display: block;
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 576px) {
    .ubntsu-01__text-wrapper {
        margin: 0 0 20px;
    }

    .ubntsu-01__title {
        font-size: 26px;
    }

    .ubntsu-01__text {
        max-width: 100%;
        font-size: 14px;
    }

    .ubntsu-01__video video {
        border-radius: 10px;
    }
}

/* ubntsu-01 ubntsu-tabs*/

.ubntsu-01 .ubntsu-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ubntsu-01 .ubntsu-tabs__buttons {
    position: relative;
    display: flex;
    gap: 30px;
    max-width: 100%;
    padding: 0 0 18px;
    overflow: auto;
}

.ubntsu-01 .ubntsu-tabs__button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    background: none;
    border: none;
    opacity: 0.5;
    transition: 0.1s ease-in;
}

.ubntsu-01 .ubntsu-tabs__button--on {
    opacity: 1;
}

.ubntsu-01 .ubntsu-tabs__button:hover {
    cursor: pointer;
    opacity: 1;
}

.ubntsu-01 .ubntsu-tabs__button-img {
    height: 40px;
}

.ubntsu-01 .ubntsu-tabs__button-img img {
    display: block;
    height: 100%;
}

@media (max-width: 576px) {
    .ubntsu-01 .ubntsu-tabs__button {
        font-size: 14px;
    }
}

/* ubntsu-02 */

.ubntsu-02 {
    position: relative;
    min-width: 300px;
    padding: 40px 0;
    overflow: hidden;
}

.ubntsu-02__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px;
}

.ubntsu-02__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    color: #ffffff;
}

.ubntsu-02__text {
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #bcbcbe;
    text-align: center;
    opacity: 0.5;
}

.ubntsu-02__video video {
    display: block;
    width: 100%;
    border-radius: 15px;
}

.ubntsu-02__video ~ .ubntsu-02__text {
    max-width: 800px;
    margin: 10px auto 0;
    font-weight: 400;
    opacity: 1;
}

.ubntsu-02__advantages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.ubntsu-02__advantages p {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

@media (max-width: 576px) {
    .ubntsu-02__text-wrapper {
        margin: 0 0 20px;
    }

    .ubntsu-02__title {
        font-size: 26px;
    }

    .ubntsu-02__text {
        font-size: 14px;
    }

    .ubntsu-02__video video {
        border-radius: 10px;
    }

    .ubntsu-02__advantages p {
        font-size: 14px;
    }
}

/* ubntsu-03 */

.ubntsu-03 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-03__preview {
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    text-align: justify;
}

.ubntsu-03__text {
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #bcbcbe;
    text-align: justify;
}

.ubntsu-03__text:last-of-type {
    margin: 0;
}

.ubntsu-03__list-title {
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.ubntsu-03__list {
    margin: 0 0 25px;
}

.ubntsu-03__item {
    display: flex;
    align-items: flex-start;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-03__item:last-child {
    margin: 0;
}

.ubntsu-03__item::before {
    display: none;
}

.ubntsu-03__item:hover path {
    fill: #006FFF;
}

.ubntsu-03__item svg {
    flex-shrink: 0;
    margin: 8px 10px 0 0;
}

.ubntsu-03__item path {
    transition: 0.2s ease-in;
}

.ubntsu-03__app {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-03__app img {
    width: 50px;
    margin: 0;
    border-radius: 5px;
}

.ubntsu-03__app p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-03__app span {
    font-weight: 600;
    color: #ffffff;
}

.ubntsu-03__additional {
    position: relative;
    margin: 25px 0 0;
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #bcbcbe;
    font-style: italic;
}

.ubntsu-03__additional span {
    font-weight: 600;
    color: #ffffff;
}

.ubntsu-03__additional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #555555;
    border-radius: 5px;
    transition: 0.2s ease-in;
}

.ubntsu-03__additional:hover::before {
    background: #006FFF;
}

@media (max-width: 576px) {
    .ubntsu-03__preview {
        font-size: 14px;
    }

    .ubntsu-03__text {
        font-size: 14px;
    }

    .ubntsu-03__list-title {
        font-size: 14px;
    }

    .ubntsu-03__item {
        font-size: 14px;
    }

    .ubntsu-03__app p {
        font-size: 14px;
    }

    .ubntsu-03__additional {
        font-size: 14px;
    }
}

/* ubntsu-04 */

.ubntsu-04 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-04 ul {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
    gap: 30px;
    width: 75%;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
}

.ubntsu-04 li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.ubntsu-04 li::before {
    display: none;
}

.ubntsu-04 img {
    flex-shrink: 0;
    width: 70px;
    margin: 0;
    box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.ubntsu-04 ul li p {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-04 p:first-child {
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 992px) {
    .ubntsu-04 ul {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ubntsu-04 ul {
        grid-template: auto / 1fr;
    }
}

/* ubntsu-05 */

.ubntsu-05 {
    padding: 40px 0;
}

.ubntsu-05 .ubntsu-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-05 .ubntsu-container > div {
    width: 50%;
}

.ubntsu-05__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
    color: #ffffff;
}

.ubntsu-05__text {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-05__video video {
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 820px) {
    .ubntsu-05 .ubntsu-container {
        flex-direction: column;
        gap: 30px;
    }

    .ubntsu-05 .ubntsu-container > div {
        width: 100%;
    }

    .ubntsu-05 .ubntsu-05__text-wrapper p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ubntsu-05__title {
        font-size: 26px;
    }

    .ubntsu-05__text {
        font-size: 14px;
    }
}

/* ubntsu-06 */

.ubntsu-06 {
    min-width: 300;
    padding: 40px 0;
}

.ubntsu-06 .ubntsu-container {
    display: flex;
    gap: 20px;
}

.ubntsu-06__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.ubntsu-06__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.05;
    text-align: center;
    color: #ffffff;
}

.ubntsu-06__wrapper--1 .ubntsu-06__title {
    width: 495px;
}

.ubntsu-06__wrapper--2 .ubntsu-06__title {
    width: 395px;
}

.ubntsu-06__text {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    color: #bcbcbe;
}

.ubntsu-06__text {
    width: 495px;
}

.ubntsu-06__advantage {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

.ubntsu-06__advantage span {
    font-size: 20px;
}

.ubntsu-06__img {
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-06__img img {
    display: block;
    width: 100%;
}

@media (max-width: 820px) {
    .ubntsu-06 .ubntsu-container {
        flex-direction: column;
        gap: 40px;
    }

    .ubntsu-06__wrapper {
        width: 100%;
    }

    .ubntsu-06__wrapper--1 .ubntsu-06__title {
        width: 90%;
    }

    .ubntsu-06__wrapper--2 .ubntsu-06__title {
        width: 90%;
    }

    .ubntsu-06__text {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .ubntsu-06__title {
        font-size: 26px;
    }

    .ubntsu-06__text {
        font-size: 14px;
    }

    .ubntsu-06__advantage {
        font-size: 14px;
    }

    .ubntsu-06__advantage span {
        font-size: 18px;
    }
}

/* ubntsu-07 */

.ubntsu-07 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-07__title {
    max-width: 80%;
    margin: 0 auto 10px;
    text-align: center;
    color: #1E1E20;
}

.ubntsu-07 p.ubntsu-07__text {
    max-width: 80%;
    margin: 0 auto 30px;
    text-align: center;
    color: #494949;
}

.ubntsu-07__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-07__wrapper-1 {
    width: 60%;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-07__wrapper-1 video {
    display: block;
    width: 100%;
}

.ubntsu-07__wrapper-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    margin: 0;
}

.ubntsu-07__icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-07__icon-wrapper img {
    width: 60px;
    flex-shrink: 0;
    margin: 0;
}

.ubntsu-07__icon-wrapper p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.ubntsu-07__wrapper-2 > p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-07__download-wrapper p {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.ubntsu-07__download-wrapper div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ubntsu-07__download-wrapper a {
    width: 150px;
    transition: 0.2s ease-in;
}

.ubntsu-07__download-wrapper a:hover {
    transform: scale(1.05);
}

.ubntsu-07__download-wrapper img {
    display: block;
    max-width: 100%;
}

@media (max-width: 820px) {
    .ubntsu-07__wrapper {
        flex-direction: column;
    }

    .ubntsu-07__wrapper-1,
    .ubntsu-07__wrapper-2 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ubntsu-07__wrapper-1 {
        flex-direction: column;
        gap: 10px;
    }

    .ubntsu-07__wrapper-2 {
        align-items: center;
    }

    .ubntsu-07__wrapper-2 > p {
        text-align: center;
    }

    .ubntsu-07__download-wrapper p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ubntsu-07__icon-wrapper p {
        font-size: 14px;
    }

    .ubntsu-07__wrapper-2 > p {
        font-size: 14px;
    }

    .ubntsu-07__download-wrapper p {
        font-size: 14px;
    }
}

/* ubntsu-08 */

.ubntsu-08 {
    position: relative;
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-08__gallery {
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
    /*gap: 20px;*/
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: max-content;
}

.ubntsu-08__gallery--6 {
    grid-template-columns: repeat(6, 1fr);
}

.ubntsu-08__img {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.ubntsu-08__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ubntsu-08__img a {
    cursor: zoom-in
}

@media (max-width: 820px) {
    .ubntsu-08__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .ubntsu-08__gallery--6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .ubntsu-08__gallery {
        grid-template-columns: 1fr;
    }

    .ubntsu-08__gallery--6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ubntsu-09 */

.ubntsu-09 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-09__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ubntsu-09__img img {
    display: block;
    width: 60%;
}

@media (max-width: 576px) {
    .ubntsu-09__img img {
        width: 80%;
    }
}

/* ubntsu-10 */

.ubntsu-10 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-10__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ubntsu-10__img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.ubntsu-10__img img {
    display: block;
    width: 100%;
}

@media (max-width: 820px) {
    .ubntsu-10__gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ubntsu-11 */

.ubntsu-11 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-11__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ubntsu-11__img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-11__img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .ubntsu-11__gallery {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
}

@media (max-width: 576px) {
    .ubntsu-11__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ubntsu-12 */

.ubntsu-12 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-12__wrapper {
    display: flex;
    gap: 30px;
}

.ubntsu-12__wrapper--first {
    margin: 0 0 30px;
    gap: 20px;
}

.ubntsu-12__wrapper--second {
    flex-direction: row-reverse;
    gap: 40px;
}

.ubntsu-12__img {
    padding: 10px;
    flex-shrink: 0;
}

.ubntsu-12__wrapper--first .ubntsu-12__img {
    width: 35%;
}

.ubntsu-12__wrapper--second .ubntsu-12__img {
    width: 32%;
}

.ubntsu-12__img img {
    display: block;
    width: 100%;
}

.ubntsu-12__wrapper--first .ubntsu-12__text {
    padding: 30px 0 0;
}

.ubntsu-12 p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    color: #bcbcbe;
}

.ubntsu-12 p:not(p:last-child) {
    margin: 0 0 20px;
}

@media (max-width: 576px) {
    .ubntsu-12__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .ubntsu-12__img {
        padding: 0;
    }

    .ubntsu-12__wrapper--first .ubntsu-12__img {
        width: 65%;
    }

    .ubntsu-12__wrapper--second .ubntsu-12__img {
        width: 65%;
    }

    .ubntsu-12__wrapper--first .ubntsu-12__text {
        padding: 0;
    }

    .ubntsu-12 p {
        font-size: 14px;
    }
}

/* ubntsu-13 */

.ubntsu-13 {
    min-width: 300px;
    padding: 40px 0;
}

.skin-configurator {
    position: relative;
    padding: 45% 0 0;
}

.skin-configurator__buttons {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 8%;
    height: auto;
    transform: translate(0, -50%);
}

.skin-configurator__button {
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 10px 0 #000000;
    overflow: hidden;
    cursor: pointer;
    transition: 130ms ease-out;
}

.skin-configurator__button--active,
.skin-configurator__button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px 1px #000000;
}

.skin-configurator__button img {
    display: block;
    width: 100%;
}

.skin-configurator__button-blocking-layer {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.skin-configurator__button-blocking-layer--active {
    display: block;
}

.skin-configurator__skins {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 96%;
    height: 100%;
}

.skin-configurator__skin-bg {
    grid-row: 1;
    grid-column: 1 / 7;
    width: 100%;
    opacity: 0;
    border-radius: 15px;
    transition: 200ms ease 450ms;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}

.skin-configurator__skin-bg--active {
    opacity: 1;
}

.skin-configurator__skin-bg--marble {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-marble.jpg');
}

.skin-configurator__skin-bg--dark {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-dark.jpg');
}

.skin-configurator__skin-bg--concrete {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-concrete.jpg');
}

.skin-configurator__skin-bg--wood {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-wood.jpg');
}

.skin-configurator__skin-bg--fabric {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-fabric.jpg');
}

.skin-configurator__skin-bg--camo {
    background-image: url('/bitrix/templates/ubnt/uploads/description-img/skin-configurator-bg-camo.jpg');
}

.skin-configurator__skin-name {
    position: absolute;
    top: 50%;
    right: 8%;
    margin: 0;
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 80px;
    text-align: right;
    color: #ffffff;
    line-height: 70px;
    text-shadow: 1px 0 #000000;
    transform: translate(0, -50%);
}

.skin-configurator__skin-name--light {
    font-weight: 200;
}

.skin-configurator__skin-name--bold {
    font-weight: 500;
}

.skin-configurator__device-wrapper {
    position: absolute;
    top: 50%;
    left: -4%;
    width: 70%;
    z-index: 1;
    transform: translate(0, -50%);
}

.ubntsu-13--b .skin-configurator__device-wrapper {
    top: 52.5%;
    left: 4%;
    width: 60%;
}

.skin-configurator__device-wrapper img {
    width: 100%;
}

.skin-configurator__device-skin-wrapper {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.skin-configurator__device-skin-wrapper--front {
    top: 7%;
    left: 18%;
    z-index: 2;
    width: 95%;
}

.ubntsu-13--b .skin-configurator__device-skin-wrapper--front {
    top: 4.1%;
    left: 6.5%;
    z-index: 2;
    width: 91%;
}

.skin-configurator__device-skin-wrapper--back {
    bottom: 6%;
    right: 17%;
    z-index: -1;
    width: 90%;
}

.skin-configurator__device-skin {
    grid-column: 1 / 7;
    grid-row: 1;
    opacity: 0;
    transition: 0ms 650ms;
}

.skin-configurator__device-skin--active {
    opacity: 1;
}

.skin-configurator__device-wrapper--change .skin-configurator__device-skin-wrapper--front {
    animation: frontskin 650ms ease-in-out 2 alternate;
}

.skin-configurator__device-wrapper--change .skin-configurator__device-skin-wrapper--back {
    animation: backskin 650ms ease-in-out 2 alternate;
}

.ubntsu-13--b .skin-configurator__device-wrapper--change .skin-configurator__device-skin-wrapper--front {
    animation: frontskin-b 650ms ease-in-out 2 alternate;
}

@keyframes frontskin {
    0% {
        left: 18%;
    }

    50% {
        left: 6%;
        top: 7%;
        opacity: 1;
    }

    100% {
        left: 6%;
        top: -18%;
        opacity: 0;
    }
}

@keyframes backskin {
    0% {
        right: 17%;
    }

    50% {
        right: 3%;
        bottom: 6%;
        opacity: 1;
    }

    100% {
        right: 3%;
        bottom: -10%;
        opacity: 0;
    }
}

@keyframes frontskin-b {
    0% {
        left: 6.5%;
    }

    50% {
        left: -5.5%;
        top: 4.1%;
        opacity: 1;
    }

    100% {
        left: -5.5%;
        top: -20.9%;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .skin-configurator__skin-name {
        font-size: 65px;
        line-height: 50px;
    }

    .skin-configurator__device-wrapper {
        left: -10%;
    }
}

@media (max-width: 576px) {
    .skin-configurator {
        position: relative;
        padding: 72% 0 0;
    }

    .skin-configurator__skins {
        position: absolute;
        top: 24%;
        left: 0;
        width: 100%;
        height: 76%;
    }

    .skin-configurator__buttons {
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: row;
        width: 100%;
        transform: translate(0, 0);
        z-index: 3;
    }

    .skin-configurator__skin-name {
        right: 4%;
        font-size: 55px;
        line-height: 45px;
    }

    .skin-configurator__device-wrapper {
        width: 80%;
    }
}

@media (max-width: 440px) {
    .skin-configurator__skin-name {
        font-size: 40px;
        line-height: 33px;
    }
}

/* ubntsu-14 */

.ubntsu-14 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-14__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.ubntsu-14__wrapper--second {
    flex-direction: row-reverse;
}

.ubntsu-14__video {
    width: 40%;
    padding: 0;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-14__video video {
    display: block;
    width: 100%;
}

.ubntsu-14 p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    color: #bcbcbe;
}

.ubntsu-14 p:not(p:last-child) {
    margin: 0 0 20px;
}

@media (max-width: 576px) {
    .ubntsu-14__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .ubntsu-14__video {
        width: 100%;
        margin: 0 0 20px;
    }

    .ubntsu-14__wrapper--first .ubntsu-14__text {
        padding: 0;
    }

    .ubntsu-14 p {
        font-size: 14px;
    }
}

/* ubntsu-15 */

.ubntsu-15 {
    min-width: 300px;
    padding: 40px 0;
}

.ubntsu-15__gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ubntsu-15__img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 10px;
}

.ubntsu-15__img img {
    display: block;
    width: 100%;
}

@media (max-width: 820px) {
    .ubntsu-15__gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ubntsu-16 */

.ubntsu-16 {
    padding: 40px 0;
}

.ubntsu-16__wrapper:not(:first-of-type) {
    margin: 40px 0 0;
}

.ubntsu-16__wrapper::after {
    content: '';
    display: block;
    width: 100%;
    clear: both;
}

.ubntsu-16__text {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
    color: #bcbcbe;
}

.ubntsu-16__text:last-of-type {
    margin: 0;
}

.ubntsu-16__img,
.ubntsu-16__video {
    width: 40%;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-16__video {
    position: relative;
}

.ubntsu-16__video__mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}


.ubntsu-16__img--no-padding,
.ubntsu-16__video--no-padding {
    padding: 0;
}

.ubntsu-16__wrapper--right-img .ubntsu-16__img,
.ubntsu-16__wrapper--right-video .ubntsu-16__video {
    margin: 0 0 5px 15px;
    float: right;
}

.ubntsu-16__wrapper--left-img .ubntsu-16__img,
.ubntsu-16__wrapper--left-video .ubntsu-16__video {
    margin: 0 15px 5px 0;
    float: left;
}

.ubntsu-16__img img,
.ubntsu-16__video video {
    display: block;
    width: 100%;
}

@media (max-width: 576px) {
    .ubntsu-16__text {
        font-size: 14px;
    }

    .ubntsu-16__wrapper--right-img .ubntsu-16__img,
    .ubntsu-16__wrapper--left-img .ubntsu-16__img,
    .ubntsu-16__wrapper--right-video .ubntsu-16__video,
    .ubntsu-16__wrapper--left-video .ubntsu-16__video {
        width: 100% !important;
        margin: 0 0 20px;
        float: none;
    }
}

/* ubntsu-17 */

.ubntsu-17 {
    padding: 40px 0;
}

.ubntsu-17__img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-17__img img {
    display: block;
    width: 100%;
}

.ubntsu-17__video {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-17__video video {
    display: block;
    width: 100%;
}

/* ubntsu-18 */

.ubntsu-18 {
    padding: 40px 0;
    min-width: 300px;
}

.ubntsu-18 .ubntsu-container {
    display: flex;
}

.ubntsu-18__img {
    width: 50%;
}

.ubntsu-18__img img {
    display: block;
    width: 100%;
}

/* ubntsu-19 */

.ubntsu-19 {
    padding: 40px 0;
    min-width: 300px;
}

.ubntsu-19__wrapper {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-19__video {
    width: 50%;
}

.ubntsu-19__video video {
    display: block;
    width: 100%;
}

@media (max-width: 576px) {
    .ubntsu-19__wrapper {
        flex-direction: column;
    }

    .ubntsu-19__video {
        width: 100%;
    }
}

/* ubntsu-20 */

.ubntsu-20 {
    padding: 40px 0;
}

.ubntsu-20 .ubntsu-container {
    display: flex;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-20__img {
    width: 100%;
}

.ubntsu-20__img img {
    display: block;
    width: 100%;
}

@media (max-width: 576px) {
    .ubntsu-20 .ubntsu-container {
        flex-direction: column;
        gap: 20px;
    }

    .ubntsu-20--1 .ubntsu-container {
        gap: 0;
    }
}

/* ubntsu-21 */

.ubntsu-21 {
    padding: 40px 0;
}

.ubntsu-21 .ubntsu-container {
    display: flex;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-21__img {
    display: flex;
    width: 50%;
}

.ubntsu-21__img img {
    width: 50%;
}

@media (max-width: 576px) {
    .ubntsu-21 .ubntsu-container {
        flex-direction: column;
        gap: 20px;
    }

    .ubntsu-21__img {
        display: flex;
        width: 100%;
    }
}

/* ubntsu-22 ubntsu-tabs*/

.ubntsu-22 {
    padding: 40px 0;
}

.ubntsu-22 .ubntsu-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.ubntsu-22 .ubntsu-tabs__buttons {
    position: relative;
    display: flex;
    max-width: 100%;
    overflow: auto;
    border: 2px solid #fff;
    border-radius: 20px;
}

.ubntsu-22 .ubntsu-tabs__button {
    flex-shrink: 0;
    padding: 10px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    background: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
}

.ubntsu-22 .ubntsu-tabs__button--on {
    background-color: #006FFF;
}

.ubntsu-22__tab-description {
    width: 80%;
    margin: 0 auto 30px;
}

.ubntsu-22__tab-description-text {
    margin: 0 0 30px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.ubntsu-22__tab-description-advantages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ubntsu-22__tab-description-advantages-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ubntsu-22__tab-description-advantages-item p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

@media (max-width: 576px) {
    .ubntsu-22 .ubntsu-tabs__button {
        font-size: 14px;
    }

    .ubntsu-22__tab-description-text {
        font-size: 14px;
    }
}

/* ubntsu-23 */

.ubntsu-23 {
    position: relative;
    min-width: 300px;
    padding: 40px 0;
    overflow: hidden;
}

.ubntsu-23__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 40px;
}

.ubntsu-23__title {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    color: #ffffff;
}

.ubntsu-23__text {
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #bcbcbe;
    text-align: center;
    opacity: 0.5;
}

.ubntsu-23__video {
    position: relative;
}

.ubntsu-23__unifi-app {
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    gap: 20px;
    width: 45%;
}

.ubntsu-23__unifi-app a img {
    display: block;
    width: 100%
}

.ubntsu-23__video video {
    display: block;
    width: 100%;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .ubntsu-23__unifi-app {
        top: 8%;
    }
}

@media (max-width: 576px) {
    .ubntsu-23__text-wrapper {
        margin: 0 0 20px;
    }

    .ubntsu-23__title {
        font-size: 26px;
    }

    .ubntsu-23__text {
        font-size: 14px;
    }

    .ubntsu-23__video video {
        border-radius: 10px;
    }
}

/* ubntsu-24 */

.ubntsu-24 {
    padding: 40px 0;
}

.ubntsu-24__video {
    position: relative;
    width: 100%;
    padding: 60% 0 0;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-24__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ubntsu-25 */

.ubntsu-25 {
    padding: 40px 0;
}

.ubntsu-25__wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-25__img {
    width: 100%;
}

.ubntsu-25__img img {
    display: block;
    width: 100%;
}

/* ubntsu-26 */

.ubntsu-26 {
    padding: 40px 0;
}

.ubntsu-26__wrapper {
    position: relative;
    width: 35%;
    margin: 0 auto;
}

.ubntsu-26__wrapper img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.ubntsu-26__wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%
}

@media (max-width: 576px) {
    .ubntsu-26__wrapper {
        width: 50%;
    }
}

/* ubntsu-27 */

.ubntsu-27 {
    padding: 40px 0;
}

.ubntsu-27__table {
    width: 1008px;
    height: 300px;
    margin: 0px 0 10px;
    border-collapse: collapse;
}

.ubntsu-27__table td {
    position: relative;
    width: 62px;
    padding: 3px;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 8px;
    transition: 50ms ease-in-out;
}

.ubntsu-27__table td:not(td:nth-child(1)) {
    background: rgba(255, 255, 255, 0.01);
}

.ubntsu-27__table td:not(td:nth-child(1)):hover {
    background: rgba(255, 255, 255, 0.3);
}

.ubntsu-27__table td:nth-child(1) {
    width: 40px;
}

.ubntsu-27__table td:nth-child(2) {
    width: auto;
}

.ubntsu-27__img-row {
    height: 100px;
}

.ubntsu-27__img-row a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ubntsu-27__img-row a img {
    width: 32px;
}

.ubntsu-27__img-row a:hover img {
    position: relative;
    transform: rotate(90deg);
    z-index: 1;
}

.ubntsu-27__model-row td {
    height: 100px;
}

.ubntsu-27__model-row span {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    text-wrap: nowrap;
    letter-spacing: 0.7px;
    color: #fff;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.ubntsu-27__model-row td:nth-child(2) span {
    transform: translate(-50%, -50%) rotate(0);
}

.ubntsu-27__model-row a {
    color: #49CCFF;
    text-decoration: none;
    transition: 50ms ease-in-out;
}

.ubntsu-27__model-row a:hover {
    color: #00FFDE;
}

.ubntsu-27__model-row a:active {
    color: #23527C;
}

.ubntsu-27__model-row td:nth-child(2) a {
    color: #fff;
}

.ubntsu-27__model-row td:nth-child(2) a:hover,
.ubntsu-27__model-row td:nth-child(2) a:active {
    color: #fff;
}

.ubntsu-27__parameters-row {
    height: 40px;
}

.ubntsu-27__parameters-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

.ubntsu-27__parameters-row td {
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    text-wrap: wrap;
    color: #fff;
}

.ubntsu-27__parameters-row td:nth-child(2) {
    font-size: 12px;
    font-weight: 600;
    color: #A8A8A8;
}

.ubntsu-27__parameters-row td:hover {
    color: #FFF8A2;
}

.ubntsu-27__parameters-row td:nth-child(1) {
    background: #005DE2;
}

.ubntsu-27__pic-cell div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
}

.ubntsu-27__pic-cell div img {
    display: block;
    width: 100%;
}

.ubntsu-27__parameters-row td:nth-child(1) div {
    width: 70%;
}

@media (max-width: 1200px) {
    .ubntsu-27 .ubntsu-container {
        overflow-x: scroll;
    }
}

/* ubntsu-28 */

.ubntsu-28 {
    padding: 40px 0;
}

.ubntsu-28 .ubntsu-container {
    padding: 20px 0;
    background: url("http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/lxz2g9urxu7r52x38he1j2514zbsnew3.jpg") no-repeat center/cover;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-28__logo {
    width: 240px;
    margin: 0 auto 40px;
}

.ubntsu-28__logo img {
    display: block;
    width: 100%;
}

.ubntsu-28__title,
.ubntsu-28__desc {
    padding: 0 10px;
    text-align: center;
}

.ubntsu-28__title {
    margin: 0 0 20px;
    font-size: 28px;
    color: #fff;
}

.ubntsu-28__desc {
    margin: 0 0 40px;
    font-size: 18px;
    line-height: 1.2;
    color: #bcbcbe;
}

.ubntsu-28__imgs {
    position: relative;
}

.ubntsu-28__img-a {
    display: block;
    width: 90%;
    margin: 0 auto;
}

.ubntsu-28__img-b {
    position: absolute;
    top: 60%;
    left: 22%;
    width: 55%;
}

.ubntsu-28 video {
    position: absolute;
}

.ubntsu-28__video-a {
    top: 74%;
    left: 25%;
    width: 10%;
}

.ubntsu-28__video-b {
    top: 74%;
    left: 64%;
    width: 10%;
}

@media (max-width: 768px) {
    .ubntsu-28__logo {
        width: 200px;
    }

    .ubntsu-28__title {
        font-size: 24px;
    }

    .ubntsu-28__desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ubntsu-28 {
        padding: 20px 0;
    }
}

/* ubntsu-29 */

.ubntsu-29 {
    padding: 40px 0;
}

.ubntsu-29 .ubntsu-container {
    padding: 40px 0;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-29__title {
    padding: 0 10px;
    margin: 0 0 40px;
    font-size: 28px;
    text-align: center;
    color: #fff;
}

.ubntsu-29__wrapper {
    display: flex;
    align-items: center;
    gap: 20px
}

.ubntsu-29__img {
    width: 60%;
}

.ubntsu-29__img img {
    display: block;
    width: 100%;
}

.ubntsu-29__text {
    width: 40%;
}

.ubntsu-29__logo {
    width: 220px;
    margin: 0 0 20px;
}

.ubntsu-29__logo img {
    display: block;
    width: 100%;
}

.ubntsu-29__model {
    margin: 0 0 40px;
    font-size: 24px;
    color: #319ad5;
}

.ubntsu-29__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px 0 0;
}

.ubntsu-29__feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-29__feature-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}

.ubntsu-29__feature:nth-child(4)
.ubntsu-29__feature-img img,
.ubntsu-29__feature:nth-child(5)
.ubntsu-29__feature-img img,
.ubntsu-29__feature:nth-child(6)
.ubntsu-29__feature-img img {
    width: 90%;
    margin: 0 0 0 3px;
}

.ubntsu-29__feature-img img {
    display: block;
    width: 100%;
}

.ubntsu-29__feature-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #e1e1e1;
}

.ubntsu-29__feature-desc {
    margin: 0;
    color: #fff;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .ubntsu-29__wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .ubntsu-29__title {
        font-size: 24px;
    }

    .ubntsu-29__img {
        width: 80%;
    }

    .ubntsu-29__text {
        width: 100%;
    }

    .ubntsu-29__logo {
        margin: 0 auto 20px;
    }

    .ubntsu-29__model {
        margin: 0 0 50px;
        text-align: center;
    }

    .ubntsu-29__features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .ubntsu-29 {
        padding: 20px 0;
    }

    .ubntsu-29__img {
        width: 100%;
    }

    .ubntsu-29__features {
        grid-template-columns: 1fr;
    }
}

/* ubntsu-30 */

.ubntsu-30 {
    padding: 40px 0;
}

.ubntsu-30 img {
    display: block;
    width: 100%;
}

.ubntsu-30__title {
    margin: 0 0 40px;
    padding: 0 10px 0;
    font-size: 28px;
    text-align: center;
    color: #fff;
}

.ubntsu-30__apps {
    margin: 0 0 40px;
}

.ubntsu-30__app:nth-child(1) {
    margin: 0 0 30px;
}

.ubntsu-30__app-logo {
    width: 125px;
    margin: 0 auto 15px;
}

.ubntsu-30__app:nth-child(2) .ubntsu-30__app-logo {
    width: 165px;
}

.ubntsu-30__links {
    display: flex;
    gap: 10px;
    width: 295px;
    margin: 0 auto;
}

.ubntsu-30__link {
    transition: 150ms ease;
}

.ubntsu-30__link:nth-child(1) {
    width: 47.1%;
    border-radius: 8px;
}

.ubntsu-30__link:nth-child(2) {
    width: 52.9%;
    border-radius: 6px;
}

.ubntsu-30__link:hover {
    box-shadow: 0 0 0 1px #fff;
}

.ubntsu-30__img {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ubntsu-30__title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .ubntsu-30__app-logo {
        width: 105px;
    }

    .ubntsu-30__app:nth-child(2) .ubntsu-30__app-logo {
        width: 145px;
    }

    .ubntsu-30__links {
        width: 275px;
    }

    .ubntsu-30__img {
        width: 100%;
    }
}

/* ubntsu-31 */

.ubntsu-31 {
    padding: 40px 0;
}

.ubntsu-31 img {
    display: block;
    width: 100%;
}

.ubntsu-31__desc {
    width: 70%;
    margin: 0 auto 40px;
    padding: 0 10px 0;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    color: #bcbcbe;
}

.ubntsu-31__img {
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ubntsu-31 {
        padding: 20px 0;
    }

    .ubntsu-31__desc {
        width: 100%;
        font-size: 18px;
    }
}

/* ubntsu-32 */

.ubntsu-32 {
    padding: 40px 0;
}

.ubntsu-32 img {
    display: block;
    width: 100%;
}

.ubntsu-32 .ubntsu-container {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
}

.ubntsu-32__features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    width: 30%;
    padding: 25px 0;
}

.ubntsu-32__feature-wrapp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}

.ubntsu-32__feature-img {
    flex-shrink: 0;
    width: 45px;
}

.ubntsu-32__feature-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
}

.ubntsu-32__feature-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: #909193;
}

.ubntsu-32__video {
    align-self: center;
    width: 40%;
    transform: scale(1.7);
}

.ubntsu-32__video video {
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .ubntsu-32__features {
        padding: 10px 0;
    }

    .ubntsu-32__feature-img {
        width: 35px;
    }

    .ubntsu-32__video {
        transform: scale(1.8);
    }
}

@media (max-width: 768px) {
    .ubntsu-32 .ubntsu-container {
        flex-direction: column;
        gap: 20px;
    }

    .ubntsu-32__features {
        width: 100%;
        padding: 0;
        flex-direction: row;
    }

    .ubntsu-32__feature {
        width: 50%;
    }

    .ubntsu-32__video {
        width: 100%;
        transform: scale(1.2);
    }
}

@media (max-width: 576px) {
    .ubntsu-32__features {
        flex-direction: column;
    }

    .ubntsu-32__feature {
        width: 100%;
    }

    .ubntsu-32__feature-wrapp {
        width: 260px;
        margin: 0 auto 20px;
    }

    .ubntsu-32__feature-title-br {
        display: none;
    }

    .ubntsu-32__feature-desc {
        text-align: center;
    }
}

/* ubntsu-33 */

.ubntsu-33 {
    padding: 40px 0;
}

.ubntsu-33__features {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
    gap: 30px 20px;
    width: 65%;
    margin: 0 auto;
}

.ubntsu-33__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ubntsu-33__feature:last-child {
    grid-column: 1/3;
}

.ubntsu-33--a .ubntsu-33__feature:last-child {
    grid-column: auto;
}

.ubntsu-33__feature-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
    background: radial-gradient(#fff 70%, rgba(255, 255, 255, 0) 70%);
}

.ubntsu-33__feature-img img {
    display: block;
    width: 90%;
}

.ubntsu-33__feature-text {
    text-align: center;
}

.ubntsu-33__feature-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.ubntsu-33__feature-desc {
    margin: 0;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #c9c9c9;
}

@media (max-width: 992px) {
    .ubntsu-33__features {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .ubntsu-33__features {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ubntsu-33__features {
        grid-template: auto / 1fr;
    }

    .ubntsu-33__feature:last-child {
        grid-column: auto;
    }

    .ubntsu-33__feature-title,
    .ubntsu-33__feature-desc {
        font-size: 12px;
    }
}

/* ubntsu-34 */

.ubntsu-34 {
    padding: 40px 0;
}

.ubntsu-34 img {
    display: block;
    width: 100%;
}

.ubntsu-34__title,
.ubntsu-34__desc {
    max-width: 800px;
    padding: 0 10px;
    text-align: center;
}

.ubntsu-34__title {
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.ubntsu-34__desc {
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-34__wrapper {
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-34__video {
    width: 60%;
}

.ubntsu-34__video video {
    display: block;
    width: 100%;
}

.ubntsu-34__apps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 40%;
    padding: 0 20px 0 0;
}

.ubntsu-34__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ubntsu-34__logo-img {
    width: 120px;
}

.ubntsu-34__logo-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #141414;
}

.ubntsu-34__apps-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #6c6c6c;
}

.ubntsu-34__download-text {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #141414;
}

.ubntsu-34__links {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.ubntsu-34__link:hover {
    transform: scale(1.03);
    transition: 100ms ease-in-out;
}

@media (max-width: 768px) {
    .ubntsu-28__title {
        font-size: 24px;
    }

    .ubntsu-28__desc {
        font-size: 16px;
    }

    .ubntsu-34__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ubntsu-34__video {
        width: 100%;
    }

    .ubntsu-34__apps {
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .ubntsu-34__logo {
        flex-direction: column;
    }

    .ubntsu-34__logo-img {
        width: 65px;
    }

    .ubntsu-34__logo-text {
        text-align: center;
    }

    .ubntsu-34__apps-text {
        text-align: center;
    }

    .ubntsu-34__download-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ubntsu-34__logo-text {
        font-size: 16px;
    }

    .ubntsu-34__apps-text {
        font-size: 16px;
    }
}

/* ubntsu-35 */

.ubntsu-35 {
    padding: 40px 0;
}

.ubntsu-35__title,
.ubntsu-35__desc {
    max-width: 800px;
    padding: 0 10px;
    text-align: center;
}

.ubntsu-35__title {
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.ubntsu-35__desc {
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-35 .ubntsu-tabs__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    margin: 0 auto 20px;
    padding: 0 10px;
}

.ubntsu-35 .ubntsu-tabs__button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #fff;
    background: none;
    border: none;
    opacity: 0.5;
    cursor: pointer;
    transition: 100ms ease-in-out;
}

.ubntsu-35 .ubntsu-tabs__button--on {
    opacity: 1;
}

.ubntsu-35 .ubntsu-tabs__button:hover {
    opacity: 1;
}

.ubntsu-35 .ubntsu-tabs__button-img {
    flex-shrink: 0;
    width: 30px;
}

.ubntsu-35 .ubntsu-tabs__button-img img {
    display: block;
    width: 100%;
}

.ubntsu-tabs__button-br {
    display: none;
}

.ubntsu-35__video {
    margin: 0 0 15px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-35__video video {
    display: block;
    width: 100%;
}

.ubntsu-35__inf {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .ubntsu-35__title {
        font-size: 24px;
    }

    .ubntsu-35__desc {
        font-size: 16px;
    }

    .ubntsu-35 .ubntsu-tabs__buttons {
        width: 100%;
    }

    .ubntsu-35__inf {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ubntsu-tabs__button-br {
        display: inline;
    }
}

/* ubntsu-36 */

.ubntsu-36 {
    padding: 40px 0;
}

.ubntsu-36 img {
    display: block;
    width: 100%;
}

.ubntsu-36__title,
.ubntsu-36__desc {
    max-width: 800px;
    padding: 0 10px;
    text-align: center;
}

.ubntsu-36__title {
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.ubntsu-36--1 .ubntsu-36__title {
    margin: 0 auto 5px;
}

.ubntsu-36__desc {
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-36__model {
    margin: 0 auto 20px;
    padding: 0 10px;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

.ubntsu-36__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    margin: 0 auto 40px;
    padding: 0 10px;
}

.ubntsu-36__feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.7px;
    color: #fff;
}

.ubntsu-36__feature-text {
    margin: 0;
}

.ubntsu-36__feature-img {
    flex-shrink: 0;
    width: 30px;
}

.ubntsu-36__20x-60x {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
    padding: 40px 30px;
    background: #000;
    border-radius: 15px;
}

.ubntsu-36__20x-60x-or {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    background: #ececec;
    border-radius: 50%;
}

.ubntsu-36__video {
    margin: 0 0 15px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-36__video video {
    display: block;
    width: 100%;
}

.ubntsu-36__inf {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .ubntsu-36__title {
        font-size: 24px;
    }

    .ubntsu-36__desc {
        font-size: 16px;
    }

    .ubntsu-36__features {
        width: 100%;
    }

    .ubntsu-36__20x-60x-or {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

    .ubntsu-36__inf {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ubntsu-36__20x-60x {
        flex-direction: column;
        gap: 0;
    }

    .ubntsu-36__20x-60x-img:first-child {
        margin: 0 0 20px;
    }

    .ubntsu-36 br {
        display: none;
    }
}

/* ubntsu-37 */

.ubntsu-37 {
    padding: 40px 0;
}

.ubntsu-37__wrapper {
    display: grid;
    grid-template: auto / repeat(6, 1fr);
    gap: 20px;
}

.ubntsu-37__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ubntsu-37__item-img {
    width: 60px;
    margin: 0 0 20px;
}

.ubntsu-37__item-img img {
    display: block;
    width: 100%;
}

.ubntsu-37__item-text {
    text-align: center;
}

.ubntsu-37__item-text:first-of-type {
    margin: 0 0 10px;
    font-size: 16px;
    color: #fff;
}

.ubntsu-37__item-text:last-of-type {
    margin: 0;
    font-size: 14px;
    color: #818181;
}

@media (max-width: 992px) {
    .ubntsu-37__wrapper {
        grid-template: auto / repeat(3, 1fr);
        gap: 35px 20px;
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ubntsu-37__wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .ubntsu-37__wrapper {
        grid-template: auto / repeat(2, 1fr);
    }

    .ubntsu-37__item-text:first-of-type {
        font-size: 14px;
    }

    .ubntsu-37__item-text:last-of-type {
        font-size: 12px;
    }
}

/* ubntsu-38 */

.ubntsu-38 {
    padding: 40px 0;
}

.ubntsu-38__wrapper {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-38__text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translate(0, -50%);
    width: 40%;
}

.ubntsu-38__img {
    width: 100px;
    margin: 0 0 20px;
}

.ubntsu-38__img img {
    display: block;
    width: 100%;
}

.ubntsu-38__text-1 {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 500;
    color: #000;
}

.ubntsu-38__text-2 {
    margin: 0;
    font-size: 18px;
    color: #494949;
}

.ubntsu-38 br {
    display: none;
}

.ubntsu-38__video {
    width: 100%;
}

.ubntsu-38__video video {
    display: block;
    width: 100%;
    margin: 0 0 0 4%;
}

@media (max-width: 992px) {
    .ubntsu-38__img {
        width: 80px;
    }

    .ubntsu-38__text-1 {
        font-size: 28px;
    }

    .ubntsu-38__text-2 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ubntsu-38__wrapper {
        padding: 40px 0;
    }

    .ubntsu-38__text {
        position: static;
        top: auto;
        left: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translate(0, 0);
        width: 100%;
        margin: 0 0 40px;
    }

    .ubntsu-38__text-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0 10px;
    }

    .ubntsu-38 br {
        display: inline;
    }

    .ubntsu-38__text-2 {
        padding: 0 20px;
        text-align: center;
    }

    .ubntsu-38__video {
        transform: scale(1.2);
    }

    .ubntsu-38__video video {
        margin: 0 0 0 -18%;
    }
}

@media (max-width: 576px) {
    .ubntsu-38__img {
        width: 60px;
    }

    .ubntsu-38__text-1 {
        font-size: 24px;
    }

    .ubntsu-38__text-2 {
        font-size: 14px;
    }
}

/* ubntsu-39 */

.ubntsu-39 {
    padding: 40px 0;
}

.ubntsu-39__wrapper {
    display: flex;
    align-items: center;
    background: #003654;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-39--reverse .ubntsu-39__wrapper {
    flex-direction: row-reverse;
}

.ubntsu-39__text {
    padding: 0 20px 0 0;
    width: 40%;
    line-height: 1.5;
    color: #fff;
}

.ubntsu-39--reverse .ubntsu-39__text {
    padding: 0 0 0 20px;
    text-align: right;
}

.ubntsu-39__text-1 {
    margin: 0 0 20px;
    font-size: 30px;
}

.ubntsu-39__text-2 {
    margin: 0;
    font-size: 20px;
    opacity: 0.7;
}

.ubntsu-39__video {
    position: relative;
    display: flex;
    align-items: center;
    width: 60%;
    max-height: 369px;
    overflow: hidden;
}

.ubntsu-39__video::before,
.ubntsu-39__video::after {
    content: '';
    position: absolute;
    top: 0;
    right: 9%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 54, 84, 0), #003654);
}

.ubntsu-39__video::after {
    display: none;
    right: auto;
    left: 0;
    width: 5%;
    transform: scale(-1, 1);
}

.ubntsu-39--reverse .ubntsu-39__video::before {
    left: 9%;
    background: linear-gradient(90deg, #003654, rgba(0, 54, 84, 0));
}

.ubntsu-39--reverse .ubntsu-39__video::after {
    left: auto;
    right: 0;
    transform: scale(1, 1);
}

.ubntsu-39__video video {
    width: 100%;
    margin: 0 0 0 -10%;
}

.ubntsu-39--reverse .ubntsu-39__video video {
    margin: 0 0 0 10%;
}

@media (max-width: 768px) {
    .ubntsu-39__wrapper,
    .ubntsu-39--reverse .ubntsu-39__wrapper {
        padding: 40px 0;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .ubntsu-39__text,
    .ubntsu-39--reverse .ubntsu-39__text {
        width: auto;
        padding: 0 20px;
        text-align: center;
    }

    .ubntsu-39__text-1 {
        font-size: 28px;
    }

    .ubntsu-39__text-2 {
        font-size: 16px;
    }

    .ubntsu-39__video {
        width: 80%;
    }

    .ubntsu-39__video video,
    .ubntsu-39--reverse .ubntsu-39__video video {
        margin: 0;
    }

    .ubntsu-39__video::before {
        right: 0;
    }

    .ubntsu-39--reverse .ubntsu-39__video::before {
        left: 0;
    }

    .ubntsu-39__video::after,
    .ubntsu-39--reverse .ubntsu-39__video::after {
        display: block;
    }
}

@media (max-width: 576px) {
    .ubntsu-39__text,
    .ubntsu-39--reverse .ubntsu-39__text {
        padding: 0 10px;
    }
}

/* ubntsu-40 */

.ubntsu-40 {
    padding: 40px 0;
}

.ubntsu-40__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ubntsu-40--reverse .ubntsu-40__wrapper {
    flex-direction: row-reverse;
}

.ubntsu-40__video {
    display: flex;
    align-items: center;
    width: 50%;
    max-height: 290px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-40__video video {
    width: 100%;
}

.ubntsu-40__text {
    width: 50%;
    padding: 0 20px 0 0;
    line-height: 1.5;
    color: #fff;
}

.ubntsu-40--reverse .ubntsu-40__text {
    text-align: right;
}

.ubntsu-40__text-1 {
    margin: 0 0 20px;
    font-size: 30px;
}

.ubntsu-40__text-2 {
    margin: 0;
    font-size: 20px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .ubntsu-40__wrapper,
    .ubntsu-40--reverse .ubntsu-40__wrapper {
        flex-direction: column-reverse;
    }

    .ubntsu-40__video {
        width: 100%;
        max-height: 380px;
    }

    .ubntsu-40__text,
    .ubntsu-40--reverse .ubntsu-40__text {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .ubntsu-40__text-1 {
        font-size: 28px;
    }

    .ubntsu-40__text-2 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ubntsu-40__text,
    .ubntsu-40--reverse .ubntsu-40__text {
        padding: 0 10px;
    }
}

/* ubntsu-41 */

.ubntsu-41 {
    padding: 40px 0;
}

.ubntsu-41 img,
.ubntsu-41 video {
    display: block;
    width: 100%;
}

.ubntsu-41__title,
.ubntsu-41__desc {
    max-width: 800px;
    padding: 0 10px;
    text-align: center;
}

.ubntsu-41__title {
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.ubntsu-41__desc {
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.3;
    color: #bcbcbe;
}

.ubntsu-41__wrapper {
    position: relative;
    padding: 0 0 30px;
}

.ubntsu-41__center {
    position: relative;
    z-index: 1;
    left: 50%;
    width: 75%;
    transform: translate(-50%, 0);
}

.ubntsu-41__center .ubntsu-41__center-border {
    position: absolute;
    top: -3%;
    left: -1.5%;
    width: 103%;
}

.ubntsu-41__left {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 60%;
}

.ubntsu-41__left .ubntsu-41__left-border {
    position: absolute;
    top: -2%;
    left: -1.5%;
    width: 102%;
}

.ubntsu-41__right {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 60%;
}

.ubntsu-41__right .ubntsu-41__right-border {
    position: absolute;
    top: -2%;
    right: -1.5%;
    width: 102%;
}

.ubntsu-41__phone {
    position: absolute;
    left: 5.7%;
    bottom: 10px;
    width: 13%;
    z-index: 2;
}

.ubntsu-41__phone video {
    width: 97%;
}

.ubntsu-41__phone-border {
    position: absolute;
    top: -3%;
    left: -7%;
    width: 111%;
}

@media (max-width: 768px) {
    .ubntsu-41__title {
        font-size: 24px;
    }

    .ubntsu-41__desc {
        font-size: 16px;
    }
}

/* ubntsu-42 */

.ubntsu-42 {
    padding: 40px 0;
}

.ubntsu-42 img {
    display: block;
    width: 100%;
}

.ubntsu-42__title,
.ubntsu-42__desc {
    max-width: 800px;
    padding: 0 10px;
    text-align: center;
}

.ubntsu-42__title {
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
}

.ubntsu-42__desc {
    margin: 0 auto 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #bcbcbe;
    opacity: 0.5;
}

.ubntsu-42 .ubntsu-tabs__buttons {
    display: grid;
    grid-template: auto / repeat(4, 1fr);
    gap: 20px;
    max-width: 780px;
    margin: 0 auto 20px;
}

.ubntsu-42 .ubntsu-tabs__button {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #007AFF;
    background: none;
    border: none;
    cursor: pointer;
    filter: grayscale(100%);
    transition: 200ms ease-in-out;
}

.ubntsu-42 .ubntsu-tabs__button-img {
    flex-shrink: 0;
}

.ubntsu-42 .ubntsu-tabs__button:hover,
.ubntsu-42 .ubntsu-tabs__button--on {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .ubntsu-42 .ubntsu-tabs__buttons {
        grid-template: auto / repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .ubntsu-42 .ubntsu-tabs__buttons {
        max-width: 320px;
    }

    .ubntsu-42 .ubntsu-tabs__button {
        font-size: 14px;
    }

    .ubntsu-42 .ubntsu-tabs__button-img {
        width: 70px;
    }

    .ubntsu-42__title {
        font-size: 26px;
    }

    .ubntsu-42__desc {
        font-size: 14px;
    }
}

/* ubntsu-43 */

.ubntsu-43 {
    padding: 40px 0;
}

.ubntsu-43__img {
    width: 20%;
    margin: 0 auto;
}

.ubntsu-43__img img {
    display: block;
    width: 100%;
}

.ubntsu-43 .swiper-wrapper {
    padding: 0 0 7%;
}

.ubntsu-43 .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.ubntsu-43 .swiper-pagination-bullet:nth-child(1) {
    background-image: url(http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/uvc-g3-flex-swiper-pagination-1.png);
}

.ubntsu-43 .swiper-pagination-bullet:nth-child(2) {
    background-image: url(http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/uvc-g3-flex-swiper-pagination-2.png);
}

.ubntsu-43 .swiper-pagination-bullet:nth-child(3) {
    background-image: url(http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/uvc-g3-flex-swiper-pagination-3.png);
}

.ubntsu-43 .swiper-pagination-bullet:nth-child(4) {
    background-image: url(http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/uvc-g3-flex-swiper-pagination-4.png);
}

.ubntsu-43 .swiper-pagination-bullet:nth-child(5) {
    background-image: url(http://90.156.225.59/bitrix/templates/ubnt/uploads/description-img/uvc-g3-flex-swiper-pagination-5.png);
}

.ubntsu-43 .swiper-button-prev,
.ubntsu-43 .swiper-button-next {
    width: 90px;
    height: 50px;
    background: #11181c;
    border-radius: 28px;
}

.ubntsu-43 .swiper-button-prev {
    left: 15%;
}

.ubntsu-43 .swiper-button-next {
    right: 15%;
}

.ubntsu-43 .swiper-button-prev::after,
.ubntsu-43 .swiper-button-next::after {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #adadad;
}

.ubntsu-43 .swiper-button-prev::after {
    margin: 0 0 0 -5px;
}

.ubntsu-43 .swiper-button-next::after {
    margin: 0 -5px 0 0;
}

@media (max-width: 992px) {
    .ubntsu-43__img {
        width: 25px;
    }

    .ubntsu-43 .swiper-wrapper {
        padding: 0 0 10%;
    }
}

@media (max-width: 768px) {
    .ubntsu-43__img {
        width: 35%;
    }

    .ubntsu-43 .swiper-wrapper {
        padding: 0 0 15%;
    }

    .ubntsu-43 .swiper-button-prev {
        left: 5%;
    }

    .ubntsu-43 .swiper-button-next {
        right: 5%;
    }
}

@media (max-width: 576px) {
    .ubntsu-43 .swiper-wrapper {
        padding: 0 0 25%;
    }

    .ubntsu-43 .swiper-button-prev {
        left: 0;
    }

    .ubntsu-43 .swiper-button-next {
        right: 0;
    }
}

/* ubntsu-44 */

.ubntsu-44 {
    padding: 40px 0;
}

.ubntsu-44 .ubntsu-container {
    padding: 0;
}

@media (max-width: 1268px) {
    .ubntsu-44 .ubntsu-container {
        overflow-x: scroll;
    }
}

.ubntsu-44__main-wrapper {
    width: 1268px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-44__btns-wrapper {
    display: flex;
}

.ubntsu-44__btns {
    position: relative;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding: 80px 25px 40px;
}

.ubntsu-44__btns:nth-child(1) {
    width: 65%;
    border-radius: 0 40px 0 0;
}

.ubntsu-44__btns:nth-child(2) {
    width: 35%;
    border-radius: 40px 0 0 0;
}

.ubntsu-44__btns.ubntsu-44-active {
    background: #282A2C;
}

.ubntsu-44__btns-title {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 0;
    font-size: 18px;
    color: #4f4f4f;
}

.ubntsu-44-active
.ubntsu-44__btns-title {
    color: #fff;
}

.ubntsu-44__btns.ubntsu-44-active g {
    fill: #fff;
}

.ubntsu-44__btns.ubntsu-44-active
.ubntsu-44__btn--pipe path {
    fill: #fff;
    stroke: #fff;
}

.ubntsu-44__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.ubntsu-44__btn-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    transform: scale(1.2);
}

.ubntsu-44__btn--ceiling
.ubntsu-44__btn-img {
    transform: scale(1.3);
}

.ubntsu-44__btn.ubntsu-44-active g {
    fill: #248aff;
}

.ubntsu-44__btn.ubntsu-44-active.ubntsu-44__btn--pipe path {
    fill: #248aff;
    stroke: #248aff;
}

.ubntsu-44__btn-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #4f4f4f;
}

.ubntsu-44__btns.ubntsu-44-active
.ubntsu-44__btn-text {
    color: #fff;
}

.ubntsu-44__btn.ubntsu-44-active
.ubntsu-44__btn-text {
    color: #248aff;
}

.ubntsu-44__content {
    display: none;
    background-color: #282A2C;
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 55%;
}

.ubntsu-44__content--bg1 {
    background-image: url("/bitrix/templates/ubnt/uploads/description-img/unifi-flex-room-bg-grad.jpg");
}

.ubntsu-44__content--bg2 {
    background-image: url("/bitrix/templates/ubnt/uploads/description-img/unifi-flex-street-bg-grad.jpg");
}

.ubntsu-44__content.ubntsu-44-active {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 40px 60px;
}

.ubntsu-44__content-part {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 20px 0 0;
}

.ubntsu-44__content-img {
    flex-shrink: 0;
    width: 35%;
}

.ubntsu-44__content-img img {
    width: 100%;
}

.ubntsu-44__content-text {
    padding: 20px 0 0;
    line-height: 1.3;
    color: #fff;
}

.ubntsu-44__content-text-1 {
    margin: 0 0 30px;
    font-size: 22px;
    font-weight: 700;
}

.ubntsu-44__content-text-2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.ubntsu-44__content-text-2 span {
    display: block;
    margin: 20px 0 0;
    font-size: 18px;
    opacity: 0.9;
}

.ubntsu-44__content-video {
    position: relative;
    flex-shrink: 0;
    width: 30%;
}

.ubntsu-44__content-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px 5px #282A2C;
}

.ubntsu-44__content-video video {
    display: block;
    width: 100%;
}

/* ubntsu-45 */

.ubntsu-45 {
    min-width: 360px;
    padding: 40px 0;
}

.ubntsu-45__video {
    margin: 0 0 20px;
}

.ubntsu-45__imgs {
    display: flex;
    gap: 20px;
}

.ubntsu-45__video,
.ubntsu-45__img {
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-45__img:nth-child(1) {
    width: 35%;
}

.ubntsu-45__img:nth-child(2) {
    width: 65%;
}

.ubntsu-45__video video,
.ubntsu-45__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .ubntsu-45__img:nth-child(1) {
        width: 50%;
    }

    .ubntsu-45__img:nth-child(2) {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .ubntsu-45__video,
    .ubntsu-45__img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .ubntsu-45__imgs {
        flex-direction: column;
    }

    .ubntsu-45__video,
    .ubntsu-45__img {
        height: 250px;
    }

    .ubntsu-45__img:nth-child(1) {
        width: 100%;
    }

    .ubntsu-45__img:nth-child(2) {
        width: 100%;
    }
}

/* ubntsu-46 */

.ubntsu-46 {
    min-width: 360px;
    padding: 40px 0;
}

.ubntsu-46__imgs {
    display: flex;
    gap: 20px;
}

.ubntsu-46__imgs:nth-child(1) {
    flex-direction: row-reverse;
    margin: 0 0 20px;
}

.ubntsu-46__img {
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
}

.ubntsu-46__img:nth-child(1) {
    width: 35%;
}

.ubntsu-46__img:nth-child(2) {
    width: 65%;
}

.ubntsu-46__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .ubntsu-46__img:nth-child(1) {
        width: 50%;
    }

    .ubntsu-46__img:nth-child(2) {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .ubntsu-46__img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .ubntsu-46__imgs,
    .ubntsu-46__imgs:nth-child(1) {
        flex-direction: column;
    }

    .ubntsu-46__img {
        height: 250px;
    }

    .ubntsu-46__img:nth-child(1) {
        width: 100%;
    }

    .ubntsu-46__img:nth-child(2) {
        width: 100%;
    }
}

/* compare-table */

:root {
  --layout-2-prop: 33.3%;
  --layout-2-data: 66.6%;
  --layout-2-cell: 50%;
  --layout-3-prop: 25%;
  --layout-3-data: 75%;
  --layout-3-cell: 33.3%;
  --layout-4-prop: 20%;
  --layout-4-data: 80%;
  --layout-4-cell: 25%;
  --layout-5-prop: 16.66%;
  --layout-5-data: 83.34%;
  --layout-5-cell: 20%;
}

.compare-table {
  position: relative;
  margin: 0 0 20px;
  color: #afafaf;
}

.compare-table *,
.compare-table *::before,
.compare-table *::after {
  box-sizing: border-box;
  font-family: sans-serif;
}

.compare-table__wrapper {
  overflow: hidden;
}

.compare-table__img img {
  display: block;
  width: 100%;
}

.compare-table__head {
  position: sticky;
  z-index: 20;
  background: #1d1f25;
}

.compare-table__head::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 10px;
  width: 100%;
  background: linear-gradient(180deg, rgba(225, 225, 225, 0.1), transparent);
  opacity: 0;
  transition: 200ms ease-in-out;
}

.compare-table__head--shadow::before {
  opacity: 1;
}

.compare-table__body {
  display: flex;
}

.compare-table__properties {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #1d1f25;
  transition: 200ms ease-in-out;
}

.compare-table__properties::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  height: 100%;
  width: 10px;
  background: linear-gradient(90deg,rgba(225, 225, 225, 0.1), transparent);
  opacity: 0;
  transition: 200ms ease-in-out;
  z-index: 30;
}

.compare-table__properties--shadow {
  z-index: 30;
}

.compare-table__properties--shadow::before {
  opacity: 1;
}

.compare-table__properties-head {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: transparent;
  background: #1d1f25;
}

.compare-table__data {
  margin: 0 0 0 auto;
}

.compare-table__scroll-line--head {
  transition: 270ms ease-in-out;
}

.compare-table__scroll-line--series,
.compare-table__scroll-line--data {
  transition: 300ms ease-in-out;
}

.compare-table__arrow {
  position: absolute;
  top: 35%;
  z-index: 30;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8) url("/upload/images/compare-table/arrowRight.6124799f.png") no-repeat 58% 50% / 30%;
  border: none;
  border-radius: 50%;
  box-shadow: rgba(225, 225, 225, 0.25) 0px 0px 10px 0px;
  transition: 20ms ease-in-out;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.compare-table__arrow--left {
  transform: translate(0, -50%) rotate(-180deg);
}

.compare-table__arrow--right {
  right: 10px;
  transform: translate(0, -50%);
}

.compare-table__arrow--hidden {
  display: none;
}

.compare-table__row {
  display: flex;
}

.compare-table__cell {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 5px 10px;
  height: 80px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

div.compare-table__properties div.compare-table__cell {
  width: 100%;
  justify-content: flex-start;
  font-weight: 700;
  text-align: left;
}

div.compare-table__properties div.compare-table__cell,
div.compare-table__data div.compare-table__cell {
  border-bottom: 1px solid white;
}

div.compare-table__data div.compare-table__img {
  width: 16px;
}

.compare-table__cell--photo {
  height: 160px;
}

.compare-table__cell--photo .compare-table__img {
  width: 90%;
}

.compare-table__cell--title {
  display: block;
  height: 90px;
  padding: 10px 5px;
}

.compare-table__cell--title a {
  display: block;
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: #006fff;
  text-decoration: none;
  transition: 200ms ease-in-out;
}

.compare-table__cell--title a:hover {
  opacity: 0.8;
}

.compare-table__cell--title p {
  max-width: 90%;
  margin: 0 auto;
  font-weight: 400;
  color: white;
}

.compare-table__properties-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.compare-table__properties-inner span {
  font-weight: 700;
  text-align: left;
  color: white;
}

.compare-table__properties-inner .compare-table__img {
  width: auto;
  margin: 0 10px 0 0;
}

.compare-table__properties-inner .compare-table__img img {
  width: auto;
}

.compare-table__cell--series {
  height: 80px;
  padding: 20px 5px 0;
  background: linear-gradient(0deg, #1d1f25 0%, #1d1f25 10%, transparent 30%);
}

.compare-table__series-wrapper {
  position: relative;
  z-index: -10;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  border: 1px dashed white;
  border-radius: 5px;
}

.compare-table__series-logo {
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 0 10px;
  transform: translate(-50%, 0);
  background: #1d1f25;
}

.compare-table__series-name {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.compare-table--3 .compare-table__head {
  padding: 0 0 0 var(--layout-3-prop);
}
.compare-table--3 .compare-table__properties {
  width: var(--layout-3-prop);
}
.compare-table--3 .compare-table__arrow--left {
  left: calc(var(--layout-3-prop) + 10px);
}
.compare-table--3 .compare-table__data {
  width: var(--layout-3-data);
}
.compare-table--3 .compare-table__cell {
  width: var(--layout-3-cell);
}
.compare-table--4 .compare-table__head {
  padding: 0 0 0 var(--layout-4-prop);
}
.compare-table--4 .compare-table__properties {
  width: var(--layout-4-prop);
}
.compare-table--4 .compare-table__arrow--left {
  left: calc(var(--layout-4-prop) + 10px);
}
.compare-table--4 .compare-table__data {
  width: var(--layout-4-data);
}
.compare-table--4 .compare-table__cell {
  width: var(--layout-4-cell);
}
.compare-table--5 .compare-table__head {
  padding: 0 0 0 var(--layout-5-prop);
}
.compare-table--5 .compare-table__properties {
  width: var(--layout-5-prop);
}
.compare-table--5 .compare-table__arrow--left {
  left: calc(var(--layout-5-prop) + 10px);
}
.compare-table--5 .compare-table__data {
  width: var(--layout-5-data);
}
.compare-table--5 .compare-table__cell {
  width: var(--layout-5-cell);
}

@media (max-width: 992px) {
  .compare-table--3 .compare-table__head {
    padding: 0 0 0 var(--layout-2-prop);
  }
  .compare-table--3 .compare-table__properties {
    width: var(--layout-2-prop);
  }
  .compare-table--3 .compare-table__arrow--left {
    left: calc(var(--layout-2-prop) + 10px);
  }
  .compare-table--3 .compare-table__data {
    width: var(--layout-2-data);
  }
  .compare-table--3 .compare-table__cell {
    width: var(--layout-2-cell);
  }
  .compare-table--4 .compare-table__head {
    padding: 0 0 0 var(--layout-3-prop);
  }
  .compare-table--4 .compare-table__properties {
    width: var(--layout-3-prop);
  }
  .compare-table--4 .compare-table__arrow--left {
    left: calc(var(--layout-3-prop) + 10px);
  }
  .compare-table--4 .compare-table__data {
    width: var(--layout-3-data);
  }
  .compare-table--4 .compare-table__cell {
    width: var(--layout-3-cell);
  }
  .compare-table--5 .compare-table__head {
    padding: 0 0 0 var(--layout-4-prop);
  }
  .compare-table--5 .compare-table__properties {
    width: var(--layout-4-prop);
  }
  .compare-table--5 .compare-table__arrow--left {
    left: calc(var(--layout-4-prop) + 10px);
  }
  .compare-table--5 .compare-table__data {
    width: var(--layout-4-data);
  }
  .compare-table--5 .compare-table__cell {
    width: var(--layout-4-cell);
  }
}

@media (max-width: 768px) {
  .compare-table--4 .compare-table__head {
    padding: 0 0 0 var(--layout-2-prop);
  }
  .compare-table--4 .compare-table__properties {
    width: var(--layout-2-prop);
  }
  .compare-table--4 .compare-table__arrow--left {
    left: calc(var(--layout-2-prop) + 10px);
  }
  .compare-table--4 .compare-table__data {
    width: var(--layout-2-data);
  }
  .compare-table--4 .compare-table__cell {
    width: var(--layout-2-cell);
  }
  .compare-table--5 .compare-table__head {
    padding: 0 0 0 var(--layout-3-prop);
  }
  .compare-table--5 .compare-table__properties {
    width: var(--layout-3-prop);
  }
  .compare-table--5 .compare-table__arrow--left {
    left: calc(var(--layout-3-prop) + 10px);
  }
  .compare-table--5 .compare-table__data {
    width: var(--layout-3-data);
  }
  .compare-table--5 .compare-table__cell {
    width: var(--layout-3-cell);
  }
}

@media (max-width: 576px) {
  .compare-table__cell--photo .compare-table__img {
    width: 45%;
  }

  div.compare-table__properties-inner div.compare-table__img {
    width: 30px;
    margin: 0 10px 0 0;
  }

  .compare-table .compare-table__head {
    padding: 0;
  }

  .compare-table .compare-table__properties {
    display: none;
  }

  .compare-table .compare-table__data {
    width: 100%;
    margin: 0;
  }

  .compare-table .compare-table__cell {
    width: 100%;
  }

  .compare-table .compare-table__arrow--left {
    left: 10px;
  }
  
  .compare-table__data .compare-table__cell {
    justify-content: space-between;
    gap: 20px;
    text-align: right;
  }

  .compare-table__cell--title {
    padding: 10px 5px 0;
  }
}

.compare-table__title {
  margin: 40px 0 0;
}

.compare-table__title p {
  margin: 40px 0 0;
  font-size: 28px;
  text-align: center;
  color: white;
}

.compare-table__buy-property-text {
  display: none;
}

.compare-table__data .compare-table__cell--buy a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  background: #006fff;
  border-radius: 5px;
  transition: 200ms ease-in-out;
}

.compare-table__data .compare-table__cell--buy a:hover {
  opacity: 0.9;
}

@media (max-width: 576px) {
  .compare-table__data .compare-table__cell--buy {
    justify-content: center;
  }
}