/*==================================================
    IRANYekan Font
==================================================*/
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebThin.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebThin.woff") format("woff");
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebLight.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebLight.woff") format("woff");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebRegular.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebRegular.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebMedium.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebMedium.woff") format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebBold.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebBold.woff") format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebExtraBold.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebExtraBold.woff") format("woff");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebBlack.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebBlack.woff") format("woff");
    font-style: normal;
    font-weight: 850;
    font-display: swap;
}

@font-face {
    font-family: "IRANYekan";
    src:
            url("../fonts/IRANYekan/WebFonts/fonts/woff2/IRANYekanWebExtraBlack.woff2") format("woff2"),
            url("../fonts/IRANYekan/WebFonts/fonts/woff/IRANYekanWebExtraBlack.woff") format("woff");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

/*==================================================
    Global Typography
==================================================*/

:root {
    --font-primary:
            "IRANYekan",
            Tahoma,
            Arial,
            sans-serif;
}

html {
    font-family: var(--font-primary);
    font-synthesis-weight: none;
}

body,
button,
input,
select,
option,
textarea {
    font-family: var(--font-primary);
}

body {
    font-weight: 400;
}

/*
 * لینک‌ها و سایر عناصر، فونت را از والد دریافت می‌کنند.
 */
a {
    font-family: inherit;
}

/*==================================================
    Font Size Utilities
==================================================*/

.font_xxsmall {
    font-size: 0.8125rem;
}

.font_xsmall {
    font-size: 0.929rem;
}

.font_small {
    font-size: 1.071rem;
}

.font_medium {
    font-size: 1rem;
}

.font_large {
    font-size: 1.5rem;
}

.font_xxlarge {
    font-size: 2rem;
}

















/* Design System ------------------------------------------------------------ */
/*Utility*/
.section-title {
    margin: 0;
    padding: 15px 15px 0 15px;
    font-size: 28px;
    font-weight: 700;
}
.section-description {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 13px;
    line-height: 25px;
    /*height: 25px;*/
    text-align: right;
}
.card{
    box-shadow: 0 1px 2px rgba(0,0,0,0.30), 0 6px 18px rgba(59,130,246,0.05);
    border: 1px solid #EEF2F7;
    border-radius: 20px;
    overflow: hidden;
}
.hover-card{
    transition: 0.3s ease;
}
.hover-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}
.text-primary{
    color: #2563eb;
}
.text-gray{
    color: #666;
}
.text-white{
    color: #fff;
}
.radius-md{
    border-radius: 10px;
    overflow: hidden;
}
.radius-lg{
    border-radius: 20px;
    overflow: hidden;
}
.flex{
    display: flex;
}
.flex-center{
    display: flex;
    align-items: center;
}
/*Component*/
.icon-16{
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-24{
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-32{
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-48{
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-72{
    width: 72px;
    height: 72px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-64{
    width: 64px;
    height: 64px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}

.icon-85{
    width: 85px;
    height: 85px;
    display: inline-block;
    position: relative;
    background: url('../images/slices.png') no-repeat;
}
.icon-title {
    top: 5px;
    margin-left: 5px;
    background: url('../images/slices.png') no-repeat;
}

.btn-filled{
    background-color: #2563eb;
    color: white;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(37,99,235,0.18);
    text-align: center;
    padding: 0 20px;
    transition: .25s ease;
}
.btn-filled:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37,99,235,0.25);
}
.btn-outline{
    border: 1px solid #1e68b4;
    color: #1e68b4;
    height: 60px;
    line-height: 58px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    text-align: center;
    padding: 0 48px;
}
.primary-light{
    color:#f6f9ff;
}

/*primary : #2563eb*/
/*primary hover : #1d4ed8*/
/*light background : #f6f9ff*/
/*card background : #FFFFFF*/
/*main text : #0F172A*/
/*Secondary text : #64748b*/
/*Border-Light : #E5E7EB*/
/*border-footer : #FFFFFF14*/
/*Footer Background Start : #08162F;*/
/*Footer Background middle : #0B1E42;*/
/*Footer Background End : #0E2F6F:*/




/*#2563EB*/
/*#C2CEE8*/






div, ul, li, input {
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    cursor: pointer;
    color: #0f172a;
}
li {
    list-style: none;
}



/*  border */
/*.border_1 {
    border: 1px solid #0897CD;
}*/

/*.border-left_1 {
    border-left: 1px solid #0897CD;
}*/

/*.border-right_1 {
    border-right: 1px solid #0897CD;
}*/

/*.border-bottom_1 {
    border-bottom: 1px solid #0897CD;
}*/
.border_2{
    border: 1px solid #cccccc;
}

.border-right_2{
    border-right: 1px solid #cccccc;
}
.border-left_2{
    border-left: 1px solid #cccccc;
}
.border-bottom_2{
    border-bottom: 1px solid #cccccc;
}
.border-top_2{
    border-top: 1px solid #cccccc;
}
.border_3{
    border: 1px solid #919191
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* hero ------------------------------------------------------------ */
.hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    background-color: #021a48;
    margin-top: 20px;
    overflow: hidden;
}
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    aspect-ratio: auto;
}
.hero .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1024px;
    height: 480px;
    pointer-events: none;
}

.hero > .hero-content {
    position: relative;
    color: #fff;
    max-width: 520px;
    margin-left: auto;
    padding: 40px;
}
.hero > .hero-content h1 {
    margin-bottom: 20px;
}
.hero > .hero-content p {
    margin-bottom: 20px;
}
.breadcrumb {
    margin-bottom: 25px;
    opacity: .8;
}
.breadcrumb ol{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb li:not(:last-child)::after{
    content: "/";
    margin: 0 10px;
}
.hero > .hero-content .btn-filled {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}
/* Laptop -------------------------------------------------- */
@media (max-width: 1200px) {
    .hero {
        height: 360px;
    }
    .hero > .hero-content {
        max-width: 480px;
        padding: 35px;
    }
}
/* Tablet -------------------------------------------------- */
@media (max-width: 1024px){
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
                to left,
                rgba(2, 26, 72, 0.95) 0%,
                rgba(2, 26, 72, 0.85) 25%,
                rgba(2, 26, 72, 0.45) 45%,
                rgba(2, 26, 72, 0) 70%
        );
        pointer-events: none;
    }
    .hero > .hero-content {
        width: 100%;
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 520px;
        margin-left: auto;
        padding: 40px 20px;
    }
    .hero > .hero-content p {
        margin-bottom: 18px;
        width: 80%;
    }
}
@media (max-width: 992px) {
    .hero {
        height: 330px;
    }
    .hero img {
        height: 100%;
        width: auto;
    }
    .hero > .hero-content {
        max-width: 450px;
        padding: 30px;
    }
    .hero > .hero-content h1 {
        margin-bottom: 16px;
    }
    .hero > .hero-content p {
        margin-bottom: 18px;
    }
    .breadcrumb {
        margin-bottom: 20px;
    }
}
/* Mobile -------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        height: 420px;
        display: flex;
        align-items: flex-end;
    }
    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }
    .hero > .hero-content h1 {
        margin-bottom: 15px;
    }
    .hero > .hero-content p {
        margin-bottom: 18px;
    }
    .breadcrumb {
        margin-bottom: 20px;
    }
}
/* Small Mobile -------------------------------------------- */
@media (max-width: 576px) {

    .hero {
        height: 400px;
    }
    .hero > .hero-content {
        padding: 25px 20px;
    }
    .hero > .hero-content h1 {
        margin-bottom: 12px;
    }
    .hero > .hero-content p {
        margin-bottom: 15px;
    }
    .breadcrumb {
        margin-bottom: 18px;
    }
}
@media (max-width: 425px){
    .hero {
        height: 340px;
    }
    .hero > .hero-content {
        padding: 25px 20px;
    }
    .hero > .hero-content h1 {
        margin-bottom: 12px;
        font-size: 1.5rem;
    }
    .hero > .hero-content p {
        margin-bottom: 15px;
        font-size: .87rem;
        width: 70%;
    }
    .breadcrumb {
        margin-bottom: 18px;
    }
}



/* body ------------------------------------------------------------ */

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 5px;
}

* {
    box-sizing: border-box;
}
/* main ------------------------------------------------------------------ */

#main #content {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
}
.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(16px, 2.5vw, 32px);
}

/* ==========================================================
   Header
   ========================================================== */

.header-main {
    position: relative;
    z-index: 1000;
    overflow: visible;
    border-radius: 30px;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.95);
}

#header {
    display: grid;
    grid-template-columns:
        minmax(260px, 1fr)
        minmax(320px, 560px)
        minmax(210px, 1fr);
    grid-template-areas: "brand search quote";
    align-items: center;
    column-gap: 32px;

    width: 100%;
    max-width: 1440px;
    height: 100px;
    margin: 0 auto;
    padding-inline: 24px;
    box-sizing: border-box;
}


/* Skip link
   ---------------------------------------------------------- */

.skip-link {
    position: fixed;
    z-index: 100000;
    top: 10px;
    right: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #021a48;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(2, 26, 72, 0.18);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* Brand
   ---------------------------------------------------------- */

#header .right {
    grid-area: brand;

    display: flex;
    align-items: center;
    min-width: 0;
}

.header-main .company-logo {
    flex: 0 0 auto;
    margin-left: 5px;
    background-position: 0 -296px;
}

.header-main .company-name {
    margin: 0;
    color: #0f172a;
    font-size: 31px;
    line-height: 1.4;
    white-space: nowrap;
}

.header-main .company-description {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
    white-space: nowrap;
}


/* Search
   ---------------------------------------------------------- */

#header .center {
    grid-area: search;
    min-width: 0;
}

.header-main .search-box {
    display: flex;
    align-items: center;

    width: 100%;
    height: 54px;

    border: 1px solid #d1d5db;
    border-radius: 16px;
    transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease;
}

.header-main .search-box:hover {
    border-color: #93c5fd;
}

.header-main .search-box:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px #dbeafe;
}

.header-main .search-box form {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
}

.header-main .search-box input {
    flex: 1;
    min-width: 0;
    height: 100%;

    padding: 0 12px 0 8px;

    border: none;
    border-radius: 16px;
    outline: none;

    color: #0f172a;
    background: transparent;
    font-size: 15px;
}

.header-main .search-box input::placeholder {
    color: #94a3b8;
}

.header-main .search-box button {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 6px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    background-position: 8px -64px;
    cursor: pointer;
}

.header-main .search-box:focus-within button {
    background-position: 4px 4px;
}


/* Desktop quote button
   ---------------------------------------------------------- */

#header .left {
    grid-area: quote;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-main .left > a {
    display: flex;
    align-items: center;

    min-width: 190px;
    height: 70px;
    padding-inline: 20px;
}

.header-main .left > a > i {
    flex: 0 0 auto;
    margin-left: 10px;
    background-position: -128px -192px;
}

.header-main .left .btn-name {
    display: block;
    margin: 0;

    font-size: 17px;
    line-height: 25px;
}

.header-main .left .btn-description {
    display: block;
    margin: 0;

    font-size: 12px;
    line-height: 20px;
}


/* Main navigation
   ---------------------------------------------------------- */

.main-nav {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    max-width: 1440px;
    height: 60px;
    margin: 0 auto;
    padding-inline: 24px;
    box-sizing: border-box;

    border-top: 1px solid #eef2f7;
}

.main-nav_list {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 45px;

    height: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
}

.main-nav_Item {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;
}

.main-nav_Item::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background-color: #2563eb;
    transition: width 0.25s ease;
}

.main-nav_Item:hover::after,
.main-nav_Item:focus-within::after {
    width: 100%;
}

.main-nav_link {
    display: flex;
    align-items: center;

    height: 100%;

    color: #0f172a;
    font-size: 16px;
    font-weight: 700;

    transition: color 0.25s ease;
}

.main-nav_link:hover,
.main-nav_link:focus-visible,
.main-nav_link[aria-current="page"],
.main-nav_link.is-active {
    color: #2563eb;
}

.header-phone {
    display: flex;
    align-items: center;
    flex: 0 0 auto;

    margin-inline-start: auto;

    color: #0f172a;
    font-weight: 600;
}

.header-phone i {
    top: 0;

    margin-right: 6px;
    border: 1px solid #eef2f7;
    border-radius: 10px;

    background-color: #eef2f7;
    background-position: -528px -360px;
}

.mobile-quote,
.mobile-menu-toggle,
.submenu-toggle,
.level2-toggle {
    display: none;
}


/* Product menu
   ---------------------------------------------------------- */
#menu {
    z-index: 100;
    width: 220px;
    padding-inline: 14px;
    border-radius: 12px;
    line-height: 38px;
}
#menu .menu-icon {
    position: relative;
    top: 0;
    flex: 0 0 24px;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 6px;
    background: url("../images/menu-24.png") no-repeat center;
}
#menu > .main-nav_link {
    flex: 1;
}
#menu .level1,
#menu .level2 {
    display: none;
    margin: 0;
    padding: 0;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    list-style: none;
    box-shadow: 0 15px 35px rgba(2, 26, 72, 0.14);
}
#menu.is-open > .level1 {
    display: block;
}
#menu .level1 {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    color: #0f172a;
    background-color: #f8fafc;
}
#menu .level1 > li {
    position: relative;
    background-color: #f8fafc;
}
#menu .level1 > li:first-child {
    border-radius: 12px 12px 0 0;
}
#menu .level1 > li:last-child {
    border-radius: 0 0 12px 12px;
}
#menu .level1 > li:not(:last-child) {
    border-bottom: 1px solid #dbe3ee;
}
#menu .menu-row {
    display: flex;
    align-items: center;
    min-height: 44px;
}
#menu .menu-row > a {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 44px;
    padding-inline: 12px;
    color: #0f172a;
    line-height: 1.8;
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}
#menu .level1 > li:hover > .menu-row > a,
#menu .level1 > li.is-open > .menu-row > a {
    color: #1748cc;
    background-color: #e8f0ff;
}
#menu .level2 {
    position: absolute;
    top: -1px;
    right: calc(100% - 2px);
    width: 220px;
    background-color: #fff;
}
#menu .level1 > li.is-open > .level2 {
    display: block;
}
#menu .level2 > li {
    background-color: #fff;
}
#menu .level2 > li:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}
#menu .level2 > li:first-child,
#menu .level2 > li:first-child > a {
    border-radius: 12px 12px 0 0;
}
#menu .level2 > li:last-child,
#menu .level2 > li:last-child > a {
    border-radius: 0 0 12px 12px;
}
#menu .level2 > li > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 12px;
    color: #0f172a;
    line-height: 1.8;
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}
#menu .level2 > li > a:hover,
#menu .level2 > li > a:focus-visible {
    color: #1748cc;
    background-color: #e8f0ff;
}
/* Focus-------------- */
.mobile-menu-toggle:focus-visible,
.submenu-toggle:focus-visible,
.level2-toggle:focus-visible,
.header-phone:focus-visible,
.mobile-quote:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}
/* Medium desktop ------------ */
@media (max-width: 1200px) and (min-width: 1025px) {
    #header {
        grid-template-columns:
            minmax(240px, 1fr)
            minmax(300px, 1.5fr)
            minmax(185px, 1fr);
        column-gap: 20px;
    }
    .header-main .company-name {
        font-size: 27px;
    }
    .header-main .left > a {
        min-width: 180px;
        padding-inline: 15px;
    }
    .main-nav_list {
        gap: 28px;
    }
    #menu {
        width: 210px;
    }
}
/* Tablet and mobile ----------------------- */
@media (max-width: 1024px) {
    .header-main {
        overflow: hidden;
        border-radius: 22px;
    }
    #header {
        grid-template-columns: minmax(0, 1fr) 48px;
        grid-template-areas:
            "brand toggle"
            "search search";
        column-gap: 12px;
        row-gap: 12px;
        height: auto;
        min-height: 88px;
        padding: 12px 18px 16px;
    }
    #header .right {
        min-width: 0;
    }
    #header .center {
        width: 100%;
    }
    #header .left {
        display: none;
    }
    .mobile-menu-toggle {
        grid-area: toggle;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid #dbe3ee;
        border-radius: 12px;
        background-color: #f8fafc;
        cursor: pointer;
    }
    .mobile-menu-toggle > span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background-color: #021a48;
        transition:
                transform 0.25s ease,
                opacity 0.25s ease;
    }
    .header-main.is-mobile-open .mobile-menu-toggle > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .header-main.is-mobile-open .mobile-menu-toggle > span:nth-child(2) {
        opacity: 0;
    }
    .header-main.is-mobile-open .mobile-menu-toggle > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .header-main .search-box {
        height: 48px;
        border-radius: 13px;
    }
    .header-main .search-box input {
        border-radius: 13px;
        font-size: 14px;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        height: auto;
        max-width: none;
        padding: 0 18px 18px;
        border-top: 1px solid #e5e7eb;
    }
    .header-main.is-mobile-open .main-nav {
        display: flex;
    }
    .main-nav_list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        height: auto;
    }
    .main-nav_Item {
        display: block;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #e5e7eb;
    }
    .main-nav_Item::after {
        display: none;
    }
    .main-nav_link {
        width: 100%;
        min-height: 50px;
        height: auto;
        font-size: 15px;
    }
    .mobile-quote {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        margin-top: 16px;
        box-sizing: border-box;
    }
    .header-phone {
        justify-content: center;
        width: 100%;
        min-height: 50px;
        margin: 10px 0 0;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background-color: #f8fafc;
    }
    .header-phone i {
        transform: scale(0.82);
    }
    /* Mobile product accordion */
    #menu {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr) 44px;
        align-items: center;
        width: 100%;
        padding: 0;
        border-radius: 0;
        line-height: normal;
    }
    #menu > .menu-icon {
        grid-column: 1;
        margin: 0;
    }
    #menu > .main-nav_link {
        grid-column: 2;
        min-width: 0;
    }
    .submenu-toggle {
        grid-column: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 10px;
        color: #021a48;
        background-color: #eef4ff;
        cursor: pointer;
    }
    .level2-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: none;
        border-radius: 9px;
        color: #334155;
        background-color: transparent;
        cursor: pointer;
    }
    .submenu-toggle::before,
    .level2-toggle::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform 0.2s ease;
    }
    .submenu-toggle[aria-expanded="true"]::before,
    .level2-toggle[aria-expanded="true"]::before {
        transform: rotate(225deg) translate(-2px, -2px);
    }
    #menu > .level1 {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
        margin: 0 0 10px;
        border: none;
        border-radius: 12px;
        background-color: #f8fafc;
        box-shadow: none;
    }
    #menu .level1 > li {
        position: static;
        border-radius: 0;
    }
    #menu .menu-row {
        min-height: 46px;
    }
    #menu .menu-row > a {
        min-height: 46px;
        padding-inline: 12px;
        font-size: 14px;
    }
    #menu .level2 {
        position: static;
        width: auto;
        margin: 0 14px 10px;
        border: none;
        border-right: 2px solid #bfdbfe;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: none;
    }
    #menu .level2 > li,
    #menu .level2 > li:first-child,
    #menu .level2 > li:last-child {
        border-radius: 0;
    }
    #menu .level2 > li > a {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 13px;
    }
}

/* Small mobile-------------------------- */
@media (max-width: 600px) {
    .header-main {
        border-radius: 18px;
    }
    #header {
        grid-template-columns: minmax(0, 1fr) 44px;
        padding: 10px 12px 14px;
    }
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }
    .header-main .company-name {
        font-size: 22px;
    }
    .header-main .company-description {
        font-size: 11px;
    }
    .header-main .search-box input {
        font-size: 13px;
    }
    .main-nav {
        padding-inline: 12px;
    }
}

/* Very small mobile ---------------------------------- */
@media (max-width: 360px) {
    .header-main .company-name {
        font-size: 20px;
    }
    .header-main .company-description {
        font-size: 10px;
    }
    .header-main .search-box input {
        padding-right: 8px;
    }
}
/* Reduced motion ------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle > span,
    .submenu-toggle::before,
    .level2-toggle::before,
    .skip-link {
        transition: none;
    }
}



/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    position: relative;
    overflow: hidden;

    width: 100%;
    margin-top: 40px;

    color: #fff;
    background-color: #001130;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: #fff;
}

.site-footer a:focus-visible {
    outline: 3px solid #60a5fa;
    outline-offset: 3px;
}


/* Decorative backgrounds
   ---------------------------------------------------------- */

.footer-bg-left,
.footer-bg-right {
    position: absolute;
    bottom: 0;
    z-index: 0;

    pointer-events: none;

    background-repeat: no-repeat;
    background-size: contain;
}

.footer-bg-left {
    left: 0;

    width: 520px;
    height: 420px;

    opacity: 0.46;
    background-image: url("../images/footer-left.webp");
    background-position: left bottom;
}

.footer-bg-right {
    right: 0;

    width: 660px;
    height: 440px;

    opacity: 0.52;
    background-image: url("../images/footer-right.webp");
    background-position: right bottom;
}


/* Main footer container
   ---------------------------------------------------------- */

#footer {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 28px 0;
}


/* Footer top
   ---------------------------------------------------------- */

.footer-top {
    display: grid;
    grid-template-columns:
        minmax(270px, 1.7fr)
        repeat(3, minmax(150px, 1fr))
        minmax(220px, 1.3fr);
    gap: 40px;
}

.footer-column {
    position: relative;
    min-width: 0;
}

.footer-column:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 10px;
    left: -20px;

    width: 1px;
    height: calc(100% - 10px);

    background: linear-gradient(
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
    );
}

.footer-column > h3 {
    position: relative;

    margin: 0;
    padding-bottom: 20px;

    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
}

.footer-column > h3::after {
    content: "";

    position: absolute;
    right: 30%;
    bottom: 0;

    width: 40%;
    height: 3px;

    border-radius: 3px;
    background-color: #2563eb;
}

.footer-column > ul {
    margin-top: 25px;
    padding-inline: 12px;
}

.footer-column > ul > li {
    min-width: 0;
}

.footer-column > ul > li > a {
    display: inline-flex;
    align-items: center;

    min-height: 40px;

    color: #fff;
    font-size: 13px;
    line-height: 1.8;

    transition: color 0.2s ease;
}

.footer-column > ul > li > a:hover {
    color: #60a5fa;
}

.footer-column:not(.footer-contact)
> ul
> li
> a::before {
    content: "";

    position: relative;
    top: 1px;

    display: inline-block;
    flex: 0 0 16px;

    width: 16px;
    height: 16px;
    margin-left: 6px;

    background:
            url("../images/slices.png")
            -48px -48px
            no-repeat;
}


/* Company information
   ---------------------------------------------------------- */

.footer-company {
    min-width: 0;
    padding: 20px 0 0 35px;
}

.footer-company .company-name {
    display: inline-flex;
    align-items: center;

    margin: 0;

    color: #fff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.8;
}

.footer-company .company-name .icon-64 {
    flex: 0 0 64px;

    margin-left: 8px;

    background-position: -64px -296px;
}

.footer-company .company-description {
    max-width: 440px;
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 2.2;
    text-align: justify;
}


/* Social links
   ---------------------------------------------------------- */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.footer-social li {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;

    background-color: rgba(255, 255, 255, 0.03);

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);

    transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background-color 0.25s ease,
            box-shadow 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);

    border-color: #3b82f6;
    background-color: #2563eb;

    box-shadow:
            0 10px 25px rgba(37, 99, 235, 0.3);
}


/* Contact information
   ---------------------------------------------------------- */

.footer-contact {
    font-style: normal;
}

.footer-contact > ul {
    padding-inline: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 60px;
}

.footer-contact li > .icon-48 {
    flex: 0 0 48px;

    border-radius: 50%;

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);
}

.footer-contact li > a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-contact .tell {
    background-position: -384px -360px;
}

.footer-contact .mobile {
    background-position: -432px -360px;
}

.footer-contact .email {
    background-position: -336px -360px;
}

.footer-contact .address {
    background-position: -480px -360px;
}


/* Consultation CTA
   ---------------------------------------------------------- */

.footer-middle {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    margin-top: 50px;
    padding: 28px clamp(30px, 6vw, 85px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    background-color: rgba(255, 255, 255, 0.025);

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);
}

.footer-middle .right-icon {
    display: inline-block;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
            url("../images/slices.png")
            0 -493px
            no-repeat;

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);
}

.footer-middle .right {
    min-width: 0;
}

.footer-middle .right h2 {
    margin: 0;

    color: #fff;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 700;
    line-height: 1.8;
}

.footer-middle .right p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 2;
}

.footer-middle .left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-middle .btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 220px;
    min-height: 52px;
    padding-inline: 20px;

    line-height: 1.6;
    white-space: nowrap;
}

.footer-middle .btn-filled::after {
    content: none;
}

.footer-middle .btn-filled .icon-32 {
    flex: 0 0 32px;
    background-position: -128px -192px;
}


/* Footer advantages
   ---------------------------------------------------------- */

.footer-bottom {
    overflow: hidden;

    margin-top: 30px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);
}

.footer-bottom ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;

    padding: 1px;

    background-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 0;
    min-height: 130px;
    padding: 20px 14px;

    background-color: rgba(0, 17, 48, 0.92);

    transition:
            transform 0.25s ease,
            background-color 0.25s ease;
}

.footer-bottom li:hover {
    z-index: 1;

    transform: translateY(-3px);
    background-color: rgba(4, 30, 76, 0.96);
}

.footer-bottom .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 72px;
}

.footer-bottom .icon .icon-72 {
    border-radius: 50%;

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 8px 20px rgba(37, 99, 235, 0.15);
}

.footer-bottom .content {
    min-width: 0;
}

.footer-bottom h3 {
    margin: 0;

    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    text-align: right;
}

.footer-bottom p {
    margin: 3px 0 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.8;
    text-align: right;
}

.footer-bottom .support {
    background-position: -360px -224px;
}

.footer-bottom .warranty {
    background-position: -432px -224px;
}

.footer-bottom .originality {
    background-position: -504px -224px;
}

.footer-bottom .delivery {
    background-position: -576px -224px;
}

.footer-bottom .price {
    background-position: -648px -224px;
}


/* Copyright
   ---------------------------------------------------------- */

.footer-end {
    margin: 0;
    padding: 24px 16px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}


/* ==========================================================
   Medium desktop
   ========================================================== */

@media (max-width: 1200px) {

    .footer-bg-left {
        width: 420px;
        height: 340px;
        opacity: 0.32;
    }

    .footer-bg-right {
        width: 500px;
        height: 360px;
        opacity: 0.38;
    }

    #footer {
        padding-top: 65px;
    }

    .footer-top {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }

    .footer-company {
        grid-column: 1 / -1;

        max-width: 720px;
        padding: 0;
    }

    .footer-column {
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column:not(:last-child)::after {
        display: none;
    }

    .footer-bottom ul {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .footer-bottom li {
        grid-column: span 2;
    }

    .footer-bottom li:nth-last-child(-n + 2) {
        grid-column: span 3;
    }

}


/* ==========================================================
   Tablet
   ========================================================== */

@media (max-width: 900px) {

    #footer {
        padding-inline: 22px;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-middle {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 22px;

        padding: 28px 30px;
    }

    .footer-middle .right-icon {
        transform: scale(0.9);
    }

    .footer-middle .left {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-bottom ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom li,
    .footer-bottom li:nth-last-child(-n + 2) {
        grid-column: auto;
    }

    .footer-bottom li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

}


/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 600px) {

    .site-footer {
        margin-top: 30px;
    }

    .footer-bg-left,
    .footer-bg-right {
        display: none;
    }

    #footer {
        padding: 45px 14px 0;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .footer-company {
        grid-column: auto;
        max-width: none;
    }

    .footer-company .company-name {
        font-size: 25px;
    }

    .footer-company .company-description {
        max-width: none;

        font-size: 13px;
        line-height: 2.1;
    }

    .footer-social {
        justify-content: center;
        margin-top: 25px;
    }

    .footer-column {
        padding-top: 18px;
    }

    .footer-column > h3 {
        padding-bottom: 14px;

        font-size: 18px;
        text-align: right;
    }

    .footer-column > h3::after {
        right: 0;

        width: 45px;
    }

    .footer-column > ul {
        margin-top: 14px;
        padding-inline: 4px;
    }

    .footer-contact li {
        min-height: 56px;
    }

    .footer-middle {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;

        margin-top: 35px;
        padding: 25px 18px;

        text-align: center;
    }

    .footer-middle .right-icon {
        justify-self: center;
    }

    .footer-middle .right h2 {
        font-size: 20px;
        line-height: 1.8;
    }

    .footer-middle .right p {
        font-size: 12px;
        line-height: 2;
    }

    .footer-middle .left {
        grid-column: auto;

        width: 100%;
    }

    .footer-middle .btn-filled {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .footer-bottom {
        margin-top: 22px;
    }

    .footer-bottom li {
        min-height: 120px;
    }

    .footer-end {
        padding-inline: 8px;
        font-size: 12px;
    }

}


/* ==========================================================
   Small mobile
   ========================================================== */

@media (max-width: 520px) {

    .footer-bottom ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom li,
    .footer-bottom li:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .footer-bottom li {
        justify-content: flex-start;

        min-height: 105px;
        padding-inline: 20px;
    }

}


/* ==========================================================
   Very small mobile
   ========================================================== */

@media (max-width: 360px) {

    .footer-company .company-name {
        font-size: 22px;
    }

    .footer-contact li {
        gap: 7px;
    }

    .footer-contact li > .icon-48 {
        transform: scale(0.88);
    }

    .footer-middle {
        padding-inline: 14px;
    }

    .footer-bottom li {
        padding-inline: 12px;
    }

}


/* ==========================================================
   Reduced motion
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .footer-social a,
    .footer-bottom li {
        transition: none;
    }

}






/* process ------------------------------------------------------------ */
.process-section {
    margin-top: 40px;
    position: relative;
}
.process-section .process {
    display: flex;
    position: relative;
    gap: 20px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}
.process-section .process::before {
    content: "";
    position: absolute;
    top: 147px;
    right: 8.333%;
    left: 8.333%;
    height: 3px;
    background-color: #dbe6ff;
    z-index: 0;
    pointer-events: none;
}
.process-section .process-item {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
}
.process-section .icon {
    width: 90px;
    height: 90px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition:
            transform .35s,
            background-color .35s,
            color .35s;
}
.process-section .number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2d6bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 38px auto;
    font-weight: bold;
}
.process-item .process-title {
    margin: 0 0 12px;
}
.process-item .process-description {
    margin: 0;
    line-height: 1.9;
}
.process-section .process-item:hover .icon {
    background: #2d6bff;
    color: #fff;
    transform: translateY(-8px);
}
.process-item .comments {
    background-position: -360px -593px;
}
.process-item:hover .comments {
    background-position: -432px -593px;
}
.process-item .clipboard {
    background-position: -504px -593px;
}
.process-item:hover .clipboard {
    background-position: -576px -593px;
}
.process-item .gear {
    background-position: 0 -647px;
}
.process-item:hover .gear {
    background-position: -72px -647px;
}
.process-item .delivery {
    background-position: -144px -647px;
}
.process-item:hover .delivery {
    background-position: -216px -647px;
}
.process-item .wrench {
    background-position: -288px -647px;
}
.process-item:hover .wrench {
    background-position: -360px -647px;
}
.process-item .customer-service {
    background-position: -432px -647px;
}
.process-item:hover .customer-service {
    background-position: -504px -647px;
}

@media (max-width: 1200px) {
    .process-section .process {
        gap: 10px;
    }
    .process-section .process-description {
        padding: 0 5px;
    }
}
@media (max-width: 992px) {
    .process-section .process {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 45px 20px;
    }
    .process-section .process::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .process-section .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }
}
@media (max-width: 576px) {
    .process-section {
        margin-top: 30px;
    }
    .process-section .process {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    .process-section .icon {
        width: 80px;
        height: 80px;
    }
    .process-section .number {
        width: 34px;
        height: 34px;
        margin: 30px auto;
    }
}





#clients #clients-title .icon-title{
    background-position: -360px -96px;
}
#clients .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
}
#clients .image img {
    display: block;
    width: 110px;
    height: 110px;
    margin: 0;
    object-fit: contain;
}
#clients .brand-name {
    display: -webkit-box;
    height: 40px;
    margin-top: 6px;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
#clients .client-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
#clients .client-link:focus-visible {
    border-radius: inherit;
    outline: 3px solid #2563eb;
    outline-offset: -3px;
}


