/* 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
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body.tag {
    padding: 0;
}

.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;
}



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

label.error {
    color: red;
    font-size: 11px !important;
}

.error {
    transition: 0.4s
}

select.error,
textarea.error,
input.error {
    border: 1px solid red;
}

.row-input select.error:focus,
.row-input textarea.error:focus,
.row-input input.error:focus {
    border-color: red;
    box-shadow: unset !important;
    outline: unset !important;
}

/* استایل پس‌زمینه لودینگ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* رنگ تیره با شفافیت */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* بالاترین لایه */
    visibility: hidden;
    /* در حالت عادی مخفی است */
    opacity: 0;
    /* شفاف است */
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* وقتی کلاس active اضافه شد */
.loading-overlay.active {
    visibility: visible;
    /* قابل مشاهده می‌شود */
    opacity: 1;
    /* کاملاً نمایان می‌شود */
}

/* استایل اسپینر لودینگ */
.loading-spinner {
    border: 5px solid #f3f3f3;
    /* رنگ بیرونی اسپینر */
    border-top: 5px solid #3498db;
    /* رنگ بالایی اسپینر */
    border-radius: 50%;
    /* شکل دایره */
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    /* انیمیشن چرخش */
}

/* انیمیشن چرخش */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 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)); */
    background: #011b18;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.gradient-text:nth-child(2) {
    background: linear-gradient(to right, #226e61 20%, #054c44 80%);
    /* از سبز متوسط به سبز تیره */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(3) {
    background: linear-gradient(to right, #5a9e87 20%, #226e61 80%);
    /* از سبز روشن‌تر به سبز متوسط */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(4) {
    background: linear-gradient(to right, #8cc7b7 20%, #5a9e87 80%);
    /* از سبز ملایم به سبز روشن‌تر */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text:nth-child(5) {
    background: linear-gradient(to right, #98ddc9 20%, #8cc7b7 80%);
    /* از سبز خیلی روشن به سبز ملایم */
    -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, #e5f1eba8, transparent);

}

.base-section-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #f2f7f3, 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: radial-gradient(222.05% 147.29% at 4% -8.32%,
            rgba(227, 240, 232, 0.25) 0%,
            rgba(222, 233, 224, 0.55) 45.82%,
            rgba(186, 227, 217, 0.85) 100%);
    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); */
    background: radial-gradient(222.05% 147.29% at 4% -8.32%, rgb(247 250 248 / 64%) 0%, rgb(222 233 224 / 36%) 45.82%, rgba(186, 227, 217, 0.85) 100%);
    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;
    font-size: 13px;
}

.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;
    position: relative;
}

.section-three::before {
    content: "";
}

.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: #054c44;
    border: 1px solid #054c44;
    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 left top, rgb(90 158 135 / 3%), transparent 30%),
        radial-gradient(circle at right top, #b3e4d14d, rgba(0, 0, 0, 0) 30%),
        radial-gradient(circle at right bottom, #b3e4d14d, rgba(0, 0, 0, 0) 30%),
        /* سبز تیره در گوشه سمت راست پایین */
        radial-gradient(circle at left bottom, #b3e4d14d, rgba(0, 0, 0, 0.05) 30%);

    padding: 80px 0px;

    padding: 80px 0px;

    padding: 80px 0px;

    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%;
    max-height: 330px;
}

#section4 img {
    object-fit: cover;
}

.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.7;
    /* text-align: justify; */
    margin: 0;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: calc(1.7em * 4);
    word-break: break-word;
}


.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);
}

.hollow-text1 .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: #054c44;
    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: #054c44;
    font-weight: 500;
    text-align: center;
    padding: 6px 12px;
    border: 1px solid #054c44;
    border-radius: 8px;
    font-size: 14px;
    min-width: 130px;
    transition: 0.5s;
}

.btn-register:hover {
    color: #fff;
    background-color: #042824;
}

.btn-login:hover {
    color: #16263d;
    border-color: #1a1a1a;
}

/* 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 1
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#section1 {
    background: radial-gradient(222.05% 147.29% at 96.05% -8.32%,
            rgba(186, 227, 217, 0.85) 0%,
            rgba(222, 233, 224, 0.55) 45.82%,
            rgba(245, 250, 245, 0.25) 100%);

    /* 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;
    background: #767b7a1c;
}

.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
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#secc5 {
    background: #b3e4d14d;
    height: auto;
    padding: 80px 0;
}

.sec5-head {
    text-align: center;
    padding: 0 24px;
}

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

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

.your-slider {
    margin: 16px auto;
    width: 100%;
}


.btn-slider {
    margin: 16px 0;
    display: flex;
    gap: 8px;
    justify-content: end;
}

.btn-slider button {
    color: #657285;
    padding: 4px 16px;
    border: 1px solid #657285;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    width: 50px;
    height: 38px;
}

.btn-slider button:hover {
    color: #1a1a1a;
}

.slick-track {
    display: flex;
    gap: 10px;
    padding: 4px 0;
}

.sec5-box {
    transition: 0.3s;
}





.sec5-box a {
    width: 100%;
    padding: 20px;
    transition-duration: .25s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    border-radius: 8px;
    border: 1px solid #2c99f2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    height: 100%;
}

.border1 {
    background-color: #FFFCF6;
    border-color: #ffb000 !important;
}

.border2 {
    background-color: #FFF6F6;
    border-color: #f06a35 !important;
}

.border3 {
    background-color: #F6FBFF;
    border-color: #2c99f2 !important;
}

.sec5-box a:hover.border1 {
    box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgba(255, 176, 0, 0.75), 0 0 #0000, 0 0 #0000;
}

.sec5-box a:hover.border2 {
    box-shadow: 0 0 0 0 rgba(240, 106, 53, 0.75), 0 0 0 calc(2px + 0px) rgba(240, 106, 53, 0.75), 0 0 #0000, 0 0 #0000;
}

.sec5-box a:hover.border3 {
    box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgba(44, 153, 242, 0.75), 0 0 #0000, 0 0 #0000;
}


.sec5-box-title {
    font-size: 18px;
    color: #3c3c3c;
    font-weight: 500;
}

.sec5-box-subtitle {
    margin-top: 8px;
    font-size: 14px;
    color: #3c3c3c;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec5-box span {
    margin-top: 16px;
    font-size: 14px;
    color: #3c3c3c;
}

.sec5-box a:hover span {
    color: #1a1a1a;
    font-weight: 500;
    transition: .25s all;
}

.sec5-box i {
    font-size: 12px;
    margin-left: 4px;
}

.shadow-slider2 {
    left: -10px;

}

.shadow-slider2,
.shadow-slider {
    height: 152px;
    background-image: linear-gradient(to right, transparent, #eff8ff);
    width: 30px;
    position: absolute;
    z-index: 9;
}

/* 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;
}

#secc6 {
    background: #767b7a1c;
    padding: 80px 0px;
}


.testimonial-section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    background: #ffffff;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
    margin: 12px 0;
    padding: 0;
    direction: ltr;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 1) 60px, rgba(0, 0, 0, 1) calc(100% - 60px), rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 1) 60px, rgba(0, 0, 0, 1) calc(100% - 60px), rgba(0, 0, 0, 0) 100%);
}

.track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}


.card-sec6 {
    position: relative;
    width: 392px;
    min-width: 392px;
    height: 220px;
    padding: 24px;
    border-radius: 16px;
    border: 3px solid transparent;
    direction: rtl;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #e6f0ff 0%, #e2e8f0 50%, #ffe3ee 100%) border-box;
}


.card-sec6 .g2 .card-sec6:nth-child(n) {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #b8e3d7 0%, #8cc7b7 50%, #5a9e87 100%) border-box;
}

.marquee .card-sec6:nth-child(2n) {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #b8e3d7 0%, #8cc7b7 50%, #5a9e87 100%) border-box;
}



.person-card-sec6 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin: 15px 0px;
}

.avatar-card-sec6 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.avatar-card-sec6 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.meta-card-sec6 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.name-card-sec6 {
    font-size: 14px;
    font-weight: 700;
    color: #0b1220;
    margin: 0;
}

.detail-card-sec6 {
    font-size: 13px;
    color: #475569;
    margin: 0;
}

.quote {
    font-size: 14px;
    line-height: 1.6;
    color: #0b1220;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


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

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

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

.marquee.top .track {
    animation: scroll-left 70s linear infinite;
}

.marquee.bottom .track {
    animation: scroll-right 70s linear infinite;
}


.marquee:hover .track {
    animation-play-state: paused;
}

/* 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;
}

#secc7 {
    position: relative;
    background: radial-gradient(circle at top left, rgba(107, 255, 216, 0.3), 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%);
    padding: 80px 0;
}

#section7::after {
    content: "";
    position: absolute;
}

.section-base {
    height: unset;
}

.grid-sec7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    justify-content: center;
}

.sec7-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e6f2fb;
    background: #fefefe;
    padding: 16px;
    border-radius: 24px;
    height: 168px;
    overflow: hidden;
}

.sec7-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}






/* 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;
}

/*contact-us 
--------------------------------*/
.contact-banner {
    background: #b3e4d14d;
    padding: 150px 0px 60px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 100px;
    direction: rtl;
}

.contact-banner__right {
    display: flex;
    flex-direction: column;
}

.contact-banner__right-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.contact-banner__right h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-banner__right span {
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-top: 8px;
    color: #9a9db0;
}

.contact-banner__left {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.8;
    color: rgb(134, 136, 146);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin: 0px auto;
    padding: 50px 100px;
    background:
        radial-gradient(circle at 10% 0px, rgba(186, 227, 217, 0.3), transparent 30%),
        /* سبز پاستلی روشن */
        radial-gradient(circle at 90% 0px, rgba(214, 248, 238, 0.3), rgba(0, 0, 0, 0) 30%),
        /* سبز روشن */
        radial-gradient(circle at 0px 100%, rgba(186, 227, 217, 0.5), rgba(0, 0, 0, 0.05) 30%);
    /* سبز پاستلی */

}

.contact-us {
    width: min(1100px, 85vw);
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.contact-us-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

}


.contact-us-visual .map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
    filter: saturate(1.05) contrast(1.02);
}


.contact-us-visual .person {
    position: relative;
    z-index: 2;
}


.logo-rotator {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(39, 182, 167, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: spin 14s linear infinite;
    transform-origin: center;
}


.logo-rotator svg {
    width: 70%;
    height: 70%;
    object-fit: contain;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-us-info {
    padding: 30px 60px;
    background: #e8e8e873;
    backdrop-filter: blur(12px);
}

.contact-us-info h2 {
    font-size: 32px;
    color: #1a1f1e;
    margin: 0 0 10px;
}

.contact-us-info p.sub {
    color: #6a7a79;
    margin: 0 0 40px;
    line-height: 1.8;
    font-size: 15px;
}


.contact-us-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 20px 30px 20px 70px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: .3s ease;
}




.contact-us-mainicon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(39, 182, 167, 0.3);
    flex-shrink: 0;
}

.contact-us-mainicon svg {
    width: 22px;
    height: 22px;
    stroke: #26b5a6;
}


.contact-us-text {
    flex: 1;
    text-align: right;
    margin-right: 16px;
    color: #374745;
    font-size: 15px;
    line-height: 1.9;
    word-break: break-word;
}


.contact-us-action {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(39, 182, 167, 0.25);
    box-shadow: 0 2px 6px rgba(39, 182, 167, .15);
    backdrop-filter: blur(6px);
    transition: .3s;
}

.contact-us-action:hover {
    background: rgba(39, 182, 167, 0.1);
    transform: translateY(-50%) scale(1.08);
}

.contact-us-action svg {
    width: 18px;
    height: 18px;
    stroke: #26b5a6;
}

/* شبکه‌های اجتماعی */
.contact-us-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
}

.contact-us-socials a:hover {
    background: rgba(39, 182, 167, 0.1);
    transform: translateY(-10%) scale(1.08);
}

.contact-us-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(39, 182, 167, 0.25);
    backdrop-filter: blur(8px);
    transition: .3s;
}



.contact-us-socials svg {
    width: 20px;
    height: 20px;
    stroke: #26b5a6;
}


/* --- Popup Base --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.popup-box {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 8px;
    left: 12px;
    border: none;
    background: none;
    font-size: 22px;
    color: #444;
    cursor: pointer;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.popup-item:last-child {
    border-bottom: none;
}

.popup-item svg {
    width: 20px;
    height: 20px;
    stroke: #26b5a6;
}

.popup-item a {
    color: #1a1f1e;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.popup-item a:hover {
    color: #26b5a6;
    transform: translateX(-3px);
}

/*archive 
-------------------------------- */
.archive-banner {
    background: #b3e4d14d;
    padding: 150px 0px 60px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 100px;
    direction: rtl;
}

.archive-banner__right {
    display: flex;
    flex-direction: column;
}

.archive-banner__right-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.archive-banner__right h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.archive-banner__right span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-top: 8px;
    color: #9a9db0;
}

.archive-banner__left {
    max-width: 480px;
    font-size: 14px;
    line-height: 1.8;
    color: rgb(134, 136, 146);
    text-align: justify;
}

.archive-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0px auto;
    padding: 50px 150px;
    background:
        radial-gradient(circle at 10% 10%, rgba(186, 227, 217, 0.3), transparent 30%),
        /* سبز پاستلی روشن */
        radial-gradient(circle at 90% 0%, rgba(214, 248, 238, 0.3), rgba(0, 0, 0, 0) 30%),
        /* سبز خیلی روشن */
        radial-gradient(circle at 0% 100%, rgba(186, 227, 217, 0.5), rgba(0, 0, 0, 0.05) 30%);
    /* سبز پاستلی */


}

.hozeha-card-archive {
    flex: 0 0 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2, 8, 23, .04);
    display: flex;
    flex-direction: column;
}

.hozeha-media-archive {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.hozeha-media-archive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.6s ease;
    transform-origin: center;
}

.hozeha-media-archive:hover img {
    transform: scale(1.5);
    cursor: pointer;
}


.hozeha-badge-archive {
    position: absolute;
    left: 10px;
    top: 10px;
    transform: translateY(-42px);
    background: #111827;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px
}

.hozeha-body-archive {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.hozeha-sub-archive {
    font-size: 12px;
    color: #64748b;
    margin: 0
}

.hozeha-name-archive {
    font-size: 18px;
    line-height: 1.35;
    margin: 0
}

.hozeha-name-archive a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.35em * 2)
}

.hozeha-desc-archive {
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.5em * 3);
}

.lable-filter {
    display: flex;
    gap: 15px;
}

.hozeha-tags-archive {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto
}

.hozeha-tag-archive {
    font-size: 11px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 8px
}


/* 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;
}

/*sec1 home page
--------------------------------------*/
.blog-banner {
    background: #b3e4d14d;
    padding: 150px 0px 60px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 100px;
    direction: rtl;
}

.blog-banner__right {
    display: flex;
    flex-direction: column;
}

.blog-banner__right-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.blog-banner__right h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-banner__right span {
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-top: 8px;
    color: #9a9db0;
}

.blog-banner__left {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.8;
    color: rgb(134, 136, 146);
}

/*sec2*/
.wrapper-blg {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 0px;
    transition: opacity .45s ease, transform .45s ease;
    direction: rtl
}

.wrapper-blg.is-fading {
    opacity: 0;
    /* transform: translateY(6px); */
}

.media-blg {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: center;
    padding: 0 110px;
}

.media-text-blg {
    text-align: right;
}

.media-text-blg h1 {
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.5;
    font-size: 36px;
    color: #1f2937;
}

.media-text-blg p {
    margin: 0;
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.9;
    color: #334155;
    text-align: justify;
}

.media-image-blg {
    display: grid;
    place-items: center;
    padding: 16px;
}

.media-card-blg {
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6eef7;
    box-shadow:
        rgba(186, 227, 217, 0.25) 10px 0px 10px 15px,
        rgba(214, 248, 238, 0.85) -10px 0px 20px 15px,
        rgba(208, 245, 232, 0.25) 10px 20px 30px 15px;

}


.media-card-blg img {
    display: block;
    width: 100%;
    height: auto;
}



.dots-blg {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    width: max-content;
}

.dot-blg {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .25);
    transition: width .25s ease, background .25s ease;
    cursor: pointer;
}

.dot-blg.is-active {
    width: 22px;
    background: #054c44;
}

/*sec3*/

.hozeha-wrap {
    background:
        radial-gradient(circle at 10% 0, rgba(255, 205, 107, .30), transparent 30%),
        radial-gradient(circle at 90% 0, rgba(243, 253, 251, 1), rgba(0, 0, 0, 0) 30%),
        radial-gradient(circle at 0 100%, rgba(229, 220, 254, .5), rgba(0, 0, 0, .05) 30%);
    padding: 28px 16px 40px;
}

.hozeha-container {
    max-width: 1200px;
    margin: 0 auto;
    direction: rtl;
}

.hozeha-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-top: 32px;
}

.hozeha-title {
    margin: 0;
    font-weight: 700;
    font-size: 22px
}

.hozeha-seeall {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none
}

.hozeha-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 6px 0 8px
}

.hozeha-dd {
    position: relative
}

.hozeha-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    width: 150px;
    line-height: 1.8;
    height: 40px;
}

.hozeha-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(2, 8, 23, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s;
    display: grid;
    gap: 8px;
    z-index: 50
}

.hozeha-dd:hover .hozeha-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px)
}

.hozeha-chip {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer
}

.hozeha-filterwrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 40px 18px
}

.hozeha-filter-prev,
.hozeha-filter-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 3;
    padding: 0px !important;
}

.hozeha-filter-prev:hover,
.hozeha-filter-next:hover {
    background: #054c44;
    color: rgb(255, 255, 255);
}

.hozeha-filter-slider {
    position: relative;
    flex: 1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.hozeha-filter-slider::-webkit-scrollbar {
    display: none
}

.hozeha-filter-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    cursor: pointer;
    transition: transform .06s ease
}

.hozeha-filter-chip:active {
    transform: scale(.98)
}

.hozeha-filter-chip .hozeha-ico {
    width: 18px;
    height: 18px;
    opacity: .75
}

.hozeha-t-consumer {
    background: #EEF6FF;
    color: #1e3a8a
}

.hozeha-t-health {
    background: #EAFBF6;
    color: #065f46
}

.hozeha-t-biotech {
    background: #F4EFFF;
    color: #5b21b6
}

.hozeha-t-sustain {
    background: #EAFBF0;
    color: #14532d
}

.hozeha-t-manuf {
    background: #F5F8FF;
    color: #1f2937
}

.hozeha-t-enterprise {
    background: #FFF6EE;
    color: #7c2d12
}

.hozeha-t-fintech {
    background: #F0FBFF;
    color: #0c4a6e
}

.hozeha-t-ai {
    background: #F7F7FF;
    color: #3730a3
}

.hozeha-t-edu {
    background: #FFF8F0;
    color: #7c2d12
}

.hozeha-t-rnd {
    background: #EFFAF5;
    color: #065f46
}

.hozeha-filterwrap::before,
.hozeha-filterwrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2
}

.hozeha-filterwrap::before {
    left: 42px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0))
}

.hozeha-filterwrap::after {
    right: 42px;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0))
}

.hozeha-row {
    margin-top: 22px
}

.hozeha-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.hozeha-row-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.hozeha-row-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700
}

.hozeha-row-seeall {
    font-size: 13px;
    color: #3077b8;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.hozeha-row-seeall::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 1s ease;
}

.hozeha-row-seeall:hover::after {
    width: 100%;
}

.hozeha-row-seeall a {
    color: #000 !important;
}


.hozeha-arrows {
    display: flex;
    gap: 8px;
}

.hozeha-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    padding: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hozeha-arrow:hover {
    background: #054c44;
    color: rgb(255, 255, 255);
}

.hozeha-viewport {
    overflow: hidden;
    border-radius: 14px
}

.hozeha-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    transition: transform .36s ease
}

.hozeha-card {
    flex: 0 0 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2, 8, 23, .04);
    display: flex;
    flex-direction: column;
}

.hozeha-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden
}

.hozeha-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hozeha-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    transform: translateY(-42px);
    background: #111827;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px
}

.hozeha-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.hozeha-sub {
    font-size: 12px;
    color: #64748b;
    margin: 0
}

.hozeha-name {
    font-size: 18px;
    line-height: 1.35;
    margin: 0
}

.hozeha-name a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.35em * 2)
}

.hozeha-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.5em * 3);
    text-align: justify;
}

.lable-filter {
    display: flex;
    gap: 15px;
}

.hozeha-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto
}

.hozeha-tag {
    font-size: 11px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 8px
}



/* home page
sec4------------------- */

.event-slider {
    max-width: 1280px;
    margin: 40px auto 80px;
    padding: 0 16px;
    position: relative;
}

.event-slider__stage {
    position: relative;
    background: rgb(225 250 240 / 63%);
    border-radius: 24px;
    padding: 28px;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid antiquewhite;
}


.event-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    padding: 28px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .5s ease, transform .5s ease;

}

.event-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.event-slide__media {
    background: #ffe66e;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-slide__content {
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.event-slide__kicker {
    font-size: 13px;
    letter-spacing: .6px;
    color: #353838;
}

.event-slide__title {
    font-size: 40px;
    font-weight: 700;
    color: #454647;
    line-height: 1.5;
}

.event-slide__quote {
    font-size: 18px;
    line-height: 1.9;
    color: #808283;
    text-align: justify;
}

.event-slide__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
    text-decoration: none;
    width: max-content;
}

.event-slide__cta svg {
    width: 18px;
    height: 18px
}

.event-slider__controls {
    position: absolute;
    bottom: -56px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.event-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    width: max-content;
}

.event-slider__dot {
    all: unset;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: rgba(15, 23, 42, .25);
    opacity: .6;
    transition: width .25s ease, background .25s ease, opacity .25s ease, border-radius .25s ease;
}

.event-slider__dot[aria-current="true"] {
    width: 26px;
    border-radius: 999px;
    background: #054c44;
    opacity: 1;
}

.event-slider__arrows {
    margin-inline-start: auto;
    display: flex;
    gap: 12px;
}

.event-slider__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0px !important;
}

.event-slider__btn:hover {
    background: #054c44;
    color: #fff;
}

.event-slider__btn svg {
    width: 18px;
    height: 18px
}

.read-more {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px;
}

.read-more h2 {
    font-weight: 800;
    font-size: 22px;
}



/*single
---------------------------------------------------*/
.wrapper-single {
    margin: 0 auto;
    padding: 150px 0px 0px 0;
    direction: rtl;
    background: #b3e4d14d;
}

.media-single {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
    padding: 0 80px
}


.media-text-single {
    text-align: right
}

.media-text-single h1 {
    margin: 0 0 12px;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.5;
    letter-spacing: -.3px;
    color: #0f172a;
    text-align: justify;
}

.section-base-p {
    margin-bottom: 25px;
}

.reg {
    margin: 15px;
    margin-top: 50px;
}

.suf {
    font-size: 13px;
}

/* --- fixes کوچک --- */
.investor-section .is-ico-inv-area::before,
.investor-section .is-ico-inv-area::after {
    background: linear-gradient(to right, var(--bg), rgba(244, 251, 251, 0));
}

.media-text-single p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    text-align: justify;
}


.meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px
}

.meta-top span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
    margin: 0 2px
}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.tag {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    background: #fff
}

.tag.blue {
    border-color: #cfe0ff;
    color: #1e40af;
    background: #eff5ff
}

.tag.green {
    border-color: #cdeed7;
    color: #166534;
    background: #eefbf2
}

.tag.peach {
    border-color: #ffd5dc;
    color: #9f1239;
    background: #fff0f2
}


.media-image-single {
    display: grid;
    place-items: center
}

.media-card-single {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e6eef7;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06)
}

.media-card-single img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.ribbon {
    position: absolute;
    top: 14px;
    right: -46px;
    width: 180px;
    text-align: center;
    transform: rotate(35deg);
    background: #f1f1f199;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 0;
    border: 1px solid #f1efe8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08)
}


.border-single-banner {
    height: 10px;
    width: 100%;
    margin-top: 40px;
    border-radius: 8px;
    /* background: linear-gradient(90deg, #ffdcb5 0%, rgba(183, 255, 247, 0.54) 100%) */
    background: linear-gradient(90deg, rgba(214, 248, 238, 0.54) 0%, rgb(90, 158, 135) 100%);



}


.article-wrap {
    padding: 32px 80px;
    /* 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%); */
    background:
        radial-gradient(circle at top left, rgb(255 255 255 / 30%), transparent 30%),
        /* سبز پاستلی ملایم */
        radial-gradient(circle at top right, rgb(255 255 255 / 30%), rgb(255 255 255 / 48%) 30%),
        /* سبز روشن */
        radial-gradient(circle at bottom left, rgba(186, 227, 217, 0.7), rgba(112, 164, 144, 0.06) 30%);
    /* سبز در سمت راست پایین */


    direction: rtl;
}

.article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-card {
    background: #ffffff;
    border: 1px solid #e6eef7;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    overflow: hidden;
}


.article-head {
    padding: 16px 20px;
    border-bottom: 1px solid #eaf1f8;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-head .accent {
    width: 72px;
    height: 6px;
    border-radius: 50px;
    /* background: linear-gradient(90deg, #ffdcb5 0%, #b7fff6 100%); */
    background: linear-gradient(90deg, rgba(186, 227, 217, 0.85) 0%, rgba(112, 164, 144, 0.6) 100%);



}


.article-content {
    padding: 28px 24px 34px;
    color: #0f172a;
}

.article-content h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.2px;
    color: #0f172a
}

.article-content h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a
}

.article-content p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.95;
    color: #334155;
    text-align: justify;
}

.article-content ul {
    margin: 10px 0 16px;
    padding: 0 22px;
    color: #0f172a
}

.article-content li {
    margin: 6px 0;
    font-size: 16px;
    line-height: 1.9;
    color: #334155
}

.article-content blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-right: 4px solid #b7fff6;
    background: #f8fdff;
    color: #0f172a;
    border-radius: 12px;
}

/* کپشن/نکته پایانی */
.article-foot {
    padding: 14px 24px 20px;
    border-top: 1px solid #eef3f8;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 13px
}


/** sec3 */
.hozeha-wrap {
    /* background: linear-gradient(50deg, #f2edfcbf, #f2f2f2d9); */
    background: linear-gradient(50deg, rgb(200 232 211 / 23%), rgba(242, 242, 242, 0.85));
    padding: 28px 16px 40px;
}

.hozeha-container {
    max-width: 1200px;
    margin: 0 auto;
    direction: rtl;
}

.hozeha-row {
    margin-top: 22px
}

.hozeha-row-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 900px;
    margin-bottom: 10px
}

.hozeha-row-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.hozeha-row-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700
}

.hozeha-row-seeall {
    font-size: 13px;
    color: #3077b8;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.hozeha-row-seeall::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 1s ease;
}

.hozeha-row-seeall:hover::after {
    width: 100%;
}

.hozeha-row-seeall a {
    color: #000 !important;
}


.hozeha-arrows {
    display: flex;
    gap: 8px
}

.hozeha-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    padding: 0px !important;
}

.hozeha-viewport {
    display: flex !important;
    justify-content: center !important;
}

.hozeha-arrow:hover {
    background: #054c44;
    color: rgb(255, 255, 255);
}

.hozeha-viewport {
    overflow: hidden;
    border-radius: 14px
}

.hozeha-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    transition: transform .36s ease
}

.hozeha-card {
    flex: 0 0 280px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2, 8, 23, .04);
    display: flex;
    flex-direction: column;
}

.hozeha-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden
}

.hozeha-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hozeha-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    transform: translateY(-42px);
    background: #111827;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px
}

.hozeha-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.hozeha-sub {
    font-size: 12px;
    color: #64748b;
    margin: 0
}

.hozeha-name {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;

}

.hozeha-name a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.35em * 2)
}

.hozeha-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-word;
    min-height: calc(1.5em * 3);
}

.lable-filter {
    display: flex;
    gap: 15px;
}

.hozeha-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto
}

.hozeha-tag {
    font-size: 11px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 8px
}

.heroText-single p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* 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;
}



.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;
}

.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.hm-wrap {
    height: 72px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* padding: 0 14px; */
    gap: 12px;
}


.hm-burger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    padding-top: 15px;
}

.hm-burger .svg-icon svg {
    width: 26px;
    height: 26px;
    /* margin-top: 15px */
}

.hm-burger:hover {
    background: #f5f7fb;
}


/* .hm-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: .25s;
    transform-origin: center;
} */

.hm-burger span+span {
    margin-top: 4px;
}

.hm-burger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hm-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.hm-burger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Logo / Title */
.hm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hm-title {
    color: #3077b8;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

/* CTA right */
.hm-cta {
    display: none;
    gap: 8px;
    align-items: center;
}

@media (min-width:420px) {
    .hm-cta {
        display: flex;
    }
}

/* Buttons */
.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: 110px;
    transition: .3s;
    background: #fff;
}

.btn-login:hover {
    border-color: #1a1a1a;
}


/* Overlay */
.hm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.hm-overlay.is-show {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer */
.hm-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 420px);
    height: 100dvh;
    background: #fff;
    box-shadow: 0 6px 20px -12px rgba(0, 0, 0, .25);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.hm-drawer.is-open {
    transform: translateX(0);
}

/* Drawer header */
.hm-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.hm-drawer-title {
    font-weight: 700;
    color: #16263d;
}

.hm-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #1a1a1a;
}

/* Nav list */
.hm-nav {
    list-style: none;
    margin: 0;
    padding: 12px 8px;
    overflow: auto;
    flex: 1;
}

.hm-nav li a {
    display: block;
    padding: 12px 10px;
    margin: 6px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #585858;
    font-size: 15px;
    transition: .2s;
}

.hm-nav li a:hover {
    background: #f5f7fb;
    color: #1a1a1a;
}

/* Drawer footer */
.hm-footer {
    padding: 14px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 8px;
}


.contact-banner__right {
    display: flex;
    flex-direction: column;
}

.contact-banner__right-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.contact-banner__right h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-banner__right span {
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-top: 8px;
    color: #9a9db0;
}

.contact-banner__left {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.8;
    color: rgb(134, 136, 146);
}

:root {
    --pastel-red: #FF6B8B;
    --pastel-orange: #FFA27B;
    --pastel-green: #7BCBA4;
    --pastel-purple: #9B87F5;
    --pastel-blue: #6BC5D2;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mehvae-event {
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mehvae-event-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}



.mehvae-event-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.mehvae-event-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.mehvae-event-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.mehvae-event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mehvae-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--card-color) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
    z-index: 0;
}

.mehvae-event-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.mehvae-event-card:hover::before {
    opacity: 0.05;
}

.mehvae-event-card-content {
    position: relative;
    z-index: 2;
}

.mehvae-event-card-icon {
    width: 70px;
    height: 70px;
    background: var(--card-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mehvae-event-card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.mehvae-event-card:hover .card-icon {
    transform: scale(1.1) rotate(8deg);
}

.mehvae-event-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.mehvae-event-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* رنگ‌بندی برای هر کارت */
.mehvae-event-card-1 {
    --card-color: var(--pastel-red);
}

.mehvae-event-card-2 {
    --card-color: var(--pastel-orange);
}

.mehvae-event-card-3 {
    --card-color: var(--pastel-green);
}

.mehvae-event-card-4 {
    --card-color: var(--pastel-purple);
}

.mehvae-event-card-5 {
    --card-color: var(--pastel-blue);
}

/* افکت‌های ویژه */
.mehvae-event-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--card-color), transparent);
    border-radius: 21px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.mehvae-event-card:hover::after {
    opacity: 0.08;
}


.faq-section {
    background: linear-gradient(50deg, #f2edfcbf, #f2f2f2d9);
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B8B, #FFA27B);
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 139, 0.3);
}

.faq-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s ease;
}

.faq-badge:hover::before {
    left: 100%;
}

.faq-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1E293B;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100px;
    height: 4px;
    /* background: linear-gradient(90deg, rgb(255, 198, 134) 0%, rgb(0, 255, 225) 100%); */
    background: linear-gradient(90deg, #b8e3d7 0%, #5a9e87 100%);

    border-radius: 2px;
    transition: width 0.4s ease;
}

.faq-title:hover::after {
    width: 100%;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 28px 30px;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    gap: 20px;
    height: fit-content;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(120deg, #054c44, rgb(237, 232, 232));
    transition: height 0.4s ease;
}

.faq-item.active .faq-question::before {
    height: 100%;
}

.faq-question:hover {
    background: #F8FAFC;
}

.question-text {
    flex: 1;
    text-align: right;
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #054c44;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(120, 119, 120, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.answer-content {
    padding: 0 30px 30px;
    color: #64748B;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -1px;
}

.answer-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.answer-content p:last-child {
    margin-bottom: 0;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .answer-content {
    animation: fadeIn 0.4s ease;
}

/*singup*/
.back-singup {
    background:
        radial-gradient(circle at 10% 0, rgba(186, 227, 217, 0.3), transparent 30%),
        radial-gradient(circle at 90% 0, rgba(214, 248, 238, 1), rgba(0, 0, 0, 0) 30%),
        radial-gradient(circle at 0 100%, rgba(186, 227, 217, 0.5), rgba(0, 0, 0, 0.05) 30%);

}

.signup-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 32px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

}

@media (max-width:900px) {
    .signup-wrap {
        grid-template-columns: 1fr
    }
}

.signup-card {
    position: relative;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #e8f0f7;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .07);
    padding: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

.signup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));

}


.signup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.signup-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #0f766e
}

.signup-head p {
    margin: 0;
    font-size: 12.5px;
    color: #63748b
}


.signup-ops {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.signup-op {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr 56px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    min-height: 78px;
    border-radius: 16px;
    cursor: pointer;
    isolation: isolate;
    background: linear-gradient(180deg, #ffffff, #fafcff);
    border: 1px solid #e8f0f7;
    transition: .2s ease;
}

.signup-op::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    pointer-events: none;
    padding: 1px;
    background: conic-gradient(from 230deg, #a5f3fc, #bbf7d0, #fde68a, #fdba74, #a5f3fc);
    opacity: 0;
    transition: .25s;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.signup-op--sel::after {
    opacity: .85
}

.signup-tick {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid #cfdbe9;
    transition: .18s;
    position: relative;
    overflow: hidden;
}

.signup-tick svg {
    opacity: 0;
    transform: scale(.6);
    transition: .18s
}

.signup-op--sel .signup-tick {
    border-color: #26c897;
    box-shadow: 0 0 0 5px rgba(38, 200, 151, .16)
}

.signup-op--sel .signup-tick svg {
    opacity: 1;
    transform: scale(1)
}

/* ripple when (re)selected */
.signup-op.is-rip .signup-tick::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(38, 200, 151, .28) 0%, rgba(38, 200, 151, 0) 60%);
    animation: signup-rip .45s ease-out;
}

@keyframes signup-rip {
    from {
        transform: scale(0);
        opacity: .9
    }

    to {
        transform: scale(2);
        opacity: 0
    }
}

.signup-op input[name="role"] {
    position: absolute;
    display: none;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    border: 0;
    outline: 0;
}

.signup-op input[name="role"]:focus {
    border: 0;
    outline: 0;
}

.signup-tx h3 {
    margin: 0;
    font-weight: 900;
    font-size: 14px;
    color: #0f172a
}

.signup-tx small {
    display: block;
    font-size: 12px;
    color: #66768c;
    margin-top: 3px
}


.signup-ico {
    justify-self: end;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #e8f0f7;
    box-shadow: 0 8px 16px rgba(15, 23, 42, .06);
    transition: .18s;
}

.signup-op--sel .signup-ico {
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .22), 0 8px 18px rgba(15, 23, 42, .08)
}


.signup-fieldset {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.signup-fs-hd h4 {
    margin: 0;
    font-size: 13.5px;
    font-weight: 900
}

.signup-fs-hd p {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: #63748b
}

.signup-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end
}

.signup-label {
    font-size: 12px;
    color: #334155;
    margin-bottom: 6px;
    display: block
}

.signup-input {
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e8f0f7;
    background: #fff;
    padding: 0 12px;
    font-size: 14px;
    transition: .18s;
}

.signup-input:focus {
    outline: 0;
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .18)
}

.signup-btn {
    border: 0;
    height: 45px;
    width: fit-content;
    border-radius: 8px;
    padding: 0 32px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    color: rgb(255, 255, 255);
    background: #054c44;
    /* box-shadow: 0 14px 28px rgba(38, 200, 151, .24), inset 0 1px 0 rgba(255, 255, 255, .6); */
    transition: .18s;
    margin: 4px 0;
}

/* .signup-btn:hover {
    transform: translateY(-1px);
} */

.signup-preview {
    display: grid;
    gap: 24px
}


.signup-mini {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid #e8f0f7;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.signup-mini .signup-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e8f0f7;
    box-shadow: 0 6px 12px rgba(15, 23, 42, .06);
}

.signup-mini .signup-mini-txt h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 900
}

.signup-mini .signup-mini-txt small {
    display: block;
    font-size: 12.5px;
    color: #6b7a90;
    margin-top: 2px
}

.signup-mini .signup-mini-txt p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #415169;
    line-height: 1.9
}

.signup-hero {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #e8f0f7;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.signup-hero .signup-stage {
    display: grid;
    place-items: center;
    min-height: 240px;
    position: relative;
    opacity: 1;
    transition: opacity .2s ease;
}

.signup-hero .signup-stage.is-fade {
    opacity: 0
}

.signup-hero .signup-stage::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(160px 160px at 40% 50%, rgba(34, 211, 238, .28) 0%, transparent 60%);
    filter: blur(18px);
}

.signup-hero .signup-stage svg {
    width: min(72%, 360px);
    height: auto
}



.row-input label {
    font-weight: 100;
    font-size: 14px;
    margin-bottom: 8px;
}

.row-input select,
.row-input textarea,
.row-input input {
    width: 100%;
    font-size: 14px;
    height: 45px;
    padding: 12px;
    border: 1px solid #d4ddea;
    border-radius: 8px;
    margin-top: 4px;
}

.row-input textarea {
    height: 70px;
}

.row-input select:focus,
.row-input textarea:focus,
.row-input input:focus {
    border-color: #1e293b;
    box-shadow: 0 0 0 .5px #1e293b;
    outline: .5px solid transparent;
}


[dir="rtl"] .signup-op {
    grid-template-columns: 56px 1fr 32px
}


.signup-op:focus,
.signup-op:focus-within {
    outline: none !important;
    box-shadow: none !important;
}


.signup-op:focus-visible {
    outline: none;

}


.signup-op,
.signup-op * {
    -webkit-tap-highlight-color: transparent;
}

.signup-op *:focus {
    outline: none !important;
}

/* event-report
-----------------------------------------*/
/* ===== Base (from user) - kept mostly intact with small adjustments ===== */
.rana-gallery-section {
    --gap: clamp(10px, 1.2vw, 16px);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .12);
    padding: clamp(16px, 4vw, 40px) clamp(12px, 4vw, 32px);
    background:
        radial-gradient(circle at 12% -10%, rgba(186, 227, 217, 0.3), transparent 35%),
        radial-gradient(circle at 90% 0%, rgba(208, 245, 232, 0.20), transparent 40%),
        radial-gradient(circle at -10% 100%, rgba(214, 248, 238, 0.85), transparent 35%);

}

.rg-title h2 {
    margin: 0 0 14px;
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 700;
}

.rg-viewport {
    position: relative;
    overflow: hidden;
    padding: 6px 44px;
}

.rg-rail {
    direction: ltr;
    display: grid;
    grid-auto-flow: column;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.rg-rail::-webkit-scrollbar {
    display: none;
}

.rg-rail {
    /* default columns (desktop) */
    --cols: 5;
    grid-auto-columns: calc((100% - (var(--cols) - 1)*var(--gap))/var(--cols));
}

.rg-item {
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transform: translateZ(0);
    cursor: pointer;
    /* ensure consistent height */
    min-height: 160px;
    display: block;
}

.rg-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .45s ease;
}

.rg-item:hover img {
    transform: scale(1.035);
}

/* ===== Nav Buttons: ultra-minimal glass buttons (improved touch area) ===== */
.rg-btn {
    --bg: rgba(255, 255, 255, .6);
    --border: rgba(0, 0, 0, .07);
    top: 40%;
    translate: 0 -30%;
    inline-size: 36px;
    block-size: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--bg);
    backdrop-filter: blur(8px) saturate(120%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
    color: #1f2937;
    cursor: pointer;
    z-index: 2;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    padding: 0 10px;
    touch-action: manipulation;
    /* improve mobile responsiveness */
}

.rg-prev {
    inset-inline-start: 10px;
}

.rg-next {
    inset-inline-end: 10px;
}

.rg-btn:hover {
    background: rgba(255, 255, 255, .9);
    color: #111827;
    border-color: rgba(0, 0, 0, .12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    background: #054c44;
    color: #fff;
}

.rg-btn svg {
    display: block;
}

/* pages indicators */
.rg-pages {
    left: 50%;
    bottom: 6px;
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    margin-top: 30px;
    transform: translateX(-50%);
    position: relative;
}

.rg-pages button {
    --w: 7px;
    --h: 7px;
    width: var(--w);
    height: var(--h);
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #cfd8dc;
    transition: width .22s ease, background .22s ease, opacity .22s ease;
    opacity: .9;
}

.rg-pages button[aria-current="true"] {
    --w: 18px;
    background: #054c44;
    opacity: 1;
}

/* ===== Lightbox (improvements for small screens) ===== */
.rana-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rana-lightbox[hidden] {
    display: none;
}

.rl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: auto;
}

.rana-lightbox.active .rl-overlay {
    opacity: 1;
}

.rl-content {
    position: relative;
    z-index: 2;
    max-width: min(92vw, 1400px);
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
    transform: translateY(6px) scale(.98);
    opacity: 0;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .32s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rana-lightbox.active .rl-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.rl-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .22s ease;
    max-height: 88vh;
}

.rana-lightbox.show-img .rl-img {
    opacity: 1;
}

/* Controls */
.rl-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .75);
    color: #111;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    z-index: 3;
    transition: background .18s ease, transform .18s ease;
    padding: 0 10px;
}

.rl-close:hover {
    background: #054c44;
    color: #fff;
}

.rl-nav {
    --bg: rgba(255, 255, 255, .55);
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: var(--bg);
    color: #111;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
    z-index: 3;
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
    opacity: .95;
    padding: 0 10px;
}

.rl-prev {
    inset-inline-start: 10px;
}

.rl-next {
    inset-inline-end: 10px;
}

.rl-nav:hover {
    background: #054c44;
    color: #fff;
}

/* reduced-motion preserved */
@media (prefers-reduced-motion: reduce) {

    .rg-item img,
    .rg-btn,
    .rg-pages button,
    .rl-overlay,
    .rl-content,
    .rl-img,
    .rl-close,
    .rl-nav {
        transition: none !important;
    }
}

/* ===== Videos section (kept & responsive tweaks) ===== */
.rana-videos-section {
    --gap: clamp(12px, 1.4vw, 18px);
    --radius: 16px;
    --shadow: 0 10px 28px rgba(0, 0, 0, .12);
    --card-bg: #fff;
    padding: clamp(16px, 4vw, 40px) clamp(12px, 4vw, 32px);
    background: #f4fbfb;
}

.rv-title h2 {
    margin: 0 0 14px;
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 700;
}

.rv-viewport {
    position: relative;
    overflow: hidden;
    padding: 6px 44px;
}

.rv-rail {
    direction: ltr;
    display: grid;
    grid-auto-flow: column;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.rv-rail::-webkit-scrollbar {
    display: none;
}

.rv-rail {
    --cols: 3;
    grid-auto-columns: calc((100% - (var(--cols) - 1)*var(--gap))/var(--cols));
}

.rv-item {
    scroll-snap-align: center;
}

.rv-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

/* Player box with 16:9 aspect */
.rv-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.rv-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Meta */
.rv-meta {
    padding: 12px clamp(12px, 1.5vw, 16px) 14px;
    direction: rtl;
}

.rv-h3 {
    margin: 0 0 6px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    line-height: 1.6;
}

.rv-desc {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.8;
    color: #475569;
}

.rv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rv-tags li {
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

/* Nav Buttons */
.rv-btn {
    --bg: rgba(255, 255, 255, .6);
    --border: rgba(0, 0, 0, .07);
    top: 40%;
    translate: 0 -30%;
    inline-size: 36px;
    block-size: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--bg);
    backdrop-filter: blur(8px) saturate(120%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
    color: #1f2937;
    cursor: pointer;
    z-index: 2;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    padding: 0 10px;
}

.rv-prev {
    inset-inline-start: 10px;
}

.rv-next {
    inset-inline-end: 10px;
}

.rv-viewport:hover .rv-btn {
    color: white;
    background: #054c44;
}

.rv-btn:hover {
    color: white;
    background: #054c44;
}

/* pages */
.rv-pages {
    left: 50%;
    bottom: 6px;
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    margin-top: 30px;
    transform: translateX(-50%);
    position: relative;
}

.rv-pages button {
    --w: 7px;
    --h: 7px;
    width: var(--w);
    height: var(--h);
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #cfd8dc;
    transition: width .22s ease, background .22s ease, opacity .22s ease;
    opacity: .9;
}

.rv-pages button[aria-current="true"] {
    --w: 18px;
    background: #054c44;
    opacity: 1;
}

.pdf-report {
    padding: 40px 10px;
    background: linear-gradient(50deg, #f2edfcbf, #f2f2f2d9);
}

.btn-flex-report {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 7px;
    margin-left: 50px
}

.wrapper header {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.wrapper header.visible {
    opacity: 1;
    visibility: visible;
}


.sub-event-summery {
    /* text-align: justify; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.8em;
    max-height: calc(2em * 4);
}

@media (max-width: 992px) {
    .wrapper header {
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
    }
}

/* single-event 
    -----------------------------------------*/
.single-event {
    direction: rtl;
    margin-top: 30px;
    margin-bottom: 30px;
}

.single-event * {
    box-sizing: border-box
}


.single-event-header {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .05);
    padding: 16px;
    margin-bottom: 18px;
    overflow: hidden
}

.single-event-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(14, 165, 233, .08), rgba(16, 185, 129, .08))
}

.single-event-header__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    align-items: center
}



.single-event-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.2px
}

.single-event-sub {
    margin-top: 30px;
    font-size: 13px;
    color: #6b7280
}

.single-event-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px
}

.single-event-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #1f2937
}

.single-event-chip svg {
    width: 16px;
    height: 16px;
    opacity: .95
}

.single-event-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px
}

.single-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
    color: #111827
}

.single-event-btn--primary {
    background: #10B981;
    color: #fff;
    border: 1px solid #0ea87a
}

.single-event-btn--ghost {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #111827
}

.single-event-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(2, 6, 23, .10)
}

.single-event-btn[aria-disabled="true"] {
    opacity: .55;
    pointer-events: none
}

/* Media */
.single-event-media {
    display: flex;
    justify-content: center;
    align-items: center
}

.single-event-thumb {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 36px rgba(2, 6, 23, .08)
}

/* Layout */
.single-event-grid {
    display: grid;
    gap: 16px
}

@media (max-width:980px) {
    .single-event-grid {
        grid-template-columns: 1fr
    }
}

.single-event-stack {
    display: grid;
    gap: 14px
}

/* Cards */
.single-event-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, .04)
}

.single-event-card__title {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 900;
    color: #111827
}

.single-event-text {
    color: #374151;
    line-height: 1.95;
    font-size: 15px
}

/* Meta list */
.single-event-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr
}


.single-event-meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fafafa;
    border: 1px dashed #eef2f7;
    padding: 10px;
    border-radius: 12px;
    color: #334155
}

.single-event-ico {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    opacity: .95
}

/* Timeline: horizontal on desktop, vertical on mobile */
.single-event-timeline {
    display: grid;
    gap: 10px
}


.single-event-step {
    display: grid;
    grid-template-columns: 28px auto;
    gap: 10px;
    align-items: start;
    background: #f9fafb;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 10px
}

.single-event-step__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0ea5e9;
    margin-top: 6px;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, .14)
}

.single-event-step__title {
    font-weight: 900;
    color: #0f172a
}

.single-event-step__sub {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px
}

/* Tags */
.single-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.single-event-tag {
    background: #F3F4F6;
    border: 1px solid #e5e7eb;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #374151
}

/* Sponsors */
.single-event-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px
}


.single-event-logo {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 12px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) contrast(92%);
    opacity: .9;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 18px rgba(2, 6, 23, .04)
}

.single-event-logo img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain
}

.single-event-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(2, 6, 23, .08)
}

/* Map */
.single-event-map {
    border-radius: 14px;
    overflow: hidden
}

/* Status notes */
.single-event-note {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 800
}

.single-event-note--finished {
    color: #b91c1c
}

.single-event-note--reg {
    color: #92400e
}

/* Section divider mini */
.single-event-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 8px 0
}

/* Reveal */
.single-event-reveal {
    opacity: 0;
    transform: translateY(10px);
    animation: se-fade .5s ease forwards
}

.single-event-delay-1 {
    animation-delay: .06s
}

.single-event-delay-2 {
    animation-delay: .12s
}

.single-event-delay-3 {
    animation-delay: .18s
}

@keyframes se-fade {
    to {
        opacity: 1;
        transform: none
    }
}

.single-event-row-3 {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
    /* ≈40/40/20 */
    gap: 14px;
    align-items: stretch;
}

.single-event-row-3>.single-event-card {
    height: 100%;
}

.flex-row-eve {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.border-single-banner-eve {
    height: 10px;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(214, 248, 238, 0.54) 0%, rgb(90, 158, 135) 100%);
}