/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Font
- Default WP
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Bold.eot);
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/IRANSans/woff2/IRANSansWeb_Bold.woff2) format("woff2"), url(../fonts/IRANSans/woff/IRANSansWeb_Bold.woff) format("woff"), url(../fonts/IRANSans/ttf/IRANSansWeb_Bold.ttf) format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Medium.eot);
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/IRANSans/woff2/IRANSansWeb_Medium.woff2) format("woff2"), url(../fonts/IRANSans/woff/IRANSansWeb_Medium.woff) format("woff"), url(../fonts/IRANSans/ttf/IRANSansWeb_Medium.ttf) format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Light.eot);
    src: url(../fonts/IRANSans/eot/IRANSansWeb_Light.eot?#iefix) format("embedded-opentype"), url(../fonts/IRANSans/woff2/IRANSansWeb_Light.woff2) format("woff2"), url(../fonts/IRANSans/woff/IRANSansWeb_Light.woff) format("woff"), url(../fonts/IRANSans/ttf/IRANSansWeb_Light.ttf) format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot);
    src: url(../fonts/IRANSans/eot/IRANSansWeb_UltraLight.eot?#iefix) format("embedded-opentype"), url(../fonts/IRANSans/woff2/IRANSansWeb_UltraLight.woff2) format("woff2"), url(../fonts/IRANSans/woff/IRANSansWeb_UltraLight.woff) format("woff"), url(../fonts/IRANSans/ttf/IRANSansWeb_UltraLight.ttf) format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/IRANSans/eot/IRANSansWeb.eot);
    src: url(../fonts/IRANSans/eot/IRANSansWeb.eot?#iefix) format("embedded-opentype"), url(../fonts/IRANSans/woff2/IRANSansWeb.woff2) format("woff2"), url(../fonts/IRANSans/woff/IRANSansWeb.woff) format("woff"), url(../fonts/IRANSans/ttf/IRANSansWeb.ttf) format("truetype");
}


/* Default WP
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
    position: relative;
    width: 1370px;
    margin: 0 auto;
}

.colm1 {
    width: 8.33%;
}

.colm2 {
    width: 16.66%;
}

.colm3 {
    width: 25%;
}

.colm4 {
    width: 33.33%;
}

.colm5 {
    width: 41.66%;
}

.colm6 {
    width: 50%;
}

.colm7 {
    width: 58.33%;
}

.colm8 {
    width: 66.66%;
}

.colm9 {
    width: 75%;
}

.colm10 {
    width: 83.33%;
}

.colm11 {
    width: 91.66%;
}

.colm12 {
    width: 100%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.pad-5 {
    padding: 5px;
}

.pad-10 {
    padding: 10px;
}

.pad-20 {
    padding: 20px;
}

.pad-30 {
    padding: 30px;
}

.pad-40 {
    padding: 40px;
}

.pad-b-5 {
    padding-bottom: 5px;
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

.pointer {
    cursor: pointer;
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    vertical-align: middle;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.margin-auto {
    margin: 0 auto;
}

.full-height {
    height: 100vh;
}

.half-height {
    height: 40vh;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.space-between {
    justify-content: space-between;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

* {
    font-family: IRANSans;
}

a {
    color: #1eaedb;
    text-decoration: none;
}

a:hover {
    color: #0fa0ce;
}

.alignright {
    text-align: right;
}

.alignleft {
    text-align: left;
}

.aligncenter {
    text-align: center;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button,
button,
input[type="submit"],
input[type="file"],
input[type="reset"],
input[type="button"],
.btn {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #000;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="file"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="file"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="file"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #fff;
    background-color: #939597;
    border: 0;
    border-radius: 0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="file"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="file"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #fff;
    background-color: #939597;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #959ea6;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #959ea6;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #959ea6;
}

.btn-auth,
.icon-user {
    color: #000000;
    display: flex !important;
    font-size: 18px !important;
}

.btn-auth,
.icon-user:hover {
    color: #000000;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */

input[type="email"],
input[type="number"],
input[type="file"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    font-size: 14px;
    color: #666;
    line-height: normal;
    box-sizing: border-box;
    border-radius: 4px;
    height: 38px;
    padding: 5px;
    margin: 6px 0px 4px;
    border: solid 1px #70806b;
    background: transparent;
}

input[type="file"] {
    padding: 10px;
    font-size: 13px;
}


/* Removes awkward default styles on some inputs for iOS */

input[type="email"],
input[type="number"],
input[type="file"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33c3f0;
    outline: 0;
}

label,
legend {
    font-size: 13px;
    font-weight: 500;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-body {
    display: inline-block;
    margin-left: 0.5rem;
    font-weight: normal;
}

label.error {
    color: red;
    font-size: 11px;
    float: left;
    margin-top: -60px;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */

ul.lists {
    list-style: circle inside;
}

ol.lists {
    list-style: decimal inside;
}

ol.lists,
ul.lists {
    padding-left: 0;
    margin-top: 0;
}

ul.lists ul,
ul.lists ol,
ol.lists ol,
ol.lists ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

.lists li {
    margin-bottom: 1rem;
}


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */

code {
    padding: 0.2rem 0.5rem;
    margin: 0 0.2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #f1f1f1;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

pre>code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}


/* Alert
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.card-alert {
    position: fixed;
    width: 20%;
    bottom: 50px;
    left: 50px;
    border-radius: 10px;
    padding: 25px;
    z-index: 99;
}

.card-alert.hide-alert {
    display: none;
}

.card-alert.success {
    background-color: #4caf50;
}

.card-alert.error {
    background-color: #f55153;
}

.card-alert.informative {
    background-color: #2896f3;
}

.card-alert.warning {
    background-color: #fbc107;
}

.close-alert {
    transform: rotate(45deg);
}

.alert-close {
    position: absolute;
    top: 5px;
    left: 10px;
    cursor: pointer;
}

.alert-title {
    color: #fff;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */

th,
td {
    text-align: right;
    border-bottom: 1px solid #e1e1e1;
}


/* Table
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.table {
    width: 100%;
}

.table tr {
    border-bottom: 1px solid rgb(241, 243, 244);
}

.table tr:last-child {
    border-bottom: none;
}

.table thead tr {
    background-color: #f4f6f8;
    color: #212b36;
}

.table tbody tr {
    display: table-row;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgb(244, 246, 248);
}

.table th,
.table td {
    display: table-cell;
    text-align: right;
    font-size: 14px;
    padding: 16px;
}

.table th {
    color: rgb(99, 115, 129);
    background-color: rgb(244, 246, 248);
}

.ajax-load {
    position: relative;
}

.load-active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/loader.svg) #fffc;
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center;
}

.table td input {
    width: 80px;
}

.table .small {
    font-size: 10px;
}

.table td.text-center {
    text-align: center;
}

.table tr.active {
    background: #00800012;
}


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */

hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #e1e1e1;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.row:after,
.clearfix {
    content: "";
    display: table;
    clear: both;
}


/* Popup
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.popup {
    display: none;
}

.popup-overlay {
    background: #0000004d;
    position: fixed;
    z-index: 20;
    inset: 0;
}

.lock-body-scroll {
    overflow: hidden;
}

.popup-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 70vh;
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 50%;
    right: 0;
    margin: auto;
    border-radius: 8px;
    padding: 0 20px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 25;
}

.popup-content {
    background-color: #fff;
}


/* home section1
---------------------------------------
*/
.section-base-grid {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100vh;
    overflow: hidden;
}

.mx-margin {
    margin-left: auto;
    margin-right: auto;
}

.mx-width {
    max-width: 1920px;
}

.section-base-des {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
     overflow: hidden;
}

.section-base-des>div {
    /* background-color: aqua; */
    text-align: center;
    width: 350px;
    height: auto;
    text-align: right;
    /* border: 1px solid #000; */
    padding: 5px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
}

.section-base-title {
    font-size: 60px;
    line-height: 1
}

.gradient-text {
    font-size: 50px;
    font-weight: 500;
    display: inline;
    background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.gradient-text:nth-child(2) {
    background: linear-gradient(to right, #1c77ff 20%, #4e8cfd 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(3) {
    background: linear-gradient(to right, #c66dff, #1c77ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(4) {
    background: linear-gradient(to right, #ffb6d6, #c66dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(5) {
    background: linear-gradient(to right, #ff7e5f, #ffb6d6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-base-p {
    font-size: 16px;
}



/*for this page */

/* .btn-login {
    min-width: 160px !important;
} */


.base-section-slider {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100vh;
    transform: rotate(-3deg);
    gap: 10px;
    overflow: hidden;
    /* width: fit-content; */
}
.base-section-slider>div {
    text-align: center;
    width: 300px;
    height: 100vh;
    padding: 5px;
    word-wrap: break-word;
    white-space: normal;
    transform: rotate(-3deg);
}

.base-section-slider::before,
.base-section-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 10;
    margin: auto;
    /* width: 100%; */
}

.base-section-slider::before {
    top: 0;
    background: linear-gradient(to bottom, white, transparent);

}

.base-section-slider::after {
    bottom: 0;
    background: linear-gradient(to top, white, transparent);

}
.column1-slider,
.column2-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  height: 100%;
}

.column1-slider {
  animation: moveUp 60s linear infinite; 
}
.column1-slider:hover {
  animation-play-state: paused;
}

.column2-slider {
  animation: moveDown 60s linear infinite;
}
.column2-slider:hover {
  animation-play-state: paused;
}

@keyframes moveUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); 
  }
}

@keyframes moveDown {
  0% {
    transform: translateY(-50%); 
  }
  100% {
    transform: translateY(0);
  }
}


.card-slider {
    display: flex;
    justify-content: start;
    flex-direction: column;
    /* margin: 10px; */
    width: auto;
    height: auto;
    cursor: pointer;
}

.card-slider>div {
    width: 100%;
    margin: 4px 0px;
    background-color: rgb(255, 255, 255);
}


.card-slider-sec1 {
    border-radius: 8px 8px 0px 0px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.card-slider-sec2 {
    border-radius: 0px 0px 8px 8px;
    height: 110px;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
    box-shadow: 0 20px 25px rgba(15, 23, 42, .08);
}



.card-slider-title {
    display: flex;
    flex-direction: row;
    padding: 5px;
    position: relative;
    gap: 40px;
    padding: 5px 10px;
}

.card-slider-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    --tw-bg-opacity: 1;
    background-color: #dcdcdc;
}

.slider-profile-inv1 {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    width: 147px;
    height: auto;
    justify-content: right;
    text-align: right;
    overflow: auto;
    word-wrap: break-word;
}

.slider-profile-inv2 {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    width: 147px;
    height: auto;
    justify-content: left;
    text-align: right;
    overflow: auto;
    word-wrap: break-word;
}


.title-inv {
    -webkit-font-smoothing: antialiased;
    --tw-text-opacity: 1;
    color: #3c3c3c;
    font-weight: 300;
    font-size: 11px;
    text-align: right;
}

.txt-inv {
    font-size: 12px;

}

.sec-area {
    display: flex;
    justify-content: right;
    flex-direction: row;
    gap: 5px;
    padding: 10px 10px;
    line-height: 2.2;
}

.txt-area {
    -webkit-font-smoothing: antialiased;
    --tw-text-opacity: 1;
    color: #3c3c3c;
    font-weight: 300;
    font-size: 12px;
    text-align: right;

}

.title-area {
    font-size: 12px;
}

.icon-area {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background-color: rgb(231, 231, 231);
    display: flex;
    justify-content: center;
    align-items: center;

}

.img-sec1-slider {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover !important;
    border-radius: inherit !important;
}
/*-------------------------------------------*/


/*----------------------------home page section2--------------------------------*/
.investor-section {
    --bg: #f4fbfb;
    --ink: #0b1220;
    --muted: #475569;
    --ring: #dbe7ef;
    --chip: #fff;
    --blue: #2563eb;
    background: var(--bg);
    color: var(--ink);
    padding: 48px 0
}


.investor-section .is-title {
    margin: 50px 0px;
    font-weight: 800;
    text-align: center;
    letter-spacing: .2px
}

.investor-section .is-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 10px;
    max-width: 900px
}

.is-lane {
    cursor: pointer;
}

.investor-section .is-stat {
    text-align: center
}

.is-num {
    font-size: 30px !important;
}


.investor-section .is-num {
    direction: rtl;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1;
    font-size: clamp(42px, 7vw, 88px)
}

.sec-head {
    text-align: center;
    padding: 0px 0px 30px 0px;
}

.sec-head h2 {
    line-height: 1.25;
    font-weight: 300;
    color: #292524;
    font-size: 40px;
}

.sec-head p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 8px;
    margin-top: 8px;
    color: #1a1a1a;
}

.investor-section .is-num.is-blue {
    color: var(--blue)
}

.investor-section .is-sub {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 500
}


.investor-section .is-ico-inv-area {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}


.investor-section .is-ico-inv-area::before,
.investor-section .is-ico-inv-area::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 3;
    background: linearrea-gradient(to right, var(--bg), rgba(244, 251, 251, 0))
}

.investor-section .is-ico-inv-area::before {
    left: 0
}

.investor-section .is-ico-inv-area::after {
    right: 0;
    transform: scaleX(-1)
}

.investor-section .is-lane {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 12px 0;
    will-change: transform
}

.investor-section .is-lane:hover {
    animation-play-state: paused
}

.investor-section .is-set {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 14px
}


.investor-section {
    --bg: #f4fbfb;
    --ink: #0b1220;
    --muted: #475569;
    --ring: #dbe7ef;
    --chip: #fff;
    --blue: #2563eb;
    background: var(--bg);
    color: var(--ink);
    padding: 48px 0
}


.investor-section .is-title {
    margin: 50px 0px;
    font-weight: 800;
    text-align: center;
    letter-spacing: .2px
}

.investor-section .is-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 10px;
    max-width: 900px
}

.is-lane {
    cursor: pointer;
}

.investor-section .is-stat {
    text-align: center
}

.is-num {
    font-size: 30px !important;
}


.investor-section .is-num {
    direction: rtl;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1;
    font-size: clamp(42px, 7vw, 88px)
}


.investor-section .is-num.is-blue {
    color: var(--blue)
}

.investor-section .is-sub {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 500
}


.investor-section .is-ico-inv-area {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}


.investor-section .is-ico-inv-area::before,
.investor-section .is-ico-inv-area::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 3;
    background: linearrea-gradient(to right, var(--bg), rgba(244, 251, 251, 0))
}

.investor-section .is-ico-inv-area::before {
    left: 0
}

.investor-section .is-ico-inv-area::after {
    right: 0;
    transform: scaleX(-1)
}

.investor-section .is-lane {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 12px 0;
    will-change: transform
}

.investor-section .is-lane:hover {
    animation-play-state: paused
}

.investor-section .is-set {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 14px
}

.investor-section .to-left {
    animation: is-left 60s linear infinite;
    padding-left: 100px;
}

.investor-section .to-right {
    animation: is-right 60s linear infinite;
    padding-right: 100px;

}
@keyframes is-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

@keyframes is-right {
    0% {
        transform: translateX(calc(-100% + 100vw));
    }

    100% {
        transform: translateX(0);
    }
}



.is-set {
    flex-shrink: 0;
    display: inline-flex;
    gap: 14px;
}



.investor-section .is-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px;
    border-radius: 10px;
    background: var(--chip);
    border: 1px solid var(--ring);
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
    font-weight: 600;
    color: #0f172a
}

.investor-section .is-chip:hover {
    border: 1px solid black;
}

.investor-section .is-chip i {
    font-style: normal;
    opacity: .75
}

/*-------------------------------------------------------------------------*/
/*-------------------------------home page sec3------------------------------------------*/
.section-three {
    padding: 80px 0px;
}

.event-banner {
    margin: 0;
    margin: 0 auto;
    padding: 20px 0px;

}

.upcoming-event {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 24px;
    border: 1px solid #e6eefc;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
    /* padding: 16px; */
    margin-bottom: 80px;
    padding-left: 100px;
    height: auto;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);

}

.sec3-head {
    text-align: center;
    padding: 0px 0px 30px 0px;
}

.sec3-head h2 {
    line-height: 1.25;
    font-weight: 300;
    color: #292524;
    font-size: 40px;
}

.sec3-head p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 8px;
    margin-top: 8px;
    color: #1a1a1a;
}

.upcoming-illustration {
    border-radius: 0px 12px 12px 0px;
    background: #1f2a64;
    min-height: 220px;
    overflow: hidden;
}

.upcoming-content h2 {
    /* margin: 0 0 12px; */
    padding: 25px 12px 12px 12px;
    font-size: 22px;
    font-weight: 700;
}

.upcoming-content p {
    padding: 10px;
    text-align: justify;
    /* margin: 0 0 14px; */
    font-size: 15px;
    color: #475569;
}

.btn-event {
    background: #0284c7;
    border: 1px solid #0284c7;
    color: #fff;
    padding: 5px 8px;
    border-radius: 8px;
    font-weight: 300;
    display: inline-block;
    cursor: pointer;
}


.all-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.all-events-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.all-events-header a {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
}


.all-events {
    border: 1px solid #e5e9f2;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.event-item {
    display: grid;
    grid-template-columns: 70px 1fr 220px 24px;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid #eef2f7;
    align-items: center;
    cursor: pointer;
}

.event-item:first-child {
    border-top: none
}

.event-item:hover {
    background: #f9fbff
}

.event-date {
    width: 58px;
    height: 58px;
    border: 1px solid #e6ecf9;
    border-radius: 12px;
    background: #f5f8ff;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date strong {
    font-size: 18px;
    color: #0b1220
}

.event-date span {
    font-size: 10px;
    text-transform: uppercase;
    color: #657184
}

.event-title {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.event-tags .tag-lang {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
}

.event-tags .tag-online {
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #0e7490;
}

.event-tags .tag-inperson {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #1d4ed8;
}

.event-arrow {
    color: #94a3b8;
    font-size: 18px;
    text-align: right
}

.mar-15 {
    margin: 15px;
}
/*-------------------------------------------------------------------------*/
/*------------------home page sec4------------------------------*/
#section4 {
    background: radial-gradient(circle at top left, rgb(255 205 107 / 30%), transparent 30%), radial-gradient(circle at top right, rgb(243 253 251), #00000000 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), #0000000d 30%);
    /* height: 50vh; */
    padding: 80px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    /* height: 300px; */
}

.sec4-head {
    text-align: center;
    padding: 0px 0px 30px 0px;
}

.sec4-head h2 {
    line-height: 1.25;
    font-weight: 300;
    color: #292524;
    font-size: 40px;
}

.sec4-head p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 8px;
    margin-top: 8px;
    color: #1a1a1a;
}

.sec4-col1 {
    background: radial-gradient(circle at top left, rgb(255 205 107 / 30%), transparent 30%), radial-gradient(circle at top right, rgb(243 253 251), #00000000 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), #0000000d 30%);
    color: #1c1a1a;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.sec4-content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 32px 35px 72px;
    display: flex;
    padding-left: 72px;
}

.sec4-col1 img {
    border-radius: 16px;
    width: 100%;
}

.column-2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.row-1 {
    background: radial-gradient(circle at top left, rgb(255 205 107 / 0%), transparent 30%), radial-gradient(circle at top right, rgb(243 253 251), #00000000 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), #0000000d 30%);
    color: #1c1a1a;
    border-radius: 16px;
    flex-flow: row;
    display: flex;
    position: relative;
    height: 50%;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    /* height: 50%; */
}

.sub-row-1 {
    position: relative;
    background-image: radial-gradient(circle at 0 100%, #1c1a1ae6, #1c1a1a80 27%, #1c1a1a00 54%), url(https://cdn.prod.website-files.com/62d19f82a58657afab15127b/67d7ab56cf4e85df95736331_antler-team.jpg);
    background-position: 0 0, 50%;
    background-size: auto, cover;
    width: 100%;
    height: 255px;
    border-radius: 16px;
    overflow: hidden;
}

.sub-row-2 {
    position: relative;
    background-image: radial-gradient(circle at 0 100%, #1c1a1ae6, #1c1a1a80 27%, #1c1a1a00 54%), url(https://cdn.prod.website-files.com/62d19f82a58657afab15127b/67cf8f647f0b45bf6e5e9dc4_Antler%20founder%20speaking.avif);
    background-position: 0 0, 50%;
    background-size: auto, cover;
    width: 100%;
    height: 255px;
    border-radius: 16px;
    overflow: hidden;
}

.overlay-subrow {
    color: #fff;
    background-image: linear-gradient(#0000 59%, #0814156e 78%, #1c1a1ab3 98%);
    justify-content: flex-start;
    align-items: flex-end;
    padding: 24px;
    display: flex;
    position: absolute;
    inset: 0%;
}

.sec4-title {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #1c1a1a;
}

.sec4-subtitle {
    color: #1c1a1a;
    line-height: 1.5;
}

.get-link {
    background-color: #ffffffe6;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    position: absolute;
    font-size: 18px;
    color: #1c1a1a;
    line-height: 1.5;
    left: 24px;
    bottom: 24px;
}

.get-link2 {
    background-color: #f0ebe6;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    position: absolute;
    font-size: 18px;
    color: #1c1a1a;
    line-height: 1.5;
    left: 24px;
    top: 24px;
}

.get-link3 {
    background-color: #f0ebe6;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    font-size: 18px;
    color: #1c1a1a;
    line-height: 1.5;
}

.row-1-content a {
    display: flex;
    height: 100%;
    width: 100%;
}

.row-1-content img {
    object-fit: cover;
    border-radius: 5rem 1rem 1rem 1rem;
    max-width: 43%;
    height: 100%;
    display: block;
}

.row-1-subcontent {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 26px 32px;
    display: flex;
    text-align: justify;
}

.hover-sec4 {
    transition: transform .3s;
}

.hover-sec4:hover {
    transform: translate(-4px, -4px);
}

.flex-sub {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-row-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
}
/*------------------------------------*/
/*---------------home page sec5---------------------*/
/*------------------------------------*/
/*---------------home page sec6---------------------*/
/*------------------------------------*/
/*---------------home page sec---------------------*/
/*------------------------------------*/
/* home */
.flex-center{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bg-home{
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
}
.mar-t-home {
    position: absolute;
    left: 0;
    right: 0;
    top: 18%;
}
.grid-ri-btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;  
}
.register-btn3,
.register-btn{
    background: #000000ad;
    box-shadow: 0px 0px 2px 0px #000;
    border-radius: 8px;
    color: #fff;
    border: 1px solid #3535354d;
    font-size: 18px;
    padding: 2px 48px;
    font-weight: 500; 
    margin-top: 32px;
    transition: 0.2s;
    cursor: pointer;
    text-align: center;
}

/* .register-btn:hover{
    padding: 2px 55px;
    background: #0000008a;
    border: 1px solid #353535;
    box-shadow: 0 0 15px -2px #000;
}
.register-btn3:hover{
    padding: 2px 55px;
    background: #0000008a;
    border: 1px solid #353535;
    box-shadow: 0 0 15px -2px #000;
} */
.hollow-text {
    font-size: 55px;
    font-weight: bold;
    color: rgb(255 255 255);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.grid-container {
    display: flex;
    gap: 24px;
}
.grid-item {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    flex: 1;
}
.nav{
    margin-right: 30px;
}
.nav ul li a{
    color: #fff;
    letter-spacing: 1px;
    font-size: 16px;
    transition: 0.5s;
}
.nav ul li a:hover{
    text-shadow: 0px 1px 3px #fff;
}
/* modal */

.modal {
    width: 50%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 6px -4px #000;
    z-index: 999;
}

.modal-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    top: 0;
    background: #00000042;
    transition: 0.5s;
    display: none;
}

.modal-login {
    left: 0;
    background: #4b4b4b99;
}

.modal-overlay.is-active {
    display: flex;
}

.modal-header,
.modal-body {
    border-bottom: 1px solid #e9e9e9;
}

.modal-new,
#modal-auth {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 99;
}

.modal-new.is-active,
#modal-auth.is-active {
    display: flex;
}

.modal-new.is-active .modal-overlay,
#modal-auth.is-active .modal-overlay {
    display: block;
}

.modal-header,
.modal-footer,
.modal-body {
    padding: 20px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.invoice-title {
    cursor: pointer;
    color: #19bfd3;
}

.btn-print {
    border: 1px solid #000;
    padding: 2px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: rgb(244, 246, 248);
    cursor: pointer;
    font-size: 14px;
    height: unset;
    line-height: unset;
    font-weight: unset;
    letter-spacing: unset;
}

.modal-login .modal {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
    border: solid 1px #0000001f;
    background-color: #fff;
}

.icon-close {
    text-align: left;
    line-height: 0;
    padding-left: 25px;
    padding-top: 25px;
}

.direction-column {
    flex-direction: column;
}

.modal-form-auth h3 {
    font-size: 20px;
    color: #0A0B0C;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 12px;
}

.modal-form-auth h4 {
    color: #2B2F33;
    line-height: 1.5;
    margin-bottom: 48px;
}

.input-login {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.input-login input {
    height: 48px;
    margin: 0;
    outline: none;
    border: 1px solid #bec6cc;
    width: 100%;
    color: #2b2f33;
    border-radius: 8px;
    padding-left: 50px;
    ;
}

.input-login label {
    position: absolute;
    right: 1px;
    padding: 5px 10px;
    background: #fff;
    transition: transform 0.2s ease-out;
    color: #959ea6;
}

.input-login input:is(input:focus, input:valid) {
    border-color: #bec6cc;
}

.input-login input:is(input:focus, input:valid)+label {
    transition: 0.2s ease-out;
    transform: translate(0, -23px) scale(0.7);
    color: #6c7680;
}

.iran-number {
    position: absolute;
    left: 10px;
    border-right: 1px solid #e0e0e0;
    direction: ltr;
    color: #959ea6;
    padding-right: 5px;
    font-size: 14px;
}

.regulation-auth svg {
    margin-left: 8px;
    width: 23px;
    height: 18px;
}

.modal-form-auth {
    margin-bottom: 48px;
    margin-top: 32px;
}

.modal-form-auth a {
    color: #0077db;
    padding: 2px 5px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: 0.4s;
    border-radius: 8px;
}

.modal-form-auth a:hover {
    border-color: #c9e3f8;
    background-color: #f2f9ff;
}

.login-pass {
    font-size: 14px;
}

.login-pass a {
    font-weight: 400;
}

.regulation-auth {
    color: #4b5259;
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 32px;
}

.button-auth {
    width: 100%;
    margin-bottom: 16px;
}

.button-auth button {
    width: 100%;
    background: #0077db;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    height: 48px;
}

.button-auth button:disabled {
    opacity: .525;
    cursor: not-allowed;
}

.modal-form-auth .verification__input:is(input:focus, input:valid) {
    border-color: #bec6cc;
}

.modal-form-auth .verification__input {
    height: 50px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #bec6cc;
    font-weight: 500;
    color: #000;
    outline: none;
}

.timer-body {
    font-size: 12px;
    color: #6c7680;
    padding: 32px 0;
}

.text-verify-code {
    padding-right: 5px;
}

.refresh-time {
    padding-right: 5px;
    font-weight: 500;
}

.modal-inquiry {
    width: 75%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
}

.modal-form-inquiry {
    margin: 0;
}

.modal-form-inquiry h4 {
    color: #646464;
    line-height: 1.5;
    margin-bottom: 42px;
}

.item-r {
    padding: 48px;
}

.item-l {
    background: #f5f5f5;
    padding: 48px;
}

.grid-inquiry {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
}

.input-inquiry {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input-inquiry select,
.input-inquiry input {
    height: 35px;
    margin: 0;
    outline: none;
    border: 1px solid #aaa;
    width: 100%;
    font-size: 13px;
    color: #646464;
    border-radius: 8px;
    transition: all 0.4s;
}

.input-inquiry label {
    position: absolute;
    right: 1px;
    padding: 0px 10px;
    background: #fff;
    transition: transform 0.2s ease-out;
    color: #959ea6;
    font-weight: 500;
    font-size: 14px;
}

.input-inquiry input:is(input:focus, input:valid) {
    border-color: #bec6cc;
}

.input-inquiry input:is(input:focus, input:valid)+label {
    transition: 0.2s ease-out;
    transform: translate(0, -17px) scale(0.75);
    color: #6c7680;
}

.button-inquiry {
    width: 100%;
    margin-bottom: 16px;
}

.button-inquiry button {
    width: fit-content;
    background: #0077db;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 300;
    border: none;
    padding: 0 50px;
    border-radius: 3px;
    height: 33px;
    transition: all 0.4s;
}

.button-inquiry button:hover {
    background-color: #005cf5;
}

.icon-inquiry.active {
    background: orange;
}

.body-i-inquiry {
    margin-bottom: 32px;
}

.icon-inquiry {
    width: 32px;
    height: 32px;
    background: #d2d2d2;
    border-radius: 3px;
    padding: 8px;
    margin-left: 48px;
}

.title-inq {
    color: #212121;
    margin-bottom: 14px;
    font-weight: bold;
}

.subtitle-inq {
    font-size: 12px;
    color: #646464;
}

.logo-ahan {
    margin-bottom: 32px;
}

.logo-ahan .tilte-fc {
    margin-left: 10px;
}

.modal-inquiry .modal-close {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 15px;
    color: rgb(158, 158, 158);
}


/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    header{
        padding-left:13.5px;
        padding-right:13.5px;
        position: fixed;
        width: 100%;
        top: 13.5px;
        z-index: 999;

    }
    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
        border-radius: 9px;
        background-color:#fff;
        padding-left:16px;
        padding-right:16px;
        box-shadow: 0 0px 5px -4px #000;
    }
    .nav-h-r{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        height: 100%;
    }
    .flex-nav{
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .line-height-header{
        color: #3077b8;
        font-weight: bold;
        font-size: 18px;
    }
    .nav-h{
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .nav-h li a{
        position: relative;
        color: #585858;
        transition: 0.5s;
        font-size: 14px;
    }
    .nav-h li a::after{
        content: "";
        width: 0;
        height: 1px;
        background: #1a1a1a;
        position: absolute;
        bottom: 0;
        right: 0;
        transition: 0.4s;
    }
    .nav-h li a:hover{
        color: #1a1a1a;
    }
    .nav-h li a:hover::after{
        width: 100%;
    }
    .nav-h-l{
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .btn-login{
        color: #16263d;
        font-weight: 500;
        text-align: center;
        padding: 6px 12px;
        border: 1px solid #657285;
        border-radius: 8px;
        font-size: 14px;
        min-width: 130px;
        transition: 0.5s;
    }
    .btn-register{
        color: #fff;
        background: #0284c7;
        font-weight: 500;
        text-align: center;
        padding: 6px 12px;
        border: 1px solid #0284c7;
        border-radius: 8px;
        font-size: 14px;
        min-width: 130px;
        transition: 0.5s;
    }
    .btn-register:hover{
        color: #fff;
        background-color: #075985;
    }
    .btn-login:hover{
        color: #16263d;
        border-color: #1a1a1a;
    }

/* Login
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.base-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.login-header {
    text-align: center;
    margin-bottom: 32px;
}
.login-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.login-header p {
    color: #64748b;
    font-size: 14px;
}
.login-form input {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px 8px 16px;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.2s ease;
    width: 100%;
    outline: none;
    height: 41px;
    margin: 0;
}

.login-form input:-internal-autofill-selected{
    background-color: transparent !important;
}
.login-form label {
    position: absolute;
    right: 16px;
    top: 12px;
    color: #64748b;
    font-size: 16px;
    transition: all 0.2s ease;
    pointer-events: none;
    transform-origin: right top;
    font-weight: 300;
    line-height:1;
}

.login-form input:focus, .login-form input:valid, .login-form input.has-value {
    border:2px solid #6366f1;
}
.login-form input:focus + label, .login-form input:valid + label, .login-form input.has-value + label {
    transform: translateY(-17px) scale(0.875);
    color: #6366f1;
    font-weight: 500;
    background: #fff;
    padding: 0 6px;
    font-size: 13px;
}
.input-wrapper{
    position: relative;
}
.grid-col1 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.login-btn{
    width: 100%;
    background: #6366f1;
    border: none;
    border-radius: 8px;
    height: 41px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.login-btn:hover {
    background: #4f46e5;
}


/* Menus
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.sub-menu {
    background: #ffcc00;
}

div.primary-menu {
    margin-right: 20px;
}

div.primary-menu ul {
    list-style: none;
    display: flex;
    position: relative;
}

div.primary-menu li {
    display: block;
    color: #4b5259;
}

ul.sub-menu li {
    /* border-bottom: 1px solid #f1f1f1; */
}

ul.sub-menu li:last-child {
    border-bottom: 0;
}

div.primary-menu>ul>li {
    position: relative;
    padding: 19px;
    cursor: pointer;
}

div.primary-menu>ul>li svg {
    vertical-align: middle;
    margin-right: 10px;
}

div.primary-menu>ul>li:after {
    content: " ";
    position: absolute;
    left: -1px;
    top: 22px;
    width: 1px;
    height: 24px;
    background: #0000001f;
}

div.primary-menu>ul>li:last-child:after {
    width: 0;
}

div.primary-menu>ul>li:has(>.sub-menu) {
    padding-left: 20px;
}

div.primary-menu>ul>li {
    display: block;
}

div.primary-menu>ul>li:hover {
    /* color: #000; */
}

div.primary-menu>ul>li:hover {
    /* background: #f3f3f3; */
}


/* Sub/Children Menu */

div.primary-menu .sub-menu,
div.primary-menu .children {
    display: none;
    position: absolute;
    right: 0;
    top: 93%;
    background: #fff;
    min-width: 130px;
    z-index: 5;
}

li.more .sub-menu {
    min-width: 190px;
}

div.primary-menu li:hover>.sub-menu,
div.primary-menu li:hover>.children {
    display: block;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 3px 10px 0 rgba(0, 0, 0, .12), 0 10px 10px -6px rgba(0, 0, 0, .12);
    border-radius: 8px;
    border: solid 1px #0000001f;
}

div.primary-menu .sub-menu li,
div.primary-menu .children li {
    position: relative;
    display: block;
    font-size: 14px;
    color: #4b5259;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

div.primary-menu .sub-menu li:hover,
div.primary-menu .children li:hover {}

div.primary-menu .sub-menu li::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 82%;
    text-align: center;
    height: 1px;
    background: #0000001f;
}

div.primary-menu .sub-menu li:last-child:before {
    height: 0;
}


/* Grandchildren Menu */

div.primary-menu .sub-menu .sub-menu,
div.primary-menu .children .children {
    position: absolute;
    right: 100%;
    top: 0;
    background: #444;
}

div.primary-menu li.menu-item::before {
    position: absolute;
    top: 50%;
    left: 24px;
    margin: auto;
    transform: translate(-50%, -50%);
}

.svg3 svg {
    transform: translate(0, -16px);
}

.support-center {
    color: #4b5259;
    padding-left: 30px;
    transition: 0.5s;
    border-radius: 8px;
    padding: 5px;
    margin-left: 25px;
}

.support-center:hover {
    color: #4b5259;
    box-shadow: inset 0 0 14px -10px #000;
}

.support-center:last-child {
    position: relative;
    margin-left: 0;
    padding-right: 8px;
}

.svg-verified {
    width: 12px;
    color: #28a745;
    position: absolute;
    top: 5px;
    right: 2px;
    margin-left: 0 !important;
}

.svgarrow-b {
    vertical-align: middle;
    margin-left: 0 !important;
    margin-right: 8px;
}

.support-center svg {
    margin-left: 3px;
}


/* Section General
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-base{
    width: 100vw;
    height: 100vh;
    overflow: auto;
}
.error-item{
    font-size: 12px;
    color: red;
}

/* Section 1
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#section1{
    background: radial-gradient(222.05% 147.29% at 96.05% -8.32%, rgba(255, 221, 181, 0.85) 0%, rgba(247, 247, 247, 0.5525) 45.82%, rgba(183, 255, 246, 0.25) 100%);
    height: 100vh;
}
/* Section 2
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.newsection2-top{
    background: url(../images/110.jpg);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: 124px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.section2-top{
    background: url(../images/0057.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.now-event{
    background: #f00;
    color: #fff;
    font-weight: 600;
    border-radius: 2px;
    padding: 4px 12px;
}
.title-event{
    color: #f1f1f1;
    font-weight: 900;
    font-size: 45px;
    letter-spacing: 2px;
    text-shadow: -1px 2px 5px #00031d;
}
.flex-event{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.border-ev{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #fff;
    padding: 0px 12px;
    border-radius: 2px;
    box-shadow: 0 0px 10px -2px #fff;
}
.grid-b-ev{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 0px;
}
.medal{
    background: url(../images/0054.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: contain;
    position: relative;
    height: 82vh;
    width: 100%;
    margin: 0 auto;
}
.c-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.body-dar{
    text-align: justify;
    max-width: 85%;
}
.dar-tit{
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    font-size: 35px;
}
.dar-sub{
    letter-spacing: 0.5px;
    color: #5c5c5c;
    font-size: 20px;
    font-weight: 300;
    text-align: justify;
}
.bt-report a{
    color: #2b5f6d;
    border: 1px solid #fff;
    padding: 4px 16px;
    border-radius: 5px;
    background: #ffffffd9;
    font-weight: 600;
    transition: 0.5s;
}
.bt-report a:hover{
    background: #fff;
    box-shadow: 0 0 30px -10px #000;
}
/* Section 3
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section3-body{
    background: url(../images/0052.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    /* height: 100vh; */
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}
#section3{
    height: unset;
}
.grid-section3{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    justify-content: center; 
  }
  
  /* ردیف اول */
  .item {
    position: relative;
    background-color: #ffffffd9;
    padding: 16px;
    box-shadow: 0 0 100px 4px #fffffff5;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
  }
  .item::after{
    content: " ";
    position: absolute;
  }
  .item:hover{
    transform: scale(1.03);
    background-color: #ffffffed;
  }
  /* ردیف دوم */
  .row2 {
    display: flex;
    justify-content: center; 
    gap: 32px; 
    grid-column: 1 / -1; 
    margin-top: 20px;

  }
  .sec3-ti i{
    vertical-align: middle;
  }
  .item1 .sec3-ti {
    color: #0074D9;
  }
  .item2 .sec3-ti {
    color: #77DD77;
  }
  .item3 .sec3-ti {
    color: #FF851B;
  }
  .item4 .sec3-ti {
    color: #B10DC9;
  }
  .item5 .sec3-ti {
    color: #8B4513;
  }
  .item6 .sec3-ti {
    color: #228B22;
  }
  .item7 .sec3-ti {
    color: #FFD700;
  }
  .item8 .sec3-ti {
    color: #9370DB;
  }
  .item9 .sec3-ti {
    color: #FFA726;
  }
  .item10 .sec3-ti {
    color: #FF6F61;
  }
  .item1 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(0 116 218) 26%, #2874d9 50%, rgb(0 116 217) 73%, transparent);
  }
  .item2 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(119 221 119) 26%, #77dd77 50%, rgb(119 221 119) 73%, transparent);
  }
  .item3 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(255 133 27) 26%, #ff851b 50%, rgb(255 133 27) 73%, transparent);
  }
  .item4 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(177 13 201) 26%, #b10dc9 50%, rgb(177 13 201) 73%, transparent);
  }
  .item5 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(139 69 19) 26%, #8b4513 50%, rgb(139 69 19) 73%, transparent);
  }
  .item6 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(34 139 34) 26%, #228b22 50%, rgb(34 139 34) 73%, transparent);
  }
  .item7 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(255 215 83) 26%, #ffd700 50%, rgb(255 215 0) 73%, transparent);
  }
  .item8 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(147 112 219) 26%, #9370db 50%, rgb(147 112 219) 73%, transparent);
  }
  .item9 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(255 167 38) 26%, #ffa726 50%, rgb(255 167 38) 73%, transparent);
  }
  .item10 .sec3-ti::before {
        background-image: linear-gradient(90deg, transparent, rgb(255 111 97) 26%, #ff6f61 50%, rgb(255 111 97) 73%, transparent);
  }
  .hide-dec{
    display:none;
  }
  .sec3-ti {
    position: relative;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    font-size: 20px;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 16px;
    margin-top: 8px;
}   
.sec3-ti .t {
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    font-size: 20px;
}
.sec3-ti::before {
    content: " ";
    position: absolute;
    height: 2px;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 5px;
    border-radius: 5px
}
.sec3-sub {
    color: #000;
    text-align: justify;
    line-height: 1.5;
}
.rowsubtit span{
    font-weight: 600;
}
.rowsubtit{
    color: #5e5e5e;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 12px;
}
.rowsubtit i {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    text-align: center;
}
.rowsubdec {
    line-height: 1.4;
    margin-bottom: 8px;
    padding-right: 20px;
    font-size: 14px;
    color: grey;
    font-weight: 300;
}
.card-seprator {
    margin: 15px 0;
    height: 1px;
    transform: rotate(-1turn);
    opacity: .2;
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .7) 26%, #000 50%, rgba(0, 0, 0, .7) 73%, transparent);
}
/* Section 4
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec-title {
    position: relative;
    font-size: 30px;
    font-weight: bolder;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: -2px 3px 3px #000;
    line-height: 1.4;
    width: fit-content;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
    padding-bottom: 16px;
}
.sec-title::after {
    content: " ";
    background-image: linear-gradient(90deg, transparent, rgb(255 255 255) 26%, #ffffff 50%, rgb(255 255 255) 73%, transparent);
    position: absolute;
    width: 72%;
    height: 3px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.sec-title::before {
    content: " ";
    background-image: linear-gradient(90deg, transparent, rgb(255 255 255) 26%, #ffffff 50%, rgb(255 255 255) 73%, transparent);
    position: absolute;
    width: 90%;
    height: 3px;
    bottom: 7px;
    left: 0;
    right: 0;
    margin: auto;
}
.section-base4{
    background: url(../images/0099.jpg);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    min-height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}
#section4{
    height: unset;
}
.grid-sec4{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}
.card-sec4-body{
    position: relative;
    background-color: #ffffffd9;
    padding: 16px;
    box-shadow: 0 0 100px 4px #fffffff5;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
}
.card-sec4-title{
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.card-sec4-subtitle{
    line-height: 1.4;
    color: teal;
}
.sec4-evdec{
    margin-top: 24px;
    font-size: 18px;
    color: teal;
    line-height: 1.7;
    letter-spacing: 1px;
}
.sec4-evti{
    font-weight: 600;
}
.event-ord-body{
    margin-top: 80px;
}
.timeline-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
}
.timeline-grid .card-sec4-body{
    margin-top: 0;
}
.timeline-sec4-row{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.timeline-sec4-body{
    height: 100%;
}
.timeline-sec4-box{
    position: relative;
    background-color: #ffffffd9;
    padding: 16px;
    box-shadow: 0 0 100px 4px #fffffff5;
    border-radius: 100px;
    width: 80px;
    height: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timeline-sec4-box::after{
    content: " ";
    position: absolute;
    width: 35px;
    height: 35px;
    background: #5aff37;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -16px;
    border: 2px solid #73dec2;
}
.title-timeline{
    transform: translate(-100px, 0);
    color: #fff;
    font-weight: 600;
    text-shadow: 0px 0px 3px #000;
    line-height: 1;
    font-size: 18px;
    letter-spacing: 1px;
}
.event10-title.card-sec4-body{
    margin: 80px 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1px;
}
.timeline9 .timeline-sec4-box::after{
    content: unset;
}
.timeline9 .timeline-sec4-box{
    border: 1px solid #1dca9d3b;
    box-shadow: 0 0 74px -4px #fffffff5;
}
.timeline9 .timeline-sec4-box{
    height: 300px;
}
.timeline9 .timeline-sec4-box:nth-child(1){
    background-color: #5aff37;
}
.timeline9 .timeline-sec4-box:nth-child(2){
    background-color: #ffe401;
    margin-top: -11rem;
}
.timeline9 .timeline-sec4-box:nth-child(3){
    background-color: #ff7101;
    margin-top: -7.2rem;
}
.timeline9 .timeline-sec4-box:nth-child(4){
    background-color: #0075c2;
    margin-top: -7.2rem;
    height: 180px;
}
.timbox{
    position: absolute;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    margin: auto;
    border: 2px solid #73dec2;
}
.timrow{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timrow1{
    top: 80px;
    right: -24px;
}
.timrow1 .title-timeline{
    transform: translate(50px, 0);
}

.timrow2{
    top: 24px;
    left: -8px;
}
.timrow2 .title-timeline{
    transform: translate(-35px, 0);
}

.timrow3{
    top: 90px;
    right: -24px;
}
.timrow3 .title-timeline{
    transform: translate(48px, 0);
}
.timrow4{
    bottom: 130px;
    left: -24px;
}
.timrow4 .title-timeline{
    transform: translate(-48px, 0);
}
.timrow5{
    top: 50px;
    right: -14px;
}
.timrow5 .title-timeline{
    transform: translate(40px, 0);
}
.timrow6{
    top: 105px;
    left: -18px;
}
.timrow6 .title-timeline{
    transform: translate(-40px, 0);
}
.timrow7{
    bottom: 110px;
    right: -14px;
}
.timrow7 .title-timeline{
    transform: translate(38px, 0);
}
.timrow8{
    top: 50px;
    left: -12px;
}
.timrow8 .title-timeline{
    transform: translate(-37px, 0);
}
.timrow9{
    top: 112px;
    right: -22px;
}
.timrow9 .title-timeline{
    transform: translate(47px, 0);
}
.last-ev .timeline-sec4-box::after{
    background: #0075c2;
}
.last-ev .title-timeline{
    transform: translate(-87px, 0);
}
.last-ev .sec4-evdec{
    margin-top: 0;
}
.fcenter{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mar-t-80{
    margin-top: 80px;
}
.mar-b-80{
    margin-bottom: 80px !important;
}
.logo-sec4{
    position: absolute;
    filter: opacity(0.2);
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-sec4 img{
    height: 100%;
}
/* Section 5
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section5-body{
    background: url(../images/0052.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: unset;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
    padding-bottom: 120px;
}
#section5{
    height: unset;
}
#section5 .grid-sec4{
    grid-template-columns: repeat(4, 1fr);
}
#section5 .sec4-evdec{
    margin-bottom: 24px;
}
.grid-sec5{
    display: grid; gap: 0;
    justify-content: center;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr;
    margin-top: 48px;
}
.chek1{
    transition: transform 0.3s ease-out, width 0.3s ease-out;
}
.chek2{}
.chek1 img{
    height: 529px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-out, width 0.3s ease-out;
}
.chek2 img{
    height: 529px;
    width: 100%;
    object-fit: cover;
}
.box{
    transition: transform 0.3s ease-out;
}
/* Section 6
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-base6{
    background: url(../images/0099.jpg);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}
#section6{
    height: unset;
}
.grid-sec6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
}
.grid-section6 {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex-direction: row;
    justify-content: center;
}
.grid-section6 .item:hover{
    transform: unset;
    background-color: #ffffffd9;
}
.grid-section6 .item{
    width: 32%;
}
.grid-section6 .rowsubtit ,
.grid-section6 .rowsubdec {
    color: teal;
}
.grid-section6  .card-seprator{
    background-image: linear-gradient(90deg, transparent, rgb(0 128 128) 26%, #008080 50%, rgb(0 128 128) 73%, transparent);
    background: #008080;
}
.sec-title6{
    margin-top: 50px;
}
.mar-b-12{
    margin-bottom: 12px;
}
/* Section 7
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section7{
    background: url(../images/548548.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: 145px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;    
}
.section-base7{
    height: 145px;
}
/* Section 8
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section8-body{
    background: url(../images/0052.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: unset;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}
#section8{
    height: unset;
}
.faq{
    position: relative;
    background-color: #ffffffd9;
    box-shadow: 0 0 100px 4px #fffffff5;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
}
.flex-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.faq-icon{
    margin-left: 12px;
    border-radius: 50%;
    background-color: #ffffff75;
    color: teal;
    padding: 5px;
    flex: 0 0 auto;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid teal;
}
.faq-button{
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
    color: teal;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.flex-sub-faq{
    display: flex;
    align-items: center;
}
details{
    transition: 0.3s;
    border-bottom: 1px solid #00808033;
}
summary{
    padding: 2px;
    transition: 0.3s;
}
.no-b{
    border-bottom: unset;
}
.faq-title{
    font-weight: bold;
    color: teal;
}

.faq-text{
    max-width: 92%;
    text-align: justify;
    padding: 24px;
    padding-right: 65px;
    padding-top: 0;
}
details[open] .faq-text{
    display: block;
}
details[open] summary .faq-button {
    transform: rotate(-180deg);
}

/* Section 9
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-base15{
    background: url(../images/0052.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
    padding-bottom: 0;
}
#section15{
    height: unset;
}
.section-base9{
    background: url(../images/0099.jpg);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}
#section9{
    height: unset;
}
.grid-sec9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}
.ersal-a{
    width: 50%;
    margin: 0 auto;
    margin-top: 24px;
}
.btn-reasearch{
    border: 1px solid #ffffff;
    width: 24%;
    margin: 0 auto;
    margin-top: 48px;
    border-radius: 8px;
    padding: 8px;
    background: #0a0a0ab3;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 0 20px -3px #ffffff;
}
.btn-reasearch:hover{
    background: #0a0a0a73;
}
/* Teams
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid-section-team {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; */
    justify-content: center;
    background-color: #ffffffab;
    padding: 16px;
    box-shadow: 0 0 100px 4px #fffffff5;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: bold;
}
.grid-section-team .card-seprator{
    margin: 16px 0;
}
.grid-section-team .item:hover{
    transform:unset;
}
.grid-section-team .item {
    position: relative;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 0 0 30px 4px #fffffff5;
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: 0.5s;
    cursor: pointer;
}
.flex-team{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.team-ti {
    position: relative;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    font-size: 20px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 16px;
    margin-top: 16px;
}
.title-team{
    position: relative;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    font-size: 20px;
}
.dec-team{
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
    color: teal;
}
.province-team{}

/* Section 10
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#section10{
    height: auto;
}
.section10-top{
    background: url(../images/0057.png);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.icon-pitch{
    background: url(../images/111.png);
    height: 50px;
    width: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
    position: relative;
}
.icon-pitch::after{
    position: absolute;
    content: " ";
    height: 44px;
    width: 47px;
    border-radius: 48%;
    right: 40px;
    top: 3px;
    transition: 0.3s;
}
.icon-pitch:hover.icon-pitch::after{
    box-shadow: 0 0 19px 12px #ebe485e8;
    background: #ebe485cf;
    filter: blur(.6px);
}    
/* .icon-pitch:hover{
    background: url(../images/112.png);
    height: 105px;
    width: 120px;
    background-repeat: no-repeat;
    background-size: contain;
} */
/* Home Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Slider */

#section-slider img {
    height: 400px;
}

.overlay-slider {
    position: absolute;
    height: 100%;
    width: 100%;
    background: transparent;
    padding: 35px;
}

.seperator-slider {
    border: 2px solid #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slider-title {
    font-size: 100px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    max-width: 50%;
    text-shadow: 1px 2px 7px rgb(0 0 0 / 50%);
}

.slider-content h2 {
    font-size: 46px;
    color: #fff;
    text-align: center;
    text-shadow: 1px 2px 7px rgb(0 0 0 / 50%);
}

.heading {
    background: url(https://www.ahanchi.shop/wp-content/themes/ahanchi/assets/images/bg-home.jpg);
    background-repeat: no-repeat;
    text-align: center;
    background-size: 100%;
    position: relative;
    height: calc(100vh - 71px);
    background-position: top;
    min-height: 550px;
}

.heading-container {
    position: relative;
    top: 30%;
    text-align: center;
}

.section-product-select {
    z-index: 1;
    position: relative;
}

.product-tab-head li:first-child {
    right: -50px;
}

.product-tab-head li:nth-child(3),
.product-tab-head li:nth-child(4) {
    right: 90px;
}

.product-tab-head li:last-child {
    right: 75px;
}

.product-select-box {
    width: 1081px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -97px;
    border: solid 2px #8f919a;
    z-index: 1;
}


/* Menu */

.section-menu {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.section-menu>.container>.flex {
    flex-wrap: wrap;
}


/* Product Filter  */

.product-select-box {
    border: solid 1px #0000001f;
}

.product-tab-head {
    border-bottom: 1px solid #eee;
}

.product-tab-head ul {
    display: flex;
    justify-content: space-evenly;
}

.product-tab-head li {
    position: relative;
    background: #d9d9d9;
    text-align: center;
    font-size: 20px;
    padding: 0 20px;
    line-height: 2;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.5s;
}

.product-tab-head li:hover {
    background: #f1f1f1;
    border-bottom: 3px solid #555;
}

.product-tab-head li.active div {
    font-weight: bold;
}

.product-tab-head li.active {
    background: #fdb713;
    border-bottom: 3px solid orange;
}

.product-tab-content {
    position: relative;
}

.product-tab-head li img {
    width: 40px;
    height: 40px;
}

.load-active:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/loader.svg) #fffc;
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center;
    z-index: 2;
}


/* Product  */

.product-link {
    position: relative;
    color: #fff;
    background-color: #232323;
    background-position: center center;
    box-shadow: 0 2px 3px rgb(0 0 0 / 33%);
    border: 3px solid #3c3d3f;
    transition: box-shadow 0.2s ease-in-out;
}

.product-link:hover {
    color: #fff;
    background-color: #232323;
    box-shadow: 0 1px 18px #232323;
}

.product-text {
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* section-faq */

.section-faq {
    padding-bottom: 60px;
}

/* details {
    box-sizing: border-box;
    transition: all 0.5s;
    line-height: 2.25;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom-width: 0px;
    overflow: hidden;
}

details[open] {
    padding-bottom: 16px;
}

details[open] summary .icon-arrow {
    transform: rotate(-180deg);
}

details:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

details:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 1px solid #e0e0e0;
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 16px;
    transition: margin 0.3s ease-out;
    cursor: pointer;
} */

.title-faq {
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    color: #4b5259;
}

summary::-webkit-details-marker {
    display: none;
}

.content-faq {
    padding: 16px 64px;
    padding-bottom: 0;
    color: #6c7680;
}

.icon-faq {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-ask {
    margin-left: 12px;
    transition: 0.5s;
}

.icon-arrow {
    border-radius: 50%;
    color: #6c7680;
    background-color: #fff;
}

details[open] summary .icon-arrow,
summary:hover .icon-arrow {
    background-color: #f2f9ff;
    color: #0077db;
}

details[open] summary .stroke-svg,
summary:hover .stroke-svg {
    stroke: #17a2b8;
}

details[open] summary .path-fill1,
summary:hover .path-fill1 {
    fill: #e8f9fc;
}

details[open] summary .path-fill2,
summary:hover .path-fill2 {
    fill: #17a2b8;
}

.titlefaq {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 19px;
    line-height: 37px;
    color: #2b2f33;
}


/* section-services */

.body-services {
    align-items: center;
    height: 225px;
    overflow: hidden;
    width: 100%
}

.box-services-item-r {
    background: #fff;
    z-index: 9;
    padding-right: 16px;
}

.box-services-item-c {
    z-index: 9;
}

.box-services-item-l {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    background: linear-gradient(89deg, #d8d8d8, white);
    transform: translate(14px, 0);
}

.box-services-item-l img {
    width: 50%;
    filter: drop-shadow(0 0 3px #0000004d);
}

.box-services-item-l-title {
    font-size: 25px;
    width: fit-content;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 20px;
    border-bottom: 2px solid #fed67a;
}

.box-services-item-l-subtitle {
    line-height: 1;
    padding-top: 16px;
}

.box-services-item-l-more {
    display: block;
    margin-top: 32px;
    line-height: 1;
    padding: 12px 24px;
    background: #000;
    width: fit-content;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.box-services-item-l-more:hover {
    color: #fff;
}

.section-services {
    padding-bottom: 60px;
    position: relative;
    /* z-index: -1; */
}

.p-box {
    position: relative;
    z-index: 9;
}

.services-title {
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    padding: 20px 0;
}

.row-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    margin-bottom: 24px;
}

.box-services {
    border-radius: 8px;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
    border: solid 1px #0000001f;
    background-color: #fff;
    padding: 15px;
    padding-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-services-title {
    font-size: 14px;
    color: #4b5259;
    line-height: 1;
    letter-spacing: 1px;
}

.icon-services {
    padding-left: 15px;
}

.slider-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
}


/* Product offer */

.section-offer {
    background-color: #ffcd11;
    padding: 80px 20px;
}

.offer-headline {
    padding-bottom: 40px;
    text-align: center;
}

.offer-headline a {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.products-offer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.product-offer {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0px #0000003b;
}

.product-offer-image img {
    width: 240px;
    border-radius: 5px;
}

.product-offer-title {
    padding: 5px;
}

.product-offer-title a {
    font-size: 18px;
    color: #424750;
    font-weight: 700;
}

.product-offer-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.product-offer-price del {
    display: block;
    font-size: 12px;
    color: #c0c2c5;
    text-align: left;
    padding-left: 25px;
}

.offer-price {
    color: #424750;
    font-weight: 600;
}

[class^="toman"] {
    font-size: 9px;
    font-weight: bold;
    color: #424750;
}

.toman-normal {
    font-size: 16px;
}

.toman-big {
    font-size: 24px;
}

.off-percentage {
    height: 20px;
    width: 34px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-radius: 24px;
    background-color: #ef394e;
    text-align: center;
}


/* Section about */

.section-about {
    padding: 0 90px 90px;
}

.section-about .container {
    background-color: #fdb713;
    padding: 30px;
    border-bottom: 0;
    border-radius: 8px;
}

.section-about h2 {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 30px;
}

.section-about p {
    font-size: 26px;
    font-weight: 300;
    text-align: justify;
    padding: 0 40px;
}

.section-price-quick {
    height: 400px;
}

.section-contact {
    height: 400px;
    background: linear-gradient(90deg, #f5f5f5 58%, #ffcd11 60%);
}

.contact-right iframe {
    width: 100%;
    height: 400px;
    opacity: 0.7;
}

.contact-left {
    padding: 40px;
}

.page-profile {
    padding-top: 65px;
}


/* Cart
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.cart-frame {
    background-color: #fff;
    border: 1px solid #e0e0e2;
    border-radius: 8px;
    padding: 24px;
}

.cart-frame:nth-child(2) {
    margin: 20px 0;
}

.cart-frame-title {
    font-size: 14px;
    color: #767790;
}

.cart-frame-container {
    margin-top: 20px;
}

.cart-frame-header {
    display: flex;
    justify-content: space-between;
}

.cart-frame-address {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 76%;
}

.cart-frame-address textarea {
    width: 100%;
}

.cart-frame-receiver span {
    font-size: 14px;
    font-weight: 300;
    color: #727272;
    margin-left: 10px;
}

.cart-frame-calculate {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #1a1c23;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e0e0e2;
}

.cart-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.btn-payment {
    display: block;
    background: #fdb713;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #000;
    height: auto;
    line-height: initial;
    color: #000;
    width: 100%;
    margin: 5px;
    cursor: pointer;
}

.btn-payment:disabled {
    cursor: no-drop;
    background: #fae280;
    border: 2px solid #adadad;
    color: #fff;
}

.cart-item-product-title {
    font-size: 14px;
    font-weight: bold;
}

.cart-item-details-dimension {
    color: #5a5c7a;
    font-size: 13px;
    line-height: 2.17;
}

.cart-item-details-amount {
    font-size: 12px;
    font-weight: 400;
    color: #2e7b32;
    line-height: 2.17;
}

.cart-item-details-amount>div {
    position: relative;
}

.cart-item-details-amount>div:last-child,
.cart-item-details-amount>div:last-child span {
    font-size: 15px;
    color: #000;
    font-weight: bold;
}

.cart-item-details-amount>div:after {
    content: "+";
    position: absolute;
    color: #666;
    right: -10px;
    border: 1px solid #fff;
    border-radius: 24px;
    height: 11px;
    display: block;
    background: #fff;
    top: 7px;
    line-height: 1;
}

.cart-item-details-amount>div:before {
    content: "";
    width: 1px;
    height: 30px;
    position: absolute;
    top: 10px;
    background: #aaa;
    right: -6px;
}

.cart-item-details-amount>div:last-child::before {
    all: unset;
}

.cart-item-details-amount>div:last-child::after {
    content: "=";
    font-size: 12px;
    color: #000;
    top: 10px;
}

.item-delete {
    background: #c60202;
    padding: 0 5px;
    position: relative;
    right: -2px;
    cursor: pointer;
}

.cart-item-details img {
    width: 18px;
    filter: invert(1);
}

.cart-page {
    padding-top: 65px;
}

.cart-payment-fix {
    padding: 20px;
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.cart-address-change {
    display: flex;
    flex-direction: column;
}

.address-edit {
    font-size: 14px;
    font-weight: bold;
    color: #19bfd3;
}

.cart-address-header {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    z-index: 1;
}

.cart-add-address {
    border-bottom: 1px solid #eee;
}

.cart-address-details {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-address-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 24px;
    margin-left: 20px;
}

.cart-address-details.active .cart-address-radio {
    background: #f6d000;
}

.cart-address-detail {
    font-size: 14px;
    font-weight: 400;
    color: #424750;
}

.cart-address-receiver {
    color: #5a5c7a;
    font-size: 12px;
}

.form-add-address {
    background-color: #ffcc0012;
}

.form-add-address .alignleft {
    padding: 0 20px 20px;
}

.add-address {
    padding: 20px;
}

.add-address img {
    transition: all 0.2s;
}

.add-address.open img {
    transform: rotate(180deg);
}


/* Profile
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.profile-user-nickname {
    font-weight: bold;
}

.profile-user-mobile {
    font-size: 14px;
    color: #9e9fb1;
}

.profile-sidebar,
.profile-content {
    padding: unset;
}

.user-information,
.profile-tab-title,
.profile-tab-content,
.profile-account-content {
    padding: 24px;
}

.profile-tab-title strong:after {
    content: "";
    width: 80px;
    height: 2px;
    background: #fdb713;
    display: block;
    margin-top: 10px;
}

.profile-user-nav li img {
    opacity: 1;
}

.profile-user-nav li a {
    display: block;
    padding: 15px 24px;
    color: #3f4064;
    border-top: 1px solid #eee;
    border-right: 4px solid transparent;
}

.profile-user-nav li a.active {
    border-right: 4px solid #fdb713;
    font-weight: bold;
}

.tab-content {
    display: none;
}

.profile-address-content {
    border-bottom: 1px solid #eee;
    padding: 24px;
    font-size: 14px;
    line-height: 2;
}

.profile-account-content label {
    display: block;
}

.profile-account-content .form-row {
    margin-bottom: 10px;
}

.table-orders tbody tr:nth-child(even) {
    display: none;
}

.expand-arrow img {
    transition: all 0.4s ease;
}

.expand-arrow.active img {
    transform: rotate(180deg);
}

.profile-list-item {
    display: list-item;
    margin-right: 30px;
}


/* Order Success
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.order-submit-success,
.order-submit-unsuccess {
    color: green;
    font-size: 20px;
    padding: 10px 0;
    font-weight: 500;
}

.order-submit-unsuccess {
    color: #b2001a;
}

.order-tracking-label {
    color: #666;
    line-height: 2;
}

.order-home-back a {
    color: #000;
    margin-right: 20px;
}

.order-footer {
    margin-top: 20px;
}


/* 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.seperator-auth {
    width: 1px;
    height: 25px;
    margin: 0 15px;
    background-color: #e0e0e2;
}

.btn-auth {
    border: 1px solid #e0e0e2;
    color: #0c0c0c;
    font-weight: 700;
    width: 142px;
    justify-content: right;
    position: relative;
}

.btn-auth span {
    font-size: 12px;
    font-weight: bold;
    padding: 0 10px;
    white-space: nowrap;
}

.btn-auth img {
    position: absolute;
    left: 7px;
}

.invoice-price {
    background: #fff;
    border: 1px solid #d0d0d0;
    box-shadow: 0 0 30px rgb(56 71 109 / 9%);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
    padding: 10px;
}


/* breadcrumbs
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.tsh_breadcrumbs {
    display: flex;
    padding: 10px 10px 0;
    letter-spacing: 1px;
}

.tsh_breadcrumbs li {
    padding: 0 5px;
}

.tsh_breadcrumbs .separator {
    font-family: cursive;
}

.tsh_breadcrumbs * {
    font-size: 13px;
    font-weight: 200;
}

.tsh_breadcrumbs a {
    color: gray;
}

.alloy-input input[type="radio"] {
    opacity: 0;
    position: relative;
    right: 40px;
}

.blank-label {
    display: none;
}

.alloy-input input[type="radio"]:checked+label {
    background: #bdbdbd;
    color: #fff;
}


/* Login Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-container {
    background-color: #fff;
    border-radius: 10px;
    margin: 80px auto;
    padding: 20px;
    box-shadow: 0 0 4px 1px #eee;
}

.change-login {
    font-size: 13px;
    cursor: pointer;
    color: #26c3d6;
}

.fieldset {
    padding: 10px;
    font-size: 15px;
}

.fieldset input {
    width: 100%;
    font-weight: 500;
    padding: 5px 10px;
}

.section-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-title {
    font-size: 23px;
    font-weight: 600;
}

.form-login-err {
    border-radius: 4px;
    text-align: center;
    color: red;
    font-weight: 600;
    padding: 10px 0 5px;
    background: #f9f9f9;
    font-size: 15px;
}

#verify-mobile {
    text-align: center;
    letter-spacing: 1rem;
}

.btn-load {
    position: relative;
}

.btn-load.load-active:before {
    right: 0;
    background-size: 46px;
}



/* تنظیمات خاص iOS */
/* تنظیمات خاص iOS */
.ios .section-base9,
.ios .section-base15,
.ios .section8-body,
.ios .section-base6,
.ios .section5-body,
.ios .section-base4,
.ios .section3-body,
.ios .bg-home {
    background-attachment: scroll !important; /* حذف fixed برای iOS */
    background-size: cover !important;
}

/* Single Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.single-product-result {
    position: relative;
    padding-bottom: 200px;
}

.single .product-filter,
.page .product-filter {
    background-color: unset;
}

.single .input-filter label:first-child,
.page .input-filter label:first-child {
    background-color: #fff;
}

.single-product-details {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.single-product-details img {
    border-radius: 5px;
    margin-bottom: 10px;
}

.single-product-details select {
    width: 230px;
}

.product-vendors {
    padding: 12px 0;
}

.product-vendors table {
    width: 100%;
    border: 1px solid #e1e1e1;
}

.product-vendors table thead tr {
    background: #fff;
}

.product-vendors table tr {
    background: #f9f9f9;
}

.product-vendors table th,
.product-vendors table td {
    display: table-cell;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
}

.item-quantity {
    display: flex;
    width: 72px;
    height: 24px;
    background-color: #000;
    color: #fff;
    justify-content: space-between;
    padding: 2px 5px;
    border-radius: 3px;
}

.qty-count input {
    all: unset;
    width: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    outline: none;
}

.qty-count input:focus {
    outline: none;
    border: 0;
}

.add-to-cart {
    background-color: #eee;
    width: 72px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
}

.single-image {
    position: relative;
}

.single-image img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.single-body {
    background-color: #eef2f5;
    padding: 10px;
    padding-bottom: 20px;
    min-height: 400px;
}

.single-products-title {
    font-weight: 300;
    font-size: 35px;
    padding-bottom: 24px;
    padding-top: 12px;
}

.entry-content {
    font-size: 17px;
    line-height: 1.4211;
    font-weight: 400;
    letter-spacing: 0.012em;
    margin-top: 44px;
    margin-bottom: 44px;
}

.entry-content p {
    margin-bottom: 1.4211em;
}

.entry-content h2,
.entry-content h3 {
    margin-bottom: 16px;
    margin-top: 52px;
}

.entry-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 52px;
}

.entry-content h2:first-child {
    margin-top: 0;
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.entry-content .wp-block-image img {
    height: auto;
}

.entry-content ul {
    list-style: inherit;
    margin-left: 1.17647em;
}

.page-title {
    font-weight: bold;
    font-size: 32px;
    padding: 20px;
}

.single-content,
.related-post-content {
    text-align: justify;
    padding-bottom: 10px;
}

.seperator-single {
    border-bottom: 2px solid #bcbcbc;
}

.related-body:nth-child(1) {
    padding-left: 15px;
}

.related-body:nth-child(2) {
    padding-right: 15px;
}

.related-post {
    background-color: #fff;
    display: block;
    color: #000;
    transition: 0.3s;
}

.related-post:hover {
    box-shadow: 0 1px 8px #232323;
    color: #000;
}

.related-post-image img {
    height: 195px;
    object-fit: cover;
}

.related-post-title {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
}

.related-post-info {
    padding: 15px;
}

.product-information {
    padding: 0 35px 60px;
}

.product-info-title {
    line-height: 1.1;
    font-size: 40px;
    padding-bottom: 12px;
    font-weight: 700;
}

.product-seperator {
    border-bottom: 2px solid #bcbcbc;
}

.product-info-step {
    font-size: 18px;
    font-weight: 600;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #121212;
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    font-weight: 900;
}

.product-dimensions {
    padding-bottom: 10px;
}

.product-quantity {
    padding: 10px;
    background-color: #eef2f5;
    border-radius: 8px;
}

.quantity-title {
    font-weight: 600;
    font-size: 14px;
}

.product-quantity-details {
    display: flex;
}

.product-quantity-details input[type="number"] {
    height: 30px;
}

.single-product-info span {
    font-size: 15px;
    color: #4b5259;
    padding: 20px;
    font-weight: bold;
}

.product-vendors table tr.item-exist {
    background-color: #ffcc0047;
}

.add-to-cart-remove {
    font-weight: bold;
    font-size: 12px;
}

.product-filter {
    background-color: #fff;
    padding: 20px;
}

body .select-alloy,
body .select-cutting,
body .select-material {
    /* min-width: 120px; */
}

.input-filter {
    position: relative;
    margin-left: 20px;
}

.input-filter.spiner::after {
    content: "";
    position: absolute;
    background-image: url(../images/ajax-loader.gif);
    background-color: #fff;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 20px;
    left: 10px;
    background-size: 20px;
}

.single .input-filter.spiner::after {
    background-color: #f3f3f3;
}

.input-filter input:disabled,
.input-filter select:disabled {
    color: #999;
}

.input-filter label:first-child {
    color: #6c7680;
    position: absolute;
    top: -6px;
    right: 13px;
    background: #fff;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    z-index: 1;
    font-weight: 300;
}


/* .label-filter {
    color: #6c7680;
    position: absolute;
    top: 19px;
    right: 13px;
    background: #fff;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    z-index: 1;
    font-weight: 300;
    transition: 0.3s;
} */


/* new  single  */

.pad-16 {
    padding: 16px;
}

.sticky-sidebar-r {
    margin-left: 16px;
}

.sticky-sidebar-r-body {}

.sticky-sidebar {}

.sidebar-result {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: solid 1px #0000001f;
    background-color: #fff;
    padding: 16px 20px;
    line-height: 1.8;
    color: #2b2f33;
    font-weight: 500;
    font-size: 14px;
}

.sidebar-result span {
    color: #6c7680;
}

.sidebar-result-second {
    border: solid 1px #0000001f;
    border-top: none;
    background-color: #fff;
    border-radius: unset !important;
}

.sidebar-result-second.last-child {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.sidebar-result-second summary {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #0a0b0c;
}

.sidebar-result-second[open] .arrow-sum {
    transform: rotate(180deg);
}

.arrow-sum {
    background-color: #f8fafb;
    color: #6c7680;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    transition: all ease .2s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-result-second summary:hover .arrow-sum {
    background-color: #f2f9ff;
    color: #0077db;
}

.period-body {
    border-radius: 5px;
    border: 1px solid #d8d8d8;
    background: #fff;
}

.period-row {
    position: relative;
    padding: 9px 15px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
}

.period-row-true.active {
    box-shadow: 0 0 0 2px inset #0077db;
}

.period-row-false {
    cursor: no-drop;
}

.period-row::after {
    content: '';
    position: absolute;
    background: #0000001f;
    height: 32px;
    width: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.period-row:last-child::after {
    display: none;
}

.period-row:hover {
    background-color: #f2f9ff;
}

.period-date {
    font-size: 12px;
    line-height: 1.75;
    color: #6c7680;
}

.period-type {
    color: #28a745;
    font-size: 18px;
    line-height: 1.28;
}

.period-type.closed {
    margin-top: 3px;
    line-height: 1.75;
    color: #6c7680;
    font-size: 10px;
}

.ordering {
    margin: 16px 0;
}

.ordering span {
    color: #4b5259;
    margin-left: 16px;
    line-height: 1.55;
}

.ordering ul {
    border-radius: 100px;
    font-size: 14px;
    color: #4b5259;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.ordering ul li {
    position: relative;
    display: inline-block;
    padding: 8px 22px;
    line-height: 1.55;
    cursor: pointer;
}

.ordering ul li:last-child:after {
    display: none;
}

.ordering ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: #0000001f;
    width: 1px;
    height: 17.7px;
}

.ordering ul li.active a {
    color: #0077DB;
}

.ordering ul li.active a::after {
    content: '';
    position: absolute;
    bottom: -7.5px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #0077db;
}

.ordering ul li a {
    color: #4b5259;
    position: relative;
    display: block;
    padding: 0 10px;
    transition: all ease .2s;
}

.info-pr-row {
    font-size: 14px;
    color: #4b5259;
    line-height: 1.55;
    margin-bottom: 16px;
}

.info-pr-row div {
    margin-left: 32px;
}

.info-pr-row svg {
    margin-left: 6px;
}

.info-pr-row span {
    padding: 0 4px;
    color: #0077DB;
    text-decoration: underline;
    text-decoration-color: #4b5259;
}

.search-pr {
    position: relative;
    background: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 2px 5px -1px rgba(0, 0, 0, .08);
    border-bottom: solid 1px #0000001f;
    transition: 0.5s;
}

.search-pr-form.active,
.search-pr.active {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.search-pr-row {
    color: #2b2f33;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
}

.search-pr-row svg {
    color: #4b5259;
}

.rotate90 {
    transform: rotate(-90deg);
}

.pr-name {
    color: #2b2f33;
    line-height: 1.55;
    margin: 0 24px;
    margin-right: 8px;
}

.pr-date {
    color: #2b2f33;
    line-height: 1.55;
    margin-right: 8px;
}

.pr-qty {
    color: #959ea6;
    font-size: 14px;
    margin: 0 32px;
}

.search-pr-icon {
    background-color: #fdb713;
    color: #000;
    width: 40px;
    height: 40px;
    font-size: 14px;
    border-radius: 1000px;
    padding: 8px;
    border: solid 1px #0000001f;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: .2s;
    transition-timing-function: ease;
    transition-property: background-color, border-color, opacity;
}

.search-pr-icon svg {
    color: #000;
    transform: unset;
}

.search-pr-icon:hover {
    background-color: #e3a107;
}

@keyframes expand {
    0% {
        transform: scale(.8);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.search-pr-form {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 2px 5px -1px rgba(0, 0, 0, .08);
    border-bottom: solid 1px #0000001f;
}

.close-search {
    position: absolute;
    left: 16px;
    cursor: pointer;
    color: #0072DB;
    font-size: 12px;
    border-color: transparent;
    padding: 0 5px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition-duration: .2s;
    transition-timing-function: ease;
    transition-property: background-color, border-color, opacity;
}

.close-search:hover {
    border-color: #c9e3f8;
    background-color: #f2f9ff;
}

.close-search svg {
    vertical-align: middle;
    margin-right: 2px;
}

.svg-shape {
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-shape-row {
    position: relative;
    width: 230px;
    height: 230px;
}

.numsv1 {
    position: absolute;
    bottom: 4px;
    left: 30px;
    text-align: center;
    width: 39px;
    font-size: 13px;
    transform: rotate(15deg);
}

.numsv1.shape1 {
    bottom: -2px;
    left: 29px;
}

.numsv1.shape2 {
    bottom: 105px;
    left: -30px;
    text-align: center;
    width: 29px;
    font-size: 13px;
    transform: rotate(0);
}

.numsv1.shape3 {
    bottom: 6px;
    left: 38px;
}

.numsv1.shape4 {
    bottom: 90px;
    left: -30px;
}

.numsv1.shape5 {
    left: 32px;
}

.numsv2 {
    width: 42px;
    position: absolute;
    bottom: 50px;
    right: 51px;
    font-size: 13px;
    transform: skew(7deg, -35deg);
    text-align: center;
}

.numsv2.shape1 {
    bottom: 47px;
    right: 50px;
}

.numsv2.shape2 {
    width: 28px;
    bottom: 76px;
    right: 31px;
}

.numsv2.shape3 {
    bottom: 50px;
    right: 44px;
}

.numsv2.shape4 {
    width: 38px;
    bottom: 57px;
    right: 40px;
}

.numsv2.shape5 {}

.numsv3 {
    position: absolute;
    bottom: 105px;
    left: -30px;
    text-align: center;
    width: 29px;
    font-size: 13px;
    transform: rotate(0);
}

.numsv3.shape2 {
    position: absolute;
    bottom: 53px;
    left: 63px;
    text-align: center;
    width: 39px;
    font-size: 13px;
    transform: rotate(15deg);
}

.numsv3.shape3 {
    bottom: 81px;
    left: -30px;
}

.numsv3.shape4 {
    bottom: 20px;
    left: 54px;
    width: 37px;
}

.numsv3.shape5 {}

.cat-body,
.brand-body {
    padding: 24px;
}

.cat-body small,
.brand-body small {
    font-size: 12px;
    color: #959ea6;
    margin-right: auto;
}

.cat-body label,
.brand-body label {
    font-weight: 400;
    font-size: 13px;
    line-height: 2.25;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.brand-body svg {
    margin-left: 8px;
}

.cat-body input[type="checkbox"],
.brand-body input[type="checkbox"] {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin: 2px 0;
    margin-left: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #f8fafb;
    border: 2px solid #bec6cc;
    transition: all ease .2s;
}

.cat-body input[type="checkbox"]:checked,
.brand-body input[type="checkbox"]:checked {
    background-color: #0077db;
    border-color: #0077db;
}


/* end new single  */

.input-filter input,
.input-filter select {
    display: block;
    height: 48px;
    font-size: 15px;
    font-weight: 500;
    color: #2b2f33;
    padding: 6px 8px;
    border: 1px solid #bec6cc;
    border-radius: 8px;
    outline-color: #944b97;
    outline: 0;
    transition: 0.5s;
}

.qty,
.length {
    width: 80px;
    text-align: center;
}

.item-product {
    border: solid 1px #0000001f;
    box-shadow: 0 2px 5px -1px rgba(0, 0, 0, .08);
    transition: all ease .7s, box-shadow ease .2s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #fff;
}

.item-product:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px 0 rgba(0, 0, 0, .08);
}

.item-pr-r {
    padding: 16px;
    padding-bottom: 0;
    border-left: 1px solid #e0e0e0;
}

.item-pr-l {
    padding: 16px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-pr-r-body {
    width: 87%;
}

.item-brand {
    padding-left: 24px;
    width: fit-content;
    text-align: center
}

.item-brand strong {
    font-size: 12px;
    font-weight: 500;
    color: #4b5259;
    line-height: 1;
}

.item-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    margin-bottom: 8px;
    border: 1px solid #0000001f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-pr-r-head {
    margin-bottom: 8px;
}

.item-pr-r-head-tag span {
    font-size: 12px;
    padding: 0 10px;
    line-height: 1.67;
    border-radius: 10px;
    margin-left: 4px;
}

.item-pr-r-head-fi {
    padding: 16px 10px;
    padding-left: 0;
}

.item-pr-r-head-fi span {
    margin-left: 8px;
    line-height: 1.55;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.item-pr-r-head-fi strong {
    font-size: 16px;
    font-weight: bolder;
    margin-left: 8px;
    line-height: 1.55;
}

.tot-pri {
    margin-top: 8px;
}

.tot-pri strong {
    color: #0077DB;
    font-size: 18px;
    line-height: 1.55;
    font-weight: bolder;
}

.tot-pri small {
    color: #959ea6;
    font-size: 12px;
    line-height: 1;
}

.nerkh {
    font-size: 14px;
    font-weight: 700;
    color: #4b5259;
    margin: 4px 0;
    line-height: 1.55;
}

.add-pro {
    margin: 4px 0;
    margin-top: 6px;
}

.add-pro button {
    background: #0077db;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: unset;
    width: 100%;
    height: 40px;
    border: solid 1px #0000001f;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
    transition-duration: .2s;
    transition-timing-function: ease;
    transition-property: background-color, border-color, opacity;
}

.add-pro button:disabled {
    opacity: .525;
}

.add-pro button:hover {
    background: #00569e;
}

.items-link {
    padding-bottom: 8px;
}

.items-link a {
    color: #0077DB;
    font-size: 12px;
    margin-left: 32px;
}

.item-p-title {
    color: #2b2f33;
}

.item-p-value {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 54px;
    font-weight: 700;
    font-size: 20px;
}

.item-amount {
    font-size: 32px;
    color: #9b4343;
    font-weight: bold;
    line-height: 1.2;
}

.btn-computing {
    color: #000;
    background-color: #ffcc00;
    border-color: #a78500;
    height: 48px;
    font-size: 16px;
}

.btn-computing:hover {
    background-color: #e7b903;
}

.btn-add-cart {
    color: #000;
    background-color: #ffcc00;
    border-color: #a78500;
    font-size: 14px;
    height: 68px;
    width: fit-content;
    padding: 5px;
}

.btn-add-cart:disabled {
    opacity: .525;
    cursor: no-drop;
}

.cart-count {
    font-size: 11px;
    position: absolute;
    top: 8px;
    right: 5px;
    line-height: 1;
    color: #828282;
    font-weight: 600;
}

.popup-message {
    display: none;
    width: 300px;
    position: fixed;
    left: 50px;
    bottom: 50px;
    text-align: center;
    z-index: 1000;
}

.popup-message h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}


/* Blog
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.blog-date {
    color: #6e6e73;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 20px;
}

.blog-title h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 700;
    letter-spacing: -0.003em;
}

.blog-excerpt {
    font-size: 20px;
    line-height: 1.16667;
    font-weight: 500;
    letter-spacing: 0.009em;
    padding-top: 0;
}

.blog-image img {
    border-radius: 10px 10px 0 0;
}

.blog-content {
    background: #fff;
    font-size: 17px;
    line-height: 1.4211;
    font-weight: 400;
    letter-spacing: 0.012em;
    padding-top: 44px;
    margin-bottom: 44px;
    border: solid 1px #0000001f;
    border-radius: 0 0 8px 8px;
}

.blog-content p {
    margin-bottom: 1.4211em;
}

.blog-content h2,
.blog-content h3 {
    margin-bottom: 16px;
    margin-top: 52px;
}

.blog-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 52px;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.blog-content .wp-block-image img {
    height: auto;
}

.blog-content ul {
    list-style: inherit;
    margin-right: 1.17647em;
}

.blog-related h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16667;
    letter-spacing: 0.009em;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 4px solid #ffcd11;
}

.blog-related-post img {
    border-radius: 10px;
}

.blog-related-title a {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    padding: 10px 0;
    display: block;
}


/* products
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.product-inner {
    box-shadow: 0px 0px 6px -1px rgb(0 0 0 / 11%);
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.product-excerpt {
    font-size: 14px;
    color: #929292;
}

.vendor {
    background: #eee;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.item-quantity {
    position: relative;
    display: flex;
    width: 100px;
    height: 30px;
    background-color: #000;
    color: #fff;
    justify-content: space-between;
    padding: 2px 10px;
    border-radius: 3px;
    z-index: 2;
}

.qty-count input {
    all: unset;
    width: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.qty-increase,
.qty-decrease,
.qty-delete {
    cursor: pointer;
}

.qty-count input::-webkit-outer-spin-button,
.qty-count input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-count input[type="number"] {
    -moz-appearance: textfield;
}


/* Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Archive
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.archive-post {
    background-color: #fff;
    border: solid 1px #0000001f;
    border-radius: 8px;
    overflow: hidden;
}

.archive-post-title a {
    display: block;
    font-weight: 500;
    padding: 20px;
    color: #000;
}

.category-product-post {
    background: #ffcd11;
    padding: 10px;
    width: 150px;
    height: 150px;
    font-weight: bold;
    font-size: 20px;
    color: #000;
    border: 4px solid transparent;
    border-radius: 100%;
    transition: all 0.4s;
}

a.category-product-post:hover {
    color: #000;
    background-color: #ffc900;
    border: 4px solid #000;
}

.archive-products:has(>.category-product-post) {
    justify-content: space-around;
    padding: 80px 0;
}


/* Profile Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.user-info,
.user-info-details {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    margin: 15px;
    border: 1px solid #ccc;
}

.user-info-details {
    flex-direction: column;
    border-radius: 0.5rem;
}

.user-info ul {
    display: block;
    width: 100%;
}

.user-info ul a {
    font-size: 14px;
    display: block;
    color: #757575;
    padding: 10px;
    margin-top: 5px;
    border-radius: 0.5rem;
}

.user-info ul a.tab-menu-active {
    color: rgb(36, 70, 245);
    background-color: rgb(231, 235, 254);
}

.user-info-tab ul li {
    padding: 5px;
}

.user-info-tab table {
    width: 100%;
}

.user-info-tab table tr[class^="invoice-details-"] td {
    padding-top: 0;
}

.user-info-tab table td,
.user-info-tab table th {
    text-align: center;
}

.invoice-product-details {
    display: flex;
    border: 1px solid rgba(34, 36, 38, 0.1);
    border-top: none;
}

.invoice-product-details:last-child {
    border-bottom: 1px solid rgba(34, 36, 38, 0.1);
}

.invoice-product-details div.colm8 {
    border-left: 1px solid rgba(34, 36, 38, 0.1);
}

.invoice-product-details>div {
    color: #757575;
    font-size: 14px;
    padding: 5px 15px;
}

.invoice-details {
    cursor: pointer;
}


/* Invoice
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
    --circle-size: clamp(1.5rem, 5vw, 3rem);
    --spacing: clamp(0.25rem, 2vw, 0.5rem);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    display: flex;
}

.timeline-status {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.timeline-status::before {
    content: "";
    display: block;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: lightgrey;
    opacity: 0.5;
    margin: 0 auto 1rem;
}

.timeline-status::after {
    content: "";
    position: relative;
    top: calc(var(--circle-size) / 2);
    width: calc(100% - var(--circle-size) - calc(var(--spacing) * 2));
    right: calc(50% + calc(var(--circle-size) / 2 + var(--spacing)));
    height: 2px;
    background-color: #e0e0e0;
    order: -1;
}

.timeline-status:last-child:after {
    all: unset;
}

.timeline-status.older-status::before,
.timeline-status.older-status::after {
    background-color: #ffcc00;
}

.timeline-status.active::before,
.timeline-status.active::after {
    background-color: #ffcc00;
    opacity: 1;
}

.timeline-line~.timeline-status.active::before,
.timeline-line~.timeline-status.active::after {
    background-color: #000;
}

.invoice-social-share ul li {
    padding: 10px;
}

.invoice-social-share img {
    width: 24px;
}

.item-receive.active {
    background-color: #2adba3;
    color: #fff;
}

.item-receive.disabled {
    background: #fafafa;
    color: #2adba3;
}


/* inquiry Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.form-custom-item {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    border: solid 1px #0000001f;
    box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.08);
}

.form-custom-item>div {
    padding: 10px;
}

.form-custom-item select,
.form-custom-item input {
    width: 100%;
}

.msg-ok {
    padding: 15px;
    font-weight: bold;
    background: #ffcd11;
    border-radius: 8px;
    margin-bottom: 10px;
}

.shop-list-alert {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 0px 7px -4px #000;
    border-radius: 8px;
    background: #f3f3f3;
    width: 50%;
    margin: 50px auto;
    line-height: 1;
    padding: 10px 0;
    color: #4b5259;
    font-weight: 500;
}


/* Add Product Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.product-fields {
    margin-top: 1rem;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 25px;
}

.product-select-store {
    font-size: 20px;
    line-height: 25px;
    color: #292929;
    margin-bottom: 1rem;
}

.product-select-material {
    display: flex;
}

.product-select-material>div {
    padding: 10px;
}

.product-select-material label {
    font-size: 14px;
}


/* Page Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-navigation {
    padding: 20px;
}

ul.pagination {
    display: flex;
}

ul.pagination li a,
ul.pagination li span {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    background-color: #ececec;
    padding: 3px 10px;
    margin: 0 8px 0px 0;
    border-radius: 2px;
}

ul.pagination li a.current,
ul.pagination li span.current {
    color: #fff;
    background-color: #fdb713;
}


/* 404
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.error404 .single-title {
    font-size: 42px;
    font-weight: bold;
    padding: 10% 0 0;
}


/* animation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@keyframes addCart {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 50%;
    }
    10% {
        transform: rotate(8deg);
    }
    20%,
    40%,
    60% {
        transform: rotate(-10deg);
    }
    30%,
    50%,
    70% {
        transform: rotate(10deg);
    }
    80% {
        transform: rotate(-8deg);
    }
    90% {
        transform: rotate(8deg);
    }
}


/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid-logo{
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.logo100{
    background: url(../images/125.png);
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 70px;
    width: 105px;
    background-size: contain;
    margin-left: 24px;
}
.i-ap{
    margin-right: 4px;
}
.logomo{
    background: url(../images/br.png);
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 55px;
    width: 95px;
    background-size: contain;
}
.flex-footer{
    display: flex;
    align-items: center;
}
.text-logo{
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    text-shadow: 1px 3px 2px #000000;
}
.logo-footer{
    background: url(../images/09.png);
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 95px;
    width: 95px;
    background-size: contain;
    filter: drop-shadow(2px 3px 3px black);
}
.dec-rana{
    padding-top: 16px;
    padding-right: 16px;
    line-height: 1.7;
    text-align: justify;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.4px;
    max-width: 100%;
}
.grid-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 0px;
    padding: 30px;
}
.cont-text{
    color: #fff;
    font-weight: 600;
    padding-bottom: 8px;
    line-height: 1;
    letter-spacing: 1px;
    font-size:16px;
}
.contactus{
    position:relative;
    display: flex;
    align-items: center;
    height: 95px; 
    margin-bottom: 16px;
}
.fff{
    color: #fff;
    color: #fff;
    margin-right: 60px;
    text-align: justify;
    font-size: 14px;
    letter-spacing: 0.4px;
}
.contactus::after{

}
.contactus::before{}
.leaflet-popup-content{
    text-align: right; 
}
#map {
    height: 400px;
    position: relative;
    filter: blur(5px);
}
#map::before {
    content: '';
    width: 8%;
    height: 100%;
    z-index: 999;
    position: absolute;
    top: 0;
    background: linear-gradient(-90deg, rgb(74 74 74) 50%, rgb(74 74 74 / 0%) 100%);
}
.footer {
    background-color: #4a4a4a;
}
.pad-footer{
    padding: 30px;
}
.nav-footer ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    row-gap: 12px;
    column-gap: 0;
    width: 60%;
}
.nav-footer ul li{
    width: 90%;
}
.nav-footer ul a{
    color: #fff;
    transition: .4s;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}
.nav-footer ul a:hover{
    border-color: #919191;
}

.footer-top {
    border-top: 1px solid #e0e0e2;
}

.footer-top>div {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e2;
}

.row-f-t {
    display: flex;
    justify-content: space-between;
}

.property-item {
    align-items: center;
    justify-content: space-around;
}

.property-item img {
    /* filter: contrast(0.5); */
    padding-left: 8px;
}

.property-item-title {
    color: #4b5259;
    line-height: 25px;
    margin-bottom: 8px;
    font-weight: 700;
}

.property-item-subtitle {
    color: #6c7680;
    line-height: 22px;
    font-size: 14px;
    /* max-width: 90%; */
}

.footer-center {
    padding: 32px 0;
    padding-bottom: 0;
}

.icon-so {
    align-items: center;
}

.icon-so a {
    color: #6c7680;
    padding-left: 30px;
}

.icon-so a:last-child {
    padding-left: 0;
}

.footer-center h3 {
    text-transform: uppercase;
    font-size: 14px;
    color: #0A0B0C;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-center p,
.footer-center a {
    display: block;
    font-size: 14px;
    color: #0A0B0C;
    line-height: 2;
    transition: 0.5s;
}

.footer-center a:hover {
    color: #4b5259;
}

.footer-bottom>div,
.footer-center>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .container {
    line-height: 1;
}

.certi a {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
}

.licenses .enamad img {
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}
.leaflet-control-attribution a{
    display: none;
}
.logo-copy {
    background: url(../images/09.png);
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 20px;
    width: 20px;
    background-size: contain;
}
.footer-bottom {
    font-weight: lighter;
    color: #fff;
    background: #03e1ba;
    padding: 4px 45px;
    font-size: 12px;
    border-top: 1px solid #82908d;
}

.footer-info {
    color: #4b5259;
    font-size: 14px;
    line-height: 30px;
    padding: 20px 0;
}

.logo-f-c a {
    display: flex;
    align-items: center;
}

.logo-f-c div {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-f-c div:hover {
    color: #000;
}

.social-footer {
    justify-content: space-between;
}

.social-icon {
    font-size: 20px !important;
}

.price-result {
    padding: 15px;
}

.price-result p {
    font-weight: 600;
    font-size: 14px;
}

.title-result {
    font-size: 16px !important;
}

.btn-tab {
    text-align: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-tab.active:first-child {
    box-shadow: rgb(50 50 50 / 33%) -3px 0px 3px -2px;
}

.btn-tab:hover {
    box-shadow: rgb(50 50 50 / 33%) 0px 0px 3px -1px;
}

.btn-tab:hover,
.btn-tab.active {
    background: #eef2f5;
}




/* Gallery
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.blocks-gallery-grid,
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    margin: 0 0 1em 1em;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: calc(50% - 1em);
}

.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-item:nth-of-type(2n) {
    margin-left: 0;
}

.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure,
.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
    margin: 0;
    height: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .blocks-gallery-grid .blocks-gallery-image figure,
    .blocks-gallery-grid .blocks-gallery-item figure,
    .wp-block-gallery .blocks-gallery-image figure,
    .wp-block-gallery .blocks-gallery-item figure {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }
}

.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img,
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .blocks-gallery-grid .blocks-gallery-image img,
    .blocks-gallery-grid .blocks-gallery-item img,
    .wp-block-gallery .blocks-gallery-image img,
    .wp-block-gallery .blocks-gallery-item img {
        width: auto;
    }
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 3em 0.77em 0.7em;
    color: #fff;
    text-align: center;
    font-size: 0.8em;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 70%, transparent);
    box-sizing: border-box;
    margin: 0;
}

.blocks-gallery-grid .blocks-gallery-image figcaption img,
.blocks-gallery-grid .blocks-gallery-item figcaption img,
.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
    display: inline;
}

.blocks-gallery-grid figcaption,
.wp-block-gallery figcaption {
    flex-grow: 1;
}

.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img,
.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
    width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .blocks-gallery-grid.is-cropped .blocks-gallery-image a,
    .blocks-gallery-grid.is-cropped .blocks-gallery-image img,
    .blocks-gallery-grid.is-cropped .blocks-gallery-item a,
    .blocks-gallery-grid.is-cropped .blocks-gallery-item img,
    .wp-block-gallery.is-cropped .blocks-gallery-image a,
    .wp-block-gallery.is-cropped .blocks-gallery-image img,
    .wp-block-gallery.is-cropped .blocks-gallery-item a,
    .wp-block-gallery.is-cropped .blocks-gallery-item img {
        height: 100%;
        flex: 1;
        object-fit: cover;
    }
}

.blocks-gallery-grid.columns-1 .blocks-gallery-image,
.blocks-gallery-grid.columns-1 .blocks-gallery-item,
.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
    width: 100%;
    margin-left: 0;
}

@media (min-width: 600px) {
    .blocks-gallery-grid.columns-3 .blocks-gallery-image,
    .blocks-gallery-grid.columns-3 .blocks-gallery-item,
    .wp-block-gallery.columns-3 .blocks-gallery-image,
    .wp-block-gallery.columns-3 .blocks-gallery-item {
        width: calc(33.33333% - 0.66667em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-4 .blocks-gallery-image,
    .blocks-gallery-grid.columns-4 .blocks-gallery-item,
    .wp-block-gallery.columns-4 .blocks-gallery-image,
    .wp-block-gallery.columns-4 .blocks-gallery-item {
        width: calc(25% - 0.75em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-5 .blocks-gallery-image,
    .blocks-gallery-grid.columns-5 .blocks-gallery-item,
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: calc(20% - 0.8em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-6 .blocks-gallery-image,
    .blocks-gallery-grid.columns-6 .blocks-gallery-item,
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: calc(16.66667% - 0.83333em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-7 .blocks-gallery-image,
    .blocks-gallery-grid.columns-7 .blocks-gallery-item,
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: calc(14.28571% - 0.85714em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-8 .blocks-gallery-image,
    .blocks-gallery-grid.columns-8 .blocks-gallery-item,
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: calc(12.5% - 0.875em);
        margin-left: 1em;
    }
    .blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
    .blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),
    .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
    .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
    .blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),
    .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
    .blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),
    .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
    .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
    .blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),
    .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
    .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
    .blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),
    .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
    .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
    .blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),
    .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
    .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
    .blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),
    .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
    .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
        margin-left: 0;
    }
    .blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
    .blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),
    .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
    .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
        margin-left: 0;
    }
}

.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child,
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
    margin-left: 0;
}

.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
    max-width: 290px;
    width: 100%;
}

.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,
.wp-block-gallery.aligncenter .blocks-gallery-item figure {
    justify-content: center;
}


/* Responsive Public
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.image-fit {
    display: flex;
}

.image-fit img,
.gallery-item img {
    height: 100%;
    flex: 1;
    object-fit: cover;
}


/* Mobile*/

.mobile-menu-right {
    display: block;
    position: fixed;
    top: 0;
    margin-top: 39px;
    right: -260px;
    height: 100vh;
    z-index: 999999;
    width: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ededed;
    transition: 0.2s ease;
}

.mob-swipe-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.header-right-mob i {
    display: block;
    color: #000;
    font-size: 30px;
    padding: 15px;
}

.mobile-menu li {
    position: relative;
    border-bottom: 1px solid #0000001c;
}

.mobile-menu li a {
    display: block;
    padding: 12px 40px;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.mobile-menu li.menu-item-has-children {
    border-bottom: unset;
}

.mobile-menu li .open-menu,
.mobile-menu li .close-menu {
    position: absolute;
    font-size: 25px;
    left: 10px;
    top: 13px;
    width: 30px;
    text-align: center;
    color: #585858;
    z-index: 9;
}

.mobile-menu li .close-menu {
    top: 3px;
}

.mobile-menu li.menu-item-has-children a {
    border-bottom: 1px solid #ccc;
}

.mobile-menu .sub-menu li,
.mobile-menu .sub-menu a {
    border-bottom: unset !important;
}

.mobile-menu .sub-menu a {
    padding: 20px 0 0 0 !important;
}

.mobile-menu .sub-menu {
    background: #f1f1f2;
    font-size: 1.2rem;
    padding: 40px 30px;
    padding-top: 20px;
    display: none;
}

.scrolldown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}


/*mobile logo*/

.mobile-menu-logo {
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-logo h2 {
    padding-top: 10px;
    font-weight: 600;
}

@media (min-width: 1199px) and (max-width: 1366px) {
    .heading-container {
        top: 20% !important;
    }
    .nav ul li a {
        font-size: 13px;
    }
    .grid-container {
        gap: 16px;
    }
    .heading-container .shelf {
        width: 900px !important;
    }
    .product-select-box {
        width: 900px;
    }
    .hidden-tb {
        display: none !important;
    }
    .container {
        width: 100%;
        padding: 0 20px;
    }
    div.primary-menu li {
        font-size: 13px;
    }
    .support-center {
        font-size: 13px;
    }
    .support-center svg {
        height: 17px;
    }
    .header {
        padding: 0 16px;
    }
    div.primary-menu>ul>li {
        padding: 8px;
    }
    div.primary-menu>ul>li:has(>.sub-menu) {
        padding: 8px;
    }
    div.primary-menu>ul>li svg {
        margin-right: 0;
        width: 10px;
    }
    div.primary-menu>ul>li:after {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .tab-view {
        padding: 0 16px !important;
    }
    .input-filter label {
        font-size: 13px
    }
}


/* Laptop */

@media (min-width: 991px) and (max-width: 1199px) {
    .hidden-md,
    .visible-lg,
    .visible-sm,
    .visible-xs {
        display: none;
    }
    .visible-md,
    .hidden-lg,
    .hidden-sm,
    .hidden-xs {
        display: block;
    }
    .hidden-tb {
        display: none !important;
    }
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .colm {
        width: 100%;
    }
    .colm12-tab {
        width: 100%;
    }
    .header {
        padding: 0 16px;
    }
    div.primary-menu>ul>li {
        padding: 8px;
    }
    div.primary-menu>ul>li:has(>.sub-menu) {
        padding: 8px;
    }
    div.primary-menu>ul>li svg {
        margin-right: 0;
        width: 10px;
    }
    div.primary-menu>ul>li:after {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .tab-view {
        padding: 0 16px !important;
    }
    .input-filter label {
        font-size: 13px
    }
    .flex-wrap-tab {
        flex-wrap: wrap;
    }
    .sticky-sidebar-r {
        width: 100%;
        margin: 0;
        margin-bottom: 16px;
    }
    .modal {
        width: 80%;
    }
    .cart-icon {
        padding-left: 0;
    }
    .support-center {
        margin-left: 8px;
    }
    .logo h1 {
        font-size: 0;
    }
    div.primary-menu li {
        font-size: 13px;
    }
    .support-center {
        font-size: 13px;
    }
    .support-center svg {
        height: 17px;
    }
}



/*laptop L*/
@media (min-width: 992px) and (max-width: 1199px)  {
    
    .event-info-overlay {
        left: inherit !important;
        transform: translate(0, -50%) !important;
    }
    .nav-footer ul {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        row-gap: 20px;
        column-gap: 0;
        width: 70%;
    }
    .section-base7{
    height: 100px;
}
.section7{
    height: 100px;
}
.grid-sec5{
    display: none;
}
.grid-section6 .item{
    width: 48%;
}
.flex-event{
    display: none;
}
.bg-hl, .bg-hr {
    display: none !important;
}
.section10-top{
    display: none;
}
.tablet-color-style{
    color: #000000ad !important;
}
.header{
    margin-top: 15px; 
}
.dec-team {
    font-size: 13px;
     margin-top: 120px;
}
.card-seprator {
    width: 100% !important;
}
    
.flex-team {
display: flex;
align-items: center;
justify-content: center;
}

.tag-row {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
}
.logg {
position: absolute;
top: 70px !important;
left: 0 !important;
width: 99% !important;
border-radius: 20px 20px 20px 20px !important;
overflow: hidden !important;
} 
.nav ul li a{
font-size: 10px !important;
}
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm,
    .visible-lg,
    .visible-md,
    .visible-xs {
        display: none;
    }
    .visible-sm,
    .hidden-lg,
    .hidden-md,
    .hidden-xs {
        display: block;
    }
    .hidden-tb {
        display: none !important;
    }
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .grid-sec5{
        display: none;
    }
    .colm {
        width: 100%;
    }
    .colm12-tab {
        width: 100%;
    }
    /* .header {
        padding: 0 16px;
    } */
    .bg-hl, .bg-hr {
        display: none !important;
    }
    .tablet-color-style{
        color: #000000ad !important;
    }
    .tablet-header {
        position: fixed;
        top: 0;
        background: #ffffff;
        width: 100%;
        border-bottom: .8px solid #0000000d;
        box-shadow: 0 0 10px -6px #000;
        z-index: 999;
        filter: invert(.07);
        height: 40px;
    }
    .section7 {
        height: 70px !important;
    }
    .section-base7
{
    height: 70px !important;
}
    .grid-section6 .item{
    width: 45%;
}
    .medal {
        height: 122vh;
    }
    .dar-sub{
        font-size: 14px !important;
    }
    .al-c{
        align-items: center;
    }
    .al-c img{
        height: 25px;
        filter: invert(.8);
    }
    .icon-menu {
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        border-left: 1px solid #00000029;
        margin-left: 8px;
    }
    .te-logo{
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1;
    }
    .header{
        display: none;
    }
    .hide-tablet{
     display: flex;
    }
    .grid-container {
        flex-wrap: wrap;
        gap: 0px;
        flex-direction: column;
    }
    .nav li {
        width: 100%;
        border-bottom: 1px solid #cacaca;
        padding: 10px;
    }
    .nav{
        margin-right: 5px;
    }
    .nav li a {
        color: #313131 !important;
        font-size: 14px !important;
    }
    .flex-event{
        display: none;
    }
    .section10-top{
        display: none;
    }
    .nav ul li a:hover{
        text-shadow: 0px 1px 3px #fff;
    }
    div.primary-menu>ul>li {
        padding: 8px;
    }
    div.primary-menu>ul>li:has(>.sub-menu) {
        padding: 8px;
    }
    div.primary-menu>ul>li svg {
        margin-right: 0;
        width: 10px;
    }
    div.primary-menu>ul>li:after {
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .dec-team {
        font-size: 13px;
         margin-top: 120px;
    }
    .card-seprator {
        width: 100% !important;
    }
        
    .flex-team {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-row {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 8px;
}
.logg {
    position: absolute;
    top: 70px !important;
    left: 0 !important;
    width: 99% !important;
    border-radius: 20px 20px 20px 20px !important;
    overflow: hidden !important;
} 
    
    .tab-view {
        padding: 0 16px !important;
    }
    .input-filter label {
        font-size: 13px
    }
    .flex-wrap-tab {
        flex-wrap: wrap;
    }
    .sticky-sidebar-r {
        width: 100%;
        margin: 0;
        margin-bottom: 16px;
    }
    .modal {
        width: 80%;
    }
    .cart-icon {
        padding-left: 0;
    }
    .support-center {
        margin-left: 8px;
    }

    .logo h1 {
        font-size: 0;
    }
    div.primary-menu li {
        font-size: 13px;
    }
    .support-center {
        font-size: 13px;
    }
    .support-center svg {
        height: 17px;
    }
    .event-info-overlay {
        left: inherit !important;
        transform: translate(0, -50%) !important;
    }
    .nav-footer ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        row-gap: 20px;
        column-gap: 0;
        width: 100%;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .hidden-xs,
    .visible-lg,
    .visible-md,
    .visible-sm {
        display: none;
    }
    .visible-xs,
    .hidden-lg,
    .hidden-md,
    header .hidden-sm,
    .mobile,
    .news-parent,
    .communication-parent {
        display: block;
    }
    .container,
    .colm {
        width: 100%;
    }
    .colm5-mob {
        width: 41.66%;
    }
    .colm12-mobile {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .wrap-responsive {
        flex-wrap: wrap;
    }
    .pad-0 {
        padding: 0;
    }
    .input-filter {
        margin: 8px 0 0 0 !important;
    }
    .nav {
        margin-right: unset;
        /* padding: 15px; */
    }
    .grid-container{
        flex-wrap: wrap;
        gap:0;
    }
    .nav li a{ 
        color: #313131 !important;
        font-size: 14px !important;
    }
    .form-log{
        width: 100% !important;
    }
    .nav li{ 
        width: 100%;
        border-bottom: 1px solid #cacaca;
        padding: 10px;
    }
    .grid-ri-btn {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .icon-tab-p svg {
        width: 25px !important;
    }
    .w20 {
        width: 49% !important;
    }
    .province-team,
    .title-team {
        font-size: 14px !important;
    }
 .dec-team {
        font-size: 13px;
         margin-top: 120px;
    }
    .card-seprator {
        width: 100% !important;
    }
        
    .flex-team {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tag-row {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 8px;
}
.logg {
    position: absolute;
    top: 70px !important;
    left: 0 !important;
    width: 99% !important;
    border-radius: 20px 20px 20px 20px !important;
    overflow: hidden !important;
} 

    .tab-view {
        padding: 0 8px !important;
    }
    .p-box-tab li {
        font-size: 14px !important;
    }
    .colm12-mob {
        width: 100% !important;
    }
    .row-sel-len {
        width: 100%;
        justify-content: space-between;
    }
    .newsection2-top{
        background-size: cover;
        animation: newsection2 3s;
    }
    @keyframes newsection2 {
        0%{
            opacity: 0;
        }
        50%{
            opacity: 0.5;
        }
        100%{
            opacity: 1;
        }
        
    }


    .nav-footer ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: start;
        row-gap: 20px;
        column-gap: 0;
        align-content: center;
        align-items: start;
        text-align: right;
    }
  
    .nav-footer ul{
        width: 100%;
    }
    .pad-footer {
        padding: 15px;
    }
    .section10-top {
        height: auto;
        background-size: cover;
    }
    .icon-pitch {
        margin-bottom: 10px;
        margin-top: 15px;
    }
    .event-info-overlay{
        position: unset !important;
        transform: unset !important;
    }
    .event-top-info {
        height: auto !important;
        padding: 15px;
    }
    .flex-row-ce-center{
        flex-wrap: wrap;
    }
    .h100{
        height: 60px !important;
    }
    .single-event-image img{
        border-radius: 5px !important;
    }
    .pad-ev{
        padding: 0 !important;
        margin-top: 24px;
        text-align: justify;
    }
    .pb0 .sec4-evsub {
        padding: 0 !important;
        font-size: 26px;
        text-align: right;
    }
    .section-base15{
        background-size: unset !important;
    }
    .grid-secev {
        width: 100% !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 16px !important;
    }
    .w100p15{
        width: 100%;
        padding: 15px;
    }
    .grid-section-team {
        grid-template-columns: repeat(1, 1fr);
    }
    .row-sel-len label {
        margin: 0 !important;
        width: 32% !important;
        padding: 8px 4px !important;
    }
    .pad-l-tab {
        padding-left: 0 !important;
    }
    .radiobox-icon {
        width: 17px !important;
        min-width: 17px !important;
        height: 17px !important;
        margin-left: 0 !important;
    }
    .info-radiobox-t {
        font-size: 12px !important;
    }
    .info-radiobox-st {
        font-size: 0 !important;
    }
    .radiobox-icon::after {
        width: 7px !important;
        height: 7px !important;
    }
    .datepicker-row {
        width: 100% !important;
        left: 5px !important;
        transform: unset !important;
    }
    .datepicker-body-content {
        padding: 4px !important;
    }
    .calendar-grid span {
        flex: 0 0 50% !important;
        font-size: 12px !important;
    }
    .tab-view-head {
        margin-bottom: 0!important;
    }
    .tab-content {
        flex-wrap: wrap;
    }
    .test-bg {
        padding-top: 20px !important;
    }
    .mar-t16-mob {
        margin-top: 16px;
    }
    .p-box {
        transform: translate(0px, -15px);
    }
    .services-title {
        padding-right: 16px;
    }
    .sec3-ti.p0{
        padding-bottom: 0;
    }
    .sec3-ti{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom:0;
    }
    .sec3-sub{
        height: 0;
        overflow: hidden;
        transition:height 0.5s ease;
    }
    .sec3-sub.active{
        margin-top: 16px;
        height: auto !important;
    }
    .hide-dec{
        display: block;
        margin-top: 13px;
    }
    .row-services {
        display: grid;
        padding: 16px;
        grid-template-columns: repeat(2, 2fr);
        grid-template-rows: 1fr;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        margin-bottom: 16px;
    }
    .box-services-item-l-title {
        font-size: 18px;
    }
    .box-services-item-l-subtitle {
        font-size: 14px;
    }
    .box-services-item-l img {
        width: 55%;
    }


    /*--about us*/
    .overlay-content-status{
        width: 100%;
        text-align: center;
    }
    .flex-row-fs {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center;
    }
    .link-as-button{
        width: 100%;
    }
    .pad-r-15-hide{
        padding-right: 0px !important;
    }
    .mar-t-15-mobile{
        margin-top: 15px !important;
    }
    .txt-center-mobile{
        text-align: center !important;
        
    }
    .yelow-color{
        color: #cbb83f;
    }
    .ev-list li{
        font-size: 15px;
    }
    .ev-award{
        font-weight: 400;
        font-size: 17px;
    }
    /* .titlefaq {
        padding-right: 16px;
    } */
    .title-faq {
        font-size: 14px;
    }
    .content-faq {
        padding: 16px 32px;
        font-size: 13px;
    }
    .section-faq {
        padding: 16px;
    }
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 0;
        padding-right: 16px;
    }
    .modal{
        z-index:9999 !important;
    }
    .modal-content {
        padding: 16px !important;
        width: 90% !important;
        height: 90vh !important;
    }
    .grid-form {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 0 !important;
    }
    .grid-checkbox {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .bg-home{
        height: 120vh;
    }
    .parent-bghr{
        grid-template-columns: repeat(1, 1fr) !important;
        grid-row-gap: 5px !important;
        position: absolute;
        bottom: 15px;
        height: unset !important;
    }
    .bg-hl, .bg-hr {
        /* margin-top: unset !important;
        width: 95% !important;
        background: #ffffffe0 !important; */
        display: none !important;
    }
    .register-btn3, .register-btn{
        margin-top: 20px;
        background: #00000094;
    }
    .hollow-text {
        font-size: 28px;
    }
    .hollow-text p{
        font-size: 13px !important;
    }
    .mar-t-home {
        position: absolute;
        left: 0;
        right: 0;
        top: 15%;
    }
    .logo img {
        height: 30px;
    }
    .product-information {
        padding: 20px;
    }
    .overlay-slider {
        padding: 15px;
    }
    .single-image img {
        height: 300px;
    }
    #section-slider img {
        height: 250px;
    }
    .slider-title {
        font-size: 47px;
        max-width: 90%;
    }
    .slider-content h2 {
        font-size: 20px;
    }
    .section-about {
        padding: 30px !important;
    }
    .section-about p {
        font-size: 20px !important;
        padding: 0 10px;
    }
    .section-about h2 {
        font-size: 30px !important;
        padding-bottom: 15px !important;
    }
    .section-map h2 {
        font-size: 30px;
    }
    .section-map {
        padding: 30px;
    }
    .box-map iframe {
        width: 100%;
        height: 350px;
    }
    .product-text {
        font-size: 15px;
    }

    .mobile-menu-right{
        /* display: none; */
    }
    .mobile-header {
        position: fixed;
        top: 0;
        background: #ffffff;
        width: 100%;
        border-bottom: .8px solid #0000000d;
        box-shadow: 0 0 10px -6px #000;
        z-index: 999;
        filter: invert(.07);
        height: 40px;
    }
    .al-c{
        align-items: center;
    }
    .al-c img{
        height: 25px;
        filter: invert(.8);
    }
    .icon-menu {
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        border-left: 1px solid #00000029;
        margin-left: 8px;
    }
    .te-logo{
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1;
    }
    .header{
        display: none;
    }
    .section2-top {
        height: auto;
        background-size: cover;
    }
    .flex-event{
        flex-wrap: wrap;
    }
    .now-event {
        padding: 2px 12px;
        font-size: 14px;
    }
    .title-event {
        font-size: 30px;
    }
    .border-ev {
        padding: 5px 0px;
        font-size: 12px;
        width: 100%;
    }
    .grid-b-ev {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 8px;
        margin-bottom: 12px;
        width: 81%;
    }
    .medal{
        display: none;
    }
    .colm8.c-center{
        width: 100%;
    }
    .section2-bottom .colm4{
        width: 0;
        display: none;
    }
    .dar-tit {
        font-size: 23px;
    }
    .dar-sub {
        font-size: 16px;
    }
    .body-dar {
        max-width: 100%;
        padding: 15px;
    }
    .section3-body {
        background-size: auto;
    }
    .grid-section3 {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px;
    }
    .section4-body{
        padding: 15px;
    }
    .grid-sec4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-base9{
        padding: 50px 15px;
    }
    .grid-sec9 {
        grid-template-columns: repeat(1, 1fr);
    }
    .ersal-a {
        width: 100%;
    }
    .btn-reasearch {
        width: 100%;
        margin-top: 24px;
        border-radius: 15px;
    }
    .section-base6{
        padding: 50px 15px;
    }
    .grid-sec6 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .card-sec4-title{
        line-height: 1.4;
    }
    .grid-section6 .item {
        width: 100%;
    }
    .section-base8 {
        height: auto;
    }
    .section8-body {
        background-size: auto;
        padding: 50px 15px;
    }
    .faq-text {
        max-width: 100%;
        padding-right: 0;
        padding-top: 0;
        padding: 15px;
    }
    .faq-title {
        font-size: 14px;
        margin-left: 8px;
    }
    .faq-icon {
        width: 14px;
        height: 14px;
    }    
    .section-base7{
        height: 35px;
    }
    .timeline-sec4-box-mob {
        height: 150px;
        margin-top: 24px;
    }
    .logo-sec4 img {
        height: 75%;
        object-fit: none;
    }
    .mar-t-80 {
        margin-top: 24px;
    }
    .mar-b-80{
        margin-bottom: 24px !important;
    }
    .mar-b-24-mob{
        margin-bottom: 24px !important;
    }
    .mar-t-24-mob{
        margin-top: 24px !important;
    }
    .section5-body {
        background-size: auto;
        padding: 50px 15px;
    }
    .chek1 img {
        height: 133px;
        object-fit: cover;
    }
    .chek2 img {
        height: 133px;
        object-fit: cover;
    }
    #section5 .grid-sec4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .section7 {
        height: 37px;
    }
    .section-base6 {
        height: auto;
    }
    .footer .flex{
        flex-wrap: wrap;
    }
    .footer .colm5,
    .footer .colm7{
        width:100%;
    }
    .grid-footer {
        grid-template-columns: repeat(1, 1fr);
        padding: 15px;
    }
    #map::before {
        background: none;
    }
    .dec-rana {
        padding-right: 0;
        text-align: justify
    }
    .fff {
        margin-right: 0;
    }
    .contactus {
        height: fit-content;
        margin-top: 30px;
    }
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .event-ord-body {
        margin-top: 24px;
    }
    .event10-title.card-sec4-body {
        margin: 24px 0;
        margin-bottom: 24px;
    }
    
    .property-item img {
        /* width: 35px; */
    }
    .property-item {
        /* font-size: 10px;
        text-align: center; */
    }
    .btn-auth {
        padding: 7px 5px;
        width: 130px;
    }
    .btn-auth span {
        padding: 0 5px;
    }
    .btn-login-supplier a {
        padding: 5px 7px;
        margin-left: 10px;
    }
    .single-product-details {
        padding: 10px;
    }
    .product-info-step {
        padding: 0;
    }
    .button,
    button,
    .btn {
        padding: 0 10px;
    }
    .product-vendors table th,
    .product-vendors table td {
        font-size: 14px;
        padding: 5px;
        border: 1px solid #eee;
    }
    .product-vendors thead th:first-child strong {
        display: none;
    }
    .product-vendors thead th:first-child:after {
        content: "ف";
    }
    .item-quantity {
        padding: 2px 0;
    }
    .qty-increase,
    .qty-decrease,
    .qty-delete {
        padding: 0px 7px;
        font-size: 18px;
    }
    .qty-count input[type="number"] {
        width: 30px;
    }
    /* Homepage Product */
    .section-product-select {
        margin-top: -30px;
    }
    .section-product-select .container {
        padding: 10px;
    }
    .product-select-box {
        width: 100%;
        padding: 10px;
        bottom: unset;
    }
    .heading-container {
        top: 15%;
    }
    .product-tab-head {
        padding: 0;
    }
    .product-tab-head li {
        position: inherit;
        font-size: 16px;
        padding: 0 10px;
        line-height: normal;
    }
    .product-tab-head li img {
        width: 24px;
        height: 24px;
    }
    .product-filter {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .home .product-filter select,
    .home .product-filter input {
        min-width: 150px;
    }
    .home .product-filter .btn-computing {
        width: 100%;
        margin-top: 20px;
    }
    /* Single */
    .products-result {
        padding: 20px;
    }
    .item-product>div {
        padding: 10px;
    }
    .item-p-value {
        height: unset;
    }
    .item-product .btn-container {
        width: 100%;
    }
    .single .btn-computing {
        margin-top: 20px;
    }
    /* Cart */
    .add-address-field {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    .cart-frame-address {
        width: 100%;
    }
    .address-edit {
        position: absolute;
        top: -42px;
        left: 0;
    }
    /* Footer */
    .footer-top>div {
        padding: 30px 16px;
        flex-wrap: wrap;
    }
    .shop-list-alert {
        width: 90%;
        font-size: 14px;
    }
    .property-item {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }
    .property-item svg {
        width: 100px;
    }
    .property-item-title {
        font-size: 14px;
    }
    .property-item-subtitle {
        font-size: 13px;
    }
    .footer-center .colm6 {
        width: 100%;
        padding: 8px;
    }
    .footer-center .colm6.ltr {
        direction: rtl;
        margin-top: 32px;
    }
    .copyright {
        font-size: 7px;
        line-height: 1.8;
        padding: 0;
    }
    .footer-bottom {
        padding: 4px 15px;
    }
    #section2{
        height: unset;
    }
    .icon-so {
        align-items: center;
        width: 100%;
        display: flex;
        margin: 0 auto;
        justify-content: center;
        margin-top: 16px;
    }
    .flex-wrap-mob {
        flex-wrap: wrap;
    }
    .footer-center h3 {
        font-size: 13px;
    }
    .footer-center a {
        font-size: 10px;
    }
    .support-center {
        margin-left: 0;
    }
    .modal {
        width: 96%;
    }
    .modal-form-auth .direction-column {
        width: 85%;
    }
    .sticky-sidebar-r {
        margin: 0;
    }
    .products-result {
        padding: 0;
        margin-top: 16px;
    }
    .period-row {
        width: 25%;
        padding: 8px 0;
    }
    .period-body {
        flex-wrap: wrap;
    }
    .period-date {
        font-size: 11px;
    }
    .period-type {
        font-size: 14px;
    }
    .ordering span {
        display: none;
    }
    .ordering ul {
        width: 100%;
        overflow: hidden;
    }
    .ordering ul li {
        padding: 8px 0px;
        font-size: 12px;
    }
    .ordering ul li.active a::after {
        bottom: -8.5px;
        right: 0;
        width: 90%;
    }
    .info-pr-row {
        font-size: 12px;
    }
    .item-pr-r {
        width: 100%;
    }
    .items-link a {
        margin-left: 0;
    }
    .items-link {
        justify-content: space-between;
    }
    .pr-qty,
    .pr-date {
        display: none;
    }
    .pr-name {
        margin: 0;
        margin-right: 8px;
        font-size: 12px;
    }
    .search-pr-row {
        justify-content: space-between;
    }
    .item-brand {
        padding-left: 0;
    }
    .item-pr-r-head-fi sub {
        display: none;
    }
    .item-pr-r-head-fi span {
        font-size: 12px;
    }
    .item-pr-r-head-fi strong {
        font-size: 13px;
    }
    .item-brand strong {
        font-size: 10px;
    }
    .nerkh {
        display: none;
    }
    .item-pr-l {
        width: 100%;
    }
    .search-pr.active {
        z-index: 9999;
    }
    .search-pr-row {
        padding: 12px 16px;
    }
    .popup-message {
        position: fixed;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 91%;
        padding: 10px;
    }
    .page-profile {
        padding: 0;
    }
    .pad-16-mob {
        padding: 16px;
    }
    .page-profile .pad-40 {
        padding: 16px;
    }
    .page-profile .colm8.pad-10,
    .page-profile .colm4.pad-10 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .page-profile .colm4.pad-10 {
        padding-bottom: 16px;
    }
    .user-information,
    .profile-tab-title,
    .profile-tab-content,
    .profile-account-content {
        padding: 16px;
    }
    .profile-tab-content .colm4 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        font-size: 12px;
    }
    .tab-content.tab-inquiry,
    .tab-content.tab-orders {
        overflow: auto;
    }
    .profile-address-content {
        padding: 16px;
    }
    .tab-content.tab-password .form-row {
        flex-wrap: wrap;
    }
    .tab-content.tab-password .form-row input {
        width: 100%;
    }
    .tab-content.tab-account .form-row.flex {
        flex-wrap: wrap;
    }
    .tab-content.tab-account .form-row input {
        width: 100%;
    }
    .process-timeline {
        display: none;
    }
    .invoice-print {
        padding: 0 !important;
    }
    .invoice-title {
        padding: 16px 0 !important;
        font-size: 12px !important;
    }
    .invoice-social-share ul li {
        padding: 4px !important;
    }
    .invoice-social-share img {
        width: 16px;
    }
    .invoice-meta {
        padding: 0 !important;
        font-size: 12px !important;
    }
    .header-item-data:first-child {
        margin: 0!important;
    }
    .invoice-meta {
        flex-wrap: wrap;
        margin-bottom: 16px;
    }
    .invoice-meta .colm9,
    .invoice-meta .colm3 {
        width: 100%;
    }
    .header-item-data {
        padding: 8px !important;
    }
    .overflow-a-mob {
        overflow: auto;
    }
    .overflow-a-mob .content-table td {
        font-size: 12px;
    }
    .overflow-a-mob .content-table td,
    .overflow-a-mob .content-table th {
        min-width: 167px;
    }
    .overflow-a-mob .btn-payment {
        width: fit-content;
        font-size: 14px;
    }
    .invoice-content {
        margin-bottom: 0!important;
    }
    .cart-page {
        padding: 0;
    }
    .cart-page .btn-payment {
        font-size: 14px;
    }
    .cart-page .colm8.pad-10,
    .cart-page .colm4.pad-10 {
        padding: 0;
    }
    .cart-frame {
        padding: 16px;
    }
    .cart-item {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    .cart-frame-address {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .cart-frame:nth-child(2) {
        margin: 16px 0;
    }
    .cart-item-product-title {
        font-size: 12px;
    }
    .cart-item-details-amount>div:last-child,
    .cart-item-details-amount>div:last-child span {
        font-size: 13px;
    }
    .cart-address-header {
        padding: 16px;
        font-size: 14px;
    }
    .add-address {
        font-size: 14px;
        padding: 16px;
    }
    .cart-address-detail {
        font-size: 12px;
    }
    .add-address-field {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0;
        flex-direction: column;
    }
    .add-address-field label {
        font-size: 12px;
    }
    .ctmod .modal {
        position: absolute;
        top: 70px;
    }
    .ctmod .modal-header,
    .ctmod .modal-footer,
    .ctmod .modal-body {
        padding: 16px;
    }
    .ctmod .modal-body {
        max-height: 295px;
        overflow: auto;
    }
    .ctmod .content-table td,
    .ctmod .content-table th {
        font-size: 11px;
    }
    .cart-payment-fix {
        padding: 16px;
        box-shadow: 0 -2px 8px -7px #000;
    }
    .cart-payment-fix .btn-payment {
        width: 100%;
    }
    .grid-b-p {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 16px;
        grid-row-gap: 0px;
    }
    .cart-page .flex.pad-20 {
        padding: 16px;
    }
    .sec3-ti .t{
        font-weight: 400;
    }
}

@media print {
    body {
        direction: rtl;
        background-color: #cecece;
    }
    th,
    td {
        text-align: right;
        border-bottom: 1px solid #e1e1e1;
    }
    .table {
        width: 100%;
    }
    .table tr {
        border-bottom: 1px solid rgb(241, 243, 244);
    }
    .table tr:last-child {
        border-bottom: none;
    }
    .table thead tr {
        background-color: #f4f6f8;
        color: #212b36;
    }
    .table tbody tr {
        display: table-row;
        vertical-align: middle;
    }
    .table tbody tr:hover {
        background-color: rgb(244, 246, 248);
    }
    .table th,
    .table td {
        display: table-cell;
        text-align: right;
        font-size: 14px;
        padding: 16px;
    }
    .table th {
        color: rgb(99, 115, 129);
        background-color: rgb(244, 246, 248);
    }
    .table td input {
        width: 80px;
    }
    .table .small {
        font-size: 10px;
    }
    .table td.text-center {
        text-align: center;
    }
    .table tr.active {
        background: #00800012;
    }
    thead,
    tfoot {
        background: #eee;
    }
    .content-table td,
    .content-table th {
        color: #000;
        border: 1px solid #000;
        text-align: center;
        padding: 0.1cm;
        font-weight: normal;
    }
    .invoice-social-share ul li {
        padding: 0;
    }
}