@import url('../css/css-en.css');
@import url('../css/root.css');

@import url('../css/fontawesome.css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    direction: ltr;
    font-family: var(--font-iransans);
}

a {
    text-decoration: none;
}

/* #region Modal*/
.callAction-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    overflow-y: scroll;
    overflow-x: hidden;
}

.callAction-modal-body {
    background-color: #fff;
    width:80%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
}

    .callAction-modal-body h3 {
        font-size: 14px;
    }

.callAction-modal-close {
    text-align: left;
}

.display-none-callAction {
    display: none;
}

.display-block-callAction {
    display: block;
}
.callAction-modal fieldset{
    border:none;
}
.callAction-modal .btn {
    border: none;
    display: block;
    width: fit-content !important;
    margin: 20px auto;
    background-color: var(--color-green-primary);
    color: #fff;
    padding: 16px 30px;
    cursor: pointer;
    border-radius: 4px;
     font-family: var(--font-iransans-bold);
}
    .callAction-modal .btn:hover {
        background-color: var(--color-darkgreen-primary);
    }
/* #endregion*/


/* #region common */
.breadcrumb {
    padding: 50px 20px 20px;
    width: 100%;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb a {
    font-size: 12px;
    color: var(--color-darkgreen-primary);
}

.breadcrumb a::after {
    font-family: "FontAwesome";
    content:"\f105";
    font-weight: 800;
    margin: 0 4px;
}

.breadcrumb li:last-child a::after {
    content: "";
}

.pagination {
    width: calc(96vw - 300px);
    border-top: 1px solid rgba(94, 94, 94, 0.2);
    margin: auto;
    overflow-x: auto;
    padding: 8px 0;
}

.pagination ul {
    display: flex;
    padding: 16px 8px;
    gap: 8px;
}

.pagination li {
    list-style: none;
    display: inline-block;
}

.pagination a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    background-color: var(--color-darkgreen-primary);
    color: #fff;
    font-size: 12px;
    transition: all 400ms;
}

.pagination li.active a {
    background-color: var(--color-green-secondary);
}

.pagination li:hover:not(.active) a {
    background-color: var(--color-green-primary);
}

.btn-primary {
    outline: none;
    border: none;
    display: inline-block;
    font-family: var(--font-iransans);
    padding: 8px 16px;
    background-color: var(--color-green-secondary);
    font-size: 12px;
    border-radius: 4px;
    color: var(--color-darkgreen-primary);
    transition: all 400ms;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-darkgreen-secondary);
    color: var(--color-wight);
}

.btn-secondary {
    display: inline-block;
    outline: none;
    border: none;
    font-family: var(--font-iransans);
    cursor: pointer;
    padding: 8px 16px;
    background-color: var(--color-darkgreen-primary);
    font-size: 12px;
    border-radius: 4px;
    color: var(--color-wight);
    transition: all 400ms;
}

.btn-secondary:hover {
    background-color: var(--color-green-secondary);
    color: var(--color-wight);
}

.text-danger {
    font-family: var(--font-iransans-light);
    font-size: 10px;
    color: red;
    padding: 0 8px;
    display: block;
}

.captcha {
    display: flex;
    flex-direction: row-reverse;
    place-items: center;
}

.captcha input {
    outline: none;
    border: 1px solid rgba(94, 94, 94, 0.6);
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-iransans);
    margin: 0 2px;
    border-radius: 2px;
    width: 80px;
}

.captcha .captchaimg {
    font-size: 14px;
}

.captcha div {
    cursor: pointer;
    color: #6b73ff;
    text-align: center;
    line-height: 30px;
    padding: 0 4px;
    display: flex;
    flex-direction: row-reverse;
    place-items: center;
}

/* #endregion */


/* #region Header*/
.header-top {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-darkgreen-secondary);
    padding: 8px;
    padding-bottom: 40px;
    position: relative;
}

.header-top .fa {
    font-size: 16px;
}

.header-top a,
.header-top .fa-phone,
.header-top .fa-map-marker-alt {
    color: var(--color-wight);
    font-size: 12px;
}
.header-top .fa-phone {
        transform: rotate(90deg);
    }
.header-top p {
    color: var(--color-wight);
    font-size: 12px;
}

.header-top li {
    list-style: none;
    display: inline-block;
    margin: 0 8px;
}

.menu-toggle {
    display: none;
}

.menu {
    width: 96%;
    position: absolute;
    top: 45px;
    left: 2%;
    border-radius: var(--border-radius-4);
    background-color: var(--color-green-primary);
    box-shadow: 0 0 5px var(--color-darkgreen-secondary);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transition: all 600ms;
}

.menu li {
    list-style: none;
    display: inline-block;
    margin: 0 2px;
    position: relative;
}

.menu li a {
    display: flow-root;
    place-items: center;
    line-height: 60px;
    color: var(--color-darkgreen-primary);
    font-size: 14px;
    padding: 0 12px;
    transition: all 300ms;
}

.menu .fa {
    margin-left: 4px;
}

.menu a:hover {
    color: var(--color-wight);
    background-color: var(--color-darkgreen-primary);
}

.menu.menu-sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}

.language-menu {
    position: relative;
    width: 100px;
    display: flow-root;
    line-height: 60px;
    place-items: center;
}

.language-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-green-primary);
    transform: rotateY(90deg);
    transition: all 300ms;
    z-index: 10;

}

.language-menu li {
    display: block;
    margin: 0;
}

.language-menu>a {
    display: flex;
    place-items: center;
    gap: 4px;
    line-height: 60px;
    transition: all 300ms;
    padding: 0 4px;
    font-size: 14px;
    color: var(--color-darkgreen-primary);
}

.language-menu:hover {
    background-color: var(--color-darkgreen-primary);
}

.language-menu:hover a {
    color: var(--color-wight);
}

.language-menu:hover ul {
    transform: rotateY(0);
}

.language-menu li a {
    color: var(--color-wight);
    line-height: 40px;
    padding: 0 4px;
    display: flex;
    place-items: center;
    gap: 4px;
}

.language-menu li:last-child a {
    padding-bottom: 8px;
}

.language-menu img {
    width: 35px;
}
.sub-menu{
    width: 130px;
    position: absolute;
    background-color: var(--color-green-primary);
    transform: rotateX(90deg);
    transition: all 400ms;
}
.sub-menu li{
    margin:0;
    border-bottom: 1px solid rgba(94, 94, 94, 0.2);
    display: block;
}
.sub-menu li:last-child{
    border-bottom: none;
}
.sub-menu li a{
    line-height: 40px;
}
.menu li:hover ul{
    transform: rotateX(0);
}
.sm-sub-menu{
   display: none;
}
/*#endregion*/

/* #region Home Page*/
.home-slider {
    position: relative;
}

.homeslider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    z-index: 8;
    display: flex;
    justify-content: space-between;
}

.homeslider-btn {
    color: var(--color-wight);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 16px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-darkgreen-secondary);
}

.main-slider {
    text-align: center;
    width: 90%;
    overflow: hidden;
}

.section-title ,.contact-call h1,.contact-call h2,.contact-call h3{
    color: var(--color-darkgreen-secondary);
    font-family: var(--font-iransans-medium);
    font-weight: normal;
    font-size: 16px;
    padding: 4px 8px;
    margin: 8px 0 30px;
    position: relative;
    display: inline-block;
}

    .section-title::before, .contact-call h1:before, .contact-call h2:before, .contact-call h3:before {
        content: "";
        width: 60%;
        height: 2px;
        background-color: var(--color-green-secondary);
        position: absolute;
        bottom: -4px;
        border-radius: 1px;
    }

.home-product {
    width: 100%;
    padding: 70px 20px 100px;
    min-height: 400px;
    background-color: #f9f9f9;
}

.homeproduct-slider,
.home-blog-slider {
    position: relative;
    width: 96%;
    margin: auto;
}

.product-list-nav,
.blog-list-nav,
.related-list-nav,
.blog-event-list-nav,
.certificate-list-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
}

.product-list-nav .list-btn,
.blog-list-nav .list-btn,
.related-list-nav .list-btn,
.blog-event-list-nav .list-btn,
.certificate-list-nav .list-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px var(--color-darkgreen-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.product-item {
    box-shadow: 0 0 5px var(--color-darkgreen-secondary);
    border-radius: 4px;
    background-color: var(--color-wight);
    margin: 8px;
}

.product-img {
    position: relative;
    text-align: center;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: transform 400ms;
}

.product-item:hover {
    box-shadow: 0 0 5px var(--color-darkgreen-primary);
}

.product-item :hover img {
    transform: scale(1.25);
}

.product-info {
    padding: 8px 4px;
    border-radius: 0 0 4px 4px;
}

.product-info h2 {
    font-size: 14px;
    text-align: center;
    line-height: 25px;
    font-family: var(--font-iransans);
    font-weight: normal;
    color: var(--color-darkgreen-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-about {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 30px;
    padding: 70px 20px 100px;
}

.about-img {
    overflow: hidden;
    height: 400px;
    border-radius: 5%;
    box-shadow: 0 0 10px rgba(94, 94, 94, 0.8);

}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
    transition: all 400ms;

}

.about-img:hover img {
    transform: scale(1.25);
}

.about-text h1 {
    font-family: var(--font-iransans);
    font-size: 18px;
    font-weight: normal;
    padding: 8px 4px;
}

.about-text p {
    text-align: justify;
    font-size: 13px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-btn {
    text-align: left;
    padding: 16px 4px;
}

.home-blog {
    background-color: #f9f9f9;
    padding: 70px 20px 100px;
}

.home-blog .owl-stage {
    padding: 20px 0;
}

.blog-item {
    display: flex;
    place-items: center;
    gap: 20px;
    padding: 8px;
    border-radius: 16px;
    background-color: #fff;
    transition: all 400ms;
}

.blog-item:hover {
    transform: translateY(-10px);
}

.blog-img img {
    width: 120px;
    border-radius: 25%;
}

.blog-item h2 {
    font-family: var(--font-iransans);
    font-weight: normal;
    font-size: 16px;
    padding: 8px 4px;
}

.blog-text {
    font-family: var(--font-iransans);
    font-size: 13px;
    line-height: 30px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-footer {
    display: flex;
    place-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 8px 4px 0;
    border-top: 1px solid rgba(94, 94, 94, 0.2);
}

.blog-footer p {
    font-size: 10px;
    color: rgba(94, 94, 94, 0.8);
}

.blog-footer .fa {
    margin: 0 4px;
}

.home-category {
    background-color: #fff;
    padding: 70px 20px 100px;

}

.category-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    place-items: center;
    padding: 8px 30px;
    gap: 20px;
}

.category-list a {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: block;
    overflow: hidden;
    transition: all 500ms;
    display: flex;
    flex-direction: column;
    place-items: center;

}

.category-list .category-img {
    height: 160px;
    width: 160px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    place-items: center;
}

.category-list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 500ms;
}

.category-list a h3 {
    font-family: var(--font-iransans);
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    color: var(--color-darkgreen-primary);
    margin: 10px 0;
    line-height: 25px;
}

.category-list a:hover img {
    transform: scale(1.2);
}

.category-first .category-img,
.category-last .category-img {
    width: 100%;
    height: calc(100% - 40px);
}

.category-first h3,
.category-last h3 {
    display: none;
}

.category-first {
    grid-area: 1 / 1 / span 2 /span 2;
}

.category-last {
    grid-area: 2 / 4 / span 2 /span 2;
}


/*#endregion*/

/* #region product */
.product {
    position:relative;
    padding: 10px 20px 100px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px auto;
    gap: 30px;
}
.product.category{
    grid-template-columns:1fr;
}
.product-sort ul {
    display: flex;
    gap: 16px;
}

.product-sort li {
    list-style: none;
}

.product-sort a,
.product-sort span {
    font-size: 12px;
    color: var(--color-darkgreen-primary);
}

.product-list {
    padding: 20px 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:42px 24px;
}
.product.category .product-list{
    grid-template-columns:repeat(5,1fr);
}
.product-list .product-item{
    margin:0;
}
.product-filter {
    border: 1px solid rgba(94, 94, 94, 0.2);
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 70px;
}

.product-filter h4 {
    font-weight: normal;
    color: var(--color-darkgreen-primary);
    font-size: 14px;
    padding: 8px;
}

.product-filter ul {
    padding: 8px 0 0;
    max-height: 500px;
    overflow-y: auto;
}

.product-filter li {
    list-style: none;

    margin-top: 4px;
    padding: 4px 8px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.product-filter li:last-child {
    border-bottom: none;
}

.product-filter li label {
    display: flex;
    cursor: pointer;
    line-height: 35px;
}

.product-filter li span {
    font-size: 12px;
    color: var(--color-darkgreen-primary);
    margin: 0 4px;
}

.product-bottom {
    width: 96%;
    margin: auto;
    padding: 20px 4px 70px;
    text-align: justify;
    font-family: var(--font-iransans-light);
    font-size: 13px;
    line-height: 30px;
}

.product-bottom img {
    max-width: 100%;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    margin: 20px 0;
}

.product-details {
    min-height: 100vh;
    width: 90%;
    margin: auto;
    padding: 10px 0 100px;
    position:relative;
}
.ui-details-admin {
    display: inline-block;
    position: fixed;
    z-index: 999;
    left: -60px;
    top: 170px;
    background-color: #fff;
    box-shadow: 0 0 5px #e0e0e2;
    border-radius: 0 16px 16px 0;
    transition: all 400ms;
}

    .ui-details-admin > a {
        display: inline-flex;
        justify-content: end;
        place-items: center;
        padding: 4px;
    }

    .ui-details-admin .fa-edit {
        width: 40px;
        height: 40px;
        font-size: 14px;
        text-align: center;
        line-height: 40px;
    }

    .ui-details-admin ul {
        display: none;
        position: absolute;
        top: 95%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 0 5px #e0e0e2;
        border-radius: 0 16px 16px 0;
    }

    .ui-details-admin:hover ul {
        display: block;
    }

    .ui-details-admin li {
        display: block;
        width: max-content;
        min-width: 150px;
        padding-right: 4px;
        line-height: 30px;
        margin: 8px 4px;
        text-align: right;
        border-bottom: 1px solid #f7f7f7;
    }

        .ui-details-admin li a {
            display: flex;
            cursor: pointer;
        }

        .ui-details-admin li:last-child {
            border-bottom: none;
        }

    .ui-details-admin:hover {
        left: 0;
        border-radius: 0 16px 0 0;
    }
.ui-details-nextprev {
    display: inline-block;
    position: fixed;
    z-index: 990;
    left:0;
    top: 230px;
    transition: all 400ms;
}
.ui-details-nextprev li{
    display:inline-block;
}
.ui-details-nextprev a{
    display:flex;
    place-items:center;
    font-size:10px;
    line-height:30px;
    padding:0 10px;
    background-color:rgba(94, 94, 94, 0.2);
    color:#444;
}
    .ui-details-nextprev a:hover {
        background-color: rgba(94, 94, 94, 0.6);
    }
.prd-top {
    display: grid;
    gap: 20px;
    grid-template-columns: 40% auto;
    border-bottom: 1px solid rgba(94, 94, 94, 0.2);
}

.product-pictures {
    position: relative;
}

.product-pictures-button {
    position: absolute;
    top: 10px;
    left:10px;
    z-index: 2;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

.product-gallory img {
    width: 100%;
    border-radius: 4px;
}

.product-gallory-thumbnail {
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.product-gallory-thumbnail img {
    width: 70px;
    border-radius: 4px;
    cursor: pointer;
}

.product-card {
    padding: 4px;
    position: relative;
}

.engagment-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100px;
    font-size: 20px;
}

.engagment-nav ul {
    display: flex;
    gap: 20px;
    justify-content: left;
}

.engagment-nav li {
    list-style: none;
    cursor: pointer;
    color: var(--color-darkgreen-secondary);
}

.engagment-nav .fa-heart {
    font-weight: 400;
}

.engagment-nav .fa-heart.active {
    font-weight: 600;
    color: red;
}

.product-card h1 {
    font-family: var(--font-iransans-medium);
    font-size: 18px;
    font-weight: normal;
    color: var(--color-darkgreen-primary);
    padding: 18px 0;
    border-bottom: 1px solid rgba(94, 94, 94, 0.2);
}

.product-card h2 {
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    color: var(--color-darkgreen-secondary);
    padding: 10px 0;
}

.product-card-middle {
    padding: 10px 0;
}

.product-card-middle li {
    list-style: none;
    line-height: 30px;
    margin: 4px;
    font-size: 14px;
    font-family: var(--font-iransans-light);
    text-align: justify;
}

.product-card-middle .fa-seedling {
    color: var(--color-green-primary);
    margin: 0 4px;
}

.product-card-property ol li {
    display: inline-block;
}

.product-card-property ol a {
    color: var(--color-darkgreen-secondary);
}

.product-card-property ol li:after {
    content: "\f104";
    font-family: "FontAwesome";
    font-weight: bold;
    margin: 0 4px;
    font-size: 10px;
    color: var(--color-darkgreen-secondary);
}

.product-card-property ol li:first-child:after,
.product-card-property ol li:last-child:after {
    content: "";
    color: var(--color-darkgreen-secondary);
}

.card-variable-list {
    display: flex;
    gap: 20px;
}

.product-card-price {
    padding-top: 20px;
}

.product-card-price .btn-secondary {
    width: 180px;
    text-align: center;
}

.product-card-order {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    place-items: center;
}

.order-condition {
    font-size: 14px;
    padding: 16px 4px;
}

.order-condition .fa {
    margin: 0 4px;
    color: var(--color-green-secondary);
}

.order-condition span:last-child {
    font-family: var(--font-iransans-light);
}

.order-counter {
    width: fit-content;
    height: fit-content;
    display: inline-flex;
    border: 1px solid rgba(94, 94, 94, 0.2);
    padding: 2px;
    border-radius: 4px;
    gap: 10px;
}

.btn-plus,
.btn-minus {
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.prd-description,
.prd-properties,
.prd-related {
    padding: 30px 0;
    border-bottom: 1px solid rgba(94, 94, 94, 0.2);
}

.prd-description-text {
    font-family: var(--font-iransans);
    font-size: 13px;
    text-align: justify;
    line-height: 30px;

}

.prd-properties ul {
    padding: 0 16px;
}

.prd-properties li {
    display: flex;
    gap: 20px;
    place-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    line-height: 30px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.prd-properties li:last-child {
    border-bottom: none;
}

.prd-properties li span:first-child {
    font-size: 14px;
}
    .prd-properties li span:last-child {
        font-size: 13px;
        color: var(--color-darkgreen-primary);
        text-align: right;
        width:auto;
        display:block;
    }

.prd-related {
    margin-bottom: 70px;
}

.related-list {
    position: relative;
}

/* #endregion */

/* #region blog */
.blog {
    width: 90%;
    margin: auto;
    padding: 10px 0 100px;
    min-height: 100vh;
}

.blog-page-text {
    padding: 20px 4px;
    font-family: var(--font-iransans-light);
    font-size: 13px;
    line-height: 30px;
    text-align: justify;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-page-text h1 {
    font-size: 18px;
    color: var(--color-darkgreen-primary);
}

.blog-event {
    padding: 16px 0 40px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-event-slid {
    position: relative;
}

.blog-event-item {
    position: relative;
    border-radius: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.blog-event-item a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 4px;
    border-radius: 4px;
    transition: all 400ms;
}

.blog-event-item h2 {
    font-family: var(--font-iransans-medium);
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px #000;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.blog-event-item span {
    display: inline-block;
    font-family: var(--font-iransans-medium);
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-shadow: 2px 2px #000;
    right: 50%;
    top: 50%;
    transform: translate(50%, 400%);
    position: relative;
    padding: 8px;
    transition: all 500ms;

}

.blog-event-item span::before {
    content: "";
    width: 80%;
    height: 80%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.blog-event-item span::after {
    content: "";
    width: 80%;
    height: 80%;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-event-item a:hover {
    background-color: rgba(94, 94, 94, 0.6);
}

.blog-event-item a:hover span {
    transform: translate(50%, -50%);
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin: 30px 0;
}

.blog-list .section-title {
    grid-column: 1/span 2;
    width: fit-content;
    margin-bottom: 0;
}

.blog-list .blog-item {
    box-shadow: 0 0 10px rgba(94, 94, 94, 0.2);
}

.blog .pagination {
    width: 100%;
    margin: 30px 0 0;
}

.blog-details {
    width: 90%;
    margin: auto;
    min-height: 100vh;
    display: grid;
    grid-template-columns: auto 30%;
    gap: 30px;
    padding: 20px 0 100px;
}

.blog-right {
    box-shadow: 0 0 10px rgba(12, 230, 103, 0.4);
    border-radius: 4px;
}

.blog-top ul {
    display: flex;
    justify-content: space-between;
    background-color: rgba(12, 230, 103, 0.4);
    box-shadow: 0 0 10px rgba(12, 230, 103, 0.4);
    padding: 12px 4px;
    border-radius: 4px 4px 0 0;
}

.blog-top li {
    display: inline-block;
    font-size: 12px;
    color: var(--color-darkgreen-secondary);
}

.blog-top h1 {
    margin: 20px 0;
    font-family: var(--font-iransans-medium);
    font-size: 18px;
    font-weight: normal;
    padding: 16px 4px;
    line-height: 30px;
}

.blog-picture {
    margin: 16px 4px;
}

    .blog-picture img {
        max-width: 100%;;
        right: 50%;
        transform: translateX(50%);
        position: relative;
    }

.blog-content {
    font-size: 13px;
    text-align: justify;
    line-height: 30px;
    padding: 8px;
}

.blog-content img {
    display: inline-block;
    max-width: 100%;
    margin: 16px 0;
    position: relative;
    right: 50%;
    transform: translateX(50%);
}

.blog-left {
    height: fit-content;
    position: sticky;
    top: 70px;
    box-shadow: 0 0 10px rgba(12, 230, 103, 0.4);
    border-radius: 4px;
}

.blog-category-list {
    padding: 8px 4px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-category-item {
    display: flex;
    gap: 8px;
    place-items: center;
    margin: 10px 0;
    padding: 4px 0;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-category-item:last-child {
    border-bottom: none;
}

.blog-category-item img {
    width: 50px;
    border-radius: 4px;
}

.blog-category-item h2 {
    font-family: var(--font-iransans-medium);
    font-weight: normal;
    font-size: 14px;
    color: var(--color-darkgreen-primary);
}

.blog-related {
    padding: 30px 0 20px;
}

.blog-related-list {
    padding: 0 4px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-related-item {
    display: grid;
    grid-template-columns: 50px auto;
    gap: 8px;
    place-items: center;
    margin: 10px 0;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(94, 94, 94, 0.1);
}

.blog-related-item:last-child {
    border-bottom: none;
}
.blog-end-related{
    font-size:12px;
    text-align:left;
    padding:16px 0;
}
    .blog-end-related a:after {
        content: "\f104";
        font-family: "FontAwesome";
        font-weight: 700;
        margin: 0 8px;
    }
.blog-related-item img {
    width: 50px;
    border-radius: 4px;
}

.blog-related-item h3 {
    font-family: var(--font-iransans-medium);
    font-weight: normal;
    font-size: 14px;
    color: var(--color-darkgreen-primary);
}

.blog-related-item p {
    font-family: var(--font-iransans-light);
    font-size: 13px;
    line-height: 30px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-related-btn {
    grid-column: 1/span2;
    width: 100%;
    text-align: left;
}

.tag-list {
    padding: 0 4px 20px;
}

.tag-list a {
    font-family: var(--font-iransans-light);
    font-size: 13px;
    background-color: rgba(94, 94, 94, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 2px;
    display: inline-block;
    margin: 4px 0px;
    transition: all 400ms;
}

.tag-list a:hover {
    background-color: rgba(94, 94, 94, 1);
}

/* #endregion */

/* #region about */
.about {
    width: 90%;
    margin: auto;
    min-height: 100vh;
    padding-bottom: 100px;
    font-family: var(--font-iransans-light);
    font-size: 13px;
    line-height: 30px;
    text-align: justify;
}

.about-top {
    display: grid;
    grid-template-columns: 40% auto;
    gap: 20px;
    place-items: center;
}

.about-top img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-certificate p {
    padding: 0 0 20px;
}

.certificate-slid {
    position: relative;
}

.about-gallery {
    padding: 10px 4px 10px;
}

.gallery-filter {
    text-align: center;
    padding: 8px 4px;
}

.gallery-filter li {
    display: inline-block;
    list-style: none;
    line-height: 35px;
    padding: 0 8px;
    border-radius: 4px;
    background-color: var(--color-green-secondary);
    color: var(--color-darkgreen-primary);
    margin: 4px;
    cursor: pointer;
}

.gallery-filter li.filter-active {
    background-color: var(--color-darkgreen-primary);
    color: #fff;
}

.gallery-item {
    position: relative;
    width: 20%;
    height: 250px;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item ::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(94, 94, 94, 0.6);
    z-index: 1;
    transform: rotateY(90deg);
    transition: all 400ms;
}

.gallery-item:hover>::before {
    transform: rotateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    place-items: center;
    z-index: 3;
    text-align:center;
    padding:4px;
    color: #fff;
    text-shadow: 1px 1px var(--color-darkgreen-primary);

}

.certificate-list .gallery-item {
    width: auto;
}

.about-team {
    padding: 40px 0;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 0;
    justify-content: space-between;
    gap: 40px;
}

.team-item {
    padding: 20px 4px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(12, 230, 103, 0.4);
    text-align: center;
    cursor: pointer;
    transition: all 600ms;
}

.team-item img {
    width: 150px;
    border-radius: 50%;
}

.team-item h4,
.team-item h5 {
    font-family: var(--font-iransans-medium);
    font-weight: normal;
    position: relative;
    margin: 16px 0;
    padding: 4px;
}

.team-item h4::before {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--color-green-primary);
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.team-item:hover {
    box-shadow: 0 0 10px rgba(12, 230, 103, 0.8);
    transform: scale(1.05);
}

.team-item p {
    height: 120px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* #endregion */



/* #region contact */
.contact {
    width: 90%;
    min-height: 100vh;
    margin: auto;
    padding: 20px 0 50px;
    place-items: center;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 4px;
    border-bottom: 1px dashed rgba(94, 94, 94, 0.2);
    margin-bottom: 60px;
    place-items: center;
}
.contact-location{
    display:none;
}
.contact-form {
    padding: 16px 0;
    width: 100%;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.contact-message {
    grid-column: 1 /span 2;
}

.form-group {
    display: grid;
    gap: 5px;
}

.contact-form .form-group:last-child {
    grid-column: 1 /span 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: space-between;
}

.contact-form .form-group:last-child .text-danger {
    grid-column: 1 /span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: normal;
    color: var(--color-darkgreen-primary);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(94, 94, 94, 0.6);
    outline: none;
    border-radius: 4px;
    line-height: 30px;
    font-family: var(--font-iransans-light);
    font-size: 13px;
    padding: 0 8px;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    box-shadow: 0 0 5px rgba(94, 94, 94, 0.6);
}

.contact-form .btn-primary {
    width: 80px;
}

.contact-call {
    border-left: 1px dashed rgba(94, 94, 94, 0.2);
    padding: 16px 0;
}

.contact-call p {
    padding: 0 16px;
    text-align: justify;
    font-size: 14px;
    line-height: 30px;
}

.contact-call .contact-info p {
    text-align: center;
    font-family: var(--font-iransans-medium);
    font-size: 13px;
    line-height: 30px;
    padding: 0 20px;
}

.contact-call .fa {
    color: var(--color-green-primary);
    font-size: 16px;
}

.contact-call a {
    color: var(--color-darkgreen-primary);
    font-size: 16px;
}

.contact-map {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border-radius: 8px;
    background-color: #f2efe9;
}

.contact #map {

    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 0;
}

.contact .leaflet-control-attribution {
    font-family: var(--font-iransans-light);
}

.contact .leaflet-control-attribution a,
.contact .leaflet-control-attribution span {
    display: none;
}

.contact .contact-map-label {

    color: #23254c;
    display: block;
    background-color: #fff;
    width: max-content !important;
    height: max-content !important;
    padding: 8px;
    font-family: var(--font-iransans-medium);
    font-weight: normal;
    border-radius: 8px;
    box-shadow: 0 0 5px var(--color-darkgreen-primary);
    position: relative;
    top: -50%;
    right: 50%;
}

.contact .contact-map-label::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    bottom: -8px;
    position: absolute;
    left: 16px;

    -webkit-filter: drop-shadow(0 2px 1px var(--color-darkgreen-primary));
    filter: drop-shadow(0 2px 1px var(--color-darkgreen-primary));
}

.contact .contact-map-name {
    font-family: var(--font-iransans-medium);
    text-align: center;
    font-size: 10px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    place-items: center;
}

.contact .contact-map-name img {
    width: 100px !important;
}

/* #endregion */


/*#region footer*/
footer {
    background-color: var(--color-darkgreen-primary);
    position: relative;
    padding: 30px 8px 8px 8px;
    border-top: 6px solid var(--color-darkgreen-secondary);
    border-radius: 16px 16px 0 0;
}

.footer-top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    place-items: center;
    padding: 0 8px;
}

.footer-top li {
    display: inline-block;
    margin: 0 8px;
    transition: all 300ms;
}

.footer-top li:hover {
    transform: rotate(360deg);
}

.footer-top li a {
    color: var(--color-wight);
    font-size: 25px;
}

.footer-top .section-title {
    color: var(--color-wight);
}

.footer-top p {
    color: var(--color-wight);
    font-size: 13px;
    font-family: var(--font-iransans);
}

.enamad {
    border-radius: 8px;
}

.footer-copyright {
    color: var(--color-darkgreen-secondary);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    padding: 0 8px;
}

.footer-copyright a {
    color: var(--color-darkgreen-secondary);
}

/*#endregion*/

/* #region responsive */

@media(max-width:992px) {
    .category-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-first {
        grid-area: 1 / 1 / span 2 /span 2;
    }

    .category-last {
        grid-area: 3 /3 / span 2 /span 2;
    }

    .blog-details {
        width: 96%;
        gap: 20px;
    }

    .gallery-item {
        width: 33.33%;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {


    .breadcrumb {
        padding: 20px;
    }

    .pagination {
        width: 96vw;
    }

    /* #region header */
    .header-top {
        place-items: center;
        padding-bottom: 0;
    }

    .header-top span.callcenter {
        display: none;
    }

    .header-top p {
        line-height: 30px;
    }

    .header-top li {
        display: block;
    }

    .header-top ul:last-child {
        display: flex;
    }
    .menu .fa{
        margin-right:5px;
        margin-left:0;
    }
    .menu-toggle,.sm-sub-menu {
        display: inline-block;
        line-height: 60px;
        padding: 0 16px;
        font-size: 25px;
        cursor: pointer;
    }
    .sm-sub-menu{
        display: inline-block;
        line-height: 60px;
        padding: 0 8px;
        font-size: 12px;
        cursor: pointer;
    }
    .sm-sub-menu i{
        font-size: 18px;
    }
    .sm-sub-menu.show .sub-menu{
        transform: rotateX(0);
        width: 200px;
    }
  
    .sm-sub-menu.hide .sub-menu{
        transform: rotateX(90deg);
    }
    .menu {
        position: unset;
        width: 100%;
        border-radius: 0;
    }
    .menu-account{
        display: none !important;
    }
    .nav {
        position: relative;
    }

    .nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        z-index: 10;
        background-color: var(--color-green-primary);
        text-align: center;

        transition: all 400ms;
    }

    .nav ul.hide {
        transform: translateX(-120%);
    }

    .nav ul.show {
        transform: translateX(0);
    }

    .nav li {
        display: block;
        margin: 0;
        border-bottom: 1px solid var(--color-green-secondary);
    }

    .nav li:first-child,
    .nav li:last-child {
        margin: 0;
    }

    .nav li:last-child {
        border-bottom: 0;
    }

    .nav li a {
        line-height: 40px;
    }

    /* #endregion*/


    /* #region Home page*/
    .home-about {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }

    .about-text h1 {
        text-align: center;
    }

    .blog-item {
        flex-direction: column;
    }

    .blog-item h2 {
        text-align: center;
        font-size: 16px;
        line-height: 30px;
    }

    .category-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-first {
        grid-area: 1 / 1 / span 2 /span 2;
    }

    .category-last {
        grid-area: 5 /2 / span 2 /span 2;
    }

    /* #endregion*/


    /* #region product */
    .product {
        grid-template-columns: 1fr;
        padding: 10px 4px;
    }

    .product-filter {
        position: unset;
        border-radius:0;
    }
        .product-filter h4 {
            border-bottom: 1px solid rgba(94, 94, 94, 0.2);
        }

    .product-filter ul {
        max-height: 120px;
        overflow-y: scroll;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
        gap:25px 10px;
    }
    .product.category .product-list {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 16px;
    }
    .product-details {
        width: 96%;
    }

    .product-card h1 {
        font-size: 16px;
    }

    .product-card h2 {
        font-size: 12px;
    }

    .prd-top {
        grid-template-columns: 100%;
    }

    .product-card-order {
        grid-template-columns: repeat(2, 1fr);
        place-items: unset;
    }

    .order-condition {
        grid-column: 1/span2;
    }

    .product-card-price {
        padding-top: 10px;
    }

    .product-card-price .btn-secondary {
        width: 130px;
        margin-right: auto;
    }

    .prd-properties li {
        flex-direction: column;
        gap: 8px;
        place-items: start;
    }

    .prd-properties li span:first-child {
        display: flex;
    }


    /* #endregion */


    /* #region blog */
    .blog {
        width: 96%;
    }

    .blog-list {
        grid-template-columns: 1fr;
    }

    .blog-list .section-title {
        grid-column: 1/span 1;
    }

    .blog-details {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 96%;
    }

    .blog-top h1 {
        font-size: 16px;
    }

    /* #endregion */

    /* #region about */
    .about {
        width: 96%;
    }

    .about-top {
        grid-template-columns: 1fr;
    }

    .certificate-list .gallery-item {
        width: auto;
        height: auto;
    }

    .gallery-item {
        width: 49.9%;
        height: 140px;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 16px;
        gap: 40px;
    }

    .team-item img {
        width: 150px;
    }

    .team-item p {
        -webkit-line-clamp: 5;
        height: 120px;
    }

    /* #endregion */

    /* #region contact */
    .contact {
        padding: 0 0 60px;
    }

    .contact-top {
        grid-template-columns: 1fr;
        width: 98%;
        border: none;
        place-items: none;
    }

    .contact-call {
        border: none;
    }

    .contact-call p,
    .contact-call .contact-info p {
        padding: 0;
    }

    /* #endregion */

    /* #region footer*/
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-top p {
        text-align: justify;
        line-height: 30px;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        margin-top: 16px;
    }

    /* #endregion*/



}

@media(max-width:576px) {
    .home-category {
        padding: 70px 8px 100px;
    }

    .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 8px;
    }

    .category-first {
        grid-area: 1 / 1 / span 2 /span 2;
    }

    .category-last {
        grid-area: 6 /1 / span 2 /span 2;
    }

    .category-list .category-img {
        width: 100%;
        height: auto;
    }

    .product.category .product-list {
        padding: 0 16px;
    }

    .team-container {
        grid-template-columns: 1fr;
    }
}

/* #endregion */