:root {
    --judges-base: #ef6718;
    --judges-base-rgb: 239, 103, 24;
    --judges-black: #3f4042;
    --judges-gray: #666666;
    --judges-primary: #f5f5f5;
    --judges-bdr-color: #e4e4e4;
}

#preloader {
    display: none !important;
}

body {
    color: var(--judges-gray);
}

.page-wrapper {
    background: #fff;
}

.main-menu__logo img,
.footer-widget__logo img {
    max-height: 92px;
    width: auto;
}

.main-menu__wrapper-inner {
    padding: 0 40px;
    gap: 24px;
    min-height: 108px;
}

.main-menu__main-menu-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex: 1 1 auto;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 24px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-size: 16px;
    white-space: nowrap;
}

.header-brochure-btn .thm-btn {
    padding: 14px 24px;
}

.mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-text__title {
    display: block;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--judges-base);
}

.brand-text__sub {
    display: block;
    font-size: 12px;
    letter-spacing: .35em;
    color: #9b9b9b;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 132px 0 118px;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(29, 30, 32, .88), rgba(29, 30, 32, .62) 54%, rgba(239, 103, 24, .28));
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -90px;
    border: 42px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-hero__kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--judges-base);
}

.page-hero h1 {
    margin: 16px 0 18px;
    color: #fff;
    max-width: 820px;
    font-size: 58px;
    line-height: 1.05;
}

.page-hero p {
    color: rgba(255, 255, 255, .84);
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 26px;
    color: #fff;
    font-weight: 800;
}

.breadcrumb-row a {
    color: #fff;
}

.breadcrumb-row span {
    color: var(--judges-base);
}

.section-pad {
    padding: 110px 0;
}

.section-pad--soft {
    background: #f7f7f7;
}

.ki-card {
    height: 100%;
    padding: 34px;
    border: 1px solid var(--judges-bdr-color);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.ki-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--judges-base-rgb), .38);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .1);
}

.ki-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--judges-base-rgb), .12);
    color: var(--judges-base);
    font-size: 24px;
    margin-bottom: 20px;
}

.ki-card h3,
.ki-card h4 {
    margin-bottom: 12px;
    color: var(--judges-black);
}

.ki-card p,
.ki-list li,
.spec-table td,
.spec-table th {
    color: var(--judges-gray);
}

.ki-card a {
    color: var(--judges-base);
    font-weight: 800;
}

.image-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 430px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

.image-tile img,
.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-tile::after {
    content: "";
    position: absolute;
    inset: auto 22px 22px 22px;
    height: 6px;
    background: var(--judges-base);
    border-radius: 6px;
}

.product-visual {
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
    background: #ededed;
}

.product-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.product-fact {
    padding: 18px 20px;
    border-radius: 8px;
    background: #fff;
    border-left: 4px solid var(--judges-base);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
}

.product-fact strong {
    display: block;
    color: var(--judges-black);
}

.spec-table {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 56px rgba(0, 0, 0, .06);
}

.spec-table th {
    width: 32%;
    color: var(--judges-black);
    background: #fafafa;
    font-weight: 800;
}

.spec-table th,
.spec-table td {
    padding: 17px 20px;
    border-color: #ededed;
    vertical-align: middle;
}

.ki-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ki-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.75;
}

.ki-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--judges-base);
}

.product-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-nav a {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    border-radius: 8px;
    color: var(--judges-black);
    background: #fff;
    border: 1px solid var(--judges-bdr-color);
    font-weight: 800;
}

.product-nav a:hover,
.product-nav a.active {
    color: #fff;
    background: var(--judges-base);
    border-color: var(--judges-base);
}

.cta-strip {
    position: relative;
    overflow: hidden;
    padding: 58px;
    border-radius: 8px;
    background: #dae0ed;
}

.cta-strip h2,
.cta-strip p {
    color: #fff;
}

.cta-strip p {
    max-width: 740px;
    color: rgba(255, 255, 255, .78);
}

.cta-strip .thm-btn {
    min-width: 210px;
    margin-top: 14px;
}

.thm-btn .thm-btn-text,
.cta-strip .thm-btn .thm-btn-text {
    color: #858080 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-pad p,
.section-pad li,
.contact-line p,
.product-fact {
    color: var(--judges-gray);
}

.section-pad h1,
.section-pad h2,
.section-pad h3,
.section-pad h4,
.contact-line strong {
    color: var(--judges-black);
}

.contact-panel {
    padding: 38px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
}

.contact-line {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.contact-line:last-child {
    border-bottom: 0;
}

.contact-line i {
    color: var(--judges-base);
    font-size: 22px;
    margin-top: 4px;
}

.site-footer__top {
    padding: 60px 0 55px;
}

.site-footer__logo-text,
.site-footer__contact-list a,
.site-footer__contact-list p,
.site-footer__list a {
    color: rgba(255, 255, 255, .8);
}

.site-footer__list li + li,
.site-footer__contact-list li + li {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .header-brochure-btn {
        display: none;
    }

    .product-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .main-menu__wrapper-inner {
        padding: 0 18px;
        min-height: 84px;
    }

    .main-menu__logo img {
        max-height: 70px;
    }

    .page-hero {
        padding: 92px 0 82px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .section-pad {
        padding: 72px 0;
    }

    .product-facts,
    .product-nav {
        grid-template-columns: 1fr;
    }

    .product-visual,
    .image-tile {
        min-height: auto;
        height: 330px;
    }

    .cta-strip {
        padding: 34px 26px;
    }

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }
}
