* {
    font-family: Yekan Bakh FaNum;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    direction: rtl;
    background-color: #fff;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.img {
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
}

/* color s */
:root {
    --white: #ffffff;
    --black: #000000;
    --light-blue: #ebf3ff;
    --blue: #1667ff;
    --blue-2: #1169e4;
}

/* color e */
/* header s */
h2 {
    color: var(--black);
}

.main-nav {
    padding-top: 32px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    box-shadow: 0px 4px 20px 0px #0000001a;
    border-radius: 16px;
    position: relative;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
}

.logo {
    padding: 16px;
}
.logo img,
.logo-mobile img,
.mobile-open-menu img {
    width: 135px;
}

.menu {
    display: flex;
    align-items: center;
}

.cta-menu {
    gap: 24px;
    display: flex;
    padding: 16px;
}

.phone-call {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #070d14;
}

.phone-call img {
    margin-right: 8px;
}

.btn-inquiry-warranty {
    padding: 16px;
    border: 1px solid #070d14;
    border-radius: 8px;
    color: #070d14;
    font-size: 14px;
    font-weight: 600;
}

.btn-repair-request {
    padding: 16px;
    background-color: var(--black);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 992px) {
}

.mega-menu {
    background-color: var(--white);
    margin-top: 16px;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0px 4px 10px 0px #0000001a;
    position: absolute;
    top: 80px;
    right: 0;
    max-width: 100%;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    transition: all 300ms ease-out;
    overflow: hidden;
    z-index: 1;
}

.mega-menu.show {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    transform: translateY(0px);
}

.single-mega {
    display: block !important;
}

.single-mega li {
    padding: 24px;
    border-radius: 16px;
}

.single-mega li:hover {
    background-color: var(--light-blue);
    transition: 0.3s;
}

.single-mega li a {
    color: #070d14;
    font-size: 16px;
    font-weight: 600;
}

.mobile-main-nav {
    display: none;
}

@media (max-width: 992px) {
    .mobile-main-nav {
        display: flex;
        position: relative;
        z-index: 2;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        background-color: var(--white);
        border-radius: 0 0 16px 16px;
        box-shadow: 0px 4px 20px 0px #0000001a;
        position: relative;
    }

    .main-mobile-menu {
        background-color: var(--white);
        width: 100vw;
        height: 100vh;
        position: absolute;
        max-width: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        transition: right 0.3s ease;
    }

    .main-mobile-menu.show {
        right: 0;
    }

    .head-mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        background-color: var(--white);
        border-radius: 0 0 16px 16px;
        box-shadow: 0px 4px 20px 0px #0000001a;
        max-width: 100%;
    }

    .mobile-menu {
        padding: 16px;
    }

/*     .mobile-menu ul{
        overflow: auto;
        height: 50vh;
    } */

    .mobile-menu ul li {
        /* padding-top: 16px;
        padding-bottom: 26px; */
        border-bottom: 1px solid #e4e4e5;
        line-height: 40px;
    }

    .mobile-menu ul li a {
        width: 100%;
        max-width: 100%;
        color: #070d14;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu ul li a:focus,
    .mobile-menu ul li a:active {
        color: var(--blue);
    }

    .mobile-menu .toggle-submenu{
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu .toggle-submenu a{
        width: 50%;
    }
    .mobile-menu .toggle-submenu img{
        padding: 5px 50px 5px 0;
        transition: 0.2s;
    }
    .mobile-menu .toggle-submenu.open img{
        transform: scaleY(-1);
    }

    .sub-menu-mobile {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        list-style: none;
        transition: max-height 0.3s ease-out;
    }

    .sub-menu-mobile.open {
        max-height: 200px;
    }

    .sub-menu-mobile li {
        border-bottom: none !important;
        padding: 0 !important;
    }

    .sub-menu-mobile li a {
        font-size: 12px !important;
    }

    .footer-mobile-menu {
        position: absolute;
        bottom: 24px;
    }

    .btn-inquiry-warranty-mobile {
        padding: 16px;
        border: 1px solid #070d14;
        border-radius: 8px;
        color: #070d14;
        font-size: 14px;
        font-weight: 600;
    }

    .btn-repair-request-mobile {
        padding: 16px;
        background-color: var(--blue);
        border-radius: 8px;
        color: var(--white);
        font-size: 14px;
        font-weight: 600;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 104px;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    color: #9fa1a4;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.breadcrumb a img {
    margin: 0 8px;
}

.breadcrumb p {
    color: #070d14;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

@media (max-width: 992px) {
    .breadcrumb {
        margin-top: 12px;
        margin-bottom: 24px;
    }
}

.main-footer-icon {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e4e4e5;
    padding-bottom: 40px;
    margin-top: 32px;
}

.footer-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
}
.footer-icon-box {
    flex: 0 0 20%;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
}

.footer-icon-box:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #cbcbcb;
}

.footer-icon-box img {
    margin: 0 auto;
    display: flex;
}

.footer-icon-box p {
    text-align: center;
}
@media (max-width: 992px) {
    .footer-icon-box {
        flex: 0 0 auto;
        width: 40%;
        max-width: 80%;
    }
}
.footer-logo {
    margin-top: 24px;
}
.footer-logo img {
    width: 164px;
}

.footer-info {
    display: flex;
}
.footer-info a,
.footer-menu a {
    color: #202024;
}
.quest {
    display: flex;
    align-items: center;
}

.quest img {
    margin-left: 4px;
}

.quest p {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}

.answ {
    margin-right: 56px;
}

.answ p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.footer-menu h4 {
    font-size: 16px;
    line-height: 36px;
    font-weight: 700;
}

.footer-menu ul li {
    margin-bottom: 16px;
}

.footer-menu ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #202024;
}
.footer-menu p {
    text-align: right;
    font-size: 1rem;
}

.align-items-center {
    display: flex;
    align-items: center;
}

.copyright {
    padding: 4px 0;
    background-color: #f9f9fa;
    margin-top: 24px;
}

.copyright-right {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #182025;
}

.icon-footer {
    display: flex;
    justify-content: end;
}

.icon-footer img {
    margin-left: 8px;
}

@media (max-width: 992px) {
    .footer-accordion-header span {
        font-size: 14px;
    }

    .mid-footer-l-m {
        margin-top: 48px;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-2 {
        order: 2 !important;
    }

    .icon-footer {
        display: flex;
        justify-content: center;
        margin-top: 48px;
    }
}

.d-none-desc {
    display: none;
}

@media (max-width: 600px) {
    .d-none-600 {
        display: none !important;
    }

    .d-flex-600 {
        display: flex;
    }
}

@media (max-width: 800px) {
    .d-none {
        display: none !important;
    }

    .copyright-right {
        text-align: center !important;
    }
}

@media (max-width: 992px) {
    .main-nav {
        padding-top: 0px;
    }

    .footer-mobile-m {
        background-color: var(--white);
        height: 100vh;
        max-width: 100%;
        box-sizing: border-box;
        transition: right 0.3s ease;
    }
}

div#gform_fields_4 {
    display: flex;
}

h2.gform_title {
    display: none;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 24px;
}
select#input_4_1 {
    width: 200px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 24px;
}
input#input_4_3 {
    width: 200px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 24px;
}
input#input_4_4 {
    width: 200px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 24px;
}
div#gform_wrapper_4 {
    display: flex;
}
input#gform_submit_button_4 {
    margin-right: 12px;
    border-radius: 16px;
}
