@font-face {
    font-family: 'yekanbakh';
    font-weight: normal;
    src: url('../fonts/woff/YekanBakhFaNum-Regular.woff'), format('.woff'), url('../fonts/woff2/YekanBakhFaNum-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'yekanbakh';
    font-weight: bold;
    src: url('../fonts/woff/YekanBakhFaNum-ExtraBold.woff') format('woff'), url('../fonts/woff2/YekanBakhFaNum-ExtraBold.woff2') format('woff2');
    font-display: swap;
}

*:not(.fa),
*:not(.fa):before,
*:not(.fa):after {
    font-family: 'yekanbakh' !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    background-color: #ffffff;
}

html,
body {
    scrollbar-color: var(--primary-color) #d1d5db;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #d1d5db;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f37020;
}

:root {
    /* --primary-color: #f48335; */
    --primary-color: #f37020;
    --secondary-color: #ffeefa;
    --title-color: #042b7a;
    --orange-color: #f37020;
    --color-three: #f5f5f5;
    --mainWhite: #ffffff;
    --mainGrey: #b1b1b1;
    --secondaryGrey: #ececec;
    --thirdGrey: #f4f4f4;
    --color-text: #686868;
    --color-danger: #173087;
    --mainSpacing: 0.1rem;
    --mainTransition: all 0.2s ease-in-out;
    --spacer: 1rem;
    --font-size-small: 0.625rem;
    --font-size-0: 0.75rem;
    --font-size-1: 0.875rem;
    --font-size-2: 1rem;
    --font-size-3: 1.125rem;
    --font-size-4: 1.25rem;
    --font-size-5: 1.375rem;
    --line-height-28: 1.75rem;
}

.owl-stage {
    display: flex;
}

.owl-stage-outer {
    overflow-x: clip;
}

a {
    color: unset;
    text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:active:focus {
    color: unset;
    text-decoration: none;
}

img {
    width: 100%;
}

p {
    margin: 0;
    text-align: justify;
    color: #515152;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
}

svg path {
    transition: var(--mainTransition);
}

.text-justify {
    text-align: justify;
}

.centering {
    display: flex;
    align-items: center;
    justify-content: center;
}

#mainBg {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background-color: #000;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.main-btn {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    border: 2px solid transparent;
    background-color: var(--primary-color);
    color: var(--mainWhite) !important;
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

.main-btn:hover {
    background-color: var(--mainWhite);
    color: var(--primary-color) !important;
    height: 40px;
    width: unset;
    color: #fff;
}

.btn__primary {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    background-color: var(--primary-color);
    color: var(--mainWhite);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
}

.btn__primary.btn__header {
    background-color: var(--mainWhite);
    color: #000 !important;
    border: 2px solid black;
    height: 40px;
    width: unset;
    color: #fff;
    border-radius: 10px;
    padding: 0 0.75rem;
}

.btn__primary:hover {
    background-color: var(--orange-color);
    color: var(--mainWhite);
}

.btn__primary svg {
    width: 20px;
    height: 20px;
}

.btn__primary svg path {
    transition: var(--mainTransition);
}

.btn__primary:hover svg path {
    /* fill: #000; */
    stroke: #000;
}

.btn__primary__content {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    background-color: var(--primary-color);
    color: var(--mainWhite);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

.btn__primary__content:hover {
    background-color: var(--mainWhite);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn__secondary {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    border: 2px solid transparent;
    background-color: var(--mainWhite);
    color: var(--primary-color) !important;
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

.btn__secondary:hover {
    background-color: var(--mainWhite);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn__secondary svg {
    width: 20px;
    height: 20px;
}

.btn__primary.light {
    background-color: #d9d9d9;
}

.btn__primary.green {
    background-color: var(--primary-color);
}

.btn__primary.small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
}

.btn__primary.light:hover {
    background-color: #000;
}

.btn__primary.light svg {
    width: 28px;
    height: 28px;
}

.btn__primary.light svg path {
    fill: none;
    transition: var(--mainTransition);
}

.btn__primary.light:hover svg path {
    stroke: var(--mainWhite);
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.more-product {
    display: flex;
    justify-content: center;
    width: 100%;
}

.more-product-button {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 40px;
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 20px #f3712055;
}

.more-product-button:hover {
    transform: translatey(-6px);
    color: white;
}

.gap-15 {
    gap: 15px !important;
}

.breadcrumb__section {
    padding: 16px 0;
}

.breadcrumb__menu::before {
    content: ' ';
    margin-left: 5px;
    width: 40px;
    height: 40px;
    background: var(--secondaryGrey) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAADUElEQVRIibWWPYgfRRjGf887e4kJXI4zpBHRQgzYGCSKnKIEURHs1PTBT7BNBAs7q6CkUNGEFEGDhWLAKiCiEAsLzcHZKYLFQQQREvIhOf+78z4Wu/u/O73zrsnA28zOvM/XzLCyza0cDcCVY/dQVFFNIgvRJBWhroASIqErr1l+iUIj6yzwgZ1tCGyBIQOimrRJzNx7y8TWHHTYGZ2LTyIeonLA9gnbE9DLW+3eFECw38rvjD8Hfo/Qs9FaVJdEhww/A6dt/QQc2D6AwFVvpfUL4jHsN1V9F+j8uMToAnCf7NcT3W9YAt7ZqF/0GwAZwUHDpVS8HRN/peo7FRzfVL/zI4nbJb4wHBO6ingcYDw8AdBgVPWcKBdBdzj8Ap2fUcsltGn7UfEViMOSn8aZKV0g9GpTYhVgpvU+Eefc+ldWPGt0jujt2tYwWPl1hOcD/SjpVNPEwSlAK97AJoJHo+FGAKQH70am/VHkX9NrR6AsioeBE23Vjd6dfu8hGSjlT4qJBDelV2BAhpq46ScKRnYPylhjljLmqAb1PQDsMdwkYypZzci0Aolr4ibAUNLYppZAroTUnz4ZmCBEOFYBBqsmVjsG1xOXQUMYo5p1FhmTg5IgE1Ai9Hzi3cDZmK4cO6+tLUIeY8kakEIWqg1Gnxp/slbBBrsNMvb/4Qjj4Q5pep+AZWButGYTdtt9ZU1VJZk6CJBDrQPQOodQ/zyadxFnQPvWrJ1DOon5MChIwq3g7+grVwUNFrkF7YzBCxu6jAHLQjoiOIL9G1At7gUhc0YUqIL5DnZk3+BaaWhV1yjQVWBnVsgKTgjc+4uOgh6scAoowK6Ej7EWsF5MgyOJmZYoHaV0KNhLy1+rCsQy5pEofaJOwEFIyAloMfEiiBjMFSCJcNezvD4D2VOyY45Sl1YV1OZLI4yewIGl6QUeoytDcwYZkrHcE7CpkxlqW+jasp8Emjg/BSgz1z+T6oqrvnF6YaPHpqzJv6z7MgQXJpp8oDS+2B9vvz+1aNdtDZOVWFhJfgj4HoPwZfA10ITBtXGM+LLliB2GWZF77SAs2uieXCmTm7PTDLrdiFwSdR54BXgKuBuYBfb8V886BRPgD8Gi4VvQaeHLGTmSuLW/Lf8A2YueiY4JNxYAAAAASUVORK5CYII=) no-repeat center;
    border-radius: 50%;
    transition: all 0.3s;
}

.breadcrumb__item {
    font-size: 13px;
    margin-left: 5px;
    color: var(--color-text);
    font-weight: 600;
}

.breadcrumb__item::after {
    content: '/';
}

.breadcrumb__item.active::after {
    content: ' ';
}

.breadcrumb__item.active {
    color: var(--primary-color);
}

.checkbox__label::before {
    content: ' ';
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-color: #fff !important;
    vertical-align: middle !important;
    margin-left: 3px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 3px !important;
    background-position: center;
    background-repeat: no-repeat;
}

.remember-checkbox:checked~.checkbox__label::before,
.form__checkbox:checked~.checkbox__label::before {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAUklEQVR4nGNgoCv4X/+f6XDk61kHwt9o4lV0KPL13EORryJIV3Q46vWq/dFvZODWRb2efTjqTRCGCSBFhyNf7TkS/lKZoHUgxYciX53CahJNAACIATXz2s/pTQAAAABJRU5ErkJggg==') no-repeat center !important;
}

.checkbox__label {
    font-size: 15px;
    position: relative;
}

.remember-checkbox,
.form__checkbox {
    z-index: 10;
    cursor: pointer;
    margin-bottom: 3px;
    opacity: 0;
    position: absolute;
}

.form__row {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.form__input {
    flex-grow: 1;
    height: 40px;
    background-color: var(--color-three) !important;
    padding: 9px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 10px;
}

.form__input:focus-visible {
    outline: none;
}

.form__label {
    color: var(--color-text);
    margin-bottom: 0;
    min-width: 130px;
    position: relative;
    font-size: 14px;
}

.form__input:focus {
    border-color: var(--primary-color);
}

.form__textarea {
    min-height: 180px;
    resize: none;
}

.form__send-btn {
    border: 0;
    min-width: 150px;
    display: table;
    margin: auto;
    font-size: 18px;
    cursor: pointer;
    height: 48px;
}

.form__star {
    color: var(--primary-color);
    font-size: 13px;
    position: absolute;
    top: -4px;
}

.form__textarea:focus-visible {
    outline: 0;
}

.form__input:focus {
    border-color: var(--primary-color);
}

.swiper {
    right: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '' !important;
}

.swiper-slide img {
    display: block;
}

.header {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.top__header_line {
    background: #f48335;
    padding: 0.75rem;
    color: var(--mainWhite);
}

.top__header_line .inner {
    font-size: 17.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.top__header_line__social,
.top__header_line__links {
    color: #000000;
    transition: var(--mainTransition);
}

.top__header_line__social:hover,
.top__header_line__links:hover {
    color: var(--mainWhite);
}

.top__header_line__social:hover svg path,
.top__header_line__links:hover svg path {
    fill: var(--mainWhite);
}

.top__header_line__social svg {
    width: 18px;
    height: 18px;
}

.logo__text .name {
    font-size: 15px;
    font-weight: bold;
}

.logo__text .desc {
    font-size: 12px;
}

.top__header_line__links svg {
    width: 14px;
    height: 14px;
}

.seperator {
    width: 1px;
    background-color: var(--mainWhite);
    display: block;
}

.navbar__top--parent {
    background-color: var(--mainWhite);
}

.navbar__top {
    display: grid;
    grid-template-columns: 110px 2fr max-content;
    grid-template-rows: auto;
    column-gap: 1.5rem;
    align-items: center;
}

.navbar__top-logo {
    display: block;
}

.top-text__img img {
    max-width: 250px;
}

.navbar__top-searchbar {
    max-width: 550px;
}

.navbar__top-searchbar .form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 1px 1px var(--primary-color);
}

.navbar__top-searchbar input {
    display: block;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: none;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #111827;
    background-color: #f5f5f5;
    height: 50px;
}

input,
input::placeholder {
    color: #909090 !important;
}

.search-btn {
    display: flex;
    position: absolute;
    padding: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
    width: 42px;
    height: 100%;
    background-color: var(--primary-color);
    cursor: pointer;
}

.top-text {
    color: #7b7d7e;
    font-size: 1rem;
}

.top-text a {
    transition: var(--mainTransition);
}

.top-text a:hover {
    color: var(--primary-color);
}

.search-btn svg {
    width: 22px;
    height: 22px;
}

.navbar__top-actions {
    display: grid;
    grid-template-columns: 1fr 145px;
    grid-template-rows: auto;
    column-gap: 0.5rem;
    align-items: center;
}

.action__btns--parent {
    display: flex;
    gap: 0 7px;
}

.action__btns--parent .action__btns {
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

@media(min-width: 992px) {
    .action__btns--parent .action__btns {
        background-color: #000;
    }
}

.action__btns--parent .action__btns .badge {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--mainWhite);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    line-height: 0;
    font-size: 10px;
    top: -2px;
    right: -6px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}

.action__btns svg {
    width: 16px;
    height: 16px;
}

.navbar__bottom--parent {
    background-color: var(--mainWhite);
    margin-top: -5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}

.navbar__bottom {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
}

.navbar__bottom .header-logo {
    width: 60px;
}

.main-nav__list {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px 2%;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav__list .arrow__mobile__menu {
    width: 14px;
    height: 14px;
}

.main-nav__list .main-nav__link .arrow__mobile__menu path {
    fill: #000 !important;
}

.main-nav__list .main-nav__link .arrow__mobile__menu path {
    fill: #000 !important;
}

.main-nav__list .main-nav__link:hover .arrow__mobile__menu path {
    fill: var(--primary-color) !important;
}

.main-nav__list .main-nav__item.active .main-nav__link .arrow__mobile__menu path {
    fill: var(--primary-color) !important;
}

.main-nav__list .separator {
    height: 25px;
}

.main-nav__item.active .main-nav__link {
    color: var(--primary-color);
    font-weight: bold;
}

.main-nav__link {
    font-size: 16px;
    color: #000000;
    transition: var(--mainTransition);
    padding: 0 0.75rem;
    border-radius: 15px;
}

.main-nav__link.with__arrow svg {
    width: 16px;
    height: 16px;
}

.main-nav__link.with__arrow svg path {
    fill: var(--primary-color);
}

.main-nav__link.with__arrow:hover svg path {
    fill: #000000;
}

.main-nav__link.category {
    display: flex;
    gap: 0 5px;
    align-items: center;
    border-radius: 25px;
    transition: 0.2s ease-in-out;
    padding: 0 12.5px;
}

.main-nav__item:hover .main-nav__link {
    color: var(--primary-color);
}

.main-nav__item .main-nav__link:focus,
.main-nav__item .main-nav__link:active {
    color: #000;
}

.header__support__parent {
    gap: 10px;
    font-size: 15px;
}

.header__support__parent>div {
    justify-content: end;
    text-align: end;
}

.header__support__parent>div .desc {
    color: #686868;
}

.header__support__parent>div .number {
    font-size: 16px;
}

.header__support__parent svg {
    width: 24px;
    height: 24px;
}

.header__support__parent svg path {
    fill: var(--primary-color);
}

/* -------------------------------------------------------- */
.blogs__parent {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.blogs__parent.grid__template {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem 1.5rem;
    align-items: center;
}

.article-card {
    display: grid;
    grid-template-columns: 195px 1fr;
    gap: 1.25rem;
    padding: 1rem;
    background-color: var(--mainWhite);
    box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    align-items: center;
    transition: var(--mainTransition);
    border: 2px solid transparent;
}

.article-card:hover {
    border: 2px solid var(--primary-color);
}

.article-card.big:hover {
    border: 2px solid transparent;
}

@media only screen and (min-width: 991px) {
    .blogs__parent:hover .article-card:not(:hover) {
        filter: blur(2px);
        opacity: 0.75;
        transition: var(--mainTransition);
    }
}

.article-card img {
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    object-fit: cover;
}

.article-card.big img {
    aspect-ratio: 3 / 2;
    border-radius: 20px;
}

.article-card .article__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-card .article__details .date,
.article-card .article__details .category {
    font-size: 12px;
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--orange-color);
}

.article-card .article__details .article__title {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.article-card .article__details p {
    color: #a1a1a1;
    font-size: 12px;
    line-height: 2;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-card .article__details .article__btn {
    color: var(--primary-color);
}

/* ---------------------------------------------------------------- */
.sec__title__parent {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    position: relative;
}

.sec__title__parent svg {
    width: 55px;
    height: 55px;
}

.sec__title__parent .sec__title {
    font-size: 1.5rem;
    gap: 5px 0;
    color: var(--title-color);
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.sec__title__parent .rule {
    width: 100%;
    height: 1px;
    background-color: var(--secondaryGrey);
}

.submenu-guides {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    background: white;
    width: max-content;
    min-width: 230px;
    z-index: 100;
    text-align: right;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 0 10px 0 !important;
    box-shadow: 0 20px 7px 0 rgba(0, 0, 0, 0.1);
}

.submenu-guides ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-guides li {
    position: relative;
}

.submenu-guides a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: var(--mainTransition);
}

.submenu-guides a:hover {
    color: var(--primary-color);
}

.sub-submenu-guides {
    position: absolute;
    top: 0;
    right: 100%;
    background: white;
    width: max-content;
    min-width: 180px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 20px 7px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.has-sub-submenu-guides a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.has-sub-submenu-guides svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

.sub-submenu-guides li a {
    padding: 8px 12px;
}

.has-sub-submenu-guides.active>.sub-submenu-guides {
    max-height: 500px;
    opacity: 1;
}

.submenu-products {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 30px 0 0;
    background: transparent;
    z-index: 99;
    min-width: 60vw;
    width: fit-content;
}

.submenu-products .submenu-products-inner {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    background-color: var(--mainWhite);
    padding: 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    list-style-type: none;
    box-shadow: 0 10px 7px 0 rgba(0, 0, 0, 0.1);
}

.submenu-products .submenu-products-inner>li {
    width: 100%;
    padding: 1rem;
}

.submenu-products .submenu-products-inner>li>a {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 0.75rem;
    border-radius: 20px;
    transition: 0.2s ease-in-out;
    overflow: hidden;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.submenu-products .submenu-products-inner>li>a:hover {
    box-shadow: -3px 3px 20px -11px rgba(0, 0, 0, 0.1);
}

.submenu-products-tabs {
    width: 100%;
    border-radius: 5px 5px 5px 5px;
    display: flex;
}

.submenu-products-tabs ul#tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    border-left: 2px solid var(--primary-color);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

#SubmenuProductsTabsContent {
    width: 100%;
    padding-right: 1rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    padding-left: 10px;
}

.submenu-products-tab-content {
    border-radius: 15px;
    display: grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.submenu-products-tab-content .tab__content__col {
    gap: 1rem;
}

.submenu-products-tab-content .tab-content__item {
    width: 100%;
}

.submenu-products-tab-content .tab-content__item .category__name {
    display: flex;
    align-items: end;
    color: #262626;
    font-size: 16px;
    font-weight: bold;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}

.submenu-products-tab-content .tab-content__item .category__name img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.submenu-products-tab-content .tab-content__item span,
.submenu-products-tab-content .tab-content__item>a {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

.submenu-products-tab-content .tab-content__item ul {
    display: flex;
    flex-direction: column;
    margin-top: 0.75rem;
    gap: 10px;
}

.submenu-products-tab-content .tab-content__item ul li {
    position: relative;
    padding-right: 0.5rem;
    display: flex;
    align-items: center;
}

.submenu-products-tab-content .tab-content__item ul li::before {
    content: '';
    position: absolute;
    display: block;
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    right: 0;
    transition: var(--mainTransition);
    opacity: 0;
    visibility: hidden;
}

.submenu-products-tab-content .tab-content__item ul li a {
    display: block;
    font-size: 0.85rem;
    color: #737375;
    transition: var(--mainTransition);
    text-align: right;
}

.submenu-products-tab-content .tab-content__item ul li:hover::before {
    opacity: 1;
    visibility: visible;
}

.submenu-products-tab-content .tab-content__item ul li:hover a {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer {
    background-color: var(--secondaryGrey);
    margin-top: 7rem;
    padding-bottom: 1.25rem !important;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    margin-top: -1rem;
}

.logo__parent {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 15px;
}

.logo__parent img {
    width: 60px;
    height: 60px;
}

.logo__parent .logo__text .name,
.logo__parent .logo__text .desc {
    font-size: 1.1rem;
}

.why__us__items {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why__us__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 6/5;
    gap: 0.5rem;
    border-radius: 15px;
    background-color: var(--secondaryGrey);
}

.why__us__item svg {
    width: 28px;
    height: 28px;
}

.why__us__item svg path {
    fill: var(--primary-color);
}

.why__us__item span {
    font-size: 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 2rem;
}

.footer__content .content__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer__content .content__right p {
    text-align: justify;
    color: #262626;
    font-size: 15px;
    line-height: 1.7;
}

.content__right .certificate__parent {
    display: flex;
    justify-content: start;
    width: 100%;
    gap: 25px;
}

.content__right .certificate__parent a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer__content .content__center {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.content__center ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.content__center ul li {
    color: #262626;
    font-size: 16px;
    transition: var(--mainTransition);
}

.content__center ul li:hover {
    color: var(--primary-color);
}

.content__center .title {
    font-size: 18px;
    font-weight: bold;
    color: #565656;
}

.footer__content .content__left iframe {
    width: 100%;
    height: 250px;
}

.footer__cpr {
    background-color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    margin-top: 1.5rem;
}

.right__links {
    display: flex;
    gap: 15px;
}

.right__links a {
    font-size: 16px;
    color: var(--mainWhite);
    transition: var(--mainTransition);
}

.right__links a:hover {
    color: var(--title-color);
}

.footer__cpr .cpr {
    color: var(--mainWhite);
    font-size: 16px;
}

.footer__cpr .cpr a {
    font-weight: bold;
    transition: var(--mainTransition);
}

.footer__cpr .cpr a:hover {
    color: var(--title-color);
}

@media only screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .footer__top {
        margin-top: -1.5rem;
    }

    .why__us__items {
        grid-template-columns: repeat(4, 1fr);
    }

    .why__us__item {
        aspect-ratio: 1/1;
    }

    .logo__parent {
        gap: 7px;
        margin-top: 2rem;
    }

    .container {
        max-width: 100%;
    }

    .main-nav__list {
        gap: 0 1rem;
    }
}

@media only screen and (max-width: 991px) {
    .navbar__top {
        grid-template-columns: max-content max-content auto;
        column-gap: 0.75rem;
    }

    .navbar__top .header-logo {
        width: 45px;
    }

    .navbar__top-actions {
        margin-right: auto;
        grid-template-columns: max-content max-content;
        grid-template-rows: auto;
        column-gap: 0.5rem;
    }

    .navbar__bottom--parent {
        position: fixed;
        display: flex;
        width: 315px;
        height: 100%;
        right: -100%;
        top: 0;
        transition: all 0.3s ease-in-out;
        background-color: #f5f5f5;
        z-index: 99;
        border-radius: 0;
        overflow-y: auto;
        margin: 0;
    }

    .navbar__bottom--parent .navbar__top-logo {
        max-width: 190px;
        background-color: #fff;
        padding: 5px;
        border-radius: 7px;
    }

    .header__support__parent {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }

    .header__support__parent>div {
        justify-content: center;
        text-align: center;
        gap: 3px;
    }

    .navbar__bottom {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem 0;
        padding-top: 0.75rem;
    }

    .navbar__bottom img {
        width: 80px;
    }

    .main-nav__list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
        gap: 0.35rem 0;
    }

    .main-nav__list>* {
        width: 100%;
    }

    .main-nav__link {
        display: flex;
        padding: 0.25rem 0.75rem;
        gap: 0 3px;
        width: 100%;
        position: relative;
        align-items: center;
        color: #000;
        border-radius: 7px;
    }

    .footer {
        margin-top: 3.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        justify-content: center;
        margin-top: 0;
        padding-top: 1rem;
        gap: 1.5rem;
    }

    .logo__parent {
        justify-content: center;
        margin: 0;
    }

    .why__us__items {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .why__us__item {
        gap: 0.5rem;
        text-align: center;
        aspect-ratio: unset;
    }

    .why__us__item span {
        font-size: 14px;
    }

    .footer__content {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .content__right .certificate__parent {
        justify-content: center;
        gap: 2rem;
    }

    .content__right .certificate__parent a img {
        width: 60px;
        height: 60px;
    }

    .footer__content .content__center {
        display: flex;
        justify-content: space-around;
    }

    .content__center ul {
        align-items: center;
    }

    .footer__content .content__left {
        display: flex;
        justify-content: center;
    }

    .footer__content .content__left iframe {
        width: 100%;
        max-height: 300px;
        max-width: 500px;
    }

    .footer hr {
        margin: 1.5rem 0;
    }

    .footer__cpr {
        justify-content: center;
    }

    .social__mobile__parent {
        gap: 15px;
        justify-content: center;
        width: 100%;
    }

    .social__mobile__parent a {
        padding: 5px;
        border-radius: 10px;
    }

    .social__mobile__parent a svg {
        width: 25px;
        height: 25px;
    }

    .social__mobile__parent a svg path {
        fill: var(--mainWhite);
    }

    .social__mobile__parent a.bg__orange {
        background-color: #f5811f;
    }

    .social__mobile__parent a.bg__green {
        background-color: #25d366;
    }

    .social__mobile__parent a.bg__blue {
        background-color: #24a1de;
    }

    .search__mobile__parent {
        border-radius: 25px;
        border: 1px solid var(--primary-color) !important;
    }

    .mobile__menu-search {
        width: 100%;
        background-color: transparent;
        box-shadow: none !important;
        outline: none !important;
        padding: 5px 1rem;
        border: 0 !important;
        color: var(--primary-color) !important;
    }

    .mobile__menu-search::placeholder {
        color: #262626 !important;
    }

    .mobile__menu-search:focus {
        border-color: var(--primary-color) !important;
    }

    #openNavBtn {
        background-color: var(--primary-color);
        padding: 5px;
        border-radius: 10px;
    }

    #openNavBtn svg {
        width: 30px;
        height: 30px;
    }

    #openNavBtn svg path {
        stroke: var(--mainWhite);
    }

    .closeNavBtn {
        position: absolute;
        left: 5%;
        top: 5%;
    }

    .logo__text .name {
        font-size: 12px;
    }

    .closeNavBtn svg {
        width: 20px;
        height: 20px;
    }

    .closeNavBtn svg path {
        fill: gray;
    }

    .open__Main__Nav {
        right: 0;
    }

    .search-btn svg {
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .action__btns--parent .action__btns {
        width: 35px;
        height: 35px;
    }

    .sec__title__parent .sec__title {
        font-size: 1.25rem;
    }

    .btn__primary.btn__header {
        width: 35px;
        height: 35px;
        padding: 0;
        border-radius: 10px;
    }

    .navbar__top .header-logo {
        width: 40px;
    }

    .btn__primary.btn__header svg {
        width: 15px;
        height: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .navbar__top {
        column-gap: 0.5rem;
    }

    .why__us__item {
        gap: 20px;
    }

    .footer__cpr .cpr {
        font-size: 14px;
    }

    .logo__parent img {
        width: 50px;
        height: 50px;
    }

    .logo__parent .logo__text .name,
    .logo__parent .logo__text .desc {
        font-size: 0.8rem;
    }

    .sec__title__parent .sec__title {
        font-size: 1rem;
    }

    .article-card {
        display: flex;
        flex-direction: column;
    }

    .navbar__top-actions {
        display: flex;
        column-gap: 0;
    }

    .navbar__top .logo__text .name,
    .navbar__top .logo__text .desc {
        font-size: 10px;
    }

    #openNavBtn svg {
        width: 25px;
        height: 25px;
    }

    .main-nav__link svg,
    .navbar__bottom .action__btns svg {
        width: 25px;
        height: 25px;
    }

    .main-nav__link svg path {
        fill: var(--primary-color);
    }

    .navbar__bottom .action__btns {
        gap: 0 3px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 27px !important;
        height: 27px !important;
    }

    .form__row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .form__input {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 400px) {}


.breadcrumb__menu {
    flex-wrap: wrap;
    gap: 10px 0;
}