@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Unbounded:wght@200..900&display=swap');
 :root {
    --primary-color: #ff6e00;
    /* Акцентный цвет */
    --base-color: #333;
    --font-family-main:"Google Sans", sans-serif;
    --font-size-main: 16px;
    --border-color: #dfe5eb;
    --shadow: 0 10px 28px rgba(22, 36, 55, .08);
    --color-link: #333;
    --border-radius: 30px;
    --color-deep-blue: #21384b;
}
body {
    font-size: var(--font-size-main);
    font-family: var(--font-family-main);
    color: var(--base-color);
    font-weight: 400;
    line-height: 1.5;
    height: 100%;
    position: relative;
    margin: 0;
}
h1, h2, h3, h4, h5 {
    /*font-family: "Unbounded", sans-serif;*/
    margin: 20px 0;
    color: var(--color-deep-blue);
}
img {
    max-width: 100%;
}
.breadcrumb svg {
    color: #ff6e00;
}
a:focus {
    outline: 0!important;
}
ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}
button {
    transition: all .3s;
}
a {
    position: relative;
    color: var(--color-link);
    text-decoration: none;
    transition: all .3s;
}
a:hover {
    color: var(--color-link);
}
a::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--color-link);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
/*a:hover::after {*/

/*  transform: scaleX(1);*/

/*  color: #000;*/

/*}*/
 a.border-none:hover::after {
    transform: scaleX(0);
}
#content a {
    color: hsl(205, 50%, 50%);
}
.header {
    padding: 15px 0 0;
    align-items: center;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 50px;
}
.logo {
    max-width: 70px;
    margin-right: 7px;
}
.logo-text {
    font-size: 11px;
}
.header__bottom {
    /*border-top: 1px solid var(--border-color);*/
    padding: 20px 0;
    background: #fff!important;
}
.header__menu-catalog a {
    color: #fff;
    background: var(--color-deep-blue);
    display: block;
    padding: 7px 30px!important;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-deep-blue);
}
.header__menu-catalog a:hover {
    color: var(--color-deep-blue);
    background: #fff;
    box-shadow: var(--shadow);
}
.header__menu-catalog a svg, .header #cart svg {
    color: #fff;
}
.header__menu-catalog a:hover svg, .header #cart a:hover svg {
    color: var(--color-deep-blue);
}
.header__menu-catalog a:hover::after {
    transform: scaleX(0);
}
.header__search {
    width: 100%!important;
}
.header__search .input-group-addon, .header__search .input-group-btn {
    width: auto;
}
.header .btn-inverse {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #ff6e00;
    background-image: linear-gradient(to bottom, #ff6e00, #ff6e00);
    background-repeat: repeat-x;
    border-color: #ff6e00;
    transition: all .3s;
}
.header a {
    display: block;
    margin-bottom: 5px;
}
.header svg {
    color: var(--primary-color);
}
.header__account {
    font-size: 30px;
}
#search {
    /*width: 80%;*/
}
#cart {
    /*width: 20%;*/
}
/* ===========================
   Header responsive
=========================== */

/* Large desktop */
 @media (max-width: 1199px) {
    .header .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .col-lg-12 {
        gap: 25px!important;
    }
    .header__menu ul {
        gap: 20px!important;
    }
    .header__menu-item a {
        font-size: 14px;
    }
    .header__contact {
        white-space: nowrap;
        font-size: 14px;
    }
}
/* Tablet */
 @media (max-width: 991px) {
    .header {
        margin-bottom: 30px;
    }
    .header > .container > .row > .col-lg-12 {
        flex-wrap: wrap;
        justify-content: center!important;
        gap: 0px!important;
    }
    /* Logo */
    .header > .container > .row > .col-lg-12 > a {
        width: 100%;
        justify-content: flex-start;
    }
    .logo {
        max-width: 60px;
    }
    .logo-text {
        font-size: 12px;
    }
    /* Menu */
    .header__menu {
        width: 100%;
    }
    .header__menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px!important;
    }
    .header__menu-item a {
        font-size: 14px;
    }
    /* Contacts */
    .header__contact {
        width: 100%;
        display:flex;
        justify-content:center;
        gap:20px;
    }
    .header__contact a {
        margin-bottom:0;
    }
    /* Bottom */
    .header__bottom {
        padding:15px 0;
    }
}
/* Mobile */
 @media (max-width: 767px) {
    .header {
        padding-top:10px;
    }
    .header .container {
        padding:0 15px;
    }
    /* top row */
    .header > .container > .row > .col-lg-12 {
        flex-direction:column;
        align-items:center;
    }
    /* Logo */
    .logo {
        max-width:55px;
    }
    .logo-text {
        font-size:13px;
    }
    /* Menu */
    .header__menu ul {
        flex-direction:column;
        width:100%;
        padding:0;
        margin:0;
    }
    .header__menu-item {
        width:100%;
        text-align:center;
    }
    .header__menu-item a {
        padding:8px 0;
    }
    .header__menu-catalog a {
        display:inline-block;
        padding:8px 35px!important;
    }
    /* Contacts */
    .header__contact {
        flex-direction:column;
        align-items:center;
        gap:5px;
        font-size:14px;
    }
    /* Search */
    .header__bottom .col-lg-12 {
        flex-direction:column;
        gap:15px!important;
    }
    .header__search {
        width:100%!important;
    }
    .header__account {
        font-size:28px;
    }
}
/* Small mobile */
 @media (max-width: 480px) {
    .header__menu-item a {
        font-size:13px;
    }
    .header__contact {
        font-size:15px;
        margin: 20px 0 0;
    }
    .header__menu-catalog a {
        width:100%;
    }
}
/* Hamburger */
 .mobile-menu-btn {
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    padding:8px;
    cursor:pointer;
    position:absolute;
    right:5px;
    top:0px;
    z-index:1000;
}
.mobile-menu-btn span {
    display:block;
    height:3px;
    width:25px;
    background:var(--color-deep-blue);
    margin:5px auto;
    transition:.3s ease;
}
/* Анимация в крестик */
 .mobile-menu-btn.active span:nth-child(1) {
    transform:translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity:0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform:translateY(-8px) rotate(-45deg);
}
@media(max-width:991px) {
    .header {
        position:relative;
    }
    .mobile-menu-btn {
        display:block;
    }
    .header__menu {
        width:100%;
    }
    .header__menu ul {
        display:none!important;
        flex-direction:column;
        gap:0!important;
        background:#fff;
        padding:20px 0;
        box-shadow:var(--shadow);
    }
    .header__menu ul.active {
        display:flex!important;
    }
    .header__menu-item {
        width:100%;
        text-align:center;
    }
    .header__menu-item a {
        padding:12px 0;
    }
}
.header__menu .header__account {
    display: none;
}
@media(max-width: 768px) {
    .header__menu .header__account {
        display: block;
    }
    .header__account {
        display: none;
    }
}
.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: hsl(205, 50%, 50%);
    color: #fff!important;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 15px 0;
}
.btn-download:hover, .btn-download:focus {
    background-color: #ff6e00;
    color: #fff!important;
    text-decoration: none;
}
.btn-download:active {
    background-color: #e66200;
}
/* Наши преимущества */
 #advantages .col-lg-12 {
    border-radius: var(--border-radius);
    max-height: 600px;
}
#advantages h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: #fff;
}
.advantages {
    padding: 30px;
    border-radius: var(--border-radius);
}
.advantage {
    border-radius: 30px;
    padding: 30px;
    flex: 1;
    min-height: 250px;
}
.advantage__icon {
    width: 60px;
    height: 60px;
    margin: 0px auto 10px;
    background: #eef4f8;
    color: #ff6e00;
    border-radius: 100%;
    font-size: 30px;
    border: 1px solid #a9a9a9;
}
.advantage__icon svg {
    width: 35px;
    height: 35px;
}
.advantage__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 7px;
}
.glass-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .25));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08), inset 0 1px rgba(255, 255, 255, .8);
}
.glass-block::before {
    content:"";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .35) 35%, rgba(255, 255, 255, 0) 70%);
}
.advantage__text {
    font-size: 14px;
}
/* Наши преимущества */
 #advantages {
    /*margin: 50px 0;*/
}
#advantages .col-lg-12 {
    border-radius: var(--border-radius);
    background-size:cover!important;
    background-position:center!important;
    overflow:hidden;
}
.advantages {
    padding:40px;
    display:grid!important;
    grid-template-columns:repeat(4, 1fr);
    gap:30px!important;
}
/* Карточка */
 .advantage {
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:30px;
    min-height:250px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
}
/* Иконка */
 .advantage__icon {
    width:60px;
    height:60px;
    flex-shrink:0;
    margin:0 auto 15px;
    background:#eef4f8;
    color:#ff6e00;
    border-radius:50%;
    font-size:30px;
    border:1px solid #a9a9a9;
}
.advantage__icon svg {
    width:35px;
    height:35px;
}
/* Заголовок */
 .advantage__title {
    font-size:18px;
    font-weight:bold;
    margin-bottom:10px;
    text-align:center;
}
/* Текст */
 .advantage__text {
    font-size:14px;
    text-align:center;
    line-height:1.5;
}
/* Glass */
 .glass-block {
    position:relative;
    background:linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .25));
    backdrop-filter:blur(24px) saturate(180%);
    -webkit-backdrop-filter:blur(24px) saturate(180%);
    border:1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08), inset 0 1px rgba(255, 255, 255, .8);
}
.glass-block::before {
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .35) 35%, rgba(255, 255, 255, 0) 70%);
}
/* ======================
   Адаптив
====================== */

/* Ноутбуки */
 @media(max-width:1199px) {
    .advantages {
        grid-template-columns:repeat(2, 1fr);
        padding:35px;
    }
}
/* Планшеты */
 @media(max-width:767px) {
    #advantages {
        margin:30px 0;
    }
    .advantages {
        grid-template-columns:1fr;
        padding:20px;
        gap:20px!important;
    }
    .advantage {
        min-height:auto;
        padding:25px;
    }
    .advantage__title {
        font-size:16px;
    }
    .advantage__text {
        font-size:13px;
    }
    #advantages .col-lg-12 {
        max-height: 100%;
    }
}
/* Маленькие телефоны */
 @media(max-width:480px) {
    #advantages .col-lg-12 {
        border-radius:20px;
    }
    .advantages {
        padding:15px;
    }
    .advantage {
        border-radius:20px;
    }
    .advantage__icon {
        width:55px;
        height:55px;
    }
}
/* --- Конец Наши преимущества --- */
 h2 {
    margin: 10px 0 0;
    color: #21384b;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.24px;
}
.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 40px;
    padding-bottom: 16px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}
.section-title:after {
    content:"";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #ff6f00;
    border-radius: 2px;
}
@media(max-width:480px) {
    .section-title {
        font-size: 22px;
    }
}
.form-control:focus {
    color: #333;
    background-color: var(--bs-body-bg);
    border-color: #fead86;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(253, 81, 13, 0.25);
}
/* Вывод категорий */
 .categories-grid {
    display:flex;
    flex-wrap:wrap;
    /*margin:30px 0 0;*/
    gap: 30px;
    flex-wrap: wrap;
}
.category-item {
    width:20%;
    width: calc(25% - 30px);
    box-sizing:border-box;
}
.category-item a {
    display:block;
    position:relative;
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:20px;
    text-decoration:none;
    transition:.3s;
    overflow:hidden;
    /*box-shadow:0 10px 25px rgba(0,0,0,.15);*/
    border: 1px solid #ddd;
    height: 100%;
    transition: all .3s;
}
.category-item a:hover {
    border-color: var(--primary-color);
    box-shadow:0 10px 25px rgba(0, 0, 0, .15);
    transform:translateY(-5px);
}
.category-image {
    width:100px;
    height:100px;
    margin:0 auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.category-image img {
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}
.category-title {
    font-size:20px;
    color:#333;
    font-weight:600;
}
@media(max-width:991px) {
    .category-item {
        width:50%;
    }
}
@media(max-width:600px) {
    .category-item {
        width:45%;
    }
    .category-title {
        font-size: 16px;
    }
}
/* КОНЕЦ Вывод категорий */

/* Sitemap */
 .sitemap-page {
    margin:50px auto 70px;
}
.page-title {
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:45px;
    position:relative;
}
.page-title:after {
    content:'';
    width:90px;
    height:3px;
    background:#ff6e00;
    display:block;
    margin:15px auto 0;
}
/********************/
 .sitemap-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}
/********************/
 .sitemap-card {
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0, 0, 0, .06);
}
.sitemap-card:hover {
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0, 0, 0, .12);
}
.sitemap-card:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: linear-gradient(90deg, #ff6e00, #f3d99a, #ff6e00);
}
/********************/
 .card-header {
    display:flex;
    align-items:center;
    margin-bottom:30px;
}
.card-header .icon {
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff8eb;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-right:18px;
    border:2px solid var(--primary-color);
}
.card-header h2 {
    margin:0;
    font-size:26px;
    color:#333;
}
/********************/
 .category-columns ul {
    columns:3;
    column-gap:35px;
    list-style:none;
    padding:0;
    margin:0;
}
.category-columns li {
    break-inside:avoid;
    margin-bottom:12px;
    position:relative;
}
.category-columns ul ul {
    columns:1;
    margin-top:8px;
    margin-left:18px;
    padding-left:18px;
    border-left:2px dashed #ddd;
}
.category-columns a {
    color:#444;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
    padding:4px 0;
}
.category-columns a:hover {
    color:#b8860b;
    transform:translateX(8px);
}
/********************/
 .link-grid {
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}
.site-link {
    display:flex;
    align-items:center;
    padding:16px 20px;
    border-radius:12px;
    background:#fafafa;
    color:#444;
    text-decoration:none;
    border:1px solid #ececec;
    transition:.3s;
}
.site-link:before {
    content:"➜";
    color:#ff6e00;
    margin-right:12px;
    font-size:18px;
}
.site-link:hover {
    background:#fff7ea;
    color:#b8860b;
    border-color:#d7b56d;
    transform:translateX(8px);
}
/********************/
 @media(max-width:1200px) {
    .sitemap-grid {
        grid-template-columns:1fr 1fr;
    }
    .category-columns ul {
        columns:2;
    }
}
@media(max-width:768px) {
    .sitemap-grid {
        grid-template-columns:1fr;
    }
    .category-columns ul {
        columns:1;
    }
    .page-title {
        font-size:34px;
    }
}
/* Конец Sitemap */
 .catalog-categories {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.catalog-categories li a {
    margin: 10px 0;
    display: block;
}
.product-info__items li {
    text-transform: uppercase;
    font-size: 13px;
    margin: 10px 0;
}
/* ==========================
   Красивые списки
   ========================== */
 ul.list-styled-circle, ol.list-styled-circle {
    margin: 20px 0;
    padding: 0;
}
ul.list-styled-circle li, ol.list-styled-circle .list-styled-circle li {
    position: relative;
    list-style: none;
    margin-bottom: 14px;
    padding: 12px 16px 12px 52px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: .3s ease;
    line-height: 1.6;
}
ul.list-styled-circle li:hover, ol.list-styled-circle li:hover {
    border-color: #ff6e00;
    box-shadow: 0 6px 18px rgba(255, 110, 0, .15);
    transform: translateX(4px);
}
/* --------------------------
   Маркированный список
--------------------------- */
 ul.list-styled-circle li::before {
    content:"";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: #ff6e00;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 110, 0, .18), 0 0 12px rgba(255, 110, 0, .35);
}
ul.list-styled-circle li::after {
    content:"";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: -14px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 110, 0, .25), transparent);
}
ul.list-styled-circle li:last-child::after {
    display: none;
}
/* --------------------------
   Нумерованный список
--------------------------- */
 ol.list-styled-circle {
    counter-reset: item;
}
ol.list-styled-circle li {
    counter-increment: item;
}
ol.list-styled-circle li::before {
    content: counter(item);
    position: absolute;
    left: 14px;
}
#cart ul a svg {
    color: #ff6e00 !important;
}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    vertical-align: middle;
}
/* ==========================
   Красивые таблицы
   ========================== */
 .table-bordered {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}
/* Заголовок */
 .table-bordered thead th {
    background: linear-gradient(135deg, hsl(205, 50%, 50%), hsl(205, 50%, 42%));
    color: #fff;
    font-weight: 600;
    padding: 16px 18px;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, .15);
    letter-spacing: .4px;
}
.table-bordered thead th:last-child {
    border-right: none;
}
/* Ячейки */
 .table-bordered td {
    padding: 14px 18px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: all .25s ease;
}
.table-bordered td:last-child {
    border-right: none;
}
.table-bordered tbody tr:last-child td {
    border-bottom: none;
}
/* Полосатые строки */
 .table-bordered tbody tr:nth-child(even) {
    background: hsl(205, 40%, 98%);
}
/* Hover */
 .table-bordered tbody tr:hover {
    background: rgba(255, 110, 0, .08);
}
/* Акцент слева */
 .table-bordered tbody tr {
    transition: all .25s ease;
}
.table-bordered tbody tr:hover td:first-child {
    border-left: 4px solid #ff6e00;
    padding-left: 14px;
}
/* Первая колонка */
 .table-bordered tbody td:first-child {
    font-weight: 600;
    color: hsl(205, 50%, 35%);
}
/* Ссылки */
 .table-bordered a {
    color: hsl(205, 50%, 45%);
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}
.table-bordered a:hover {
    color: #ff6e00;
}
/* Выделение текста */
 .table-bordered strong {
    color: #ff6e00;
}
/* Адаптивность */
 .table-responsive {
    overflow-x: auto;
}
/* Красивый скролл */
 .table-responsive::-webkit-scrollbar {
    height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
    background: #f3f3f3;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: hsl(205, 50%, 50%);
}
.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #ff6e00;
}
.table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border-bottom-width: 1px;
}
.products__heading {
    display: block;
    font-size: 2.3rem;
    line-height: 3.5rem;
    font-weight: 500;
    padding: 0 7rem 0 0;
    margin: 40px 0 20px;
    -ms-flex: 1;
    flex: 1;
    color: #408abf;
    font-weight: bold;
}
.available__moscow {
    margin-bottom: 0;
}
.available__item-title {
    display: flex;
    margin-bottom: 3rem;
    margin-top: 3rem;
    position: relative;
}
.available__time {
    color: grey;
    margin-top: 5px;
    margin-bottom: 3rem;
    font-size: 18px;
}
.available__dotted {
    flex: 1 0 auto;
    border-bottom: 1px black dotted;
}
.available__text {
    font-size: 1.3em;
    line-height: 1.5em;
    font-weight: bold;
    margin: 0 0 0px;
}
.available-wrap {
    /*margin-top: 60px;*/
}
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.advantage-item::before {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    /*background: var(--color-deep-blue);*/
    transition: .3s;
}
.advantage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}
.advantage-item:hover::before {
    width: 100%;
    opacity: .05;
}
.advantage-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: #ff6e00;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-content h3 {
    margin: 0 0 8px;
    color: #222;
    font-size: 20px;
    font-weight: 700;
}
.advantage-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}
@media (max-width:768px) {
    .advantages {
        grid-template-columns: 1fr;
    }
    .advantage-item {
        padding: 20px;
    }
    .advantage-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 24px;
    }
    .advantage-content h3 {
        font-size: 18px;
    }
}
.company-advantages {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:25px;
    margin:40px 0;
}
.company-advantage {
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-radius:16px;
    padding:28px;
    border:1px solid #e8e8e8;
    box-shadow:0 10px 25px rgba(0, 0, 0, .06);
    transition:.35s;
    position:relative;
    overflow:hidden;
}
/*.company-advantage::after{*/

/*    content:"";*/

/*    position:absolute;*/

/*    left:0;*/

/*    top:0;*/

/*    width:100%;*/

/*    height:4px;*/

/*    background:#ff6e00;*/

/*}*/
 .company-advantage:hover {
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0, 0, 0, .12);
}
.company-icon {
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background:linear-gradient(135deg, #ff6e00, #ff9d3f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    /*box-shadow:0 8px 18px rgba(255,110,0,.35);*/
}
.company-text h3 {
    margin:0 0 10px;
    font-size:21px;
    color:#222;
    font-weight:700;
}
.company-text p {
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}
.company-text strong {
    color:#ff6e00;
    font-weight:700;
}
@media(max-width:768px) {
    .company-advantages {
        grid-template-columns:1fr;
    }
    .company-advantage {
        padding:22px;
    }
    .company-icon {
        width:58px;
        height:58px;
        min-width:58px;
        font-size:28px;
    }
    .company-text h3 {
        font-size:18px;
    }
}
.thumbnails .image {
    position:relative;
    display:inline-block;
    overflow:hidden;
}
.ifm-guarantee {
    position:absolute;
    top:15px;
    left:15px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:rgba(255, 110, 0, .95);
    color:#fff;
    border-radius:40px;
    backdrop-filter:blur(6px);
    box-shadow:0 8px 25px rgba(0, 0, 0, .25);
    z-index:5;
    transition:.3s;
}
.product-image:hover .ifm-guarantee {
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0, 0, 0, .35);
}
.ifm-icon {
    width:34px;
    height:34px;
    background:#fff;
    color:#ff6e00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
    flex-shrink:0;
}
.ifm-text {
    display:flex;
    flex-direction:column;
    line-height:1.1;
}
.ifm-text strong {
    font-size:16px;
    font-weight:700;
}
.ifm-text span {
    font-size:12px;
    opacity:.95;
    white-space:nowrap;
}
@media(max-width:768px) {
    .ifm-guarantee {
        top:8px;
        left:8px;
        padding:7px 12px;
    }
    .ifm-icon {
        width:28px;
        height:28px;
        font-size:15px;
    }
    .ifm-text strong {
        font-size:13px;
    }
    .ifm-text span {
        font-size:10px;
    }
}
/* Модальное окно с формой */

/* ==========================================================
   IFM CONTACT MODAL
   PART 2.1
========================================================== */
 :root {
    --ifm:#ff6e00;
    --ifm-dark:#e45f00;
    --ifm-light:#fff5ee;
    --text:#232323;
    --text-light:#6c757d;
    --border:#e8e8e8;
    --radius:18px;
}
/* ========================================= */
 body.ifm-modal-open {
    overflow:hidden;
}
/* ========================================= */
 #ifmOverlay {
    position:fixed;
    inset:0;
    background:rgba(20, 20, 20, .55);
    backdrop-filter:blur(6px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}
/* ========================================= */
 #ifmModal {
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%) scale(.92);
    width:95%;
    max-width:920px;
    max-height:92vh;
    overflow:auto;
    background:#ffffff;
    border-radius:22px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .18);
    opacity:0;
    visibility:hidden;
    transition: opacity .35s, transform .35s;
    z-index:9999;
}
/* ========================================= */
 #ifmOverlay.active {
    opacity:1;
    visibility:visible;
}
#ifmModal.active {
    opacity:1;
    visibility:visible;
    transform: translate(-50%, -50%) scale(1);
}
/* ========================================= */
 #ifmModal::-webkit-scrollbar {
    width:8px;
}
#ifmModal::-webkit-scrollbar-thumb {
    background:#d6d6d6;
    border-radius:20px;
}
#ifmModal::-webkit-scrollbar-thumb:hover {
    background:#bcbcbc;
}
/* ========================================= */
 .ifm-close {
    position:absolute;
    right:18px;
    top:18px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    cursor:pointer;
    transition:.25s;
    display:flex;
    justify-content:center;
    align-items:center;
}
.ifm-close:hover {
    background:var(--ifm);
}
.ifm-close svg {
    width:18px;
    height:18px;
    stroke:#555;
    stroke-width:2;
    fill:none;
    transition:.25s;
}
.ifm-close:hover svg {
    stroke:#fff;
}
/* ========================================= */
 .ifm-header {
    display:flex;
    align-items:center;
    gap:22px;
    padding:42px 46px 25px;
    border-bottom:1px solid #f0f0f0;
}
/* ========================================= */
 .ifm-logo {
    width:82px;
    height:82px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg, #ff6e00, #ff9640);
    flex-shrink:0;
    box-shadow: 0 12px 35px rgba(255, 110, 0, .35);
}
/* ========================================= */
 .ifm-logo svg {
    width:42px;
    height:42px;
    fill:none;
    stroke:#ffffff;
    stroke-width:4;
}
/* ========================================= */
 .ifm-header h2 {
    margin:0;
    font-size:34px;
    font-weight:700;
    color:var(--text);
}
.ifm-header p {
    margin:12px 0 0;
    color:var(--text-light);
    line-height:1.7;
    font-size:15px;
}
/* ========================================= */

/* ========================================= */
 .ifm-grid {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:24px;
    margin-bottom:24px;
}
/* ========================================= */
 .ifm-field {
    display:flex;
    flex-direction:column;
}
/* ========================================= */
 .ifm-field label {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    color:#444;
    font-weight:600;
    font-size:14px;
}
/* ========================================= */
 .ifm-field label svg {
    width:18px;
    height:18px;
    fill:var(--ifm);
}
/* ========================================= */
 .ifm-field input, .ifm-field textarea {
    width:100%;
    box-sizing:border-box;
    border: 1px solid var(--border);
    border-radius:14px;
    background:#fafafa;
    padding: 15px 18px;
    font-size:15px;
    color:#333;
    transition:.25s;
}
/* ========================================= */
 .ifm-field textarea {
    resize:vertical;
    min-height:170px;
}
/* ========================================= */
 .ifm-field input::placeholder, .ifm-field textarea::placeholder {
    color:#b1b1b1;
}
/* ========================================= */
 .ifm-field input:hover, .ifm-field textarea:hover {
    border-color:#cfcfcf;
}
/* ========================================= */
 .ifm-field input:focus, .ifm-field textarea:focus {
    outline:none;
    border-color:var(--ifm);
    background:#fff;
    box-shadow: 0 0 0 5px rgba(255, 110, 0, .10);
}
/* ========================================= */
 .ifm-field.error input, .ifm-field.error textarea {
    border-color:#d62828;
    box-shadow: 0 0 0 4px rgba(214, 40, 40, .08);
}
/* ========================================= */
 .ifm-error {
    margin-top:8px;
    color:#d62828;
    font-size:13px;
}
/* ========================================= */
 .ifm-divider {
    position:relative;
    margin:40px 0;
    text-align:center;
}
.ifm-divider::before {
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background:#ececec;
}
.ifm-divider span {
    position:relative;
    display:inline-block;
    padding:0 20px;
    background:#fff;
    color:#888;
    font-size:13px;
}
/* ==========================================================
   IFM CONTACT MODAL
   PART 2.2
   Upload • Files • Progress • Button • Notifications
==========================================================*/

/*====================================
            DROP ZONE
====================================*/
 .ifm-upload {
    position:relative;
    margin:30px 0;
    border:2px dashed #d8d8d8;
    border-radius:20px;
    background:#fafafa;
    cursor:pointer;
    transition:.3s;
    overflow:hidden;
}
.ifm-upload:hover {
    border-color:var(--ifm);
    background:#fffaf6;
}
.ifm-upload.dragover {
    border-color:var(--ifm);
    background:#fff3ea;
    transform:scale(1.01);
    box-shadow: 0 12px 35px rgba(255, 110, 0, .15);
}
.ifm-upload input[type=file] {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:pointer;
    z-index:5;
}
/*====================================
        CONTENT
====================================*/
 .upload-content {
    padding:45px 30px;
    text-align:center;
}
.upload-content svg {
    width:70px;
    height:70px;
    margin-bottom:20px;
    stroke:var(--ifm);
    stroke-width:2;
    fill:none;
}
.upload-content h3 {
    margin:0;
    font-size:22px;
    color:#333;
}
.upload-content p {
    margin:12px 0;
    color:#777;
    font-size:15px;
}
.upload-content small {
    display:inline-block;
    margin-top:12px;
    padding:8px 16px;
    border-radius:20px;
    background:#fff;
    border:1px solid #ececec;
    color:#888;
    font-size:12px;
}
/*====================================
        FILE LIST
====================================*/
 #ifmFilesList {
    margin-top:25px;
}
.ifm-file {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:14px 18px;
    margin-bottom:12px;
    border-radius:14px;
    background:#fff;
    border:1px solid #ececec;
    transition:.25s;
}
.ifm-file:hover {
    border-color:#d9d9d9;
    transform:translateX(3px);
}
.ifm-file-left {
    display:flex;
    align-items:center;
    gap:15px;
    overflow:hidden;
}
.ifm-file-icon {
    width:42px;
    height:42px;
    border-radius:12px;
    background:var(--ifm);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.ifm-file-icon svg {
    width:22px;
    height:22px;
    stroke:#fff;
    stroke-width:2;
    fill:none;
}
.ifm-file-name {
    font-weight:600;
    color:#333;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.ifm-file-size {
    margin-top:4px;
    font-size:13px;
    color:#888;
}
.ifm-remove-file {
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#f4f4f4;
    cursor:pointer;
    transition:.25s;
    display:flex;
    justify-content:center;
    align-items:center;
}
.ifm-remove-file:hover {
    background:#e53935;
}
.ifm-remove-file svg {
    width:16px;
    height:16px;
    stroke:#555;
    stroke-width:2;
    fill:none;
}
.ifm-remove-file:hover svg {
    stroke:#fff;
}
/*====================================
        PROGRESS
====================================*/
 .ifm-progress {
    height:10px;
    border-radius:20px;
    background:#efefef;
    overflow:hidden;
    margin:30px 0;
    display:none;
}
.ifm-progress.active {
    display:block;
}
.ifm-progress-bar {
    width:0;
    height:100%;
    border-radius:20px;
    background: linear-gradient(90deg, var(--ifm), #ff9540);
    transition:width .2s linear;
}
/*====================================
            BUTTON
====================================*/
 .ifm-send {
    width:100%;
    border:none;
    border-radius:16px;
    padding:18px 30px;
    background: linear-gradient(135deg, var(--ifm), #ff8d2b);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    transition:.3s;
    box-shadow: 0 15px 35px rgba(255, 110, 0, .30);
}
.ifm-send:hover {
    transform:translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 110, 0, .40);
}
.ifm-send:active {
    transform:scale(.98);
}
.ifm-send svg {
    width:20px;
    height:20px;
    fill:#fff;
}
/*====================================
        LOADING
====================================*/
 .ifm-send.loading {
    pointer-events:none;
    opacity:.85;
}
.ifm-send.loading svg {
    animation:ifmSpin 1s linear infinite;
}
@keyframes ifmSpin {
    from {
        transform:rotate(0);
    }
    to {
        transform:rotate(360deg);
    }
}
/*====================================
        SUCCESS
====================================*/
/* .ifm-alert {*/
/*    position:fixed;*/
/*    right:25px;*/
/*    bottom:25px;*/
/*    min-width:340px;*/
/*    padding:18px 22px;*/
/*    border-radius:16px;*/
/*    background:#fff;*/
/*    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);*/
/*    display:flex;*/
/*    align-items:center;*/
/*    gap:16px;*/
/*    transform:translateY(120px);*/
/*    opacity:0;*/
/*    transition:.35s;*/
/*    z-index:100000;*/
/*}*/
/*.ifm-alert.show {*/
/*    transform:none;*/
/*    opacity:1;*/
/*}*/
/*.ifm-alert.success {*/
/*    border-left:5px solid #2eaf53;*/
/*}*/
/*.ifm-alert.error {*/
/*    border-left:5px solid #d62828;*/
/*}*/
/*.ifm-alert svg {*/
/*    width:28px;*/
/*    height:28px;*/
/*    flex-shrink:0;*/
/*}*/
/*.ifm-alert.success svg {*/
/*    fill:#2eaf53;*/
/*}*/
/*.ifm-alert.error svg {*/
/*    fill:#d62828;*/
/*}*/
/*.ifm-alert-title {*/
/*    font-weight:700;*/
/*    margin-bottom:5px;*/
/*    color:#333;*/
/*}*/
/*.ifm-alert-text {*/
/*    font-size:14px;*/
/*    color:#666;*/
/*}*/
/*====================================
        SMALL ANIMATION
====================================*/
 .ifm-upload, .ifm-send, .ifm-file {
    animation:fadeUp .45s ease;
}
@keyframes fadeUp {
    from {
        opacity:0;
        transform:translateY(15px);
    }
    to {
        opacity:1;
        transform:none;
    }
}
/* ==========================================================
   IFM CONTACT MODAL
   PART 2.3
   Responsive • Animation • Final Polish
==========================================================*/

/*==================================================
                    ANIMATION
==================================================*/
 @keyframes ifmModalShow {
    from {
        opacity:0;
        transform: translate(-50%, -48%) scale(.90);
    }
    to {
        opacity:1;
        transform: translate(-50%, -50%) scale(1);
    }
}
@keyframes ifmOverlayShow {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
#ifmOverlay.active {
    animation:ifmOverlayShow .3s ease;
}
#ifmModal.active {
    animation:ifmModalShow .35s ease;
}
/*==================================================
                INPUT AUTOFILL
==================================================*/
 input:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
    -webkit-text-fill-color:#333;
}
/*==================================================
                SELECTION
==================================================*/
 ::selection {
    background:rgba(255, 110, 0, .18);
    color:#222;
}
/*==================================================
                PLACEHOLDER
==================================================*/
 .ifm-field input::placeholder, .ifm-field textarea::placeholder {
    transition:.25s;
}
.ifm-field input:focus::placeholder, .ifm-field textarea:focus::placeholder {
    opacity:.45;
}
/*==================================================
                FILE ICON COLORS
==================================================*/
 .ifm-file.pdf .ifm-file-icon {
    background:#d32f2f;
}
.ifm-file.doc .ifm-file-icon {
    background:#1565c0;
}
.ifm-file.xls .ifm-file-icon {
    background:#2e7d32;
}
.ifm-file.zip .ifm-file-icon {
    background:#6d4c41;
}
.ifm-file.image .ifm-file-icon {
    background:#ff6e00;
}
/*==================================================
                SEND BUTTON
==================================================*/
 .ifm-send {
    position:relative;
    overflow:hidden;
}
.ifm-send::before {
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:70%;
    height:100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform:skewX(-25deg);
}
.ifm-send:hover::before {
    left:140%;
    transition:1s;
}
/*==================================================
                UPLOAD ICON
==================================================*/
 .ifm-upload:hover svg {
    transform:translateY(-4px);
}
.upload-content svg {
    transition:.3s;
}
/*==================================================
                FOCUS ACCESSIBILITY
==================================================*/
 button:focus, input:focus, textarea:focus {
    outline:none;
}
/*==================================================
                MOBILE
==================================================*/
 @media(max-width:900px) {
    #ifmModal {
        width:96%;
    }
    #ifmContactForm {
        padding:30px;
    }
    .ifm-header {
        padding:30px;
    }
}
@media(max-width:768px) {
    .ifm-grid {
        grid-template-columns:1fr;
        gap:18px;
    }
    .ifm-header {
        flex-direction:column;
        text-align:center;
    }
    .ifm-logo {
        width:70px;
        height:70px;
    }
    .ifm-logo svg {
        width:34px;
        height:34px;
    }
    .ifm-header h2 {
        font-size:28px;
    }
    .upload-content {
        padding:30px 20px;
    }
    .upload-content svg {
        width:54px;
        height:54px;
    }
    .upload-content h3 {
        font-size:20px;
    }
    .ifm-send {
        font-size:16px;
        padding:16px;
    }
}
@media(max-width:576px) {
    #ifmModal {
        width:100%;
        height:100%;
        max-height:none;
        border-radius:0;
    }
    .ifm-header {
        padding:20px;
    }
    .ifm-close {
        width:40px;
        height:40px;
        right:10px;
        top:10px;
    }
    .ifm-header h2 {
        font-size:24px;
    }
    .ifm-header p {
        font-size:14px;
    }
    .ifm-field input, .ifm-field textarea {
        font-size:16px;
    }
    .ifm-alert {
        left:10px;
        right:10px;
        bottom:10px;
        min-width:auto;
    }
}
/*==================================================
            REDUCED MOTION
==================================================*/
 .ifm-contact {
    max-width:900px;
    margin:40px auto;
    padding:35px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0, 0, 0, .08);
    font-family:Arial, sans-serif;
}
.ifm-contact-header {
    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:30px;
}
.ifm-contact-header h2 {
    margin:0;
    font-size:28px;
    color:#222;
}
.ifm-contact-header p {
    margin:8px 0 0;
    color:#777;
}
.ifm-contact-icon {
    width:60px;
    height:60px;
    background:#ff6e00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ifm-contact svg {
    width:26px;
    height:26px;
    fill:currentColor;
}
.ifm-contact-icon svg {
    fill:#fff;
}
.ifm-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}
.ifm-field label {
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#555;
}
.ifm-input {
    position:relative;
}
.ifm-input svg {
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    fill:#999;
}
.ifm-input input, .ifm-field textarea {
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:14px 15px 14px 45px;
    font-size:15px;
    transition:.3s;
}
.ifm-field textarea {
    min-height:130px;
    padding:15px;
}
.ifm-input input:focus, .ifm-field textarea:focus {
    outline:none;
    border-color:#ff6e00;
}
.ifm-dropzone {
    margin-top:25px;
    min-height:160px;
    border:2px dashed #ddd;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    cursor:pointer;
    position:relative;
    transition:.3s;
}
.ifm-dropzone:hover, .ifm-dropzone.dragover {
    border-color:#ff6e00;
    background:#fff6ee;
}
.ifm-dropzone svg {
    width:45px;
    height:45px;
    fill:#ff6e00;
}
.ifm-dropzone strong {
    display:block;
    font-size:16px;
}
.ifm-dropzone span {
    color:#888;
    font-size:14px;
}
.ifm-dropzone input {
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}
.ifm-file-list {
    margin-top:15px;
}
.ifm-file-item {
    display:flex;
    align-items:center;
    gap:12px;
    background:#f7f7f7;
    padding:10px 15px;
    border-radius:8px;
    margin-bottom:8px;
}
.ifm-file-icon svg {
    width:22px;
    fill:#ff6e00;
}
.ifm-file-name {
    flex:1;
    overflow:hidden;
    text-overflow:ellipsis;
}
.ifm-remove-file {
    border:0;
    background:none;
    cursor:pointer;
}
.ifm-remove-file svg {
    width:18px;
    fill:#999;
}
.ifm-remove-file:hover svg {
    fill:#ff0000;
}
.ifm-footer {
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:20px;
    justify-content: center;
}
#ifm-contact-submit {
    background:#ff6e00;
    color:#fff;
    border:0;
    border-radius:8px;
    padding:15px 35px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}
#ifm-contact-submit:hover {
    background:#e85f00;
}
#ifm-contact-submit svg {
    fill:#fff;
}
#ifm-contact-submit.loading {
    opacity:.6;
    pointer-events:none;
}
#ifm-contact-result.success {
    color:#168534;
}
#ifm-contact-result.error {
    color:#d00000;
}
@media(max-width:700px) {
    .ifm-grid {
        grid-template-columns:1fr;
    }
    .ifm-contact {
        padding:20px;
    }
    .ifm-footer {
        flex-direction:column;
        align-items:flex-start;
    }
}
.ifm-open-contact {
    background:#ff6e00;
    color:#fff;
    border:0;
    padding:14px 25px;
    border-radius:8px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    margin: 0 auto;
}
.ifm-open-contact svg {
    width:20px;
    height:20px;
    fill:#fff;
}
.ifm-modal {
    display:none;
    position:fixed;
    z-index:99999;
    inset:0;
}
.ifm-modal.active {
    display:block;
}
.ifm-modal-overlay {
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, .55);
}
.ifm-modal-content {
    position:relative;
    max-width:950px;
    max-height:90vh;
    overflow-y:auto;
    margin:5vh auto;
    animation: ifmShow .3s ease;
}
.ifm-modal-close {
    position:absolute;
    right:10px;
    top:10px;
    z-index:5;
    width:40px;
    height:40px;
    border-radius:50%;
    border:0;
    background:#fff;
    cursor:pointer;
}
.ifm-modal-close svg {
    width:20px;
    fill:#555;
}
@keyframes ifmShow {
    from {
        opacity:0;
        transform:translateY(-40px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}
body.ifm-modal-open {
    overflow:hidden;
}
@media(max-width:700px) {
    .ifm-modal-content {
        margin:20px;
    }
}
#ifmOverlay {
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, .6);
    z-index:9998;
}
#ifm-contact-modal {
    display:block;
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:9999;
}
#ifmOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 99998;
}
#ifm-contact-modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    z-index: 99999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
#ifm-contact-modal {
    display: flex;
    flex-direction: column;
}

#ifmOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 99998;
    justify-content: center;
    align-items: center;
}
#ifmOverlay {
    display: none;
    /* скрыто по умолчанию */
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, .6);
    justify-content: center;
    align-items: center;
}
#ifmOverlay.active {
    display: flex;
}
#ifm-contact-modal {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.ifm-success-message {
    display:none;
    text-align:center;
    padding:50px 30px;
    animation:ifmFade .3s ease;
}
.ifm-success-icon {
    width:90px;
    height:90px;
    margin:0 auto 25px;
}
.ifm-success-icon svg {
    width:100%;
    height:100%;
    fill:none;
    stroke:#25b864;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.ifm-success-message h2 {
    font-size:28px;
    margin:0 0 15px;
    color:#222;
}
.ifm-success-message p {
    font-size:18px;
    margin:0 0 10px;
    color:#555;
}
.ifm-success-message span {
    display:block;
    color:#888;
    margin-bottom:30px;
}
.ifm-success-close {
    border:0;
    background:#ff6e00;
    color:#fff;
    padding:12px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}
.ifm-success-close:hover {
    opacity:.85;
}
@keyframes ifmFade {
    from {
        opacity:0;
        transform:translateY(15px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}
.ifm-upload {
    border:2px dashed #ddd;
    padding:35px;
    text-align:center;
    border-radius:14px;
    cursor:pointer;
    transition:.3s;
}
.ifm-upload.drag {
    border-color:#ff6e00;
    background:#fff4ec;
}
.ifm-file-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    margin-top:8px;
    background:#f5f5f5;
    border-radius:8px;
}
.ifm-file-item button {
    border:0;
    background:none;
    color:#ff0000;
    font-size:20px;
    cursor:pointer;
}
/* КОНЕЦ Модальное окно с формой */
 .product-title {
    color: #408abf;
    font-size: 2.3rem;
    font-weight: 600;
}
.social-links {
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    margin:40px auto;
}
.social-item {
    position:relative;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#fff;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0, 0, 0, .08);
    transition:.3s;
}
.social-item:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0, 0, 0, .18);
}
.social-item svg {
    width:34px;
    height:34px;
    fill:#555;
}
.whatsapp:hover svg {
    fill:#25D366;
}
.telegram:hover svg {
    fill:#2AABEE;
}
.gmail:hover svg {
    fill:#EA4335;
}
.max-logo {
    font-size:18px;
    font-weight:700;
    font-family:Arial, sans-serif;
    color:#2B62FF;
}
.max:hover .max-logo {
    color:#000;
}
/* ---------------- Tooltip ---------------- */
 .tooltip {
    position:absolute;
    bottom:90px;
    left:50%;
    transform:translateX(-50%) translateY(10px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    background:#fff;
    border-radius:14px;
    padding:10px;
    box-shadow:0 15px 40px rgba(0, 0, 0, .15);
    width: 200px;
}
.tooltip img {
    width:200px;
    height:200px;
    display:block;
}
.tooltip p {
    text-align: center;
    color: #292929;
    font-size: 16px;
    margin: 0;
}
.tooltip::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:10px solid white;
}
.social-item:hover .tooltip {
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}
.social-links {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    justify-content:center;
    max-width:500px;
    margin:20px auto;
}
.social-item {
    position:relative;
    width:40px;
    height:40px;
    justify-self:center;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0, 0, 0, .08);
    transition:.3s;
}
@media (max-width:768px) {
    .social-links {
        grid-template-columns:repeat(4, 1fr);
        max-width:240px;
    }
}
@media (max-width:480px) {
    .social-links {
        grid-template-columns:repeat(4, 1fr);
    }
}
.search-wrap {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
    margin: 0;
}
.row-flex {
    display:flex;
    flex-wrap:wrap;
}
.row-flex >[class*="col-"] {
    display:flex;
}
.product-price__specify {
    display: block;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    text-align: center;
}
.ifm-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: url("/image/ifm-banner.png") center center / cover no-repeat;
}
/* затемнение левой части */
 .ifm-banner::before {
    content:"";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 18, .92) 0%, rgba(15, 15, 18, .88) 42%, rgba(15, 15, 18, .45) 58%, rgba(15, 15, 18, 0) 75%);
}
/* декоративная диагональ */
 .ifm-banner::after {
    content:"";
    position: absolute;
    left: 46%;
    top: -40px;
    width: 2px;
    height: 480px;
    transform: rotate(18deg);
    background: #ff6e00;
    box-shadow: 16px 0 rgba(255, 110, 0, .35), -16px 0 rgba(255, 255, 255, .15);
}
.ifm-banner__content {
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:50%;
    height:100%;
    padding: 30px 70px 70px;
}
.ifm-banner__content h1 {
    color: #fff;
    font-size: 40px;
}
.ifm-banner h2 {
    margin:0;
    color:#fff;
    font-size:32px;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-1px;
}
.ifm-banner h2 span {
    display:block;
    color:#ff6e00;
    font-size:32px;
    font-weight:800;
}
.ifm-banner__contacts {
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:20px;
}
.banner-link {
    display:inline-flex;
    align-items:center;
    gap:14px;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:500;
    transition:.25s;
}
.banner-link svg {
    width:24px;
    height:24px;
    fill:#ff6e00;
    flex-shrink:0;
}
.banner-link:hover {
    color:#ff6e00;
}
.banner-link:hover svg {
    transform:scale(1.15);
}
/* декоративные точки */
 .ifm-banner__content::before {
    content:"";
    position:absolute;
    top:45px;
    left:35px;
    width:90px;
    height:90px;
    background-image: radial-gradient(#ff6e00 1.5px, transparent 1.5px);
    background-size:15px 15px;
    opacity:.65;
}
.ifm-banner__content::after {
    content:"";
    position:absolute;
    left:35px;
    bottom:45px;
    width:120px;
    height:2px;
    background:#ff6e00;
    box-shadow: 0 -12px rgba(255, 110, 0, .5), 0 12px rgba(255, 110, 0, .25);
}
/* адаптивность */
 @media (max-width:992px) {
    .ifm-banner {
        height:500px;
    }
    .ifm-banner::before {
        background:rgba(15, 15, 18, .82);
    }
    .ifm-banner::after {
        display:none;
    }
    .ifm-banner__content {
        width:100%;
        padding:45px;
    }
    .ifm-banner h2 {
        font-size:40px;
    }
    .ifm-banner h2 span {
        font-size:46px;
    }
    .banner-link {
        font-size:18px;
    }
}
@media (max-width:576px) {
    .ifm-banner {
        height:420px;
    }
    .ifm-banner__content {
        padding:30px;
    }
    .ifm-banner h2 {
        font-size:25px;
    }
    .ifm-banner h2 span {
        font-size:30px;
    }
    .banner-link {
        font-size:16px;
    }
}
.page-home .header {
    margin-bottom: 0;
}
.page-home #content {
    margin-top: 50px;
}
.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}
/*=========================
    IFM BENEFITS
=========================*/
 .ifm-benefits__header {
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}
.ifm-benefits__header h2 {
    margin:0 0 18px;
    font-size:42px;
    font-weight:700;
    color:#21384b;
}
.ifm-benefits__header p {
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#333;
}
.ifm-benefit {
    display:flex;
    align-items:flex-start;
    gap:22px;
    /*height:100%;*/
    padding:35px 30px;
    border:1px solid #ddd;
    border-radius:14px;
    background:#fff;
    transition:.3s;
}
.ifm-benefit:hover {
    border-color:#ff6e00;
    box-shadow:0 15px 40px rgba(33, 56, 75, .12);
    transform:translateY(-6px);
}
.ifm-benefit__icon {
    flex:0 0 80px;
    width:80px;
    height:80px;
    border-radius:50%;
    background:#21384b;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}
.ifm-benefit:hover .ifm-benefit__icon {
    /*background:#ff6e00;*/
}
.ifm-benefit__icon img {
    width:42px;
    height:42px;
}
.ifm-benefit__content {
    flex:1;
}
.ifm-benefit__number {
    margin-bottom:8px;
    font-size:44px;
    font-weight:800;
    color:#ff6e00;
    line-height:1;
}
.ifm-benefit__content h3 {
    margin:0 0 15px;
    font-size:24px;
    font-weight:600;
    color:#21384b;
}
.ifm-benefit__content p {
    margin:0;
    color:#333;
    line-height:1.8;
    font-size:15px;
}
@media (max-width:991px) {
    .ifm-benefit {
        margin-bottom:30px;
    }
}
@media (max-width:767px) {
    .ifm-benefits {
        padding:60px 0;
    }
    .ifm-benefits__header h2 {
        font-size:32px;
    }
    .ifm-benefit {
        padding:25px;
    }
    .ifm-benefit__icon {
        width:70px;
        height:70px;
        flex-basis:70px;
    }
    .ifm-benefit__number {
        font-size:36px;
    }
    .ifm-benefit__content h3 {
        font-size:20px;
    }
    .page-home .ifm-benefits {
        padding-bottom: 0;
    }
}



/* ===========================
   Описание товара
=========================== */

.page-product #tab-description {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

/* ---------- H2 ---------- */

.page-product #tab-description h2 {
    position: relative;
    margin: 45px 0 25px;
    padding: 0 0 12px 22px;

    color: #21384b;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;

    border-bottom: 2px solid #ddd;
}

.page-product #tab-description h2:first-child {
    margin-top: 0;
}

.page-product #tab-description h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;

    width: 6px;
    height: calc(100% - 8px);

    border-radius: 20px;
    background: #ff6e00;
}

.page-product #tab-description h2::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -2px;

    width: 80px;
    height: 2px;

    background: #ff6e00;
}


/* ---------- UL ---------- */

.page-product #tab-description ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.page-product #tab-description ul li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 34px;

    color: #444;
    line-height: 1.7;
}

.page-product #tab-description ul li:last-child {
    margin-bottom: 0;
}

.page-product #tab-description ul li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;

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

    font-size: 12px;
    font-weight: 700;

    color: #fff;
    background: #ff6e00;
    border-radius: 50%;
}

/* ---------- OL ---------- */

.page-product #tab-description ol {
    margin: 20px 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}

.page-product #tab-description ol li {
    position: relative;

    margin-bottom: 16px;
    padding-left: 42px;

    counter-increment: item;
}

.page-product #tab-description ol li::before {
    content: counter(item);

    position: absolute;
    left: 0;
    top: 0;

    width: 26px;
    height: 26px;

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

    font-size: 13px;
    font-weight: 700;

    color: #fff;
    background: #21384b;
    border-radius: 50%;
}

/* ---------- Links ---------- */

.page-product #tab-description a {
    color: #ff6e00;
    text-decoration: none;
    transition: .25s;
}

.page-product #tab-description a:hover {
    color: #21384b;
    text-decoration: underline;
}

/* ---------- Paragraph ---------- */

.page-product #tab-description p {
    margin-bottom: 18px;
}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .page-product #tab-description h2{
        font-size:22px;
        margin:35px 0 20px;
    }

}

.page-product .advantages {
    margin: 0;
    padding: 0;
}



@media(max-width:768px) {
    .available__text, .available__time {
        font-size: 14px;
    }
    .page-product h2 {
        font-size: 22px;
    }
    .btn.ifm-btn.ifm-open-contact.popup-content {
        margin-bottom: 30px;
    }
    .product-info__items {
        text-align: center;
    }
    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px 4px;
        padding: 10px 15px;
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.5;
    }
    .breadcrumb > li {
        display: inline-flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .breadcrumb > li + li:before {
        padding: 0 6px;
        font-size: 12px;
    }
    .breadcrumb > li:after {
        display: none;
    }
    .breadcrumb a {
        display: inline-block;
        word-break: break-word;
    }
    /* Последняя крошка */
    .breadcrumb > li:last-child {
        color: #777;
    }
    .breadcrumb a {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-decoration: underline;
    }
    .footer {
        padding: 20px 0;
    }
    .ifm-banner__content h1 {
        font-size: 34px;
        margin-top: 0;
    }
    .page-product .advantages, .page-product .company-advantages {
        margin: 0;
        padding: 0;
    }
    .categories-grid {
        gap: 10px;
        justify-content: center;
    }
    footer {
        margin-top: 50px;
    }
}