/* ==========================================================================
   Reset and Global Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-stack);
    font-weight: 400;
    overflow-x: hidden;
}

body.activated-menu {
    overflow: hidden;
}

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
    --font-stack: "Poppins", -apple-system, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Roboto, sans-serif;
    --container-width: 100%;
    --swiper-pagination-bullet-width: 16px;
    --swiper-pagination-bullet-height: 16px;
    --swiper-theme-color: #fec12a;
    --primary-color: #fec12a;
    --text-dark: #051a3d;
    --link-color: #0c5bb9;
    --light-bg: #f5f5f7;
    --spacing-large: 70px;
    --spacing-medium: 24px;
    --spacing-small: 16px;
    --border-radius: 16px;
    --border-color: #d5dbe4;
    --secondary-bg: #034788;
    --error-color: #dd2c37;
    --focus-color: #377ff5;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-width);
    padding-left: 15px;
    padding-right: 15px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 10px;
}

h1 span {
    color: var(--primary-color);
}

h2,
.likeH2 {
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: var(--spacing-medium);
}

h2 span,
.likeH2 span {
    color: var(--link-color);
}

.page-content ul,
.page-content ol {
    margin-left: 25px;
}

.page-content a {
    color: var(--link-color);
    text-decoration: none;
    font-size: 14px;
}


.page-content h2,
.page-content .likeH2 {
    margin-top: 15px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.margin-b {
    margin-bottom: var(--spacing-large);
}

.margin-t {
    margin-top: var(--spacing-large);
}

.margin-tb {
    margin-top: var(--spacing-large);
    margin-bottom: var(--spacing-large);
}

.padding-tb {
    padding-top: var(--spacing-large);
    padding-bottom: var(--spacing-large);
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Form Components */
.wpcf7-response-output {
    display: none;
}

.wpcf7-spinner::before {
    display: none;
}

.wpcf7-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border-top: 2px solid var(--secondary-bg);
    border-right: 2px solid transparent;
    animation: rotation 1s linear infinite;
    background-color: inherit;
    position: absolute;
    top: 18px;
    right: 0;
}

.wpcf7-spinner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-bottom: 2px solid var(--secondary-bg);
    border-left: 2px solid transparent;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-field > * {
    all: unset;
}

.form-field-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--spacing-small);
    width: 100%;
}

.form-field input:not(.wpcf7-submit) {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    height: 52px;
    line-height: 130%;
    padding: 0 16px 0 12px;
    width: 100%;
    resize: none;
}

.form-field input:not(.wpcf7-submit):focus {
    border-color: transparent;
    outline: 2px solid var(--focus-color);
}

.form-field input.wpcf7-not-valid {
    border-color: transparent;
    outline: 2px solid var(--error-color);
}

.form-submit {
    width: 100%;
}

.form-submit p {
    position: relative;
}

.form-submit input.wpcf7-submit {
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    height: 62px;
    line-height: 130%;
    padding: 16px 32px;
    width: 100%;
    cursor: pointer;
    transition: background .3s;
}

.form-submit input.wpcf7-submit:hover {
    background: #e19625;
}

.form-submit input.wpcf7-submit:focus {
    outline: 2px solid var(--link-color);
    outline-offset: 2px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #ced5df;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-top {
    position: relative;
    background: var(--light-bg);
    padding: 10px 0;
}

.header-top__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header-logo {
    max-height: 55px;
}

.header-contacts {
    display: none;
    align-items: center;
    gap: 10px;
}

.header-contacts a {
    text-decoration: none;
}

.header-contacts-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
        color: var(--text-dark);
    font-size: 18px;
}

.header-contacts-item img {
    width: 25px;
    height: 25px;
}

.location {
    align-items: center;
    color: var(--link-color);
    display: flex;
    gap: 7px;
}

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

.burger-icon {
    color: var(--text-dark);
    height: 30px;
    width: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.burger-icon svg {
    height: 100%;
    width: 100%;
}

.header-desktop {
    display: none;
    background: var(--light-bg);
}

.header-nav {
    align-items: center;
    display: flex;
    height: 65px;
    justify-content: space-between;
    position: relative;
}

.header-nav__dd-wrap {
    position: relative;
}

.header-nav__dd-wrap:hover .header-nav__dd,
.header-nav__dd-wrap:focus-within .header-nav__dd {
    display: block;
}

.header-nav__link {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    line-height: 145%;
    text-decoration: none;
    transition: .3s;
}

.header-nav__link:focus {
    outline: none;
}

.header-nav__dd-wrap:hover .header-nav__link .header-nav__name {
    color: var(--link-color);
}

.header-nav__repair {
    color: #6a7b92;
    font-size: 16px;
}

.header-nav__name {
    align-items: center;
    color: var(--text-dark);
    display: flex;
    font-size: 18px;
    gap: 4px;
}

.header-nav__name-text {
    display: inline-block;
}

.header-nav__name-icon {
    height: 24px;
    width: 24px;
    color: #6a7b92;
}

.header-nav__name-icon svg {
    height: 100%;
    width: 100%;
}

.header-nav__dd {
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 1;
    width: max-content;
}

.header-nav__dd-content {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding-right: 0 !important;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.header-nav__dd-link {
    position: relative;
}

.header-nav__dd-link a {
    align-items: center;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    height: 46px;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
    text-decoration: none;
    transition: .3s;
}

.header-nav__dd-link a:hover {
    background: var(--light-bg);
    color: var(--link-color);
}

.header-nav__dd-link a:focus {
    outline: none;
}

/* Mobile Burger */
.mobile-burger-btn {
    width: 30px;
    cursor: pointer;
}

.mobile-burger-btn span {
    display: block;
    width: 100%;
    border-radius: 3px;
    height: 4px;
    background: #000;
    transition: all .3s;
    position: relative;
}

.mobile-burger-btn span + span {
    margin-top: 5px;
}

.mobile-burger-btn.active span + span {
    margin-top: 18px;
}

.mobile-burger-btn.active span:nth-child(1) {
    animation: ease .7s top forwards;
}

.mobile-burger-btn.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}

.mobile-burger-btn.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}

.mobile-burger-btn.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}

.mobile-burger-btn.active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}

.mobile-burger-btn.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
    0% { top: 0; transform: rotate(0); }
    50% { top: 22px; transform: rotate(0); }
    100% { top: 22px; transform: rotate(45deg); }
}

@keyframes top-2 {
    0% { top: 22px; transform: rotate(45deg); }
    50% { top: 22px; transform: rotate(0deg); }
    100% { top: 0; transform: rotate(0deg); }
}

@keyframes bottom {
    0% { bottom: 0; transform: rotate(0); }
    50% { bottom: 22px; transform: rotate(0); }
    100% { bottom: 22px; transform: rotate(135deg); }
}

@keyframes bottom-2 {
    0% { bottom: 22px; transform: rotate(135deg); }
    50% { bottom: 22px; transform: rotate(0); }
    100% { bottom: 0; transform: rotate(0); }
}

@keyframes scaled {
    50% { transform: scale(0); }
    100% { transform: scale(0); }
}

@keyframes scaled-2 {
    0% { transform: scale(0); }
    50% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Mobile Menu */
.show-mob-menu .header-mobile {
    display: block;
}

.header-mobile {
    background: #fff;
    height: calc(-42px + 100dvh);
    padding-bottom: 25px;
    padding-top: 25px;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    overflow-y: auto;
    display: none;
}

.header-mobile ul {
    list-style-type: none;
}

.header-mobile-menu .nested {
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-top: 15px;
    width: 100%;
}

.header-mobile .sub-menu-wrapper .sub-menu li.sub-menu-title {
    padding: 0;
    margin: 20px 0px 10px;
    border: unset;
}

.header-mobile .sub-menu-wrapper .sub-menu li.sub-menu-title a {
    color: var(--text-dark);
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.next-icon {
    height: 24px;
    width: 24px;
    color: #6a7b92;
    flex-shrink: 0;
}

.next-icon svg {
    height: 100%;
    width: 100%;
}

.header-mobile .consultation-card {
    margin-top: 25px;
}

.header-mobile .sub-menu-wrapper .sub-menu li {
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-top: 15px;
    width: 100%;
}

.header-mobile .list-wrapper a {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.header-mobile .menu-wrapper {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 42px);
    overflow: hidden;
}

.header-mobile .menu-wrapper.is-visible {
    display: block;
}

.header-mobile .list-wrapper {
    height: 100%;
    overflow-y: auto;
    background: #fff;
}

.header-mobile .list-wrapper:nth-child(2),
.header-mobile .list-wrapper:nth-child(3) {
    position: absolute;
    left: 0;
    right: 0;
    transform: translateX(100%);
    backface-visibility: hidden;
    transition: transform 0.5s;
    top: 40px;
    padding: 0 15px;
}

.header-mobile .list-wrapper:nth-child(2).is-visible,
.header-mobile .list-wrapper:nth-child(3).is-visible {
    transform: none;
    height: 107vh;
}

.header-mobile .list-wrapper:nth-child(1) > ul > li > .sub-menu,
.header-mobile .list-wrapper:nth-child(2) .level-3 {
    display: none;
}

.header-mobile .menu-wrapper li + li {
    margin-top: 20px;
}

.back-one-level {
    align-items: center;
    color: var(--link-color);
    display: flex;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
    margin-bottom: 12px;
    cursor: pointer;
}

.back-one-level-icon {
    color: var(--link-color);
    height: 24px;
    transform: rotate(180deg);
    width: 24px;
}

/* Entry Section */
.entry {
    background-color: var(--secondary-bg);
    padding: 35px 0;
    position: relative;
}

.entry-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    width: 100%;
}

.form-wrap .form-title {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: var(--spacing-small);
}

.form-wrap .form-title span {
    color: var(--link-color);
    display: block;
}

.entry-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
}

/* Infographic */
.infographic-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    row-gap: 12px;
    margin-bottom: var(--spacing-medium);
}

.infographic-title {
    color: var(--link-color);
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 4px;
}

.infographic-description {
    color: var(--text-dark);
}

.infographic-statistic {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

.infographic-statistic__item {
    border: 1px solid #ced5df;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 16px 18px;
}

.infographic-statistic__item span:first-child {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 600;
    margin-right: 13px;
}

.infographic-statistic__item span:last-child {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

/* Devices */
.devices-list {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: var(--spacing-medium);
}

.devices-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 138px;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
    transition: .3s;
    text-decoration: none;
}

.devices-item__title {
    align-items: center;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    padding: 12px 12px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    max-height: 36px;
    z-index: 0;
}

.devices-item__img {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
}

.devices-item__img img {
    height: 80px;
    object-fit: cover;
    width: 159px;
}

.no-device {
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: var(--spacing-medium);
    padding: 20px;
}

.no-device-info {
}

.no-device-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 5px;
}

.no-device-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
}

.no-device-button {
    align-items: center;
    background: #27a6e6;
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    height: 52px;
    justify-content: center;
    line-height: 130%;
    padding: 14px;
    width: 100%;
    cursor: pointer;
    transition: .3s;
}

.no-device-button:hover {
    background: #1d8ec7;
}

.no-device-button:focus {
    outline: none;
}

/* Parts */
.parts-content {
    display: flex;
    flex-direction: column;
}

.parts-content__left {
    width: 100%;
}

.parts-content__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.parts-content__item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.parts-content__item-text {
    font-size: 16px;
    color: #6a7b92;
    font-weight: 400;
}

.parts-content__right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.parts-content__right img {
    height: auto;
    object-fit: contain;
    width: 90%;
}

/* Consultation */
.consultation-card {
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.consultation-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consultation-card__content-title {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    line-height: 126%;
}

.consultation-card__content-subtitle {
    align-items: center;
    color: var(--text-dark);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 10px;
    line-height: 145%;
}

.consultation-card__content-badge {
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-name: pulsed-play-b214bd43;
    background-color: #3ad177;
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

@keyframes pulsed-play-b214bd43 {
    0% { box-shadow: 0 0 0 1px #3ad177; }
    50% { box-shadow: 0 0 0 3px #0aa4474d; }
    100% { box-shadow: 0 0 0 1px #3ad177; }
}

.consultation-card__actions {
    width: 100%;
}

.button-phone {
    background: #0aa447;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 12px;
    padding: 14px 32px;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
}

.button-phone:hover {
    background: #078137;
}

.button-phone:focus {
    outline: none;
}

.consultation-card__actions-socials {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.consultation-card__actions-socials .questions-btn {
    max-width: unset;
}

.icon-wrap {
    height: 24px;
    width: 24px;
}

.icon-wrap svg {
    height: 100%;
    width: 100%;
}

.button--tg {
    background: #27a6e6;
    transition: .3s;
    cursor: pointer;
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
}

.button--tg:hover {
    background: #1d8ec7;
}

.button--tg:focus {
    outline: none
}

.button--wa {
    background: #25d366;
    transition: .3s;
    cursor: pointer;
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
}

.button--wa:hover {
    background: #1fb256;
}

.button--wa:focus {
    outline: none;
}

.button--inst {
    background: #07f;
    transition: .3s;
    cursor: pointer;
    border-radius: var(--border-radius);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
}

.button--inst:hover {
    background: #0052af;
}

.button--inst:focus {
    outline: none;
}

/* Promo */
.promo-item__inner {
    align-items: center;
    border-radius: 20px;
    height: 186px;
    padding: var(--spacing-medium);
    background: var(--link-color);
    color: #fff;
    display: flex;
    justify-content: flex-start;
    line-height: 1.2;
    overflow: hidden;
    position: relative;
}

.promo-item__content {
    text-align: left;
    z-index: 1;
}

.promo-item__title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-item__subtitle {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.promo-item__inner img {
    height: 126px;
    right: 0;
    width: 197px;
    position: absolute;
    bottom: 0;
    opacity: 0.4;
    z-index: 0;
}

/* About */
.about-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: var(--spacing-medium);
    color: var(--text-dark);
    letter-spacing: 0;
}

.about-cards {
    display: grid;
    gap: 8px;
    grid-template-columns: auto auto;
}

.about-card__item {
    background: var(--light-bg);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 110px;
    padding: 16px 20px;
}

.about-card__item-title {
    color: var(--link-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 126%;
}

.about-card__item-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    max-width: 100px;
}

.about-card__item-2,
.about-card__item-3,
.about-card__item-6,
.about-card__item-7 {
    background: var(--link-color);
    color: #fff;
}

.about-card__item-2 .about-card__item-title,
.about-card__item-3 .about-card__item-title,
.about-card__item-6 .about-card__item-title,
.about-card__item-7 .about-card__item-title {
    color: #fff;
}

/* Why */
.why {
    background: #f5f9fe;
    color: var(--text-dark);
}

.why-list {
    display: grid;
    gap: var(--spacing-small);
    grid-template-columns: 1fr;
}

.why-item {
    align-items: flex-start;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
    padding: 20px;
}

.why-item__icon {
    align-items: center;
    background: var(--link-color);
    border-radius: 12px;
    display: flex;
    flex-shrink: 0;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.why-item__icon svg {
    color: #fff;
    height: 22px;
    width: 22px;
}

.why-item__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 6px;
}

.why-item__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
}

/* Care */
.care {
    margin: var(--spacing-large) auto;
}

.care-inner {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
}

.care-img img {
    aspect-ratio: 328 / 160;
    background: #f5f9fe;
    border-radius: 20px;
    flex-shrink: 0;
    object-fit: cover;
    width: 100%;
}

.star-list {
    margin-bottom: var(--spacing-medium);
    list-style: none;
}

.star-list__item {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 10px;
    line-height: 145%;
}

.star-list__item:not(:last-child) {
    margin-bottom: 12px;
}

.star-list__icon {
    color: var(--primary-color);
    display: inline-flex;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.star-list__icon svg {
    height: 100%;
    width: 100%;
}

/* Steps */
.steps-list {
    display: grid;
    gap: var(--spacing-small);
    scrollbar-width: none;
}

.steps-item {
    background: #f5f9fe;
    border-radius: 30px;
    padding: 20px;
}

.steps-item__number {
    color: var(--link-color);
    font-size: 26px;
    font-weight: 700;
    line-height: 126%;
    margin-bottom: 12px;
}

.steps-item__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.steps-item__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
}

/* Gallery */
.gallery {
    margin: var(--spacing-large) auto;
}

.gallery-list {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}

.gallery-item {
    aspect-ratio: 160 / 173;
    background: #f5f9fe;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item:nth-child(7) {
    display: none;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Pricing */
.pricing-table td br {
    display: none;
}

.pricing-table td a {
    color: inherit;
    text-decoration: none;
}

.pricing-table tr:hover td a,
.pricing-table td a:hover {
    color: var(--link-color);
}

.button-record {
    background: var(--primary-color);
    border-radius: 14px;
    color: var(--text-dark);
    display: none;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    line-height: 18px;
    padding: 12px 16px;
    transition: .3s;
    cursor: pointer;
}

.button-record:hover {
    background: #e19625;
}

.button-record:focus {
    outline: none;
}

.price-icon {
    color: var(--link-color);
    display: inline-flex;
    height: 24px;
    width: 24px;
}

.price-icon svg {
    height: 100%;
    width: 100%;
}

.table-footer {
    margin-top: var(--spacing-small);
}

.table-footer__show-more {
    background: #dbe6f5;
    border-radius: var(--border-radius);
    color: var(--link-color);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    margin-bottom: var(--spacing-small);
    padding: var(--spacing-small);
    transition: .3s;
    width: 100%;
    cursor: pointer;
}

.table-footer__show-more:hover {
    background: #c2d6ee;
}

.table-footer__updated {
    color: #6a7b92;
    font-size: 14px;
    line-height: 145%;
    margin-bottom: 30px;
    text-align: center;
}

/* Reset Form Elements */
button, fieldset, input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

table {
    width: 100%;
}

thead {
    display: none;
    text-align: left;
}

thead tr {
    color: #6a7b92;
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: var(--spacing-small);
}

thead tr th {
    color: #6a7b92;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

thead tr th span {
    white-space: pre-line;
}

tbody {
    display: grid;
    gap: 12px;
}

tbody tr {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: grid;
    padding: 15px 35px 15px 15px;
    grid-gap: 6px;
    position: relative;
    transition: .3s;
}

tbody td {
    display: none;
    font-size: 16px;
    line-height: 20px;
}

tbody td:first-child {
    color: var(--text-dark);
    display: block;
    font-weight: 600;
}

td.price {
    color: var(--link-color);
    font-weight: 600;
}

tbody td:last-child {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

tbody td:nth-last-child(2) {
    display: block;
}

/* Repair Models */
.repair-models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    max-height: 270px;
    overflow: auto;
}

.repair-models-list__item {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    color: var(--link-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    padding: 14px 10px;
    text-align: center;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

/* Glass */
.glass-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-item {
    display: flex;
    gap: 10px;
}

.glass-item__img {
    color: var(--primary-color);
    display: inline-flex;
    flex-shrink: 0;
    height: 24px;
    left: -3px;
    width: 24px;
}

.glass-item__text {
    font-size: 16px;
}

.glass-img {
    display: flex;
    justify-content: center;
    margin: var(--spacing-medium) auto;
    max-height: 342px;
    position: relative;
    width: 100%;
}

.glass-img:before {
    content: '';
    background-color: var(--secondary-bg);
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    border-radius: 25px;
}

.glass-img img {
    height: auto;
    width: 100%;
}

.glass-item-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    height: max-content;
    justify-content: center;
    margin: 25px auto;
    padding: 14px 32px;
    width: 100%;
    max-width: 300px;
    transition: .3s;
}

.glass-item-btn:hover {
    background: #e19625;
}

.glass-item-btn:focus {
    outline: none;
}

/* Questions */
.questions {
    margin-bottom: var(--spacing-large);
    margin-top: var(--spacing-large);
}

.questions-content {
    align-items: center;
    background: #023e7f;
    border-radius: 24px;
    display: grid;
    padding: var(--spacing-medium);
}

.questions-info {
    color: #fff;
}

.questions-info__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.questions-info__subtitle {
    font-size: 16px;
    margin-bottom: 14px;
}

.questions-btn {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    padding: var(--spacing-small);
    transition: .3s;
    width: 100%;
    cursor: pointer;
}

.questions-btn:hover {
    background: #e19625;
}

.questions-btn:focus {
    outline: none;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* FAQ */
.faq-accordion {
    padding: 0;
    list-style: none;
}

.faq-accordion-item {
}

.faq-accordion-thumb {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0px 5px;
    position: relative;
}

.faq-accordion-arr {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid var(--link-color);
    background-color: var(--link-color);
}

.faq-accordion-arr:before,
.faq-accordion-arr:after {
    content: "";
    display: block;
    width: 9px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-accordion-arr:before {
    margin-right: -5px;
    transform: scale(0.96, 0.8) rotate(50deg);
}

.faq-accordion-arr:after {
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.faq-accordion-item.is-active .faq-accordion-arr:before {
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.faq-accordion-item.is-active .faq-accordion-arr:after {
    transform: scale(0.96, 0.8) rotate(50deg);
}

.faq-accordion-panel {
    font-size: 16px;
    font-weight: 400;
    display: none;
    margin-left: 40px;
}

/* Reviews */
.reviews {
    background: #f5f9fe;
    color: var(--text-dark);
}

.reviews-list {
    display: grid;
    gap: var(--spacing-small);
    grid-template-columns: 1fr;
}

.reviews-item {
    align-items: flex-start;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
    padding: 20px;
}

.reviews-num {
    align-items: center;
    background: var(--link-color);
    border-radius: 12px;
    display: flex;
    flex-shrink: 0;
    height: 48px;
    justify-content: center;
    width: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
}

.reviews-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 6px;
}

.reviews-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
}

/* Breadcrumbs */
#breadcrumbs {
    display: block;
    margin: 20px 0;
    font-size: 20px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

#breadcrumbs a, #breadcrumbs span {
    color: #6a7b92;
    text-decoration: none;
    transition: color .3s cubic-bezier(0,.5,.5,1);
}

#breadcrumbs span.breadcrumb_last {
    color: #2e3639;
}

/* Footer */
.footer {
    background: url(/wp-content/uploads/lviv/images/footer-bg.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.footer-wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.footer-item {
    margin-bottom: 20px;
}

.footer-item__title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 14px;
}

.footer-item__title.link {
    color: var(--link-color);
}

.shaded-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2;
}

.shaded-bg .container {
    position: relative;
    z-index: 3;
}

.link {
    color: #fff;
    transition: color .25s ease-in-out;
    text-decoration: none;
}

.footer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style-type: none;
    margin-block-start: unset;
    margin-block-end: unset;
    padding-inline-start: unset;
}

.footer-list__item {
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: 4px;
}

.footer-add-top {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 40px 0;
    margin-top: 40px;
    margin-bottom: 40px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer-add__top-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: 4px;
    color: #fff;
}

.footer-add__top-item img {
    width: 30px;
    height: 30px;
}

.footer-add__top-item .link {
    color: #fff;
}

.footer-add__bottom {
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    color: #fff;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.copyright {
    color: #fff;
}

.developer a {
    display: flex;
    align-items: center;
    transition: .3s;
    color: #fff;
    opacity: .7;
    text-decoration: none;
}

.developer a img {
    width: 100px;
    margin-left: 6px;
}

/* Popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity .25s ease 0s, visibility .35s linear;
}

.overlay.active {
    opacity: .7;
    visibility: visible;
    transition-delay: 0s;
    transition-duration: .2s, 0s;
}

.popup-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    visibility: hidden;
}

.popup-wrap.active {
    visibility: visible;
}

.popup-inset {
    border-radius: 40px;
    position: relative;
    min-width: 285px;
    max-width: 450px;
    min-height: 126px;
    margin: auto;
    visibility: hidden;
    background: #fff;
    box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .2);
}

.popup-wrap.active .popup-inset {
    visibility: visible;
}

.popup-wrap.active .popup-form-wrap {
    opacity: 1;
}

.popup-window.active {
    visibility: visible;
    opacity: 1;
}

.popup-window .form-title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px;
}

.popup-window .form-subtitle {
    margin: 0 0 30px;
    text-align: center;
    font-size: 16px;
}

.popup-window .close {
    position: absolute;
    color: #000;
    width: 22px;
    height: 22px;
    float: none;
    top: 30px;
    right: 24px;
    cursor: pointer;
    opacity: 1;
}

.popup-window .close:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.popup-window .close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.popup-wrap.active .modal-form-submit {
    display: block;
}

.popup-wrap .modal-form-submit {
    display: none;
}

.popup-form-wrap {
    overflow: hidden;
}

.popup-form-header {
    position: relative;
    padding: 15px 35px;
    text-align: left;
    border-bottom: 2px solid var(--link-color);
}

.popup-form-body {
    padding: 35px;
    display: none;
}

.popup-wrap.active .popup-form-body {
    display: block;
}

.popup-form-body form {
    flex-direction: column;
    align-items: flex-start;
}

.popup-form-body p {
    margin: 0;
    width: 100%;
}

.popup-form-wrap form {
    display: flex;
    justify-content: space-between;
}

.popup-form-item {
    flex-basis: 31%;
}

.popup-form-title {
    color: #000;
    font-weight: 600;
    width: 100%;
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1;
}

.popup-form-subtitle {
    width: 100%;
    color: #000;
    font-size: 20px;
    line-height: 1;
}

/* CTA */
.cta {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 4;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.cta:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    border: 1px solid var(--link-color);
    background: transparent;
    transform: scale(1);
    border-radius: 50%;
    z-index: 0;
    animation: 1s .4s infinite alternate blim;
    display: block;
    width: 50px;
    height: 50px;
}

.cta img {
    width: 100%;
    height: 100%;
}

@keyframes blim {
    from { transform: scale(1); }
    to { transform: scale(1.3); }
}

/* Error Block */
.error-block {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px 0;
    padding: 0 20px;
}

.error-block-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 120%;
}

.error-block-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    text-align: center;
    margin-bottom: 20px;
}

.thanks .button,
.error-block .button {
    max-width: 300px;
    width: 100%;
}

/* Thanks */
.thanks {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 40px 0;
    padding: 0 20px;
}

.thanks-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

.success-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 145%;
    text-align: center;
    margin-bottom: 20px;
}

/* Contacts */
.contacts-list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-gap: 1.5rem;
}

.contacts-item {
    border: .0625rem solid var(--border-color);
    border-radius: 1.5rem;
    display: grid;
    grid-template-rows: auto auto;
    padding: 1.25rem;
    grid-gap: .5rem;
}

.contacts-item-title {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.contacts-item-link {
    background: #0aa447;
    border-radius: 1rem;
    color: #fff;
    display: flex;
    gap: .625rem;
    justify-content: center;
    padding: 1rem;
    transition: .3s;
    width: 100%;
    text-decoration: none;
}

.contacts-item-link:hover {
    background: #078137;
}

.contacts-item-link:focus {
    outline: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1300px) {
    .container {
        max-width: 1300px;
    }
}
@media (hover: none) {
    .steps-list {
        grid-template-columns: repeat(4, 1fr);
        overflow-x: auto;
    }

    .steps-item {
        width: 288px;
    }
}

@media (hover: hover) {
    #breadcrumbs a:hover {
        color: var(--link-color);
    }

    .link:hover {
        color: var(--link-color);
    }

    .footer-item__title.link:hover {
        color: #fff;
    }

    tbody tr:hover {
        background: var(--light-bg);
    }

    .button-record:hover {
        background: #e19625;
    }

    .table-footer__show-more:hover {
        background: #c2d6ee;
    }

    .devices-item:hover .devices-item__title {
        color: #0c51a3;
    }

    .repair-models-list__item:hover {
        background: #0c5bb926;
    }
}

@media (min-width: 360px) {
    .repair-models-list__item {
        width: calc(50% - 3px);
    }

    .glass-img {
        width: 70%;
    }

    .footer-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .parts-content__right img {
        height: 257px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2,
    .likeH2 {
        font-size: 46px;
        line-height: 56px;
        margin-bottom: 40px;
    }

    .margin-b {
        margin-bottom: 100px;
    }

    .margin-t {
        margin-top: 100px;
    }

    .margin-tb {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .padding-tb {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .header-contacts {
        display: flex;
    }

    .infographic-details {
        max-width: 563px;
    }

    .infographic-title {
        font-size: 32px;
        line-height: 39px;
    }

    .infographic-description {
        font-size: 20px;
        line-height: 29px;
    }

    .infographic-statistic {
        grid-template-columns: repeat(3, 1fr);
    }

    .infographic-statistic__item span:first-child {
        font-size: 32px;
    }

    .infographic-statistic__item span:last-child {
        font-size: 20px;
    }

    .devices-list {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 30px;
    }

    .no-device {
        margin-top: 30px;
        border-radius: 40px;
        gap: 24px;
        padding: 50px;
    }

    .no-device-title {
        font-size: 32px;
        line-height: 122%;
        margin-bottom: 10px;
    }

    .no-device-subtitle {
        font-size: 20px;
    }

    .no-device-button {
        border-radius: 20px;
        font-size: 18px;
        font-weight: 600;
        height: 62px;
        line-height: 130%;
        padding: 16px;
    }

    .consultation-card {
        align-items: center;
        border-radius: 40px;
        flex-direction: row;
        gap: 20px;
        padding: 50px;
        justify-content: space-between;
    }

    .consultation-card__content {
        gap: 10px;
        max-width: 580px;
    }

    .consultation-card__content-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 122%;
    }

    .consultation-card__content-subtitle {
        font-size: 20px;
        font-weight: 400;
        line-height: 145%;
    }

    .consultation-card__actions {
        flex-grow: 1;
        width: max-content;
        max-width: 50%;
    }

    .button-phone {
        font-size: 18px;
        height: 62px;
        padding: 16px 32px;
    }

    .consultation-card__actions-socials {
        gap: 10px;
    }

    .promo-item__title {
        font-size: 32px;
    }

    .promo-item__subtitle {
        font-size: 20px;
    }

    .promo-item__inner img {
        right: 20px;
        height: 168px;
        width: 340px;
    }

    .about-text {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .about-cards {
        gap: 24px;
        grid-template-columns: repeat(3, 1fr);
    }

    .about-card__item {
        height: 184px;
        justify-content: space-between;
        padding: 30px;
    }

    .about-card__item-title {
        font-size: 32px;
    }

    .about-card__item-subtitle {
        font-size: 18px;
        max-width: none;
    }

    .about-card__item-3 {
        background: var(--light-bg);
        color: inherit;
    }

    .about-card__item-3 .about-card__item-title {
        color: var(--link-color);
    }

    .about-card__item-4 {
        background: var(--link-color);
        color: #fff;
    }

    .about-card__item-4 .about-card__item-title {
        color: #fff;
    }

    .about-card__item-6 {
        background: var(--link-color);
        color: #fff;
    }

    .about-card__item-6 .about-card__item-title {
        color: #fff;
    }

    .about-card__item-7 {
        background: var(--light-bg);
        color: inherit;
    }

    .about-card__item-7 .about-card__item-title {
        color: var(--link-color);
    }

    .about-card__item-8 {
        background: var(--link-color);
        color: #fff;
    }

    .about-card__item-8 .about-card__item-title {
        color: #fff;
    }

    .why-list {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .why-item {
        border-radius: 30px;
        height: 240px;
        justify-content: space-between;
        padding: 30px;
    }

    .why-item__icon {
        height: 60px;
        width: 60px;
    }

    .why-item__icon svg {
        height: 28px;
        width: 28px;
    }

    .why-item__title {
        font-size: 24px;
        line-height: 126%;
        margin-bottom: 10px;
    }

    .why-item__subtitle {
        font-size: 16px;
        line-height: 130%;
    }

    .star-list {
        margin-bottom: 34px;
    }

    .star-list__item {
        font-size: 20px;
    }

    .star-list__item:not(:last-child) {
        margin-bottom: 16px;
    }

    .care-img img {
        aspect-ratio: 732 / 358;
        border-radius: 30px;
    }

    .steps-list {
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-item {
        padding: 30px;
        width: auto;
    }

    .steps-item__number {
        font-size: 40px;
        font-weight: 700;
        line-height: 130%;
        margin-bottom: 20px;
    }

    .steps-item__title {
        font-size: 24px;
        font-weight: 700;
        line-height: 130%;
        margin-bottom: 8px;
    }

    .steps-item__subtitle {
        font-size: 16px;
        font-weight: 400;
        line-height: 145%;
    }

    .gallery {
        margin: 90px auto;
    }

    .gallery-list {
        gap: 24px;
    }

    .gallery-item {
        aspect-ratio: 354 / 242;
        border-radius: 30px;
    }

    table {
        border-collapse: separate;
        border-spacing: 0;
    }

    tbody {
        gap: 0;
    }

    tbody tr {
        border: 1px solid var(--border-color);
        border-radius: 0;
        border-top: none;
        padding: 18px 22px;
    }

    tbody tr:first-child {
        border-radius: 30px 30px 0 0;
        border-top: 1px solid var(--border-color);
    }

    .button-record {
        display: flex;
    }

    .price-icon {
        display: none;
    }

    .table-footer {
        display: grid;
        margin-top: 20px;
        grid-gap: 25px;
        align-items: center;
        grid-template-columns: 268px 268px;
        justify-content: space-between;
    }

    .table-footer__show-more {
        margin-bottom: 0;
        order: 1;
    }

    .table-footer__updated {
        font-size: 16px;
        margin-bottom: 0;
    }

    .last-row {
        border-radius: 0 0 30px 30px;
    }

    .repair-models-list__item {
        width: calc(33% - 2px);
    }

    .entry {
        padding: 50px 0;
    }

    .form-wrap {
        border-radius: 30px;
        padding: 30px;
    }

    .form-wrap .form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-wrap .form-title span {
        display: inline;
    }

    .entry-content p {
        font-size: 20px;
    }

    .questions {
        margin-bottom: 110px;
        margin-top: 110px;
    }

    .questions-content {
        border-radius: 40px;
        padding: 50px;
    }

    .questions-info__title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .questions-info__subtitle {
        font-size: 20px;
    }

    .subtitle {
        margin-bottom: 37px;
    }

    .faq-accordion-thumb {
        font-size: 20px;
    }

    .reviews-list {
        gap: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .reviews-item {
        border-radius: 30px;
        justify-content: space-between;
        padding: 30px;
    }

    .reviews-num {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .reviews-title {
        font-size: 24px;
        line-height: 126%;
        margin-bottom: 10px;
    }

    .reviews-content {
        font-size: 16px;
        line-height: 130%;
    }

    .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .footer-list {
        grid-template-columns: 1fr 1fr;
    }

    .footer-item:first-child .footer-list {
        grid-template-columns: 1fr;
    }

    .footer-item__title {
        font-size: 24px;
        line-height: 126%;
        margin-bottom: 10px;
    }

    .footer-list__item {
        font-size: 16px;
        line-height: 130%;
    }

    .footer-add-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-add__top-item {
        font-size: 16px;
        line-height: 130%;
    }

    .footer-wrap-other {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .repair-models-list {
        max-height: unset;
    }

    .thanks,
    .error-block {
        min-height: 400px;
    }

    .error-block-number {
        font-size: 62px;
    }

    .error-block-text {
        font-size: 22px;
    }

    .success-title {
        font-size: 32px;
    }

    .success-text {
        font-size: 22px;
    }

    .contacts-item {
        grid-gap: .75rem;
        padding: 1.5rem;
    }
}

@media (min-width: 992px) {
    .margin-b {
        margin-bottom: 110px;
    }

    .margin-t {
        margin-top: 110px;
    }

    .margin-tb {
        margin-top: 110px;
        margin-bottom: 110px;
    }

    .padding-tb {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .parts-content {
        flex-direction: row;
        gap: 30px;
    }

    .parts-content__left,
    .parts-content__right {
        width: 50%;
    }

    .parts-content__right {
        justify-content: end;
    }

    .promo-item__title {
        font-size: 36px;
    }

    .glass h2,
    .glass h2 span {
        color: #fff;
    }

    .glass-content {
        background-color: var(--secondary-bg);
        border-radius: 50px;
        color: #fff;
        display: flex;
        justify-content: space-between;
        padding: 60px 92px;
        position: relative;
    }

    .glass-list {
        max-width: 65%;
        z-index: 1;
    }

    .glass-img {
        bottom: 0;
        position: absolute;
        right: 0;
        margin-bottom: 0;
        max-width: 600px;
    }

    .glass-item__text {
        font-size: 18px;
    }

    .glass-item-btn {
        margin-left: 0;
    }

    .questions-content {
        grid-template-columns: 1fr 250px;
        gap: 20px;
    }

    .reviews-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .questions-btn {
        max-width: 250px;
    }

    .contacts-list {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
        grid-gap: 1.875rem;
    }

    .contacts-item {
        padding: 2.5rem;
    }
}

@media (min-width: 1218px) {
    .mobile-burger-btn {
        display: none;
    }

    .header-desktop {
        display: block;
    }

    .devices-list {
        gap: 20px;
        grid-template-columns: repeat(6, 1fr);
    }

    .devices-item {
        height: 154px;
    }

    .devices-item__title {
        padding: 14px 14px 0;
    }

    .devices-item__img img {
        height: 94px;
        width: 186px;
    }

    .no-device {
        padding: 50px 80px;
        align-items: center;
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .about-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-card__item-5,
    .about-card__item-7 {
        background: var(--link-color);
        color: #fff;
    }

    .about-card__item-5 .about-card__item-title,
    .about-card__item-7 .about-card__item-title {
        color: #fff;
    }

    .about-card__item-6,
    .about-card__item-8 {
        background: var(--light-bg);
        color: inherit;
    }

    .about-card__item-6 .about-card__item-title,
    .about-card__item-8 .about-card__item-title {
        color: var(--link-color);
    }

    .why-item {
        height: 230px;
    }

    .care-inner {
        gap: 66px;
        grid-template-columns: auto auto;
    }

    .care-img {
        order: 1;
    }

    .care-img img {
        aspect-ratio: auto;
        height: 370px;
        width: 522px;
    }

    .care-content {
        order: 2;
    }

    .star-list {
        margin-bottom: 0;
    }

    .steps-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-list {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 242px);
    }

    .gallery-item {
        aspect-ratio: auto;
    }

    .gallery-item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .gallery-item:nth-child(2) {
        grid-area: 2 / 1 / 4 / 2;
    }

    .gallery-item:nth-child(3) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-area: 1 / 3 / 3 / 4;
    }

    .gallery-item:nth-child(5) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .gallery-item:nth-child(6) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .gallery-item:nth-child(7) {
        grid-area: 3 / 3 / 4 / 4;
        display: inline;
    }

    thead {
        display: table-header-group;
    }

    thead tr {
        align-items: center;
        background: var(--light-bg);
        display: grid;
        grid-template-columns: 1fr 170px 107px;
        grid-gap: 15px;
        border: 1px solid var(--border-color);
        border-radius: 30px 30px 0 0;
        margin-bottom: 0;
        padding: 17px 22px;
    }

    tbody tr {
        grid-gap: 15px;
        align-items: center;
        grid-template-columns: 1fr 170px 107px;
    }

    tbody tr:first-child {
        border-radius: 0;
        border-top: none;
    }

    tbody td:first-child {
        font-size: 20px;
        line-height: 26px;
    }

    tbody td:last-child {
        position: static;
        right: auto;
        top: auto;
        transform: none;
    }

    .repair-models-list {
        gap: 8px;
    }

    .repair-models-list__item {
        padding: 16px 12px;
        width: calc(16.66667% - 7px);
        font-size: 20px;
    }

    .entry {
        padding: 100px 0;
    }

    .entry:before {
        background-image: url(/wp-content/uploads/lviv/images/entry-bg.webp);
        background-position: 50%;
        background-size: cover;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
        opacity: 0.1;
    }

    .entry-content {
        align-items: center;
        flex-direction: row;
        gap: 50px;
    }

    .form-wrap {
        width: 456px;
    }

    h1 {
        font-size: 54px;
        margin-bottom: 12px;
    }

    .entry-content p {
        font-size: 20px;
    }

    .footer-add-top {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1300px) {
    .infographic-details {
        column-gap: 24px;
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 30px;
        max-width: none;
    }
}