:root {
    --rokh: "Rokh";
    --yekan: "Yekan";
    --n-yekan: "NYekan";
    --text-color: #4f4f4f;
    --primary-color: #0055a3;
    --secondary-color: #3087ab;
    --title-color: #171717;
    --grid-gap: 20px;
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 100;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-Thin.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-Thin.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 300;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-Light.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-Light.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: normal;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-Regular.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-Regular.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 600;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-SemiBold.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: bold;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-Bold.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-Bold.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 800;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-ExtraBold.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-ExtraBold.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 900;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-Black.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-Black.woff2") format("woff2");
}

@font-face {
    font-family: Yekan;
    font-style: normal;
    font-weight: 950;
    font-stretch: normal;
    src:
        url("../fonts/woff/YekanBakhFaNum-ExtraBlack.woff") format("woff"),
        url("../fonts/woff2/YekanBakhFaNum-ExtraBlack.woff2") format("woff2");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--yekan);
    margin: 0px;
    overflow-x: hidden;
}

ul {
    padding-inline-start: 0;
}

*,
*::after,
*::before {
    outline: none;
    border: none;
    text-decoration: none;
    margin-block: 0;
    margin-inline: 0;
    list-style: none;
    box-sizing: border-box;
}

a {
    color: #171717;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-sm {
    font-size: 0.85rem;
}

.small-container-x {
    padding-left: 160px;
    padding-right: 160px;
}

.big-container-x {
    padding-left: 370px;
    padding-right: 370px;
}

.container-y {
    padding-top: 100px;
}

.container-y-sm {
    padding-top: 50px;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
    width: 100%;
}

.col-1 {
    grid-column: span 1;
}
.col-2 {
    grid-column: span 2;
}
.col-3 {
    grid-column: span 3;
}
.col-4 {
    grid-column: span 4;
}
.col-5 {
    grid-column: span 5;
}
.col-6 {
    grid-column: span 6;
}
.col-7 {
    grid-column: span 7;
}
.col-8 {
    grid-column: span 8;
}
.col-9 {
    grid-column: span 9;
}
.col-10 {
    grid-column: span 10;
}
.col-11 {
    grid-column: span 11;
}
.col-12 {
    grid-column: span 12;
}

.heading-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.heading h3 {
    color: var(--title-color);
    font-size: 24px;
    text-align: center;
    font-weight: 800;
    line-height: 42px;
    position: relative;
    letter-spacing: -2px;
}

.heading h3:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 24px;
    right: 50%;
    transform: translate(50%, 0);
    top: 100%;
}

.heading .heading-subtitle {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    font-size: 18px;
    color: var(--text-color);
    letter-spacing: -0.6px;
    font-weight: 400;
    text-align: center;
}

.link-con {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-con span {
    font-family: var(--yekan);
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.button {
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    background-color: var(--secondary-color);
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--secondary-color);
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden !important;
    transition: all 0.3s;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.button:before {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;

    right: -100%;
    width: 150%;
    height: 300%;
    top: 50%;
    z-index: 1;
    transform: translate(35%, -50%);
    transition: all 0.5s;
}

.button span {
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    font-family: var(--yekan);
    font-weight: 700;
}

.button:hover {
    border: 1px solid var(--secondary-color);
}

.button:hover:before {
    transform: translate(-50%, -50%);
}

@supports (color-mix(in srgb, var(--secondary-color) 80%, white 20%)) {
    .button:hover {
        border: 1px solid
            color-mix(in srgb, var(--secondary-color) 80%, white 20%);
    }

    .button:hover:before {
        transform: translate(-50%, -50%);
        background-color: color-mix(
            in srgb,
            var(--secondary-color) 80%,
            white 20%
        );
    }
}

@supports not (color-mix(in srgb, var(--secondary-color) 80%, white 20%)) {
    .button:hover:before {
        transform: translate(-50%, -50%);
        filter: brightness(1.1);
        /* روشن‌تر کردن رنگ */
    }

    .button:hover {
        border: 1px solid var(--secondary-color);
    }
}

.hero-cnt .hero-right .hero-but-cnt .button.white-button:before {
    background-color: #fff;
}

.hero-cnt .hero-right .hero-but-cnt .button.white-button:hover span {
    color: var(--primary-color);
}

/* header */

.header-cnt {
    position: fixed;
    width: 100%;
    right: 0px;
    left: 0px;
    height: 124px;
    top: 0px;
    display: flex;
    align-items: center;
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(50px);
    justify-content: space-between;
}

.header-cnt .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cnt .header-right .header-logo {
    max-width: 250px;
    display: flex;
    padding: 0 5px;
}

.header-cnt .header-right .header-logo img {
    width: 100%;
}

.header-cnt .header-right .header-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
}

.header-cnt .header-right .header-list .header-item {
    display: flex;
    flex-shrink: 0;
    /* height: fit-content; */
}

.header-cnt .header-right .header-list .header-item a {
    position: relative;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.header-cnt .header-right .header-list .header-item a span {
    font-family: var(--yekan);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
    white-space: nowrap;
}

.header-cnt .header-right .header-list .header-item a .header-item-line {
    position: absolute;
    height: 4px;
    width: 0px;
    transition: all 0.4s;
    right: 50%;
    transform: translate(50%, 50%);
    border-radius: 8px;
    background-color: var(--secondary-color);
    bottom: 0;
    z-index: 1;
}

.header-cnt .header-right .header-list .header-item a:hover {
    background-color: #f3f6ff;
}

.header-cnt .header-right .header-list .header-item a:hover span {
    color: var(--title-color);
}

.header-cnt .header-right .header-list .header-item a:hover .header-item-line {
    width: 20px;
}

.header-cnt .header-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-cnt .header-left .mobile-contact-cnt {
    font-family: var(--yekan);
}

.header-cnt .header-left .header-info-cn {
    font-family: var(--yekan);
}

.header-cnt .header-left .header-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cnt .header-left .header-info-row.header-info-title span {
    font-size: 12px;
    color: var(--secondary-color);
    font-size: 14px;
}

.header-cnt .header-left .header-info-row span {
    font-weight: 600;
    color: var(--text-color);
}

.header-cnt .header-left .header-info-row a {
    color: var(--text-color);
    font-size: 13px;
    direction: ltr;
    transition: all 0.3s;
    font-weight: 600;
}

.header-cnt .header-left .header-info-row a:hover {
    opacity: 0.8;
}

.header-cnt .header-left .header-info-row img {
    height: 24px;
    width: 24px;
}

.header-cnt .header-left .header-info-row .vertical-line {
    margin-bottom: 5px;
    width: 1px;
    height: 12px;
    background-color: #a1a1a1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.header-actions .button,
.mobile-header-actions .button {
    color: #fff;
    padding: 6px 15px 6px 6px;
    border-radius: 16px;
    background-color: var(--btn-color);
    font-size: clamp(11px, 0.75vw, 14px);
    font-weight: 800;
    border: 1px solid var(--btn-color);
    cursor: pointer;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    display: flex;
    gap: clamp(6px, 0.7vw, 10px);
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.header-actions .button::before,
.mobile-header-actions .button::before {
    content: "";
    position: absolute;
    background-color: var(--btn-color);
    border-radius: 16px;
    right: -100%;
    width: 150%;
    height: 300%;
    top: 50%;
    z-index: 1;
    transform: translate(35%, -50%);
    transition: all 0.5s;
}

.header-actions .button .text-sm,
.mobile-header-actions .button .text-sm {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    transition: all 0.3s;
}

.header-actions .button-icon,
.mobile-header-actions .button-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background-color: #fff;
    color: var(--btn-color);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

/* .header-actions .button:hover .button-icon {
    transform: rotate(-45deg);
} */

.header-actions .button:hover::before,
.mobile-header-actions .button:hover::before {
    transform: translate(-50%, -50%);
}

@supports (color: color-mix(in srgb, red 80%, white 20%)) {
    .header-actions .button:hover,
    .mobile-header-actions .button:hover {
        border-color: color-mix(in srgb, var(--btn-color) 80%, white 20%);
    }

    .header-actions .button:hover::before,
    .mobile-header-actions .button:hover::before {
        background-color: color-mix(in srgb, var(--btn-color) 80%, white 20%);
    }
}

@supports not (color: color-mix(in srgb, red 80%, white 20%)) {
    .header-actions .button:hover::before,
    .mobile-header-actions .button:hover::before {
        filter: brightness(1.1);
    }
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 10px;
    direction: rtl;
}

/* hero */

.hero-cnt {
    margin-top: 124px;

    /* height: 620px; */
    /* mask-image: url(../img/hero-mask.png);
    -webkit-mask-image: url(../img/hero-mask.png);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain; */
}

.hero-cnt .hero-bg-img {
    position: absolute;
    height: 100%;
    width: 100%;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.hero-cnt .hero-vector {
    position: absolute;
    aspect-ratio: 692/169;
    width: 50%;
    bottom: -6px;
    left: -1px;
    z-index: 1;
}

.hero-cnt .hero-vector img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.hero-cnt .hero-bg-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-cnt .hero-right {
    width: 50%;
    padding-right: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(12px, 2vh, 55px);
    position: relative;
    padding: 130px 130px 130px 0px;
}

.hero-cnt .hero-right .hero-heading h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffff;
    line-height: 1.5;
}

.hero-cnt .hero-right .hero-text {
    font-size: 18px;
    color: #fff;
    font-family: var(--yekan);
    letter-spacing: -0.6px;
    font-variation-settings: "dots" 1;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cnt .hero-right .hero-but-cnt {
    display: flex;
    gap: 24px;
}

.hero-cnt .hero-right .hero-but-cnt .button {
    font-size: 16px;
}

.hero-cnt .hero-right .hero-but-cnt .button.white-button {
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.3s;
}

.hero-cnt .hero-right .hero-but-cnt .button.white-button:hover {
    /* background-color: #fff;
    color: var(--primary-color); */
}

.hero-cnt .hero-left {
    width: 50%;
    align-self: flex-end;
    display: flex;
    /* position: absolute; */
    z-index: 2;
    bottom: -100px;
    left: 0px;
    margin-bottom: -100px;
    padding-left: 98px;
    height: calc(100% + 100px);
    justify-content: center;
    align-items: flex-end;
}

.hero-cnt .hero-slider {
    position: relative;
    z-index: 1;
}

.hero-cnt .hero-slider .slick-list {
    /* overflow-y: visible; */
    height: 700px;
}

.hero-cnt .hero-slider .hero-slide {
    display: flex !important;
    position: relative;
    height: 620px;
    width: 100% !important;
    margin: 0 auto;
}

.hero-cnt .hero-left .hero-img {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 100%;
}

.hero-cnt .hero-left .hero-img img {
    margin: 0 auto;
    /* height: 515px; */
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.hero-cnt .hero-slider .slick-dots {
    position: absolute;
}

.hero-cnt .hero-slider .slick-dots {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 8px;
    gap: 8px;
    border-radius: 112px;
    background-color: var(--primary-color);
    left: 40px;
    top: 25%;
    transform: translate(0, 50%);
}

.hero-cnt .hero-slider .slick-dots li {
    display: flex;
    border-radius: 50%;
}

.hero-cnt .hero-slider .slick-dots li button {
    margin: 2px 0;
    font-size: 0;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    padding: 0;
    transition: all 0.8s;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-cnt .hero-slider .slick-dots li.slick-active button:after {
    background-color: var(--secondary-color);
    content: "";
    width: 100%;
    top: -1px;
    left: 0px;
    right: 0px;
    bottom: 0;
    height: 105%;
    z-index: 5;
    border-radius: 24px;
    position: absolute;

    transform-origin: top;
    transform: scaleY(0);
    animation: dotFull 6.8s linear forwards;
}

.hero-cnt .hero-slider .slick-dots li.slick-active {
    border-radius: 30px;
    overflow: hidden;
}

.hero-cnt .hero-slider .slick-dots li.slick-active button {
    height: 36px;
    border-radius: 24px;
}

@keyframes dotFull {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

.hero-slider [data-animation-in] {
    opacity: 0.5;
}

.hero-slider [data-animation-out] {
    opacity: 0.5;
}

/* about */

.about-cnt {
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-cnt .about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 58%;
}

.about-cnt .about-img {
    width: 42%;
}

.about-cnt .about-img img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.about-cnt .about-content .heading-cnt {
    align-items: flex-start;
}

.about-cnt .about-content .heading-cnt h3 {
    text-align: right;
}

.about-cnt .about-content .heading-cnt h3:after {
    width: 0;
}

.about-cnt .about-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    width: 70%;
}

.about-cnt .about-desc p {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    font-size: 16px;
    letter-spacing: -0.48px;
    color: var(--text-color);
    font-weight: 600;
    text-align: justify;
    line-height: 1.5;
}

.about-cnt .button {
}

/* priorities */

.prior-cnt {
    /* margin-bottom: 180px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.prior-cnt .heading-cnt .heading {
    width: 70%;
}

.prior-cnt .heading-cnt {
    width: 100%;
}

.prior-cnt .prior {
    /* display: flex; */
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 65px;
    background-image: url(../img/prior-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    gap: 92px;
}
.prior.all-service {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: start;
    margin-top: 12px;
    width: 100%;
    margin-bottom: 0;
    background-image: unset;
    gap: 24px;
}

.prior.all-service .prior-item.all-service-item {
    padding: 15px;
    width: 100%;
    gap: 12px;
}

.prior.all-service .prior-item.all-service-item .prior-img-cnt {
    max-width: unset;
    min-width: unset;
    width: 100%;
    aspect-ratio: 10/16;
    height: auto;
}

.prior-cnt .prior .prior-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
}



.prior-cnt .prior .prior-item .prior-img-cnt {
    width: 100%;
    aspect-ratio: 10/16;
    border-radius: 192px;
    box-shadow: 0 0 14.2px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 10px;
    margin-bottom: 0px;
    max-width: 285px;
    max-height: 400px;
    min-width: 190px;
}


.prior-cnt .prior .prior-item .prior-img-cnt:hover {
    box-shadow: 0 0 14.2px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    margin-top: 0px;
}

.prior-cnt .prior .prior-item .prior-img-cnt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prior-cnt .prior .prior-item .prior-title h5 {
    font-size: 1rem;
    color: var(--title-color);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    vertical-align: top;
    letter-spacing: -2px;
}

.prior-cnt .prior .prior-item .prior-title {
    position: relative;
}

/* .prior-cnt .prior .prior-item .prior-title:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: var(--secondary-color);
    left: -25px;
    z-index: 1;
    top: 20%;
}

.prior-cnt .prior .prior-item .prior-title:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: var(--secondary-color);
    right: -25px;
    z-index: 1;
    top: 20%;
} */

/* products */

.product-cnt {
    padding-top: 120px;
}

.product-cnt .product {
    margin-top: 96px;
    margin-bottom: 96px;
    display: flex;
    flex-direction: column;
    gap: 104px;
}

.product-cnt .product .product-row {
    display: flex !important;
    gap: 35px;
}

.product-cnt .product .product-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-cnt .product .product-row:nth-child(odd) {
    flex-direction: row;
}

.product-cnt .product .product-row .product-img-cnt {
    /* background-image: url(../img/product-bg.jpg);
    background-repeat: no-repeat; */
    width: 40%;
    /* background-size: contain;
    background-position: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-cnt .product .product-row .product-img-cnt > img {
    margin-bottom: 30px;
}

.product-img-cnt .product-bg-cnt {
    position: absolute;
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: -1;
}

.product-img-cnt .product-bg-cnt .big-shape {
    background-color: #f4f5f7;
    width: 85%;
    height: 100%;
    border-radius: 16px 50% 50% 16px;
}

.product-img-cnt .product-bg-cnt .bg-vector {
    margin-top: 20px;
}

.product-cnt .product .product-row:nth-child(even) .product-img-cnt {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.product-cnt .product .product-row:nth-child(even) .product-img-cnt a > img {
    -webkit-transform: scaleX(1);
    transform: scaleX(-1);
}

.product-cnt .product .product-row .product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 60%;
}

.product-cnt .product .product-row .product-content .product-title {
    display: flex;
    gap: 5px;
}

.product-title {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.product-title-dot {
    border-radius: 50%;
    background-color: var(--secondary-color);
    width: 8px;
    height: 8px;
    margin-top: 5px;
}

.product-cnt .product .product-row .product-content .product-title h4 {
    color: var(--title-color);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 900;
}

.product-cnt .product .product-row .product-content .product-desc p {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: var(--text-color);
    font-size: 16px;
}

.product-cnt .product .product-row .product-content .product-use {
    display: flex;
    align-items: center;
    background-color: #f3f6ff;
    flex-wrap: wrap;
    border-radius: 80px;
    gap: 16px;
    padding: 16px 32px;
    /* height: 73px; */
    width: fit-content;
}

.product-cnt
    .product
    .product-row
    .product-content
    .product-use
    .product-usage-title {
    color: var(--title-color);
    font-weight: 700;
}

.product-cnt
    .product
    .product-row
    .product-content
    .product-use
    .product-usage-icon {
    display: flex;
    transition: all 0.3s;
}

.product-cnt
    .product
    .product-row
    .product-content
    .product-use
    .product-usage-icon:hover {
    margin-bottom: 5px;
    margin-top: -5px;
}

.tooltip {
    position: relative;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: fit-content;
    background-color: #202c5ec4;
    backdrop-filter: blur(80px);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    padding: 5px 10px;
    font-family: var(--yekan);
    font-weight: 320;
    font-size: 14px;
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.link-cnt {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.1s;
    width: fit-content;
}

.link-cnt span {
    color: var(--secondary-color);
    margin-top: 2px;
}

.link-cnt svg {
    fill: var(--secondary-color);
    transition: all 0.3s;
}

.link-cnt:hover svg {
    fill: var(--secondary-color);
}

.link-cnt:hover {
    gap: 12px;
}

/* news */

.news-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: #f4f5f7;
}

.blogs-layout {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 24px;
    align-items: start;
    width: 100%;
}

.blogs-layout .blogs-category-sec {
    width: auto;
    margin-top: 32px;
    border: 1px solid #e8e8e8c2;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 18px;
    padding: 16px 24px;
    box-shadow: 0 0 16px 0 rgb(0 0 0 / 14%);
}

.blogs-layout .blogs-category-sec .blogs-category-sec-title {
    font-size: 16px;
    margin-bottom: 1em;
    color: var(--title-color);
    /* text-align: center; */
    font-weight: bold;
    line-height: 42px;
    position: relative;
    letter-spacing: -1px;
}

.blogs-layout .blogs-category-sec .blogs-category-sec-title:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 24px;
    right: 10px;
    transform: translate(50%, 0);
    top: 100%;
}

.blogs-layout .blogs-category-sec .blogs-category-list {
    font-size: 16px;
}

.blogs-layout .blogs-category-sec .blogs-category-list .blogs-category-item {
    font-size: 14px;
    color: var(--text-color);
    padding: 5px 0;
    transition: transform ease 0.6s;
}

.blogs-layout
    .blogs-category-sec
    .blogs-category-list
    .blogs-category-item:hover {
    font-size: 14px;
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.blogs-layout
    .blogs-category-sec
    .blogs-category-list
    .blogs-category-item:hover
    a {
    color: var(--secondary-color);
}

/* .news-cnt .news {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
    width: 100%;
} */
.news-cnt .news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
    width: 100%;
}

.news-cnt .news .news-item {
    width: auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 14.2px 0 rgba(0, 0, 0, 0.24);
    overflow: hidden;
    max-height: 445px;
    transition: all 0.3s;
    background-color: #fff;
    margin-bottom: 0px;
    margin-top: 10px;
}

.news-cnt .news.news-page .news-item.news-page-item {
    width: 100%;
}

.news-cnt .news.news-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    width: 100%;
}

.news-cnt .news .news-item:hover {
    /* box-shadow: 0 0 14.2px 0 rgba(0, 0, 0, 0.4); */
    margin-bottom: 10px;
    margin-top: 0px;
}

.news-cnt > .link-cnt span {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.news-cnt > .link-cnt > svg {
    margin-left: 2px;
    margin-right: 0;
    transition: all 0.3s;
}

.news-cnt > .link-cnt:hover > svg {
    margin-right: 4px;
    margin-left: 0;
}

.news-cnt > .link-cnt:hover {
    gap: 5px;
}

/* .hero-left {
    overflow: hidden !important;
  } */

.news-cnt .news .news-item:hover .news-context .link-cnt {
    gap: 5px;
}

.news-cnt .news .news-item:hover .news-context .link-cnt svg {
    fill: var(--secondary-color);
}

.news-cnt .news .news-item .news-img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* border-radius: 24px; */
    aspect-ratio: 340/196;
}

.news-cnt .news .news-item .news-img img {
    width: 100%;
    transition: all 0.3s;
    height: 100%;
    object-fit: cover;
}

.news-cnt .news .news-item:hover .news-img img {
    /* width: 110%;
    height: 110%; */

    transition: all 0.3s;
}

.news-cnt .news .news-item .news-context {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.news-cnt .news .news-item .news-context .news-title h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--title-color);
    text-overflow: ellipsis;
    font-size: 16px;
     letter-spacing: -2px;
}

.news-cnt .news .news-item .news-context .news-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-cnt .news .news-item .news-context .news-date span {
    color: #9d9d9d;
    font-family: var(--yekan);
    font-weight: 320;
    line-height: 1;
    margin-bottom: -3px;
    font-size: 0.85rem;
}

.news-cnt .news .news-item .news-context .news-date img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.news-cnt .news .news-item .news-context .news-desc p {
    display: -webkit-box;
    color: var(--text-color);
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.header-cnt .header-left .header-list .header-item > a {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s;
}

.header-cnt .header-left .header-list .header-item > a:hover {
    opacity: 1;
}

.header-cnt .header-line1 {
    width: 0.5px;
    height: 24px;
    background-color: var(--text-color);
    opacity: 50%;
}

.mobile-lang {
    padding-left: 20px;
    margin: 15px 0;
    border-left: 1px solid var(--text-color);
}

/* footer */

.footer-cnt.main-page {
    background-color: #fff;
}



.footer-bg {
    background:var(--primary-color);
    background-image: linear-gradient(to top, var(--primary-color) 0%, #2121216b 100%);
    border-radius: 28px;
  
}

.footer-vector {
    position: absolute;
    width: calc(100% + 2px);
    /* height: 10%; */
    right: -1px;
    left: -1px;
    top: -4px;
}

.footer-vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-cnt .footer {
    padding: 90px  80px;
    display: flex;
    flex-direction: column;
    position: relative;
    aspect-ratio: 791/210;
    justify-content: flex-end;
}

.footer-bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
}

.footer-cnt .footer .footer-logo {
    width: 200px;
    display: flex;
}

.footer-cnt .footer .footer-logo img {
    width: 100%;
}

.footer-cnt .footer .footer-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-cnt .footer .footer-content .footer-col {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-cnt .footer .footer-content .footer-col.first-col {
    align-items: center;
    /* padding-top: 120px; */
}

.footer-cnt .footer .footer-content .footer-col:not(.first-col) {
    /* padding-top: 120px; */
}

.footer-cnt .footer .footer-content .footer-col.center-col {
    width: 18%;
    min-width: 200px;
}

.footer-cnt .footer .footer-content .footer-col p {
    color: #fff;
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    text-align: justify;
    font-size: 15px;
    letter-spacing: -1px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.8;
}

.footer-cnt .footer .footer-content .footer-col .footer-list-heading {
    margin-bottom: 10px;
}

.footer-cnt .footer .footer-content .footer-col .footer-list-heading h5 {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.footer-cnt .footer .footer-content .footer-col .footer-list-cnt {
    display: flex;
    justify-content: space-between;
}

.footer-cnt .footer .footer-content .footer-col .footer-list {
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    row-gap: 16px;

    /* max-height: 145px; */
    width: fit-content;
}

.footer-cnt .footer .footer-content .footer-col .footer-list li {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: #fff;
    font-size: 16px;
    /* letter-spacing: -0.48px; */
    display: flex;
    gap: 16px;
    width: fit-content;
}

.footer-cnt .footer .footer-content .footer-col .footer-list li p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
}

.footer-cnt .footer .footer-content .footer-col .footer-list li a {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: #fff;
    font-size: 15px;
    letter-spacing: -0.48px;
    font-weight: 400;
    /* direction: ltr; */
    transition: all 0.3s;
    display: flex;
}

/* 
.footer-cnt .footer .footer-content .footer-col .footer-list li a svg {
    fill: #fff;
} */

.footer-cnt .footer .footer-content .footer-col .footer-list li a:hover {
    opacity: 0.8;
}

.footer-cnt .footer .footer-content .footer-col .footer-list li a:hover {
    opacity: 0.8;
}

.footer-cnt .footer .footer-content .footer-col .footer-list li .footer-line {
    width: 1px;
    height: 100%;
    background-color: #6b85d2;
}

.footer-cnt .footer-bottom {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding-left: 133px;
    padding-right: 133px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.footer-cnt .footer-bottom span {
    font-family: var(--yekan);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    font-variation-settings: "dots" 1;
}

.footer-cnt .footer-bottom .adrian {
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    margin-right: auto;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-cnt .footer-bottom .adrian:hover {
    opacity: 1;
}

.footer-cnt .footer-bottom .adrian span {
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0.3s;
    font-weight: 500;
    /* transform: translateX(74px); */
}

.footer-cnt .footer-bottom .adrian:hover span {
    opacity: 1;
    transform: translateX(64px);
}

.footer-cnt .footer-bottom .adrian .adrian-logo {
    height: 35px;
    position: absolute;
    width: 57px;
    height: 25px;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translate(0, -50%);
}

.footer-cnt .footer-bottom .adrian .adrian-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-cnt .collapse-icon,
.header-cnt .nav-close-icon {
    display: none;
    cursor: pointer;
}


.header-cnt.is-menu-collapsed .header-right .header-list {
    display: none;
}

.header-cnt.is-menu-collapsed .collapse-icon {
    display: flex;
    gap: 8px;
}

.collapse-icon img,
.nav-close-icon img {
    width: 100%;
}

.collapsible .collapse-content {
    position: fixed;
    transition: all 0.3s;
    height: 0;
    background-color: #fff;
    overflow: hidden;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.collapsible.collapsible--expanded .collapse-content {
    height: calc(100dvh - 80px);
    padding-top: 30px;
    box-shadow: inset 0 10px 10px -3px #bbbbbb28;
}

.collapsible .collapse-content .mobile-header-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collapsible .collapse-content .mobile-header-list .mobile-header-item a {
    color: var(--primary-color);
    font-size: 1rem;
}

.collapsible .collapse-content .mobile-contact-cnt {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-self: center;
    gap: 16px;
}

.collapsible .collapse-content .mobile-contact-cnt .mobile-contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.collapsible
    .collapse-content
    .mobile-contact-cnt
    .mobile-contact-section
    .mobile-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.collapsible
    .collapse-content
    .mobile-contact-cnt
    .mobile-contact-section
    .mobile-contact-row
    .vertical-line {
    margin-bottom: 5px;
    width: 1px;
    height: 12px;
    display: flex;
    background-color: #a1a1a1;
}

.collapsible
    .collapse-content
    .mobile-contact-cnt
    .mobile-contact-section
    .mobile-contact-row
    span {
    color: var(--secondary-color);
}

.collapsible
    .collapse-content
    .mobile-contact-cnt
    .mobile-contact-section
    .mobile-contact-row
    a {
    color: var(--text-color);
    direction: ltr;
}

.menu-btn-1 {
 
    cursor: pointer;
    transform: scale(0.85);
}

.menu-btn-1 .icon-container {
    position: relative;
       height: 28px;
    width: 32px;
}

.menu-btn-1 p {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}



.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
    background: var(--primary-color);
    border-radius: 3px;
    content: "";
    position: absolute;
    width: 32px;
    height: 3px;
    margin-top: 13px;

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.menu-btn-1 span::before {
    margin-top: -10px;
}

.menu-btn-1 span::after {
    margin-top: 10px;
}

.menu-btn-1.active span {
    background: transparent;
}

.menu-btn-1.active span::before {
    margin-top: 0;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn-1.active span::after {
    margin-top: 0;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* contact us page */

.bread-cnt {
    background-image: url(../img/bread-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 125px;
    border-radius: 32px;
    height: 270px;
}

.bread-content {
    height: 100%;
    justify-content: center;
    background:var(--primary-color);
    background-image: linear-gradient(to top, var(--primary-color) 0%, #2121216b 100%);
    border-radius: 32px;
}

.bread-cnt .bread-content .heading-cnt h3 {
    color: #fff;
}

.bread-cnt .bread-content .heading-cnt h5 {
    color: #fff;
}

.bread-cnt .bread-content a {
    color: #fff;
}

.bread-cnt .bread-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bread-cnt .bread-content .bread-list {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.bread-cnt .bread-content .bread-list a,
.bread-cnt .bread-content .bread-list li {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    font-weight: 320;
    font-size: 12px;
    display: flex;
}

.contact-cnt {
    display: flex;
    gap: 24px;
    padding-top: 26px;
}

.contact-cnt .contact-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 40px;
    height: 100%;
}

.contact-cnt .contact-right .contact-right-top {
    background-color: #f4f5f7;
    border-radius: 32px;

    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 42px 36px;
}

.contact-cnt .contact-right .contact-right-top .contact-info-box {
    display: flex;
    flex-direction: column;
    column-gap: 16px;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 0.5em;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text
    .phone-line {
    background-color: var(--secondary-color);
    /* height: 100%; */
    width: 1px;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text
    a {
    display: flex;
    direction: ltr;
    width: fit-content;
    height: fit-content;
    font-family: var(--yekan);
    transition: all 0.3s;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text.social
    a {
    background-color: var(--primary-color);
    aspect-ratio: 1/1;
    width: 40px;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 10px;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text.navigation
    a {
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text.navigation
    a
    img {
    aspect-ratio: 1/1;
    width: 40px;
    display: block;
    object-fit: cover;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text.social
    a
    svg {
    background-color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-text
    a:hover {
    opacity: 0.8;
}

.contact-cnt
    .contact-right
    .contact-right-top
    .contact-info-box
    .contact-info-title {
    font-size: 20px;
}

.contact-cnt .contact-left .contact-form .contact-form-input {
    font-size: 20px;
    font-family: var(--yekan);
}

.contact-cnt .contact-left .contact-form .contact-form-input::placeholder {
    font-size: 16px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.contact-cnt .contact-right .contact-right-bottom {
    background-color: #fff;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.contact-cnt .contact-right .contact-right-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;

    pointer-events: none;
}

.contact-cnt .contact-right .contact-right-bottom iframe {
    height: 100%;
    width: 100%;
}

.contact-cnt .contact-left {
    width: 50%;
    background-color: #f4f5f7;
    border-radius: 32px;
    padding: 36px 72px;
}

.contact-cnt .contact-left .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.contact-cnt .contact-left .contact-form .contact-form-input {
    padding: 16px;
    border-radius: 16px;
    background-color: #fff;
    width: 100%;
}

.contact-cnt .contact-left .contact-form .contact-form-input::placeholder {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: rgba(156, 170, 180, 1);
    font-weight: 325;
}

.contact-cnt .contact-left .contact-form .contact-form-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex: 1;
    width: 100%;
}

.contact-cnt .contact-left .contact-form .captcha {
    display: flex;
    gap: 1px;
    flex: 1;
    align-items: center;
    width: 100%;
}

.contact-cnt .contact-left .contact-form .button {
    margin-right: auto;
}

/* about page */

.product-cnt .product-slider {
    gap: 44px;
}

.product-slider .slick-dots {
    display: flex !important;
    margin: 0 auto;
    gap: 8px;
    background-color: rgb(217, 223, 226);
    padding: 8px 16px;
    border-radius: 112px;
}

.product-slider .slick-dots li {
    display: flex;
}

.product-slider .slick-dots li button {
    font-size: 0;
    text-indent: -999;
    border-radius: 50%;
    background-color: #fff;
    height: 8px;
    width: 8px;
    padding: 0;
    cursor: pointer;
}

.product-slider .slick-dots li.slick-active button {
    width: 36px;

    position: relative;
    z-index: 2;
    border-radius: 24px;
}

.product-slider .slick-dots li.slick-active button:after {
    background-color: var(--secondary-color);
    content: "";
    height: 8px;
    bottom: 0px;
    width: 100%;
    right: -1px;
    z-index: 5;
    border-radius: 24px;
    position: absolute;
    transform-origin: right;
    transform: scaleX(0);
    animation: dotFull-x 4s forwards;
    -webkit-font-smoothing: antialiased;
}

@keyframes dotFull-x {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.honors-cnt,
.team-cnt {
    background-color: #f4f5f7;
}

.honors-cnt .honors-slider,
.team-cnt .team-slider {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.honors-cnt .honors-slider .honors-item,
.team-cnt .team-slider .team-item {
    /* width: 70% !important; */
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}

.honors-cnt .honors-slider .honors-item img {
    max-height: 280px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.honors-cnt .honors-slider .honors-item .honors-img-cnt,
.team-cnt .team-slider .team-item .team-img-cnt {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 12px;
}

.honors-cnt .honors-slider .honors-item .honors-title,
.team-cnt .team-slider .team-item .team-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -2px;
}

.honors-cnt .honors-slider .honors-item .honors-role,
.team-cnt .team-slider .team-item .team-role {
    color: var(--text-color);
    font-family: var(--yekan);
}

.honors-cnt .honors-slider .honors-item .honors-img-cnt img,
.team-cnt .team-slider .team-item .team-img-cnt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honors-cnt .honors-slider .slick-dots,
.team-cnt .team-slider .slick-dots,
.prior-cnt .prior.home-services .slick-dots,
.customers-cnt .customers-slider .slick-dots {
    display: flex !important;
    gap: 8px;
    margin: 12px auto;
    background-color: #d9dfe2;
    padding: 8px 16px;
    border-radius: 112px;
    width: fit-content;
}

.honors-cnt .honors-slider .slick-dots li,
.team-cnt .team-slider .slick-dots li,
.prior-cnt .prior.home-services .slick-dots li,
.customers-cnt .customers-slider .slick-dots li {
    display: flex;
}

.honors-cnt .honors-slider .slick-dots li button,
.team-cnt .team-slider .slick-dots li button,
.prior-cnt .prior.home-services .slick-dots li button,
.customers-cnt .customers-slider .slick-dots li button {
    text-indent: -999;
    font-size: 0;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #fff;
    padding: 0;
    cursor: pointer;
}

.honors-cnt .honors-slider .slick-dots li.slick-active button,
.team-cnt .team-slider .slick-dots li.slick-active button,
.prior-cnt .prior.home-services .slick-dots li.slick-active button,
.customers-cnt .customers-slider .slick-dots li.slick-active button {
    position: relative;
    width: 36px;
    border-radius: 24px;
    overflow: hidden;
}

.honors-cnt .honors-slider .slick-dots li.slick-active button:after,
.team-cnt .team-slider .slick-dots li.slick-active button:after,
.prior-cnt .prior.home-services .slick-dots li.slick-active button:after,
.customers-cnt .customers-slider .slick-dots li.slick-active button:after {
    background-color: var(--secondary-color);
    content: "";
    height: 8px;
    bottom: 0px;
    width: 100%;
    right: -1px;
    z-index: 5;
    border-radius: 24px;
    position: absolute;
    transform-origin: right;
    transform: scaleX(0);
    animation: dotFull-x 4s linear forwards;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
}

.honors-cnt .honors-slider .slick-slide > div,
.team-cnt .team-slider .slick-slide > div {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.history-cnt .heading-cnt {
    margin-bottom: -150px;
    position: relative;
    z-index: 2;
}

.history {
    position: relative;
}

.timeline-content .timeline-content-item {
}

.timeline-content .timeline-content-item .timeline-img-cnt {
    overflow: hidden;
    height: 700px;
    /* border-radius: ; */
}

.timeline-content
    .timeline-content-item
    .timeline-img-cnt
    .timeline-img-shadow {
    background: radial-gradient(transparent 50%, #fff 70%, #ffffff 100%);
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: -2px;
    left: 0;
}

.timeline-content .timeline-content-item .timeline-img-cnt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content .timeline-content-item .timeline-context {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 50%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 132px;
    padding-left: 80px;
    gap: 16px;
}

.timeline-content
    .timeline-content-item
    .timeline-context
    .timeline-item-title
    h5 {
    font-size: 20px;
    color: var(--title-color);
}

.timeline-content .timeline-content-item .timeline-context .timeline-item-text {
    overflow: hidden;
}

.timeline-content
    .timeline-content-item
    .timeline-context
    .timeline-item-text
    p {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    /* line-height: 24px; */
    font-size: 16px;
    font-weight: 320;
    color: var(--text-color);
}

.timeline-content .timeline-content-item .timeline-item-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timeline-content
    .timeline-content-item
    .timeline-item-title
    .timeline-title-shape {
    background-color: var(--secondary-color);
    height: 8px;
    width: 8px;
    border-radius: 50%;
}

.timeline {
    position: absolute !important;
    z-index: 10;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    margin: auto;
    display: flex !important;
    align-items: center;
}

.timeline .timeline-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.7s;
    margin: 0 auto;
    width: fit-content !important;
}

.timeline .slick-center.slick-slide > div .timeline-item {
    width: fit-content !important;
    margin: 0 auto;
}

.timeline .slick-center.slick-slide > div .timeline-item .timeline-item-year {
    font-size: 40px;
    color: #fff;
}

.timeline .timeline-item .timeline-item-year {
    display: flex;
    align-items: center;
    color: #233ba7;
    justify-content: center;
    font-size: 20px;
}

.timeline .timeline-item .timeline-item-shape {
    height: 16px;
    width: 16px;
    background-color: #233ba7;
    border-radius: 50%;
}

.timeline .slick-center.slick-slide > div .timeline-item {
    background-color: #233ba7;
    padding: 72px 24px;
    border-radius: 585px;
}

.hero-slider [data-animation-in] {
    opacity: 0;
}

.timeline .slick-center.slick-slide > div .timeline-item .timeline-item-shape {
    display: none;
}

.history .timeline-line {
    position: absolute;
    width: 50%;
    left: 0;
    height: 2px;
    background-color: #bfcaed;
    z-index: 10;
    top: 50%;
    margin-top: 13px;
}

.collapsible1 {
    height: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.collapsible1.collapsible--expanded1 {
    height: fit-content;
}

.timeline .slick-track {
    display: flex !important;
    align-items: center;
}

/* jadid  */

.single-pro-img-cnt {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-top: 50px;
}

.single-pro-img-cnt .gallery-img-main {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 400px;
}

.single-pro-img-cnt .gallery-img-main img {
    /* max-height: 450px; */
    width: 100%;
    object-fit: contain;
}

.single-pro-img-cnt .gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-self: flex-start;
    gap: 16px;
    /* width: 20%; */
    flex-wrap: wrap;
    max-height: 400px;
}

.single-pro-img-cnt .single-pro-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 16px;
    height: 100%;
    width: 55%;
    padding-right: 30px;
    border-right: 1px solid rgba(167, 167, 167, 0.397);
}

.single-pro-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 16px;
    height: 100%;
}

.single-pro-img-cnt .gallery .gallery-img-con {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.single-pro-img-cnt .gallery .gallery-img-con img {
    width: 100%;
    object-fit: cover;
}

.single-pro-desc h4 {
    color: var(--title-color);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 900;
}

.single-pro-desc p {
    color: var(--text-color);
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: var(--text-color);
    font-size: 16px;
    letter-spacing: -0.48px;
}

.single-pro-table-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(167, 167, 167, 0.397);
    width: fit-content;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.single-pro-table-cnt .table-heading {
    border-bottom: 1px solid rgba(167, 167, 167, 0.397);
    /* height: px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px 24px 0 0;

    width: 100%;
    background-color: #efefef;
}

.single-pro-table-cnt .table-heading h4 {
    color: var(--title-color);
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.single-pro-table {
    display: flex;
    flex-direction: row;
}

.single-pro-table .table-col {
    display: flex;
    flex-direction: column;
}

.single-pro-table .table-col > div {
    width: 300px;
}

.table-row-title {
    color: var(--title-color);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 700;
}

.table-info {
    color: var(--text-color);
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: var(--text-color);
    font-size: 16px;
}

.table-info,
.table-row-title {
    border-bottom: 1px solid rgba(167, 167, 167, 0.397);
    padding: 10px 20px;
    height: 60px;
    display: flex;
    letter-spacing: -0.48px;
    align-items: center;
    justify-content: flex-start;
}

.single-pro-table .table-col .table-row-title:last-child {
    border-bottom: none;
}

.single-pro-table .table-col .table-info:last-child {
    border-bottom: none;
}

.single-pro-table .table-line {
    height: 100%;
    width: 1px;
    background-color: var(--text-color);
}

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

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

#forget_overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #fff;
    opacity: 0.9;
    z-index: 99999999;
}

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.myloader,
.myloader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4.05em;
}

.myloader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: 0.8em solid #202c5e;
    border-left: 0.8em solid rgba(204, 204, 204, 1);
    animation: spin 1.1s infinite linear;
}

.text-center {
    direction: rtl;
    display: flex;
    justify-content: center;
}

.border-red {
    border: 1px solid red !important;
}

.small-container-x.container-y p {
    font-size: 16px;
    letter-spacing: -0.48px;
    color: #4f4f4f;
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
}

.header-item {
    position: relative;
}

.header-item:hover .dropdown-menu {
    background-color: #f3f6ff;
    display: flex;
    margin-top: 0;
}

.header-item:hover .dropdown-menu .nav-item {
    display: flex;
    align-items: center;
}

.header-item:hover .dropdown-menu .nav-item a span {
  font-size: 14px;
}

.header-item:hover .dropdown-menu .nav-item .nav-item-bullet {
    transition: all 0.3s;
    border-radius: 50%;
    width: 5px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--primary-color);
}

.header-item:hover .dropdown-menu .nav-item:hover .nav-item-bullet {
    background-color: var(--secondary-color);
}

.dropdown-menu {
    position: absolute;
    top: 30px;

    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 1.25rem 1rem;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.062);
    border-radius: 0.75rem;

    flex-direction: column;
    gap: 12px;
}

.blog-content {
    padding-inline: 16px;
    font-size: 16px;

}

.blog-content p {
    font-size: 16px;

}

.blog-content img {
    max-width: 100%;
    object-fit: cover;
}

.footer-social-cnt a {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 5px 5px 6px 6px; */
    color: #b4bed5;
    width: 40px;
    height: 40px;
    transition: all 0.3s;
    border-radius: 12px;
}

.content-sec * {
    font-family: var(--yekan) !important;
    font-variation-settings: "dots" 1 !important;
    color: var(--text-color) !important;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec h6 {
    line-height: 1.5 !important;
    /* font-weight: bold; */
}

.content-sec h2 {
    font-size: 1.5rem !important;
    margin-block-end: 0.75em;
}

.content-sec h3 {
    font-size: 1.3rem !important;
    margin-block-end: 0.75em;
}

.content-sec h4 {
    font-size: 1.25rem !important;
    margin-block-end: 0.75em;
}

.content-sec h5 {
    font-size: 1.15rem !important;
    margin-block-end: 0.75em;
}

.content-sec h6 {
    font-size: 1rem !important;
    margin-block-end: 0.75em;
}

.content-sec p {
    margin-block-end: 0.5em !important;
}

.content-sec img {
    object-fit: cover;
    max-width: 100%;
    margin: 18px auto;
    display: block;
    border-radius: 12px;
}

.content-sec ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: unset !important;
    padding-right: 20px !important;
    margin: 12px 0 !important;
}

.content-sec ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 1rem !important;
    margin: 12px 0 !important;
}

.content-sec ol li {
    line-height: 1.7 !important;
    list-style: auto !important;
}

.content-sec ul li {
    position: relative !important;
    padding-right: 5px !important;
    margin-left: 0 !important;
    line-height: 1.7 !important;
    list-style: disc !important;
}

.portals-cnt {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    direction: rtl;
}

.portal-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border-radius: 20px;
    background-color: var(--btn-color);
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.25s ease;
}

.portal-box:hover {
    box-shadow: 0 16px 32px -12px
        color-mix(in srgb, var(--btn-color) 55%, transparent);
    transform: translateY(-4px);
}

@supports (color: color-mix(in srgb, red 80%, black 20%)) {
    .portal-box:hover {
        background-color: color-mix(in srgb, var(--btn-color) 85%, black 15%);
    }
}

@supports not (color: color-mix(in srgb, red 80%, black 20%)) {
    .portal-box:hover {
        filter: brightness(0.92);
    }
}

/* آیکون */
.portal-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transition: transform 0.35s ease;
}

.portal-box:hover .portal-icon {
    transform: rotate(-6deg) scale(1.05);
}

/* متن */
.portal-text {
    flex: 1;
    min-width: 0;
}

.portal-text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
     letter-spacing: -2px;
}

.portal-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* فلش سمت چپ */
.portal-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transition: transform 0.35s ease;
    transform: scaleX(-1);
}

.portal-box:hover .portal-arrow {
    transform: translateX(-4px) scaleX(-1);
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .portals-cnt {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .portal-box {
        padding: 20px;
        border-radius: 16px;
    }

    .portal-icon {
        width: 48px;
        height: 48px;
    }

    .portal-text h3 {
        font-size: 15px;
    }

    .portal-text p {
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .portal-text p {
        display: none;
    }

    .portal-arrow {
        display: none;
    }
}

.faq-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    /* border-top: 1px solid #ececec; */
}

.faq-item {
    border-bottom: 1px solid #ececec;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 8px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
    transition: color 0.3s ease;
     letter-spacing: -2px;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f4f5f7;
    color: #1c1c1c;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-icon svg path:last-child {
    transition: opacity 0.3s ease;
}


.faq-item.is-open .faq-icon {
    background: color-mix(in srgb, var(--primary-color) 12%, transparent);
    color: var(--primary-color);
    transform: rotate(135deg);
}

.faq-item.is-open .faq-question {
    color: var(--primary-color);
}


.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-item.is-open .faq-answer-wrap {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    min-height: 0;
}

.faq-answer > * {
    margin-bottom: 12px;
    padding: 0 4px 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #767676;
    font-weight: 600;
}

.prior-cnt .prior .slick-arrow.slick-disabled {
    display: none;
}

/* chat section */

.quick-menu {
    /* position: absolute; */
    padding: 24px;
    border-radius: 20px;
    background-color: var(--primary-color);
    width: 204px;
    padding-bottom: 44px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-menu-vector {
    position: absolute;
    bottom: -20px;
    left: 0px;
    height: 26px;
    display: flex;
    width: 100%;
    padding-bottom: 5px;
    color: var(--primary-color);
}

.quick-menu-vector svg {
    height: 100%;
    object-fit: contain;
    margin-left: 24px;
    margin-right: auto;
}

.quick-menu .quick-menu-item {
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.quick-menu .quick-menu-item:hover {
    margin-right: 8px;
}

.quick-menu .quick-menu-item.collapsible--expanded:hover {
    margin-right: 0px;
}

.chat-cnt {
    position: fixed;
    bottom: 45px;
    left: 12px;
    display: flex;
    flex-direction: column-reverse;
    z-index: 10;
    opacity: 1;
    transition:
        opacity 0.6s,
        z-index 1s;
}

.chat-cnt .chat-icon {
    display: flex;
    /* height: 55px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 16px;
    /* box-shadow: 0 0 4.3px rgba(175, 192, 12, 1); */
    margin-right: auto;
    margin-left: 21px;
}

.chat-cnt .chat-icon span {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
}

.chat-cnt .quick-access-icon {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.chat-cnt .quick-access-icon img {
    height: 100%;
    width: 100%;
    color: #fff;
    /*margin-top: 12px;*/
}

.chat-cnt .quick-menu-desc {
    position: absolute;
    transition: all 0.3s;
    opacity: 0;
    bottom: 90px;
    left: 0;
    visibility: hidden;
}

.quick-menu-item.direction {
    position: absolute;
    overflow: hidden;
    height: 44px;
    transition: all 0.3s;
    width: 100%;
    bottom: 0;
    right: 0;
}

.quick-menu-item.direction span {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.quick-menu-item.direction span svg {
    stroke: #fff;
    transition: all 0.3s;
}

.quick-menu-item.direction:not(.collapsible--expanded) span svg {
    opacity: 0;
    visibility: hidden;
}

.quick-menu-item.direction.collapsible--expanded {
    height: 292px;
    background-color: var(--primary-color);
    width: 100%;
    right: 0;
    border-radius: 20px;
    padding: 20px;
}

.quick-menu-item.direction:not(.collapsible--expanded) {
    padding: 0 20px;
}

.quick-menu-item.direction .direc-icons-cnt {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 25px;
    opacity: 0;
    transition: all 0.2s;
    /* padding: 0 20px; */
}

.quick-menu-item.direction.collapsible--expanded .direc-icons-cnt {
    opacity: 1;
}

.quick-menu-item.direction .direc-icons-cnt a {
    /* width: 38px; */
    height: 38px;
    padding: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a span {
    color: #fff;
}

.quick-menu-item.direction .direc-icons-cnt a:hover {
    margin-right: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a img {
    height: 100%;
    object-fit: contain;
    width: fit-content;
}

.chat-cnt.hide {
    opacity: 0;
    z-index: -1;
}

.chat-cnt:hover .quick-menu-desc {
    opacity: 1;
    bottom: 100px;
    visibility: visible;
}

.media-gallery {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
}

.media-gallery .media-slide {
    width: 32%;
    border-radius: 12px;
}

.media-gallery .media-slide .media-slide-img img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 16/9;
}

.files {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background-color: #f4f5f7;
    border-radius: 20px;
    transition: all 0.3s;
}

.file-item:hover {
    background-color: #eef1f5;
}

.file-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    /* lets long titles/desc truncate instead of pushing the button out */
}

.file-title {
    color: var(--title-color);
    font-size: 16px !important;
    font-weight: 700;
}

.file-desc {
    font-family: var(--yekan);
    font-variation-settings: "dots" 1;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: -0.3px;
}

.file-download {
    flex-shrink: 0;
    /* button never gets squeezed, always fully visible */
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-download svg {
    z-index: 2;
}

.preloader {
    background: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 999;
}

.preloader.hide {
    display: none;
}

.loader {
    --size: 1px;

    width: calc(48 * var(--size));
    height: calc(48 * var(--size));
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: calc(3 * var(--size)) solid var(--primary-color);
    animation: prixClipFix 2s linear infinite;
}

.loader::after {
    inset: calc(8 * var(--size));
    transform: rotate3d(90, 90, 0, 180deg);
    border-color: var(--secondary-color);
}

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

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

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }

    75%,
    100% {
        clip-path: polygon(
            50% 50%,
            0 0,
            100% 0,
            100% 100%,
            100% 100%,
            100% 100%
        );
    }
}

.customers-cnt .heading-cnt {
    margin-bottom: 12px;
}

.customers-cnt .customers-slider {
    padding: 16px 0;
}
.customers-cnt .customers-slider .customers-item {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.customers-cnt .customers-slider .customers-item img {
    max-width: 100px;
    aspect-ratio: 1/1;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* filter: grayscale(100%); */
}

/* .customers-cnt .customers-slider .customers-item:hover img {
    filter: grayscale(0%);

} */

.customers-cnt .customers-slider .customers-item p {
    width: 100px;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.blog-image {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    display: block;
    height: auto;
    min-width: 50%;
}


.empty-section {
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #757575;
}

.empty-section svg {
    width: 64px;
    height: 64px;
}

.empty-section p {
    text-align: center;
    font-size: 15px;
}


.pgn-cnt {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    width: 100%;
}

.pgn-cnt .pgn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;

}
.pgn-cnt .pgn .pgn-list {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.pgn-cnt .pgn .pgn-list li a {
    padding: 5px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;

}

.pgn-cnt .pgn .pgn-list li a:hover {
    padding: 5px;
    border-radius: 8px;
    background-color: #e8e8e8;
    color: var(--primary-color);
}

.pgn-cnt .pgn .pgn-list li a.active-page {
    padding: 5px;
    border-radius: 8px;
    color: #fff;
    background-color: var(--primary-color);
}

.pgn-cnt .pgn .pgn-btn {
    padding: 5px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;

}

.pgn-cnt .pgn .pgn-btn:hover {
    padding: 5px;
    background-color: #e8e8e8;
    fill: var(--primary-color);

}
