html.modal-open,
body.modal-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

.section-margin {
    margin-top: 80px;
}

.only-mobile,
.only-tablet {
    display: none !important;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;

    border-radius: 0 0 80px 80px;
    min-height: 650px;
    height: calc(100vh - 100px);



}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 33.18%, rgba(0, 0, 0, 0.64) 80.48%, rgba(0, 0, 0, 0.8) 100%);

}

.video-player__video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video-player__controls {
    position: absolute;

    left: 50%;
    bottom: 40px;

    transform: translateX(-50%);

    z-index: 10;

    width: min(1056px, calc(100% - 40px));
}

.video-player__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 381px;
    margin: 0 auto;
}

.video-player__control {
    position: relative;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    color: #fff;

    background: rgba(255, 255, 255, 0.16);


    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    cursor: pointer;

    transition: background .2s ease;
}

.video-player__control:hover {
    background: rgba(255, 255, 255, 0.28);
}

.video-player__play {
    font-size: 18px;
}

.video-player__play:hover {
    background: rgba(255, 255, 255, 0.48);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.video-player__play-icon {
    display: block;

    transform: translateX(2px);
}

.video-player__pause-icon {
    display: none;

    font-size: 17px;
}


.video-player.is-playing .video-player__play-icon {
    display: none;
}

.video-player.is-playing .video-player__pause-icon {
    display: block;
}


/* Rewind / Forward */

.video-player__rewind span,
.video-player__forward span {
    font-size: 23px;
    line-height: 1;
}

.video-player__control small {
    position: absolute;

    font-family: Manrope, sans-serif;
    font-size: 9px;
    font-weight: 700;
}


/* =========================
   PROGRESS
========================= */

.video-player__progress-wrapper {
    flex: 1;

    height: 48px;

    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 18px;

    box-sizing: border-box;

    border-radius: 75px;

    background: rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* Сам progress */

.video-player__progress {
    flex: 1;

    min-width: 0;

    width: 100%;
    height: 3px;

    margin: 0;

    appearance: none;
    -webkit-appearance: none;

    background: #8c8c8c;

    border-radius: 3px;

    cursor: pointer;
}


/* Chrome / Safari */

.video-player__progress::-webkit-slider-runnable-track {
    height: 3px;

    background: #8c8c8c;

    border-radius: 3px;
}

.video-player__progress::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 11px;
    height: 11px;

    margin-top: -4px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    cursor: pointer;
}


/* Firefox */

.video-player__progress::-moz-range-track {
    height: 3px;

    background: #8c8c8c;

    border-radius: 3px;
}

.video-player__progress::-moz-range-progress {
    height: 3px;

    background: #fff;

    border-radius: 3px;
}

.video-player__progress::-moz-range-thumb {
    width: 11px;
    height: 11px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    cursor: pointer;
}

.video-player__title {
    font-size: clamp(24px, 2.5vw, 48px);
    line-height: clamp(32px, 3.5vw, 56px);
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 56px;
    max-width: 1056px;
}

/* =========================
   TIME
========================= */

.video-player__time {
    display: flex;
    align-items: center;

    gap: 3px;

    flex-shrink: 0;

    color: #fff;

    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.materials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.material-title {
    margin-bottom: 40px;
}

.material-title h2 {
    text-align: center;
    font-size: clamp(24px, 2.5vw, 48px);
    line-height: clamp(32px, 3.5vw, 56px);
    margin-bottom: 24px;
    color: #505050;
}

.material-title p {
    font-size: clamp(16px, 2.5vw, 20px);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    color: #505050;
}

.material-section {
    padding: 80px 0 80px 0;
    margin: 80px 0;
    background: #EFEFEF;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
}

.materials {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    width: 100%;
}

.materials-secondary {
    grid-template-columns: 1fr 2fr;
}

.materials__main {
    min-width: 0;
    padding: 36px;
    border-radius: 36px;
    background: #FFFFFF;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.materials__slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.materials__slider .swiper-wrapper {
    height: 100%;
}

.materials__slider .swiper-slide {
    height: 100%;
}


/* LEFT SLIDE */

.materials__slide {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;


    box-sizing: border-box;

    color: #fff;
}

.swiper-wrapper .materials__slide {
    padding: 0;
}


.materials__slide-content {
    margin-top: 0;
    height: 100%
}

.materials__slide-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 540px;
}

.materials__title {
    margin: 0 0 20px;

    font-family: Manrope, sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.materials__text {
    max-width: 650px;

    margin: 0 0 32px;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.materials__button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50px;
    background: #EFF1F6;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: 36px;
    right: 36px;
    z-index: 10;
}

.materials__main .materials__button {
    bottom: 0;
    right: 0;
}

.materials__button svg {
    width: 19.5px;
    height: 19.5px;
    fill: #505050;
}

.materials__button:hover {
    background: #1978F3;
    transition: background 0.3s ease;
}

.materials__button:hover svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}

/* RIGHT COLUMN */

.materials__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;

    min-width: 0;
}

.materials__item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 36px;
    color: #fff;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
}

.materials__item>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.materials__item>div img {
    height: 100%;
    object-fit: contain;
}

.materials__item .materials__title,
.materials__main-title h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: #505050;
}

.materials__main-title h3 {
    font-size: clamp(16px, 2.5vw, 24px);
}


/* NAVIGATION */

.materials__navigation {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 10px;
}

.materials__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #EFF1F6;
    color: #505050;
    cursor: pointer;
    transition: background 0.3s ease;

}

.materials__arrow svg {
    width: 19.5px;
    fill: #505050;

}

.materials__arrow:hover {
    background: #1978F3;
    transition: background 0.3s ease;
}

.materials__arrow:hover svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}

.materials__pagination {
    display: flex;
    gap: 6px;
}

.materials__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    margin: 0;

    background: #fff;
    opacity: .4;
}

.materials__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}


/* =========================
   MODAL
========================= */

.materials-modal {
    position: fixed;
    z-index: 1000;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.materials-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.materials-modal__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, .40);
}

.materials-modal__dialog {
    position: relative;
    z-index: 1;

    width: 90vw;
    height: fit-content;
    max-height: fit-content;

    background: #fff;
    border-radius: 36px;
    padding: 36px;

    overflow: hidden;

    transform: scale(.97);
    transition: transform .3s ease;
}

.materials-modal.is-open .materials-modal__dialog {
    transform: scale(1);
}

.materials-modal__content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;
}

.materials-modal__content::-webkit-scrollbar {
    display: none;
}


/* MODAL SECTIONS */

.materials-modal__section {
    display: none;
}

.materials-modal__section img {
    width: 100%;
    margin:  0 auto;
}
.materials-modal__section.is-active {
    display: block;
}



/* MODAL SLIDER */

.materials-modal__slider {
    position: relative;
    width: 100%;
    height: calc(90vh - 152px);
    overflow: hidden;
}

.materials-modal__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.materials-modal__slider img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.materials-modal__slider-prev,
.materials-modal__slider-next {
    position: absolute;
    z-index: 5;

    bottom: 0;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: #EFF1F6;
    color: #505050;

    cursor: pointer;

}

.materials-modal__slider-prev svg,
.materials-modal__slider-next svg {
    width: 19.5px;
    fill: #505050;
}

.materials-modal__slider-prev:hover {
    background: #1978F3;
    transition: background 0.3s ease;
}

.materials-modal__slider-next:hover {
    background: #1978F3;
    transition: background 0.3s ease;
}

.materials-modal__slider-prev:hover svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}

.materials-modal__slider-next:hover svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}


.materials-modal__slider-next {
    left: 60px;
}


/* CLOSE */

.materials-modal__close {
    position: absolute;
    z-index: 20;

    top: 20px;
    right: 20px;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: #f2f2f2;

    cursor: pointer;
}

.materials-modal__close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    background: #505050;
}

.materials-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.materials-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* LOCK BODY */

html.modal-open,
body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}


/* MOBILE */



.promo {
    width: 100%;
    padding: 36px;
    box-sizing: border-box;
    background: #1978f3;
    border-radius: 60px;
    margin-bottom: 80px;
    
}

.promo__content {
    display: flex;
    gap: 80px;
    width: 100%;
}

.promo__info,
.promo__description {
    flex: 1 1 0;
    min-width: 0;
}

/* Левая часть */

.promo__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    box-sizing: border-box;
    padding-top: 20px;
    gap: 68px;
}

.promo__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.promo__title {
    max-width: 666px;
    margin: 0;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 400;
    line-height: 1.2;
}

.promo__title strong {
    font-weight: 800;
}

.promo__button {
    padding: 16px 18px;
    border: 0;
    border-radius: 75px;
    background: #fff;
    color: #056cf2;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    cursor: pointer;

}



/* График */

.promo__pressure {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.promo__pressure-title {
    margin: 0;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 700;
    line-height: 1.4;
}

.promo__chart {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.promo__chart-row {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 88px;
}

.promo__chart-label {
    flex: 0 0 156px;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.promo__chart-bar {
    position: relative;
    flex: 1;
    height: 64px;
    border-radius: 24px;
    overflow: visible;

}

.promo__chart-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: #fff;
    display: flex;
    align-items: center;
    min-width: 114px;
}

.promo__chart-fill--profiling {
    width: 25%;
}

.promo__chart-fill--press {
    width: 100%;
    min-width: 114px;
}

.promo__chart-value {
    white-space: nowrap;
    color: #056cf2;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    position: absolute;
    right: 13px;
}

/* Правая часть */

.promo__description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    padding: 36px 32px;
    box-sizing: border-box;
    border-radius: 36px;
    background: #fff;
    gap: 56px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
}

.promo__description-text {
    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.4;
}

.promo__description-text p {
    margin-bottom: 16px;
}

.promo__description-text p sub {
    font-size: 12px;
}

.promo__source {
    color: #056cf2;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.promo__source-link {
    color: inherit;
    text-decoration: underline;
}

.promo__source-link:hover {
    color: #F34119;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* Модальное окно */

.promo-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.promo-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.promo-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
    cursor: pointer;
}

.promo-modal__dialog {
    position: relative;
    z-index: 1;

    width: 90vw;
    height: 90vh;

    box-sizing: border-box;

    border-radius: 36px;
    background: #fff;

    overflow: hidden;

    transform: translateY(30px) scale(0.97);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;

    padding: 36px;
    display: flex;
    flex-direction: column;

}

.promo-modal.is-open .promo-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.promo-modal__content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;

}

.promo-modal__body {
    padding-right: 54px;
    font-size: 20px;

}


.promo-modal__content::-webkit-scrollbar {
    display: none;
}

.promo-modal__scrollbar {
    position: fixed;

    top: 116px;
    right: 36px;
    bottom: 48px;

    width: 24px;

    border-left: 1px solid #DBDBDB;
    border-right: 1px solid #DBDBDB;

    user-select: none;
    touch-action: none;
}

.promo-modal__scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 4px;
    width: 14px;
    min-height: 50px;
    border-radius: 40px;
    background: #D9D9D9;
    cursor: grab;
    user-select: none;
    touch-action: none;
    transition: background 0.15s ease;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.promo-modal__scrollbar-thumb:hover {
    background: #045bc9;
}

.promo-modal__scrollbar-thumb:active {
    cursor: grabbing;
}

.promo-modal__body p {
    margin-bottom: 16px;
    line-height: 1.2;
    font-size: 16px;
}

.promo-modal__title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 48px;
    gap: 20px;
    margin-bottom: 32px;
}

.promo-modal__title h3 {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
}

.promo-modal__close {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #f2f2f2;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.promo-modal__close:hover {
    transform: rotate(90deg);
    background: #1978f3;
}

.promo-modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    border-radius: 2px;
    background: #505050;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.promo-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.promo-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.promo-modal__close:hover span {
    background: #ffffff;
}

/* Блокировка скролла */

body.modal-open {
    overflow: hidden;
}

/* Планшет */



.comparison {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* TITLE */

.comparison__title {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    width: 100%;
}

.comparison__heading {
    margin: 0;
    text-align: center;
    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 2.5vw, 43px);
    line-height: 120%;
    font-weight: 400;
}

.comparison__heading-bold {
    font-weight: 700;
}

.comparison__heading-value {
    color: #1978f3;
    font-size: clamp(32px, 2.5vw, 64px);
    font-weight: 700;
}

/* CONTENT */

.comparison__content {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr) 508px;

    gap: 20px;

    width: 100%;
    align-items: stretch;
}

/* CARDS */

.comparison__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    min-width: 0;
    min-height: 643px;

    padding: 24px;

    overflow: hidden;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 36px;
}

.comparison__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.comparison__card-label {
    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 500;

    opacity: 0;
}

.comparison__number {
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: rgba(0, 0, 0, 0.16);
    border-radius: 50%;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;

    backdrop-filter: blur(16px);
}

.comparison__card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;

    width: 100%;
    padding: 24px;

    background: rgba(0, 0, 0, 0.18);
    border-radius: 24px;

    backdrop-filter: blur(16px);
}

.comparison__card-title {
    width: 100%;
    margin: 0;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(19px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.2;
}

.comparison__metric {
    display: flex;
    flex-direction: column;

    width: 100%;
}

.comparison__metric-row {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
}

.comparison__value {
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(29px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
}

.comparison__badge {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6px 16px;
    gap: 6px;
    background: #fff;
    border-radius: 100px;

    font-family: Manrope, sans-serif;
    font-size: clamp(11px, 2.5vw, 14px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.comparison__badge--danger {
    color: #f34119;
}

.comparison__badge--success {
    color: #16ba4c;
}

.comparison__metric-label {
    width: 100%;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    line-height: 1.2;
}

/* INFO */

.comparison__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    min-width: 0;

    padding: 36px 32px;

    background: #eff1f6;
    border-radius: 36px;
}

.comparison__text {
    width: 100%;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.2;
}

.comparison__source {
    width: 100%;

    color: #056cf2;
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16.8px;
}

.comparison__source a {
    color: #056cf2;
    text-decoration: underline;
}

.comparison__source a:hover {
    transition: .3s;
    color: #F34119;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.door-profile {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: fit-content;
    padding: 56px 36px;

    overflow: hidden;

    background: #eff1f6;
    border-radius: 60px;
    margin-bottom: 80px;
    position: relative;
}

/*
|--------------------------------------------------------------------------
| LEFT CONTENT
|--------------------------------------------------------------------------
*/

.door-profile__content {
    flex: 1 1 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 0;
    gap: 40px;
}

.door-profile__title {
    margin: 0;
    max-width: 800px;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 2.5vw, 43px);
    font-weight: 400;
    line-height: 1.2;
}

.door-profile__title span:first-child {
    font-weight: 700;
}

.door-profile__title span:last-child {
    font-weight: 400;
}

/*
|--------------------------------------------------------------------------
| ITEMS
|--------------------------------------------------------------------------
*/

.door-profile__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
    gap: 20px;
    max-width: 793px;
}

.door-profile__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: 100%;
    padding: 20px;

    background: #fff;
    border-radius: 24px;

    cursor: pointer;

    opacity: 1;

    transition: opacity 0.3s ease;
}

.door-profile__items:hover .door-profile__item {
    opacity: 0.5;
}

.door-profile__items:hover .door-profile__item:hover,
.door-profile__items:hover .door-profile__item.is-active {
    opacity: 1;
}
.door-profile__item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Наведение на список слева */
.door-profile__items:hover .door-profile__item {
    opacity: 0.5;
}

.door-profile__items:hover .door-profile__item:hover,
.door-profile__items:hover .door-profile__item.is-active {
    opacity: 1;
}

/* Наведение на hotspot справа */
.door-profile__items.is-hotspot-hover .door-profile__item {
    opacity: 0.5;
}

.door-profile__items.is-hotspot-hover .door-profile__item.is-active {
    opacity: 1;
}

.door-profile__number {
    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: linear-gradient(315deg,
            #1781fd 0%,
            #5da7fd 100%);

    border-radius: 50%;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.door-profile__item-text {
    flex: 1 1 0;
    min-width: 0;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| VISUAL
|--------------------------------------------------------------------------
*/

.door-profile__visual {
    position: absolute;

    flex: 0 0 720px;

    width: 720px;
    height: 854px;
    right: 0;
}

/* .door-profile__image {
    position: absolute;
    left: 47px;
    top: 0;

    display: block;

    width: 729px;
    height: 854px;

    object-fit: contain;

    filter:
        drop-shadow(14px 20px 55px rgba(0, 0, 0, 0.06)) drop-shadow(58px 81px 99px rgba(0, 0, 0, 0.05)) drop-shadow(130px 182px 134px rgba(0, 0, 0, 0.03));
} */

/*
|--------------------------------------------------------------------------
| HOTSPOTS
|--------------------------------------------------------------------------
*/

.door-profile__hotspots {
    position: absolute;
    inset: 0;
}

.door-profile__hotspot {
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: linear-gradient(315deg,
            #1781fd 0%,
            #5da7fd 100%);

    opacity: 0.5;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.door-profile__hotspot:hover,
.door-profile__hotspot.is-active {
    opacity: 1;
}

/*
|--------------------------------------------------------------------------
| HOTSPOT POSITIONS
|--------------------------------------------------------------------------
*/

.door-profile__hotspot[data-id="4"] {
    left: 499px;
    top: 279px;
}

.door-profile__hotspot[data-id="2"] {
    left: 369px;
    top: 582px;
}

.door-profile__hotspot[data-id="5"] {
    left: 369px;
    top: 391px;
}

.door-profile__hotspot[data-id="9"] {
    left: 472px;
    top: 123px;
}

.door-profile__hotspot[data-id="8"] {
    left: 379px;
    top: 171px;
}

.door-profile__hotspot[data-id="1"] {
    left: 160px;
    top: 660px;
}

.door-profile__hotspot[data-id="6"] {
    left: 214px;
    top: 665px;
}

.door-profile__hotspot[data-id="3"] {
    left: 296px;
    top: 406px;
}

.door-profile__hotspot[data-id="10"] {
    left: 290px;
    top: 336px;

}

.door-profile__hotspot[data-id="7"] {
    left: 331px;
    top: 295px;
}

.door-profile__hotspot[data-id="11"] {
    left: 341px;
    top: 221px;
}

/*
|--------------------------------------------------------------------------
| SHOW MORE
|--------------------------------------------------------------------------
*/

.door-profile__show-more {
    display: none;
}



.patent-title {
    width: 100%;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.patent-title__heading {
    margin: 0;
    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 2.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
}

.patent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.patent__image {
    flex: 1 1 0;
    align-self: stretch;
    width: 0;
    min-width: 0;
    border-radius: 36px;
    outline-offset: -1px;
    object-fit: cover;
}

.patent__info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    min-width: 0;
}

.patent__description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;

    width: 100%;
    padding: 32px 30px;

    background: #eff1f6;
    border-radius: 36px;
}

.patent__text {
    align-self: stretch;
    margin: 0;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.patent__advantages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.patent__advantage {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
}

.patent__number {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #056cf2;
    border-radius: 50%;

    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.patent__advantage-text {
    flex: 1 1 0;
    margin: 0;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.patent__registry {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;

    width: 100%;
    padding: 32px;

    background: #eff1f6;
    border-radius: 36px;
}

.patent__qr {
    flex: 0 0 135px;
    width: 135px;
    height: 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 16px;
}

.patent__qr-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 114px;
    height: 114px;
}

.patent__qr-image {
    display: block;
    width: 114px;
    height: 114px;

    object-fit: contain;
}

.patent__registry-content {
    flex: 1 1 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;

    min-width: 0;
}

.patent__registry-title {
    align-self: stretch;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.patent__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 48px;
    padding: 13.75px 18px 15.75px 18.75px;

    background: #fff;
    border-radius: 75px;

    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}

.patent__link:hover {
    color: #ffffff;
    background: #056CF2;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.patent__link span {
    white-space: nowrap;
}


.support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 284px;
    padding: 36px 36px 36px 96px;
    background: #eff1f6;
    border-radius: 60px;
    gap: 40px;
    margin-bottom: 80px;
}

.support__logos {
    display: flex;
    align-items: center;
    gap: 110px;
    flex-shrink: 0;
}

.support__logo {
    display: block;
    object-fit: contain;
}

.support__logo--first {
    width: 203.92px;
    height: 158.25px;
}

.support__logo--second {
    width: 227.2px;
    height: 127.5px;
}

.support__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 48px;
    width: 736px;
    padding: 36px 32px;
    background: #fff;
    border-radius: 36px;
}

.support__text {
    align-self: stretch;
    margin: 0;
    color: #505050;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}




@media (max-width: 1500px) {
    .patent__registry {
        gap: 14px;
    }

    .patent__link {
        padding: 13.75px 14px 15.75px 14.75px;
        font-size: 12.5px;
    }
}

@media (max-width: 1440px) {
    .support {
        margin-bottom: 140px;
    }

    .material-section {

        border-radius: 48px;
        -webkit-border-radius: 48px;
        -moz-border-radius: 48px;
        -ms-border-radius: 48px;
        -o-border-radius: 48px;
    }


    .support {
        flex-direction: column;
        padding: 36px;
    }


    .support__content {
        width: 100%;
    }


    .door-profile__items {
        max-width: 55%;
    }

    .door-profile__visual {
        right: -80px;
    }
}

@media (max-width: 1400px) {
    .patent {
        flex-wrap: wrap;
    }

    .patent__image {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
    }

    .patent__info {
        flex: 0 0 100%;
        width: 100%;
    }

    .patent__link {
        padding: 13px 16px;
        font-size: 14px;
    }

    .patent__registry {
        gap: 24px;
    }
}

@media (max-width: 1350px) {
    .comparison__content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .comparison__info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1250px) {


    .materials__side {
        min-width: inherit;
    }

    .door-profile {
        gap: 32px;
        padding: 24px;
        min-height: fit-content;
    }

    .door-profile__title {
        text-align: center;
        margin: 0 auto;
    }

    .door-profile__content {
        flex: 1 1 52%;
    }


    .door-profile__image {
        left: 0;
        width: 100%;
        height: 100%;
    }

    .door-profile__hotspot {
        width: 32px;
        height: 32px;
    }

}

@media(max-width: 1150px) {
    .door-profile__item {
        padding: 20px;
    }

    .door-profile__visual {
        max-height: 644px;
        right: 0;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .door-profile__content {
        gap: 542px;
    }

    .door-profile__items {
        max-width: 100%;
    }

    .door-profile__hotspot[data-id="1"] {
        left: 160px;
        top: 480px;
    }

    .door-profile__hotspot[data-id="2"] {
        left: 369px;
        top: 422px;
    }

    .door-profile__hotspot[data-id="3"] {
        left: 296px;
        top: 306px;
    }

    .door-profile__hotspot[data-id="4"] {
        left: 499px;
        top: 229px;
    }

    .door-profile__hotspot[data-id="5"] {
        left: 369px;
        top: 321px;
    }

    .door-profile__hotspot[data-id="6"] {
        left: 214px;
        top: 485px;
    }

    .door-profile__hotspot[data-id="7"] {
        left: 331px;
        top: 225px;
    }

    .door-profile__hotspot[data-id="8"] {
        left: 369px;
        top: 141px;
    }

    .door-profile__hotspot[data-id="9"] {
        left: 472px;
        top: 93px;
    }

    .door-profile__hotspot[data-id="10"] {
        left: 290px;
        top: 246px;
    }

    .door-profile__hotspot[data-id="11"] {
        left: 321px;
        top: 171px;
    }
}

@media (max-width: 1100px) {
    .promo {
        padding: 20px 24px;
        border-radius: 36px;
        -webkit-border-radius: 36px;
        -moz-border-radius: 36px;
        -ms-border-radius: 36px;
        -o-border-radius: 36px;
    }

    .promo__content {
        flex-direction: column;
    }

    .promo__content .promo__description {
        display: none;
    }

    .promo__info {
        padding-top: 0;
    }



    .promo__description {
        min-height: 400px;
        padding: 24px;
        background-color: #EFEFEF;
        margin-top: 20px;
    }

    .only-tablet {
        display: block !important;
    }

    .door-profile {
        margin-top: 80px;
        margin-bottom: 80px;
        flex-direction: column;
        gap: 20px;
    }

    .door-profile__title {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 1000px) {
    .comparison__card {
        min-height: 560px;
    }

    .comparison__card-info {
        gap: 8px;
    }

    .comparison__badge {
        width: fit-content;
        margin-top: 16px;
    }

    .only-mobile {
        display: flex !important;
    }

    .desktop-only {
        display: none;
    }

}

@media(max-width: 850px) {
    .materials {
        grid-template-columns: 1fr;
    }

    .materials {
        grid-template-columns: 1fr;
    }

    /* .material-section {
        padding-bottom: 96px;
    } */

    .materials-secondary {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }

    .materials__main {
        height: 500px;
        padding: 20px;
        gap: 16px;
    }

    .materials-secondary .materials__side {
        order: 2;
    }

    .materials__side {
        display: flex;
        flex-direction: column;
    }

    .materials__slide,
    .materials__item {
        border-radius: 28px;
        padding: 20px;
    }

    .materials-container {
        gap: 0;
    }

    /* .material-title {
        margin-bottom: 56px;
    } */

    .materials__title {
        margin-bottom: 0;
        text-align: center;
    }

    .materials-modal {
        padding: 10px;
    }

    .materials-modal__dialog {
        width: 95vw;
        height: 90dvh;
        border-radius: 24px;
    }

    .materials-modal__slider-next {
        left: 42px;
    }

    .materials-modal__slider {
        height: 350px;
    }

    .materials__main-title h3 {
        text-align: center;
    }

    .materials__button {
        width: 32px;
        height: 32px;
        bottom: 20px;
        right: 20px;
    }

    .materials__arrow {
        width: 32px;
        height: 32px;
    }

    .materials__arrow svg {
        width: 12px;
    }

    .materials__button svg {
        width: 13px;
        height: 13px;
    }

    .materials-modal__dialog {
        padding: 24px;
        width: 100%;
        height: fit-content;
        max-width: 90vw;
        max-height: 90vh;
    }

    .materials-modal__slider-prev,
    .materials-modal__slider-next {
        width: 32px;
        height: 32px;
    }

    .materials-modal__slider-prev svg,
    .materials-modal__slider-next svg {
        width: 13px;
    }


    .promo__header {
        gap: 24px;
    }

    .promo__button {
        padding: 12px 14px;
    }

    .promo__pressure {
        gap: 20px;
    }

    .promo__chart-fill {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
    }

    .promo-modal__title {
        margin-bottom: 12px;
    }

    .promo-modal__scrollbar-thumb {
        width: 8px;
        left: 3px;
    }

    .promo-modal__scrollbar {
        width: 16px;
        top: 96px;
    }

    .promo-modal__body {
        padding-right: 34px;
    }

}

@media (max-width: 768px) {
    .support {
        margin-bottom: 96px;
    }

.material-section {
    padding: 60px 0;
}

.comparison__card {
    background-size: contain;
}

    /* .material-section {
        margin-top: 96px;
        padding-top: 48px;
    } */

    .video-player {
        border-bottom-left-radius: 36px;
        border-bottom-right-radius: 36px;
    }

    .video-player__controls {
        bottom: 20px;
    }

    .video-player__title {
        margin-bottom: 36px;
    }

    .comparison__number {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 16px;
    }

    .comparison__badge {
        margin-top: 8px;
        padding: 6px 12px;
    }

    .comparison__card-info {
        padding: 16px;
    }



    .patent {
        flex-direction: column;
    }

    .patent__image {
        flex: none;
        width: 100%;
        max-height: 540px;
        object-fit: contain;
    }

    .patent__info {
        flex: none;
        width: 100%;
    }


    .promo {
        padding: 20px;
        border-radius: 28px;
        margin-bottom: 20px;
    }

    .promo__content {
        gap: 20px;
    }



    .promo__chart-row {
        gap: 16px;
        min-height: 64px;
    }

    .promo__chart-label {
        flex: 0 0 120px;
        font-size: 14px;
    }

    .promo__chart-bar {
        height: 48px;
        border-radius: 18px;
    }

    .promo__chart-value {
        left: auto;
        right: 12px;
        color: #056cf2;
        font-size: 14px;
    }

    .promo__description {
        min-height: 0;
        padding: 28px 20px;
        border-radius: 24px;
    }


    .promo-modal {
        padding: 10px;
    }

    .promo-modal__dialog {
        width: 95vw;
        height: 90dvh;
        border-radius: 24px;
        padding: 24px;
    }

    .promo-modal__content {
        padding: 0;
    }

    .promo-modal__close {

        width: 32px;
        height: 32px;
    }

    .promo-modal__close span {
        width: 14px;
    }


    .comparison__content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .comparison__card {
        width: 100%;
        min-height: 520px;
    }

    .comparison__info {
        width: 100%;
    }

    .support {
        padding: 32px 20px 20px;
        gap: 24px;
    }

    .support__content {
        padding: 20px;
    }

    .support__text {
        font-size: 16px;
    }

    .support__logo--first,
    .support__logo--second {
        max-width: 158.75px;
        height: auto;
    }

    .support__logos {
        justify-content: space-around;
        gap: 24px;
        width: 100%;
    }

    .door-profile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: auto;
        padding: 24px;
        border-radius: 32px;
    }

    .door-profile__content {
        display: contents;
    }

    .door-profile__title {
        order: 1;
        max-width: none;
        margin-bottom: 544px;
    }



    .door-profile__items {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: relative;
        transition: .3s;
    }

    .door-profile__items:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: linear-gradient(180deg, rgba(239, 241, 246, 0) 0%, #EFF1F6 100%);
        transition: .3s;
        pointer-events: none;
    }

    .door-profile__items.is-expanded::before {
        opacity: 0;
        transition: .3s;
        pointer-events: none;
    }


    .door-profile__item {
        margin-top: 8px;
    }

    .door-profile__item:nth-child(n + 5) {
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, min-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, min-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        -moz-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, min-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        -ms-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, min-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        -o-transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, min-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    }

    .door-profile__items.is-expanded .door-profile__item:nth-child(n + 5) {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        margin-top: 8px;
        max-height: 200px;
        min-height: 72px;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .door-profile__item:hover,
    .door-profile__item.is-active {
        opacity: 1;
    }

    .door-profile__show-more {
        order: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 48px;
        border: 0;
        color: #056CF2;
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        background: none;
    }

    .door-profile__show-more.is-active {
        margin-top: 20px;
    }

    .door-profile__show-more-icon {
        transition: transform 0.3s ease;
    }

    .door-profile__show-more.is-active .door-profile__show-more-icon {
        transform: rotate(180deg);
    }

    .door-profile__hotspot {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {

    .patent__text,
    .patent__advantage-text {
        font-size: 16px;
    }

    .patent__link {
        font-size: 12.5px;
    }

    .patent__registry-title {
        font-size: 16px;
    }

    .patent__qr-wrapper {
        width: 80px;
        height: 80px;
    }

    .patent__qr {
        width: 100px;
        height: 100px;
        flex: 0 0 100px;
    }

    .patent__description {
        padding: 20px 16px;
    }

    .patent__number {
        font-size: 12px;
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .patent__registry {
        padding: 20px 16px;
    }

    .patent__registry-content {
        gap: 12px;
    }

    .patent__link {
        padding: 12px 15px;
    }

    .door-profile__title {
        margin-bottom: 340px;
    }

    .door-profile__visual {
        max-height: 344px;
        top: 80px;
    }

    .door-profile__image {
        object-fit: contain;
    }

    .door-profile__hotspot {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .door-profile__hotspot[data-id="1"] {
        left: 280px;
        top: 260px;


    }

    .door-profile__hotspot[data-id="2"] {
        left: 369px;
        top: 212px;
    }

    .door-profile__hotspot[data-id="3"] {
        left: 336px;
        top: 156px;
    }

    .door-profile__hotspot[data-id="4"] {
        left: 409px;
        top: 129px;
    }

    .door-profile__hotspot[data-id="5"] {
        left: 359px;
        top: 161px;
    }

    .door-profile__hotspot[data-id="6"] {
        left: 304px;
        top: 265px;
    }

    .door-profile__hotspot[data-id="7"] {
        left: 356px;
        top: 105px;
    }

    .door-profile__hotspot[data-id="8"] {
        left: 359px;
        top: 66px;
    }

    .door-profile__hotspot[data-id="9"] {
        left: 402px;
        top: 43px;
    }

    .door-profile__hotspot[data-id="10"] {
        left: 330px;
        top: 116px;
    }

    .door-profile__hotspot[data-id="11"] {
        left: 341px;
        top: 81px;
    }
}

@media (max-width: 480px) {
    .door-profile {
        padding: 20px;
        border-radius: 28px;
    }

    .door-profile__title {
        font-size: 28px;
    }


    .comparison__heading {
        font-size: 28px;
    }

    .comparison__card {
        min-height: 480px;
        padding: 20px;
        border-radius: 28px;
    }

    .comparison__metric-row {
        flex-wrap: wrap;
    }


    .comparison__info {
        padding: 24px;
        border-radius: 28px;
    }

}

@media (max-width: 420px) {

    .support__logo--first,
    .support__logo--second {
        max-width: 108.75px;
    }

    .support__logos {
        justify-content: space-between;
        padding: 0 20px;
    }
}

@media (max-width: 390px) {
    .video-player__control {
        width: 32px;
        height: 32px;
    }

    .video-player__progress-wrapper {
        height: 32px;
    }

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

    .patent__registry-title {
        text-align: center;
    }
}

@media (max-width: 350px) {
    .support__logos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .support__logo--first,
    .support__logo--second {
        max-width: 208.75px;
    }
}