/* B2B AZAD - ALI YAHYAVI AZAD */
/* AMIRHOSSEIN PANAHI - ARMIN PANAHI - ARMINP10 - P10CODING */


/* START SETTING */
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #E0F2F1;
}

button,
input {
    border-radius: 8px;
}

.create_adv_button {
    width: 10rem;
    height: 38.79999923706055px;
    border-radius: 8px;
    border: none;
    background-color: #F27F0C;
}

.create_adv_button>a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
}

.create_adv_button>a :first-child {
    font-size: 1.2rem;
    margin-left: 10px;
}

.create_adv_button>a :last-child {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}

input {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

input:focus {
    outline: none;
    border: none;
}

input::-webkit-search-cancel-button {
    display: none;
}

.div_titles {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 53px;
    color: rgb(0, 0, 0);
}

.container {
    width: 85%;
    margin: 5px auto;
}

/* END SETTING */
/* - - - - - - - - - - */



/* - - - - - - - - - - */
/* START POPUP */
/* - - - - - - - - - - */

:root {
    --bg: #f7f7f9;
    --panel: #ffffff;
    --muted: #9aa0a6;
    --accent: #f05f4e;
    /* برای تگ انتخاب شده */
    --accent-weak: #fff0ef;
    --border: #e3e6ea;
    --confirm: #f3993a;
    --confirm-hover: #ea8f34;
}

/* کلیت صفحه و پس‌زمینه */
body {
    /* background:var(--bg); */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#popup>* {
    font-size: IRANSansWeb;
}

#popup>a {
    font-size: IRANSansWeb;
}

/* لایه پوشاننده (بک‌دراپ) */
.popup {
    font-family: IRANSansWeb;
    position: fixed;
    inset: 0;
    display: none;
    /* ابتدا مخفی */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    padding: 20px;
}

/* کارت محتوا */
.popup-card {
    direction: rtl;
    width: 820px;
    /* اندازه نزدیک به عکس */
    max-width: calc(100% - 40px);
    height: 640px;
    max-height: calc(100% - 60px);
    background: var(--panel);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 18px 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.85);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

.popup.show .popup-card {
    transform: scale(1);
    opacity: 1;
}

/* هدر (عنوان و دکمه حذف همه و تگ‌ها) */
.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    padding-right: 10px;
}

.right-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.remove-all {
    border: 1.6px solid #F27F0C;
    color: #F27F0C;
    background: transparent;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.remove-all:hover {
    filter: brightness(.98);
}

/* ناحیه تگ‌ها (قسمت بالای سرچ) */
.selected-tags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-bottom: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 18px;
    background: var(--accent-weak);
    color: var(--accent);
    border: 1px solid rgba(240, 95, 78, 0.15);
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.tag .x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 800;
    cursor: pointer;
    border: 1px solid rgba(240, 95, 78, 0.25);
}

/* ناحیه سرچ */
.search-wrap {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    flex: 1;
    border-radius: 12px;
    border: 2px solid #161b2b0a;
    padding: 14px 14px;
    background: #fafafa;
    font-size: 1rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.search-input input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
    width: 100%;
    direction: rtl;
}

.search-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    font-size: 1.125rem;
    color: #444;
}

/* محتوا دو ستونه: لیست و اسکرول سمت چپ (در عکس لیست در سمت راست قرار داره) */
.popup-body {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    flex: 1;
    overflow: hidden;
}

/* لیست استان‌ها (ستون اصلی) */
.province-list {
    flex: 1;
    background: transparent;
    border-radius: 10px;
    padding: 8px 4px;
    box-sizing: border-box;
    overflow: auto;
    scrollbar-width: thin;
}

.province-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .12s;
}

.province-item:hover {
    background: #fbfbfb;
}

.province-label {
    font-size: 1rem;
    color: #333;
}

/* استایل چک‌باکس شبیه عکس (مربع با گوشه گرد و وقتی انتخاب شد قرمز با تیک) */
.checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid #cfcfcf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
}

.checkbox.checked {
    background: var(--accent);
    border-color: var(--accent);
}

/* اسکرول افقی/عمودی سفارشی (سبک شبیه عکس) */
.province-list::-webkit-scrollbar {
    width: 8px;
}

.province-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 6px;
}

/* فوتر با دکمه‌ها */
.popup-footer {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: 12px;
}

.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
}

.btn.cancel {
    color: #F27F0C;
    border-color: #F27F0C;
}

.btn.confirm {
    background: #F27F0C;
    color: white;
    border: none;
    box-shadow: 0px 2px 0px 0px #00000004;
}

.btn.confirm:hover {
    background: var(--confirm-hover);
}

/* حالت موبایل */
/* @media (max-width:700px){
    .popup-card{ width:96%; height:86vh; padding:12px; border-radius:12px; }
    .title{ font-size:18px; }
    .search-input{ min-height:44px; padding:10px; }
    .province-item{ padding:12px 10px; }
    .btn{ padding:10px 18px; }
  } */

/* - - - - - - - - - - */
/* END POPUP */
/* - - - - - - - - - - */



/* - - - - - - - - - - */
/* START HEADER */

#header_container {
    position: fixed;
    z-index: 10000;
    width: 85%;
    height: 115.4852066040039px;
    opacity: 1;
    top: 0;
}


#header_up {
    width: 100%;
    height: 60.68520736694336px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
    background-image: linear-gradient(to left, #FFFFFF, #E0F2F1);
}

#header_logo>a {
    text-decoration: none;
    color: none;
}

#header_logo>a>img {
    width: 93px;
    height: 70px;
    opacity: 1;
}

#search_frame {
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
    padding: 2px 0.5rem 2px 0;
    border: 2px solid #03045E;
    border-radius: 8px;
    width: 45%;
    height: 42px;
}

#search_frame>i {
    font-size: 1.3rem;
    color: #757575;
    opacity: 1;
}

#search_input {
    padding: 8px;
    background-color: #F9F9F9;
    width: 65%;
    border: none;
    border-radius: 0 8px 8px 0;
    border-left: 2px solid #03045E;
}

#search_input::placeholder {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

#search_frame>button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
    width: 35%;
    border: none;
    padding: 0px;
}

#search_frame>button>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #070707;
}

#search_frame>button>a>i {
    font-weight: 500;
    font-style: Medium;
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0%;
    margin-left: 8px;
}

#search_frame>button>a>span {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

#registerandlogin_button {
    border: 1px solid #757575;
    border-radius: 8px;
    width: 155px;
    height: 38.79999923706055px;
}

#registerandlogin_button>button {
    background-color: #FFFFFF;
    border: none;
    border-radius: none;
    width: 100%;
    height: 100%;
}

#registerandlogin_button>button>a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #070707;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: none;
    cursor: pointer;
}

#registerandlogin_button>button>a>i {
    font-size: 1.25rem;
    font-weight: 500;
}

#registerandlogin_button>button>a>span {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}

/* END HEADER */


/* START NAVIGATION */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    width: 100.2%;
    height: 55px;
    padding: 0 7px;
    border-radius: 0 0 8px 8px;
    background-color: #03045E;
    border: 1px solid black;
}

#all_category {
    position: relative;
}

#all_category:hover #mega_menu {
    /* display: block; */
    visibility: visible;
    transform: translateY(0);
}

.all_category>a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    display: flex;
    align-items: center;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.all_category>a>i {
    font-weight: 400;
    font-style: Regular;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-left: 5px;
}

#main_menu {
    width: 456px;
    list-style-type: none;
    display: flex;
    gap: 50px;
    justify-content: left;
    align-items: center;
    margin-left: 20px;
}

#main_menu>li>a {
    text-align: center;
    text-decoration: none;
    color: white;
}

#main_menu>li>a>span {
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-left: 8px;
}

#main_menu>li>a>i {
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* END NAVIGATION */


/* START MAIN */

main {
    position: relative;
    padding-top: 115.4852066040039px;
}

/* START MEGA MENU */

#mega_menu {
    z-index: 100;
    position: absolute;
    top: 170%;
    /* left: -1122px; */
    right: -70px;
    /* display: none; */
    visibility: hidden;
    flex-direction: column;
    position: absolute;
    background:
        linear-gradient(180.67deg, #E0F2F1, rgb(255, 255, 255));
    width: 100vw;
    height: 473px;
    opacity: 1;
    /* ANIMATIONS */
    transform: translateY(-20px);
    transition: all 0.5s ease;
    overflow-y: scroll;
}

#mega_menu_upper {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
}

#mega_menu>hr {
    margin: 0 3rem;
    border: 1px solid #CBCBCB;
}

#mega_menu_down {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 0;
}

.inside_menu {
    list-style-type: none;
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 2px solid #CBCBCB;
    padding-right: 2rem;
}

.inside_menu>li {
    width: 80%;
    opacity: 1;
}

.inside_menu>li:hover>a>* {
    color: #ea8f34;
}

.inside_menu>li>a {
    width: 100%;
    height: 100%;
    gap: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.inside_menu>li>a>i {
    font-size: 0.75rem;
}

.inside_menu>li>a>span {
    text-align: right;
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 0.75rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.hovered_menu {
    width: 75%;
    height: 80%;
    display: grid;
    grid-template-columns: repeat(6, 16.66%);
    grid-auto-rows: 1fr;
    justify-content: space-between;
    align-items: start;
    padding: 0 1.5rem;
    padding-top: 1rem;
}

.hovered_menu_items {
    cursor: pointer;
    display: flex;
    gap: 8px;
}

.hovered_menu_items:hover>* {
    color: #ea8f34;
}

.hovered_menu_items>i {
    font-size: 1rem;
    color: #070707;
}

.hovered_menu_items>span {
    color: #070707;
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

/* - - - - - */


.buttons_frame {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 52px;
    opacity: 1;
    padding: 0 20px;
    /* gap: 124px; */
}

.buttons_frame>button {
    box-shadow: 0px 10px 20px 4px #D9D9D9;
    border: none;
    width: 15%;
    height: 52px;
    opacity: 1;
}

.buttons_frame>button:hover {
    box-shadow: 0px 10px 20px 4px #F27F0C3D;
    transition-duration: 0.4s;
}

.buttons_frame>button>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.buttons_frame>button>a>i {
    font-size: 1.25rem;
    color: #03045E;
}

.buttons_frame>button>a>h6 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #03045E;
}


#mega_menu_down {
    width: 100%;
    height: 85%;
}

/* END MEGA MENU */

#aboutus {
    width: 97.5%;
    display: flex;
    align-items: top;
    justify-content: space-between;
    padding: 8px 16px;
    border-radius: 8px;
    background-image: linear-gradient(to left, #FFFFFF, #E0F2F1);
}

#aboutus_texts {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 50px 0 25px 0;
}

#aboutus_texts>h1 {
    font-family: IRANSansWeb;
    font-weight: 900;
    font-size: 3.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    color: #03045E;
    margin-bottom: 2rem;
}

#aboutus_texts>h1>span {
    color: #F27F0C;
}

#aboutus_texts>h2 {
    color: #03045E;
    font-family: IRANSansWeb;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 170%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    margin-bottom: 2rem;
}

#aboutus_texts>h3 {
    color: #757575;
    font-family: IRANSansWeb;
    font-weight: 900;
    font-style: Black;
    font-size: 1.56rem;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    margin-bottom: 1.5rem;
}

#aboutus_texts>h4 {
    color: #757575;
    font-family: IRANSansWeb;
    font-weight: 900;
    font-style: Black;
    font-size: 1.87rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    margin-bottom: 3rem;
}

#aboutus_under_texts {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

#aboutus_under_texts>h4 {
    font-family: IRANSansWeb;
    font-weight: 900;
    color: #03045E;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    margin-bottom: 1.5rem;
}

#aboutus_pic {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

#aboutus_pic_frame {
    padding-top: 80px;
    position: relative;
    width: 370px;
    height: 430.6499938964844px;
    border-radius: 180px 180px 0 0;
}

#aboutus_pic_frame>img {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 180px 180px 0 0;
}

#aboutus_pic_borderframe {
    z-index: 0;
    position: absolute;
    top: 0px;
    left: -30px;
    width: 370px;
    height: 430.6499938964844px;
    border: 1px solid black;
    border-radius: 180px 180px 0 0;
}


/* START SPECIAL ADS */

#special_as {
    position: relative;
}

.special_ads>h6 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin: 0 20px;
}

#special_products {
    overflow-x: scroll;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to top, #cbcbcb9c, #E0F2F1);
    padding: 1rem 0.7rem;
    gap: 2rem;
    margin-top: 1rem;
}

.spec_product {
    display: flex;
    justify-content: center;
    width: 288px;
    height: 426px;
    opacity: 1;
    border-radius: 32px;
    background-color: #FFFFFF;
}

.base_product {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    border-radius: 32px;
    opacity: 1;
    gap: 10px;
    padding: 10px 5px;
    background-color: #FFFFFF;
    box-shadow: 0px 60px 100px 0px #48484829;
}

.product_pic_holder {
    position: relative;
    display: flex;
    justify-content: center;
}

.product_pic_frame {
    overflow: hidden;
    width: 244px;
    height: 226px;
    border-radius: 32px;
    opacity: 1;
}

.product_pic_frame>img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

/* START ADD TO FAV ICON */

.add_to_fav_frame {
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CBCBCB;
    width: 44px;
    height: 35.76649475097656px;
    border-radius: 100px;
    opacity: 1;
    gap: 10px;
}

.add_to_fav {
    font-size: 1.56rem;
}

.active_favicon {
    color: red;
}

/* END ADD TO FAV ICON */

.product_texts_frame {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 15px;
}

.product_name {
    width: 100%;
    display: flex;
    justify-content: start;
    text-align: start;
}

.product_name>h4 {
    width: 100%;
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    color: #070707;
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0%;
}

.product_properties {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product_price {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.product_price :first-child {
    font-family: IRANSansWeb;
    font-weight: 600;
    font-style: Medium;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #070707;
}

.product_price :last-child {
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 0.75rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #757575;
}

/* .product_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
} */

.product_pic {
    position: relative;
    width: 264px;
    height: 266px;
    opacity: 1;
    border-radius: 32px;
    margin-bottom: 2.5rem;
}

.product_pic>img {
    zoom: 50%;
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

/* .like_product {
    width: 44px;
    height: 35.76649475097656px;
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CBCBCB;
    border-radius: 100px;
}

.like_product > i{
    cursor: pointer;
    font-size: 20px;
} */

.spec_product>h5 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    margin-bottom: 2rem;
}

.product_price {
    display: flex;
    align-items: end;
}

.product_price :first-child {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #070707;
}

.product_price :nth-child(2) {
    color: #757575;
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: 0.75rem;
    line-height: 100%;
    letter-spacing: 0%;
}

.inoffer {
    border-radius: 0 30px 0 0;
    width: 48px;
    height: 48px;
    /* background-color: #757575; */
}

.inoffer>img {
    width: 100%;
    height: 100%;
}



.swiper-button-prev {
    cursor: pointer;
    width: 58.987953186035156px;
    height: 60px;
    border-radius: 40px;
    opacity: 1;
    border-width: 1px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev::after {
    display: none
}

.swiper-button-prev>i {
    font-size: 1.25rem;
    color: #070707;
}

/* END SPECIAL ADS */
/* - - - - - - - - - - */



/* - - - - - - - - - - */
/* START SEE ADS CATEGORY */

#see_ads_category {
    width: 100%;
    height: 394px;
    border-radius: 8px;
    /* padding: 2rem; */
}

/* END SEE ADS CATEGORY */
/* - - - - - - - - - - */

.see_ads_category_title {
    margin-bottom: 2.5rem;
}

.see_ads_category_title>h6 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    margin: 0 20px;
}

#ads_category {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.category {
    width: 100%;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.category:hover .category_pic {
    border: 2px solid #F27F0C;
    transition: all 0.4s ease-in-out;
}

.category:hover>a>h6 {
    color: #F27F0C;
    transition: all 0.4s ease-in-out;
}

.category:hover i {
    color: #F27F0C;
    transition: all 0.4s ease-in-out;
}

.category>a {
    text-decoration: none;
    color: none;
}

.category_pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    opacity: 1;
    border-radius: 50%;
    background-color: #9dc0be;
    margin-bottom: 4rem;
    border: 2px solid transparent;
}

.category_pic>i {
    font-size: 4rem;
    color: #03045E;
}

.category>a>h6 {
    font-family: IRANSansWeb;
    color: #03045E;
    font-weight: 700;
    font-style: Bold;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* - - - - - - - - - - */
/* START TRANSPORTATION */

#transportation {
    background-image:
        linear-gradient(#0304546B),
        url("/assets/images/transportation.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    border-radius: 8px;
    opacity: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 5rem;
}

.transportation_content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    opacity: 1;
    border-width: 1px;
}

.transportation_content>h4 {
    font-family: IRANSansWeb;
    font-weight: 900;
    font-style: Black;
    font-size: 2.25rem;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    margin-bottom: 2rem;
}


/* END TRANSPORTATION */
/* - - - - - - - - - - */





/* - - - - - - - - - - */
/* START ALL ADS */
/* - - - - - - - - - - */



/* HEADER */
#all_ads {
    width: 100%;
    margin: 1rem 0;
}

#all_ads_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#all_ads_header>img {
    width: 104.23194122314453px;
    height: 100%;
    border-width: 12px;
    opacity: 1;
}

#all_ads_header>h4 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}



/* MAIN  */
#all_ads_main {
    width: 100%;
    margin: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.all_ads_product_properties {
    justify-content: flex-end;
}

.all_ads_product_pic_frame {
    width: 268px;
    height: 299px;
}


/* FOOTER */
#all_ads_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#all_ads_footer>button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 149px;
    background-color: #FFFFFF;
    height: 38.79999923706055px;
    border-width: 1px;
    opacity: 1;
    border-radius: 8px;
    gap: 8px;
}

#all_ads_footer>button>span {
    color: #03045E;
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

#all_ads_footer>button>i {
    font-size: 1rem;
    color: #03045E;
}

/* - - - - - - - - - - */
/* START ALL ADS */
/* - - - - - - - - - - */



/* - - - - - - - - - - */
/* START NEWS & STATEMENTS */
/* - - - - - - - - - - */




/* - - - - - - - - - - */
/* END NEWS & STATEMENTS */
/* - - - - - - - - - - */

#news_statements {
    overflow: hidden;
}

#news_title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

#news_title>img {
    width: 104.23194122314453px;
    height: 100%;
    border-width: 12px;
    opacity: 1;
}

#news_title>h4 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}


#news_body {
    position: relative;
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.news_cards {
    background-color: #FFFFFF;
    width: 320px;
    height: 476px;
    opacity: 1;
    border-radius: 12px;
}

.news_cards_imgholder {
    width: 100%;
    height: 40%;
    opacity: 1;
    border-radius: 12px 12px 0 0;
}

.news_cards_imgholder>img {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
}

.news_cards>h6 {
    font-family: IRANSansWeb;
    font-weight: 400;
    font-style: Regular;
    font-size: large;
    line-height: Large;
    letter-spacing: Large;
    text-align: right;
    vertical-align: bottom;
    margin: 1.5rem 1rem 2.5rem 1rem;
}

.news_cards>textarea {
    resize: none;
    margin: 0 1rem;
    width: 90%;
    height: 130px;
    opacity: 1;
    background-color: transparent;
    text-align: start;
    font-family: Medium;
    font-weight: 400;
    font-style: Regular;
    font-size: Medium;
    line-height: Medium;
    letter-spacing: Medium;
    vertical-align: middle;
    outline: none;
    border: none;
    overflow: hidden;
}

.news_cards_btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.7rem;
    margin-left: 1rem;
}

.news_cards_btn>button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 168px;
    height: 40px;
    opacity: 1;
    gap: 8px;
    border: none;
    border-radius: 100px;
    background-color: #FFE9CE;
    box-shadow: 0px 1px 3px 1px #00000026;
    box-shadow: 0px 1px 2px 0px #0000004D;
}

.news_cards_btn>button>span,
i {
    font-family: Large;
    font-weight: 500;
    font-style: Medium;
    font-size: Large;
    line-height: Large;
    letter-spacing: Large;
    text-align: center;
    vertical-align: middle;
}

/* - - - - - - - - - - */
/* END MAIN */
/* - - - - - - - - - - */





/* - - - - - - - - - - */
/* START FOOTER */
/* - - - - - - - - - - */

.footer_container {
    width: 90%;
    height: 517px;
    border-radius: 15px;
    padding: 3rem 4rem 0 4rem;
    opacity: 1;
    background-color: #d64304;
    color: #FFFFFF;
}

.footer_upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* padding-left: 4rem; */
}

.footer_up_boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_boxes_title {
    display: flex;
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.875rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    gap: 1rem;
}

.footer_boxes_list {
    display: flex;
    flex-direction: column;
    list-style-position: inside;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer_boxes_list>li {
    margin-right: 8px;
}

.footer_boxes_list>li>a {
    font-family: IRANSansWeb;
    font-weight: 500;
    font-style: Bold;
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    text-decoration: none;
    color: #FFFFFF;
}

.footer_boxes_list>li:hover>a {
    text-decoration: underline #ea8f34;
    transition-duration: 0.4s;
}

/* START FOOTER CALL INFORMATION BOX */
/* .footer_call_info {} */

.footer_call_info>h6 {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.56rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.footer_call_info_boxes {
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    padding-right: 0;
    border-bottom: 1px solid #FFFFFF;
    gap: 0.7rem;
}

.call_info_boxes_text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.call_info_boxes_text>span {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.call_info_boxes_text>i {
    font-size: 1.625rem;
}

.footer_phone_number_box>span {
    text-decoration: underline;
}

.footer_call_info_boxes>span {
    font-family: IRANSansWeb;
    font-weight: 700;
    font-style: Bold;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    cursor: pointer;
}

.footer_call_info_boxes3 {
    border: none;
}

/* END FOOTER CALL INFORMATION BOX */



/* START FOTER DOWNER */
.footer_downer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 0.5rem 0 10rem; */
}

.footer_logo_frame {
    width: 127px;
    height: 96px;
    opacity: 1;
}

.footer_logo_frame>img {
    width: 100%;
    height: 100%;
}

.footer_social_frame {
    margin-right: 8rem;
    width: 250px;
    display: flex;
    gap: 1rem;
}

.footer_social_frame>i {
    cursor: pointer;
    font-size: 2.4375rem;
    color: #FFFFFF;
}

.footer_social_frame>i:hover {
    color: #F27F0C;
    transition-duration: 0.4s;
}

.footer_enamad_frame {
    width: 150px;
    height: 100px;
    opacity: 1;
}

.footer_enamad_frame>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* END FOTER DOWNER */



/* - - - - - - - - - - */
/* END FOOTER */
/* - - - - - - - - - - */