/*
Theme Name: lenux
Theme URI: https://seo90.ir/
Author: گروه برنامه نویسی سئو 90
Author URI: https://seo90.ir/
Description: قالب اختصاصی وردپرس طراحی شده توسط گروه طراحی و برنامه نویسی سئو 90
Version: 1.0
License URI: https://seo90.ir/
Text Domain: my-custom-theme
*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

@font-face {
	font-family: 'lenux';
	src: url('fonts/iranyekanwebregularfanum.ttf');
}

body,
html {
	font-family: 'lenux';
	font-size: 14px;
}

.tooltip-inner {
	font-family: 'lenux';
	font-size: 13px;
}

:root {
	--fb-dark: #3a3838;
	--fb-dark-s: #c7c5c5;
	--fb-white: var(--bs-white)fff;
	--fb-light: #f7f3f3;
	--fb-light-s: #f9f9f9;
	--fb-light-d: #ede9e9;

}

/* Root Bg Colors */

.bg-fb-dark {
	background-color: var(--fb-dark) !important;
}

.bg-fb-dark-s {
	background-color: var(--fb-dark-s) !important;
}

.bg-fb-white {
	background-color: var(--fb-white) !important;
}

.bg-fb-light {
	background-color: var(--fb-light) !important;
}

.bg-fb-light-s {
	background-color: var(--fb-light-s) !important;
}

.bg-fb-light-d {
	background-color: var(--fb-light-d) !important;
}

/* Root Text Colors */

.text-fb-dark {
	color: var(--fb-dark) !important;
}

.text-fb-white {
	color: var(--fb-white) !important;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.a-hover {
    position: relative;
    display: inline-block;
    color: var(--bs-white);
    background-color: var(--bs-red);
    transition: all 0.4s ease;
    z-index: 1;
	padding: 12px 20px!important;
	font-size: 13px;
}

.a-hover::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    left: 2px;
    margin: 0 auto;
    width: 0;
    height: calc(100% - 4px);
    background-color: var(--bs-white);
    z-index: -1;
    transition: all 0.4s ease;
    z-index: -1;
}

.a-hover:hover {
	color: var(--bs-red);
}

.a-hover:hover::after {
    width: calc(100% - 4px);
    border-radius: 4px;
    transition: all 0.4s ease;
}

/* Form Elements */

::placeholder {
	font-size: 13px;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form select {
	border: 1px solid #dddbdb;
	height: 45px;
	padding: 0 12px;
	border-radius: 6px;
	color: #717171;
	width: 100%;
	margin: 2px 0;
}

form button,
form input[type="submit"] {
	width: auto;
	height: 45px;
	border: 0;
	background-color: var(--bs-dark);
	color: var(--bs-white);
	text-align: center;
	font-size: 13px;
	padding: 0 20px;
	border-radius: 6px;
}

textarea {
	width: 100%;
	border: 1px solid #dddbdb;
	height: 100px;
	padding: 10px;
	background-color: var(--bs-white);
	resize: none;
	margin: 2px 0;
	border-radius: 6px;
}

.search-form-site form {
	height: 45px;
}

/* fs */

.fs-9 {
	font-size: 9px;
}

.fs-11 {
	font-size: 11px;
}

.fs-12 {
	font-size: 12px;
}

.fs-13 {
	font-size: 13px;
}
.fs-14 {
	font-size: 14px;
}

.text-justify {
	text-align: justify !important;
}

.search-form-site input,
.search-form-site button {
	background-color: var(--fb-light);
}

.search-form-site input,
.search-form-site button {
	color: var(--fb-dark-s);
}

.search-form-button {
	font-size: 18px;
	top: 2px !important;
}

.logo-wrap img {
	height: 55px;
	object-fit: contain;
}

.btn-close:focus {
	box-shadow: none !important;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rounded-8 {
	border-radius: 6px;
}

.rounded-24 {
	border-radius: 24px;
}

.opacity-90 {
	opacity: 0.9;
}

.py-10 {
	padding: 10px 0;
}

/* Nav Menu */

.nav-menu ul li {
	display: inline-block;
	position: relative;
	margin-left: 24px;
}

.nav-menu ul li::before {
    content: "";
    position: absolute;
    right: -14px;
    bottom: 24px;
    width: 4px;
    height: 4px;
    background-color: var(--bs-red);
    border-radius: 50%;
}

.nav-menu ul li:first-child::before {
	background-color: transparent;
}

.nav-menu ul li a {
	display: inline-block;
	position: relative;
	padding: 16px 0;
	color: var(--fb-dark);
}

.nav-menu .Nv-Items a {
	width: 24px;
	height: 29px;
}

.nav-menu .Nv-Items-Mini a {
	width: 30px;
	height: 30px;
}

.nav-menu ul li ul {
	position: absolute;
	width: 220px;
	right: 0;
	top: 59px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 10;
	background-color: var(--fb-light-s);
	padding: 0;
	margin: 0;
	padding: 16px 8px 16px 0;
}

.nav-menu ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	transition: all 0.4s ease;
}

.nav-menu ul li ul li {
	display: block;
	margin: 0;
}

.nav-menu ul li ul li::before {
	background-color: transparent;
}

.nav-menu ul li ul li a {
	display: block;
	padding: 8px 15px 8px 8px;
	position: relative;
	right: 0;
	transition: all 0.4s ease;
	opacity: 0.8;
	font-size: 13px;
}

.nav-menu-wh ul li ul li a {
	color: var(--fb-dark);
}

.nav-menu ul li ul li a:hover {
	right: 8px;
	transition: all 0.4s ease;
}

.nav-menu ul li ul li a::after {
	content: "";
	position: absolute;
	top: 17px;
	right: 3px;
	width: 0;
	height: 2px;
	background-color: var(--bs-red);
	transition: all 0.4s ease;
}

.nav-menu ul li ul li a:hover::after {
	width: 4px;
	transition: all 0.4s ease;
}

.nav-menu ul>li>ul>li>ul {
	right: 100%;
	top: -16px;
	padding: 16px 8px 16px 0 !important;
}

/* Responsive Menu */

.offcanvasExalenuxe_ReM i {
	top: 3px;
	font-size: 23px;
}

.responsive-menu-body ul li {
	position: relative;
}

.responsive-menu-body ul li a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--fb-light-d);
	color: var(--fb-dark);
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
	position: relative;
	right: 0;
}

.responsive-menu-body ul li a:hover {
	right: 3px;
	transition: all 0.3s ease-in-out;
}

.responsive-menu-body>ul>li:last-child>a {
	border-color: transparent !important;
}

.responsive-menu-body>ul>li>:last-child a {
	border-bottom: 0;
}

.responsive-menu-body ul li span.responsive-menu-span {
	position: absolute;
	left: 0;
	top: 3px;
	text-align: center;
	color: var(--fb-dark);
	width: 40px;
	height: 40px;
	line-height: 48px;
	cursor: pointer;
	z-index: 5;
}

.responsive-menu-body ul li ul {
	display: none;
}

.Main_Hdr {
	background-image: url("https://lenux-co.com/wp-content/uploads/2024/11/hd.svg");
	background-size: cover;
	background-position: 100% 80%;
}

.hdr-img img {
    border-radius: 170px;
}

.Nv-Items a {
	width: 24px;
	height: 29px;
}

.Spd>span.position-absolute {
	height: 100%;
	width: 1px;
	right: 0;
	background-color: #ddd;
	z-index: -1;
}

.Spd>span.position-absolute:nth-child(1) {
	right: 20%;
}

.Spd>span.position-absolute:nth-child(2) {
	right: 40%;
}

.Spd>span.position-absolute:nth-child(3) {
	right: 60%;
}

.Spd>span.position-absolute:nth-child(4) {
	right: 80%;
}

.blog-card {
	height: 438px;
}

.blog-card figure {
	height: 255px;
}

.blog-card img.w-100 {
	height: 255px;
	object-fit: cover;
	opacity: 0.9;
}

.blog-card h4::before,
.blog-card h4::after {
	content: "";
	position: absolute;
	right: 2px;
	top: 10px;
	height: 2px;
	width: 10px;
	background-color: var(--fb-dark);
}

.blog-card h4::after {
	top: 15px;
	width: 4px;
}

.blog-card p {
	color: #818181;
}

.blog-card a.blog-card-read-more {
	width: 36px;
	height: 36px;
	line-height: 39px;
}

.line-clamp-2 {
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5;
	height: 60px;
}

/* textarea-box */
.textarea-box h1,
.textarea-box h2,
.textarea-box h3,
.textarea-box h4,
.textarea-box h5,
.textarea-box h6 {
	margin: 0;
	padding: 0;
}

.textarea-box p {
	line-height: 2;
	margin: 16px 0;
	color: #717171;
	text-align: justify;
	font-size: 14px;
}

.textarea-box img {
	display: table;
	margin: 8px auto;
	border-radius: 6px;
}

.textarea-box a {
	display: inline-block;
	border-bottom: 1px dashed #a78ff1;
	color: #a78ff1;
}

.textarea-box ul,
.textarea-box ol {
	margin-bottom: 0;
}

.textarea-box ul li,
.textarea-box ol li {
	line-height: 1.8;
	list-style: circle;
	font-size: 16px;
}

.textarea-box ul li::marker {
	opacity: 0.5;
	color: #5a5a5a;
}

.textarea-box ol li {
	list-style: auto;
}

.Avatar-Mini {
	height: 45px;
	object-fit: contain;
}

.Bread_Cr a,
.Bread_Cr span {
	font-size: 15px;
	position: relative;
}

.Bread_Cr a::after {
	content: "..";
	position: absolute;
	bottom: 2px;
	left: -11px;
	font-size: 11px;
}

.Bread_Cr a {
	color: var(--bs-red);
}

.Paginatino-Box span,
.Paginatino-Box a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 38px;
	text-align: center;
	border-radius: 4px;
	background-color: #faf4f4;
	color: var(--bs-dark);
	font-size: 19px;
}

.Paginatino-Box span {
	color: #faf4f4;
	background-color: var(--bs-red);
}

/* contact-us-form */

@media only screen and (max-width: 767px) {
	.row-reverse-md {
		flex-direction: column-reverse;
	}
}

@media only screen and (max-width: 576px) {

	.csm-form button,
	.csm-form input[type="submit"] {
		width: 100%;
		font-size: 16px;
		height: 45px;
	}
}

/* Styles Lenux */

.z-3 {
	z-index: 3;
}

.rounded-12 {
	border-radius: 12px;
}

.product-item {
	height: 445px;
	position: relative;
	transition: filter 0.4s ease;
}

.product-item h4 {
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-item figure {
    height: 335px;
    position: relative;
    width: 100%;
    object-fit: cover;
}

.product-item img {
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    width: 100%;
    border-radius: 0 !important;
}

.product-item .prices-pr {
	height: 60px;
}

.line-bg::before {
    content: "";
    position: absolute;
    top: 40%;
    right: 0;
    height: 50%;
    width: 100%;
    background-image: url(img/stacked-peaks-haikei.svg);
    background-size: cover;
    z-index: -1;
    background-position: center center;
}

@media only screen and (max-width:767px) {
	.row-reverse-md {
		flex-direction: column-reverse;
	}
}

.holder-pr .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px 3px;
    background: #d1d0d0;
    border-radius: 2px;
}

.holder-pr .owl-dots .owl-dot.active span {
    background: var(--bs-red);
    width: 20px;
}

.Brnd__Item img{
	height: 80px;
	object-fit: contain;
}

/* footer */

footer {
	background-image: url("img/footer-bg.svg");
	background-size: cover;
}

footer .footer-menu ul {
	padding: 0;
	margin: 0;
}

footer .footer-menu ul li {
	margin: 2px 0 0 0;
}

footer .footer-menu ul li a {
	padding: 10px 0 0 0;
	display: block;
	color: #faf4f4;
}

footer .footer-menu-hr ul li {
	display: inline-block;
	padding: 0;
	margin-left: 8px;
}

footer .footer-menu-hr ul li a {
	display: inline-block;
	padding-top: 16px;
	font-size: 14px;
}

footer .footer-textbox h2,
footer .footer-textbox h3,
footer .footer-textbox h4,
footer .footer-textbox h5,
footer .footer-textbox h6 {
	font-size: 18px;
	color: var(--sm-dark);
	margin: 0 0 12px 0;
}

.owl-theme .owl-nav button {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 10px !important;
}

.owl-theme .owl-nav button.owl-prev::after,
.owl-theme .owl-nav button.owl-next::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff !important;
	color: #f94c4c !important;
	border-radius: 4px;
	font-family: bootstrap-icons !important;
    font-size: 26px;
    line-height: 41px;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
}

.owl-theme .owl-nav button.owl-next {
	right: auto;
	left: 0;
}

.owl-theme .owl-nav button.owl-prev::after {
	content: "\f285";
}

.owl-theme .owl-nav button.owl-next::after {
	content: "\f284";
}

@media only screen and (max-width:767px) {
	.row-reverse-md {
		flex-direction: column-reverse;
	}
}

.owl-theme .owl-nav {
	position: absolute;
	top: 40%;
	width: 100%;
}

.about-slider img {
	width: 400px !important;
	height: 400px !important;
	object-fit: cover;
	border-width: 15px !important;
}

@media only screen and (max-width:991px) {
	.about-slider img {
		width: 330px !important;
		height: 330px !important;
	}
}

@media only screen and (max-width:575px) {
	.about-slider img {
		width: 210px !important;
		height: 210px !important;
	}
}

@media only screen and (min-width:768px) {
	div.bg-danger.p-4.rounded-24::before {
		content: "";
		position: absolute;
		width: 20%;
		height: 100%;
		background-color: #fff;
		top: 0;
		left: 0;
		z-index: -1;
	}
}

.card-blur {
	filter: blur(5px);
	transition: filter 0.4s ease;
}