﻿

/*----------------------------------------------------------------------------------------------------------------------
[Table of contents]

A. Basic Styling
  -- Styling

B. Helpers
  -- Animations
  -- Borders
  -- Colors
  -- Column Count
  -- Transitions
  -- Background
  -- Headings
  -- Height
  -- Margin
  -- No Gutter
  -- Opacity
  -- Overflow
  -- Padding
  -- Position
  -- Shadow
  -- Shape Mask
  -- Typography
  -- Title
  -- Transitions
  -- Utilities
  -- Width
  -- Z-Index

C. Components
  -- Block
  -- Blockquote
  -- Box
  -- Buttons
  -- Card
  -- Circle
  -- Forms
  -- Hr
  -- Inputs
  -- Item
  -- List
  -- Map
  -- Hero
  -- Navbar
  -- Page
  -- Partners
  -- Plugins
  -- Price Box
  -- Progress
  -- Promo Numbers
  -- Select
  -- Slider
  -- Tabs

D. Plugins Styles
  -- Magnific Popup
  -- Owl Carousel

E. Template Specific Elements
  -- Hero Form
  -- Carousel Centered
  -- Price Box
  -- SVG Shapes
  -- Other


----------------------------------------------------------------------------------------------------------------------*/

/***********************************************************************************************************************
A. Basic Styling
***********************************************************************************************************************/

/*-------------------------------------------
  -- Styling - Colors, Font Size, Font Family
-------------------------------------------*/
* {
	font-family: 'Shabnam';
}
body {
	color: #191919;
	font-family: 'Shabnam';
	font-weight: 400;
	font-size: .9375rem;
	margin: 0;
	padding: 0;
}
@font-face {
	font-family: 'Shabnam';
	src: url('/assets/shabnam-font-v5.0.1/Shabnam.woff') format('woff');
	font-weight: normal; /* یا 400 برای Regular */
}

@font-face {
	font-family: 'Shabnam';
	src: url('/assets/shabnam-font-v5.0.1/Shabnam.woff') format('woff');
	font-weight: bold; /* برای Bold */
}

@font-face {
	font-family: 'Shabnam';
	src: url('/assets/shabnam-font-v5.0.1/Shabnam.woff') format('woff');
	font-weight: 300; /* برای Light */
}

@font-face {
	font-family: 'Shabnam';
	src: url('/assets/shabnam-font-v5.0.1/Shabnam.woff') format('woff');
	font-weight: 500; /* برای Medium */
}
html {
	font-size: 80%;
}

h1 {
	font-weight: 600;
}

h2 {
	font-weight: 500;
}

h3 {
	font-weight: 600;
	margin-bottom: 1.5625rem;
}

h4 {
	font-weight: 600;
	margin-bottom: 1.875rem;
}

h5 {
	font-size: 1rem;
	font-weight: 600;
}

h6 {
	font-size: .9375rem;
}

/* NEW */

/***********************************************************************************************************************
B. Helpers
***********************************************************************************************************************/

/*-------------------------------------------
  -- Animations
-------------------------------------------*/

[data-animate] {
	/*
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  */
}

/* Fade In Up */

@keyframes ts-fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 1.25rem, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.ts-fadeInUp {
	animation-name: ts-fadeInUp;
}

/* Fade In Down */

@keyframes ts-fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -1.25rem, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.ts-fadeInDown {
	animation-name: ts-fadeInDown;
}

/* Fade In Left */

@keyframes ts-fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-1.25rem, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.ts-fadeInLeft {
	animation-name: ts-fadeInLeft;
}

/* Fade In Right */

@keyframes ts-fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(1.25rem, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.ts-fadeInRight {
	animation-name: ts-fadeInRight;
}

/* Zoom In */

@keyframes ts-zoomIn {
	from {
		opacity: 0;
		transform: scale(.5);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ts-zoomIn {
	animation-name: ts-zoomIn;
}

/* Zoom In Short */

@keyframes ts-zoomInShort {
	from {
		opacity: 0;
		transform: scale(.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ts-zoomInShort {
	animation-name: ts-zoomInShort;
}

/*-------------------------------------------
  -- Borders
-------------------------------------------*/

.ts-border-radius__sm {
	border-radius: .125rem;
	overflow: hidden;
}

.ts-border-radius__md {
	border-radius: .25rem;
	overflow: hidden;
}

.ts-border-radius__lg {
	border-radius: .5rem;
	overflow: hidden;
}

.ts-border-radius__xl {
	border-radius: .75rem;
	overflow: hidden;
}

.ts-border-radius__round-shape {
	border-radius: 187.5rem;
	overflow: hidden;
}

.ts-border-none {
	border: none;
}

.ts-border-bottom {
	border-bottom: .0625rem solid rgba(0, 0, 0, .1);
}

.ts-font-color__white {
	color: #fff;
}

.ts-font-color__black {
	color: #000;
}

.ts-font-color__primary {
	color: #5a0c75;
}

/*-------------------------------------------
  -- Background
-------------------------------------------*/

[data-bg-image] {
	background-size: cover;
	background-position: 50%;
}

.ts-background {
	bottom: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: -2;
}

	.ts-background .ts-background {
		height: 100%;
		width: 100%;
	}

.ts-background-image, .ts-img-into-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

	.ts-background-image img, .ts-img-into-bg img {
		display: none;
	}

.ts-background-original-size {
	background-size: inherit;
}

.ts-background-size-cover {
	background-size: cover;
}

.ts-background-size-contain {
	background-size: contain;
}

.ts-background-repeat-x {
	background-repeat: repeat-x;
}

.ts-background-repeat-y {
	background-repeat: repeat-y;
}

.ts-background-repeat-repeat {
	background-repeat: repeat;
	background-size: inherit;
}

.ts-background-position-top {
	background-position: top;
}

.ts-background-position-center {
	background-position: center;
}

.ts-background-position-bottom {
	background-position: bottom;
}

.ts-background-particles {
	height: 120%;
	left: 0;
	margin-left: -10%;
	margin-top: -10%;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 120%;
	z-index: 1;
}

.ts-background-is-dark {
	color: #fff;
}

	.ts-background-is-dark .form-control {
		box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .2);
	}

		.ts-background-is-dark .form-control:focus {
			box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .4);
		}

	.ts-background-is-dark .ts-btn-border-muted {
		border-color: rgba(255, 255, 255, .1);
	}

/*-------------------------------------------
  -- Height
-------------------------------------------*/

.ts-height__50px {
	height: 3.125rem;
}

.ts-height__100px {
	height: 6.25rem;
}

.ts-height__150px {
	height: 9.375rem;
}

.ts-height__200px {
	height: 12.5rem;
}

.ts-height__250px {
	height: 15.625rem;
}

.ts-height__300px {
	height: 18.75rem;
}

.ts-height__350px {
	height: 21.875rem;
}

.ts-height__400px {
	height: 25rem;
}

.ts-height__450px {
	height: 28.125rem;
}

.ts-height__500px {
	height: 31.25rem;
}

.ts-height__600px {
	height: 37.5rem;
}

.ts-height__700px {
	height: 43.75rem;
}

.ts-height__800px {
	height: 50rem;
}

.ts-height__900px {
	height: 56.25rem;
}

.ts-height__1000px {
	height: 62.5rem;
}

/*-------------------------------------------
  -- Margin
-------------------------------------------*/

.ts-mt__0 {
	margin-top: 0 !important;
}

.ts-mr__0 {
	margin-right: 0 !important;
}

.ts-mb__0 {
	margin-bottom: 0 !important;
}

.ts-ml__0 {
	margin-left: 0 !important;
}

/* NEW */

/*-------------------------------------------
  -- No Gutters - Removes padding from col*
-------------------------------------------*/

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

	.no-gutters > .col, .no-gutters > [class*="col-"] {
		padding-right: 0;
		padding-left: 0;
	}

/* NEW */

/*-------------------------------------------
  -- Opacity
-------------------------------------------*/

.ts-opacity__5 {
	opacity: .05;
}

.ts-opacity__10 {
	opacity: .1;
}

.ts-opacity__20 {
	opacity: .2;
}

.ts-opacity__30 {
	opacity: .3;
}

.ts-opacity__40 {
	opacity: .4;
}

.ts-opacity__50 {
	opacity: .5;
}

.ts-opacity__60 {
	opacity: .6;
}

.ts-opacity__70 {
	opacity: .7;
}

.ts-opacity__80 {
	opacity: .8;
}

.ts-opacity__90 {
	opacity: .9;
}

/*-------------------------------------------
  -- Overflow
-------------------------------------------*/

.ts-overflow__hidden {
	overflow: hidden;
}

.ts-overflow__visible {
	overflow: visible;
}

/* NEW */

/*-------------------------------------------
  -- Padding
-------------------------------------------*/

.ts-pt__0 {
	padding-top: 0 !important;
}

.ts-pr__0 {
	padding-right: 0 !important;
}

.ts-pb__0 {
	padding-bottom: 0 !important;
}

.ts-pl__0 {
	padding-left: 0 !important;
}

/*-------------------------------------------
  -- Position
-------------------------------------------*/

/* Top */

.ts-top__0 {
	top: 0%;
}

.ts-top__50 {
	top: 50%;
}

.ts-top__100 {
	top: 100%;
}

/* Right */

.ts-right__0 {
	right: 0%;
}

.ts-right__50 {
	right: 50%;
}

.ts-right__100 {
	right: 100%;
}

/* Bottom */

.ts-bottom__0 {
	bottom: 0%;
}

.ts-bottom__50 {
	bottom: 50%;
}

.ts-bottom__100 {
	bottom: 100%;
}

/* Left */

.ts-left__0 {
	left: 0%;
}

.ts-left__50 {
	left: 50%;
}

.ts-left__100 {
	left: 100%;
}

/* NEW */

/*-------------------------------------------
  -- Shadow
-------------------------------------------*/

.ts-shadow__sm {
	box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
}

.ts-shadow__md {
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
}

.ts-shadow__lg {
	box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
}

.ts-shadow__none {
	box-shadow: none !important;
}

/*-------------------------------------------
  -- Shape Mask
-------------------------------------------*/

.ts-shape-mask__up:before {
	background-image: url("../img/bg-shape-mask-up.png");
	background-size: cover;
	content: "";
	left: 0;
	height: 3.75rem;
	position: absolute;
	top: -0.0625rem;
	width: 100%;
}

.ts-shape-mask__down:after {
	background-image: url("../img/bg-shape-mask-down.png");
	background-size: cover;
	bottom: -0.0625rem;
	content: "";
	left: 0;
	height: 3.75rem;
	position: absolute;
	width: 100%;
}

/* NEW */

/*-------------------------------------------
  -- Typography
-------------------------------------------*/

a {
	color: #5a0c75;
	transition: .3s ease;
}

	a:hover {
		color: #5a0c75;
		text-decoration: none;
	}

p {
	line-height: 1.6875rem;
	margin-bottom: 1.875rem;
	color: rgba(0, 0, 0, .5);
}

.ts-font-weight__normal {
	font-weight: normal;
}

.ts-font-weight__light {
	font-weight: lighter;
}

.ts-font-weight__bold {
	font-weight: bold;
}

.ts-text-small {
	font-size: .8125rem !important;
}

.ts-xs-text-center {
}

/*-------------------------------------------
  -- Title
-------------------------------------------*/

.ts-title {
}

	.ts-title h5 {
		font-weight: normal;
		opacity: .5;
	}

/* NEW */

/* NEW */

/*-------------------------------------------
  -- Utilities
-------------------------------------------*/

/* Social Icons */

.ts-social-icons {
	font-size: 120%;
}

	.ts-social-icons a {
		padding: .125rem .25rem;
		color: #9e9e9e;
	}

/* Overlay */

.ts-has-overlay {
	position: relative;
}

	.ts-has-overlay:after {
		background-color: #000;
		content: "";
		height: 100%;
		left: 0;
		opacity: .5;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: -1;
	}

/* Flip x */

.ts-flip-x {
	transform: scaleY(-1);
}

/* Flip Y */

.ts-flip-y {
	transform: scaleX(-1);
}

/* NEW flip */

/*-------------------------------------------
  -- Width
-------------------------------------------*/

.ts-width__10px {
	width: .625rem;
}

.ts-width__20px {
	width: 1.25rem;
}

.ts-width__30px {
	width: 1.875rem;
}

.ts-width__40px {
	width: 2.5rem;
}

.ts-width__50px {
	width: 3.125rem;
}

.ts-width__100px {
	width: 6.25rem;
}

.ts-width__200px {
	width: 12.5rem;
}

.ts-width__300px {
	width: 18.75rem;
}

.ts-width__400px {
	width: 25rem;
}

.ts-width__500px {
	width: 31.25rem;
}

.ts-width__inherit {
	width: inherit !important;
}

.ts-width__auto {
	width: auto !important;
}

/*-------------------------------------------
  -- Z-index
-------------------------------------------*/

.ts-z-index__-1 {
	z-index: -1 !important;
}

.ts-z-index__0 {
	z-index: 0 !important;
}

.ts-z-index__1 {
	z-index: 1 !important;
}

.ts-z-index__2 {
	z-index: 2 !important;
}

.ts-z-index__1000 {
	z-index: 1000 !important;
}

/* NEW */

/***********************************************************************************************************************
C. Components
***********************************************************************************************************************/

/*-------------------------------------------
  -- Block
-------------------------------------------*/

.ts-block {
	padding-bottom: 5rem;
	padding-top: 5rem;
	position: relative;
}

.ts-block-inside {
	padding: 1.25rem;
	position: relative;
}

section {
	position: relative;
}

/*-------------------------------------------
  -- Blockquote
-------------------------------------------*/

blockquote {
	font-size: 1.125rem;
	position: relative;
	background-size: contain;
	background-image: url("../svg/bubble.svg");
	background-repeat: no-repeat;
	background-position: center 3.75rem;
	padding-bottom: 3.75rem;
}

	blockquote [class*="ts-circle"] {
		box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
		position: relative;
		margin-bottom: 1.25rem;
		z-index: 1;
	}

	blockquote figure {
		padding-top: .9375rem;
		display: inline-block;
		position: relative;
	}

		blockquote figure aside {
			background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='52' height='62'%3E%3cpath fill='%235a0c75' d='M51 29.1c5.8 16.5-7.4 33-23.7 32.6 -2.5 0-4.9-0.3-7.2-1 -9.2-2.5-16.5-9.8-19-19C0.4 39.5 0 37 0 34.5 0 21.7 4.9 6.1 18.1 1.1 32.9-4.6 44.4 12.7 49.3 24 50 25.7 50.5 27.4 51 29.1z'/%3E%3c/svg%3E");
			background-repeat: no-repeat;
			background-size: contain;
			bottom: 0;
			height: 3.875rem;
			position: absolute;
			width: 3.25rem;
			right: -0.625rem;
			z-index: 2;
		}

			blockquote figure aside i {
				color: #fff;
				left: 1.0625rem;
				top: 1.5625rem;
				position: absolute;
			}

			blockquote figure aside svg {
				fill: #5a0c75;
			}

	blockquote p {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}

	blockquote h4 {
		margin-bottom: .3125rem;
	}

	blockquote h6 {
		opacity: .5;
	}

.blockquote-footer {
	color: inherit;
}

	.blockquote-footer:before {
		display: none;
	}

.ts-carousel-blockquote .owl-item figure, .ts-carousel-blockquote .owl-item p,
.ts-carousel-blockquote .owl-item .blockquote-footer {
	opacity: 0;
	transition: .6s ease;
	transform: translateY(.625rem);
}

.ts-carousel-blockquote .owl-item.active figure,
.ts-carousel-blockquote .owl-item.active p,
.ts-carousel-blockquote .owl-item.active .blockquote-footer {
	opacity: 1;
	transform: translateY(0);
}

.ts-carousel-blockquote .owl-item.active p {
	transition-delay: .1s;
}

.ts-carousel-blockquote .owl-item.active .blockquote-footer {
	transition-delay: .2s;
}

/* NEW */

/*-------------------------------------------
  -- Box
-------------------------------------------*/

.ts-box {
	background-color: #fff;
	border-radius: .25rem;
	margin-bottom: 1.875rem;
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
	padding: 1.5625rem;
}

/*-------------------------------------------
  -- Buttons
-------------------------------------------*/

.btn {
	border-radius: 6.25rem;
	border-width: .125rem;
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
	font-weight: 600;
	font-size: .9375rem;
	padding: .5rem 1.25rem;
	position: relative;
	outline: none !important;
}

	.btn span {
		transition: .3s ease;
	}

	.btn .status {
		bottom: 0;
		height: 1.375rem;
		left: 0;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		width: 1.5rem;
	}

		.btn .status .spinner {
			left: .3125rem;
			transition: .3s ease;
			top: .1875rem;
			position: absolute;
			opacity: 0;
		}

		.btn .status .status-icon {
			border-radius: 50%;
			left: 0;
			opacity: 0;
			font-size: .625rem;
			padding: .25rem .4375rem;
			position: relative;
			transition: .3s ease;
			z-index: 1;
			transform: scale(0);
		}

			.btn .status .status-icon.valid {
				background-color: var(--green);
			}

			.btn .status .status-icon.invalid {
				background-color: var(--red);
			}

	.btn.processing span {
		opacity: .2;
	}

	.btn.processing .spinner {
		opacity: 1;
	}

	.btn.done .ts-spinner {
		opacity: 0;
	}

	.btn.done .status-icon {
		transform: scale(1);
		opacity: 1;
	}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	/*background-color: darken( var(--color-primary), 20% );
    border-color: darken( var(--color-primary), 20% );*/
	background-color: #5a0c75;
	border-color: #5a0c75;
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .3);
}

.btn-primary {
	background-color: #5a0c75;
	border-color: #5a0c75;
	color: #fff;
}

	.btn-primary.disabled, .btn-primary:disabled {
		background-color: #5a0c75;
		border-color: #5a0c75;
	}

	.btn-primary:not(:disabled):not(.disabled):active:focus,
	.btn-primary:not(:disabled):not(.disabled).active:focus,
	.show > .btn-primary.dropdown-toggle:focus {
		background-color: #5a0c75;
		border-color: rgb(225, 20, 44);
		box-shadow: 0 .1875rem .9375rem rgba(0, 0, 0, .2);
	}

	.btn-primary:not(:disabled):not(.disabled):active,
	.btn-primary:not(:disabled):not(.disabled).active,
	.show > .btn-primary.dropdown-toggle {
		background-color: #5a0c75;
		border-color: #5a0c75;
		box-shadow: 0 .1875rem .9375rem rgba(0, 0, 0, .2);
	}

.btn-dark {
	background-color: #191919;
	border-color: #191919;
}

.btn-outline-primary {
	border-color: #5a0c75;
	color: #5a0c75;
}

	.btn-outline-primary:hover {
		background-color: #5a0c75;
		border-color: #5a0c75;
	}

	.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
		background-color: #5a0c75;
		border-color: #5a0c75;
		box-shadow: 0 0 0 .2rem rgba(242, 109, 125, .5);
	}

.btn-lg {
	padding: .75rem 1.5rem;
	font-size: 1.125rem;
}

.btn-sm {
	font-size: .8125rem;
	padding: .375rem 1rem;
}

.btn-xs {
	font-size: .75rem;
	font-weight: 600;
	padding: .125rem .6875rem;
	text-transform: uppercase;
}

[class*="btn-outline-"] {
	box-shadow: none;
}

.ts-btn-border-muted {
	border-color: rgba(25, 25, 25, .1);
}

/*-------------------------------------------
  -- Card
-------------------------------------------*/

.card {
	backface-visibility: hidden;
	border: none;
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
	margin-bottom: 1.875rem;
	overflow: hidden;
}

.card-columns .card {
	margin-bottom: 1.25rem;
}

.card-body, .card-footer, .card-header {
	padding: 1.5625rem;
}

.ts-cards-same-height > div[class*='col-'] {
	display: flex;
}

	.ts-cards-same-height > div[class*='col-'] .card {
		width: 100%;
	}

.ts-card__flat {
	border-radius: 0;
	box-shadow: none;
}

	.ts-card__flat .card-footer {
		background-color: transparent;
		border: none;
	}

.ts-card__image {
}

/*-------------------------------------------
  -- Circle
-------------------------------------------*/

.ts-circle__sm {
	border-radius: 50%;
	display: inline-block;
	height: 4.375rem;
	flex: 0 0 4.375rem;
	overflow: hidden;
	width: 4.375rem;
}

.ts-circle__md {
	border-radius: 50%;
	display: inline-block;
	height: 6.25rem;
	flex: 0 0 6.25rem;
	overflow: hidden;
	width: 6.25rem;
}

.ts-circle__lg {
	border-radius: 50%;
	display: inline-block;
	height: 8.125rem;
	flex: 0 0 8.125rem;
	overflow: hidden;
	width: 8.125rem;
}

.ts-circle__xl {
	border-radius: 50%;
	display: inline-block;
	height: 10rem;
	flex: 0 0 10rem;
	overflow: hidden;
	width: 10rem;
}

/*-------------------------------------------
  -- Forms
-------------------------------------------*/

form.ts-labels-inside-input .form-group,
.ts-form.ts-labels-inside-input .form-group {
	position: relative;
}

	form.ts-labels-inside-input .form-group label,
	.ts-form.ts-labels-inside-input .form-group label {
		line-height: 2.625rem;
		left: .8125rem;
		opacity: .4;
		pointer-events: none;
		position: absolute;
		top: 0;
		transition: .3s ease;
	}

		form.ts-labels-inside-input .form-group label.focused,
		.ts-form.ts-labels-inside-input .form-group label.focused {
			top: -2.1875rem;
			left: 0;
			font-size: .75rem;
			opacity: 1;
		}

.form-control {
	border: 0;
	box-shadow: 0 0 0 .125rem rgba(0, 0, 0, .2);
	border-radius: .125rem;
	padding: .5625rem .75rem;
}

	.form-control:focus {
		box-shadow: 0 0 0 .125rem rgba(0, 0, 0, .4);
	}
.form-select-lg {
	border: 0;
	box-shadow: 0 0 0 .125rem rgba(0, 0, 0, .2);
	border-radius: .125rem;
	padding: .5625rem .75rem;
}
	.form-select-lg:focus {
		box-shadow: 0 0 0 .125rem rgba(0, 0, 0, .4);
	}
.form-group {
	margin-bottom: 1.5625rem;
}

	.form-group label {
		font-size: .8125rem;
	}

/*-------------------------------------------
  -- HR
-------------------------------------------*/

hr {
	border-top-width: .125rem;
}

/* NEW */

/*-------------------------------------------
  -- Inputs
-------------------------------------------*/

.ts-input__static {
	pointer-events: none;
	box-shadow: none;
}

.ts-inputs__transparent input, .ts-inputs__transparent textarea {
	background-color: transparent;
	color: #fff;
}

	.ts-inputs__transparent input:active, .ts-inputs__transparent input:focus,
	.ts-inputs__transparent textarea:active, .ts-inputs__transparent textarea:focus {
		background-color: transparent;
		color: #fff;
	}

.ts-item {
	height: 100%;
	padding-bottom: 1.875rem;
}

.ts-item-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ts-item-header {
	margin-bottom: 1.5625rem;
	position: relative;
}

	.ts-item-header .icon .step {
		background-color: #5a0c75;
		bottom: 0;
		box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
		border-radius: 50%;
		color: #191919;
		font-weight: 600;
		line-height: 1.875rem;
		left: 0;
		height: 1.875rem;
		position: absolute;
		text-align: center;
		width: 1.875rem;
	}

.ts-item-body {
	flex: 1 1 auto;
}

.ts-item-footer {
}

/*-------------------------------------------
  -- List
-------------------------------------------*/

ul {
	line-height: 2.5rem;
}

	ul.ts-list-divided li {
		border-bottom: .0625rem solid rgba(0, 0, 0, .1);
		padding-bottom: .3125rem;
		padding-top: .3125rem;
	}

		ul.ts-list-divided li:last-child {
			border-bottom: none;
		}

/* NEW */

/*-------------------------------------------
  -- Loading Screen
-------------------------------------------*/

body.has-loading-screen:before {
	background-color: #000;
	content: "";
	height: 100%;
	right: 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9999;
	transition: 1.5s ease;
	opacity: 1;
}

body.has-loading-screen:after {
	content: url("../img/loading.svg");
	height: 2.5rem;
	width: 2.5rem;
	position: fixed;
	margin: auto;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 1;
	transform: scale(1);
	transition: 1.5s ease;
	top: 0;
	z-index: 10000;
}

body.has-loading-screen.loading-done:before {
	width: 0;
}

body.has-loading-screen.loading-done:after {
	transform: scale(0);
	opacity: 0;
}

/*-------------------------------------------
  -- Map
-------------------------------------------*/

.map {
	min-height: 12.5rem;
}

	.map a[href^="http://maps.google.com/maps"] {
		display: none !important;
	}

	.map a[href^="https://maps.google.com/maps"] {
		display: none !important;
	}

	.map .gmnoprint a, .map .gmnoprint span, .map .gm-style-cc {
		display: none;
	}

/*-------------------------------------------
  -- Hero
-------------------------------------------*/

#ts-hero {
	color: #fff;
	display: flex;
	position: relative;
}

	#ts-hero .ts-background-image {
		background-position: top center;
	}

/*-------------------------------------------
  -- Navbar
-------------------------------------------*/

/*.navbar {
	font-size: .875rem;
	font-weight: 500;
	padding-bottom: 2rem;
	padding-top: 2rem;
	transition: .3s ease;
}

	.navbar.in {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}

		.navbar.in .ts-background {
			opacity: 1 !important;
		}

	.navbar .ts-background {
		transition: 1s ease;
	}

[class*="navbar-expand"] .navbar-nav .nav-link {
	padding-top: .3125rem;
	padding-bottom: .3125rem;
}*/




.navbar {
	background-color: #5a0c75;
	font-size: .875rem;
	font-weight: 500;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
	transition: .3s ease;
}

	.navbar.home-transparent {
		background-color: rgba(0, 0, 0, 0); /* بی‌رنگ در صفحه اصلی */
	}

	.navbar.in {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}

		.navbar.in .ts-background {
			opacity: 1 !important;
		}

	.navbar .ts-background {
		transition: 1s ease;
	}

[class*="navbar-expand"] .navbar-nav .nav-link {
	padding-top: .3125rem;
	padding-bottom: .3125rem;
}


/* آیتم‌های منو */
.menu-item {
	font-size: 16px;
	font-weight: 600;
	padding: 0.6rem 1.2rem;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

	.menu-item:hover,
	.menu-item:focus {
		color: #ffb800;
		background-color: #5a0c75;
		border-radius: 6px;
	}

/* آیکن فلش */
.dropdown-icon {
	font-size: 0.7rem;
	color: #ffffff;
	transition: transform 0.3s ease, color 0.3s ease;
}

.menu-item:hover .dropdown-icon {
	color: #ffb800;
	transform: rotate(180deg);
}

/* منوی dropdown */
.dropdown-menu {
	background-color: #5a0c75;
	border-radius: 8px;
	border: none;
	padding: 0.5rem 0;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	min-width: 220px;
	z-index: 999;
}

	/* آیتم‌های dropdown */
	.dropdown-menu .dropdown-item {
		color: #ffffff;
		padding: 0.5rem 1.2rem;
		font-weight: 500;
		transition: all 0.2s ease;
		background-color: transparent;
	}

		.dropdown-menu .dropdown-item:hover {
			background-color: #5a0c75;
			color: #ffb800;
		}

/* زیرمنوی چند سطحی */
.dropdown-submenu {
	position: relative;
}

	.dropdown-submenu > .dropdown-menu {
		top: 0;
		left: 100%;
		margin-top: -1px;
		display: none;
		position: absolute;
		background-color: #5a0c75;
	}

	.dropdown-submenu:hover > .dropdown-menu {
		display: block;
	}

/* باز شدن dropdown با هاور */
.dropdown:hover > .dropdown-menu {
	display: block;
}

.dropdown-toggle::after {
	display: none !important;
}

/*XL*/

/*LG*/

/*MD*/

/*SM*/

/*-------------------------------------------
  -- Page
-------------------------------------------*/

.ts-page-wrapper {
	overflow: hidden;
}

/*-------------------------------------------
  -- Partners
-------------------------------------------*/

.ts-partners a {
	display: block;
	padding: .625rem .3125rem;
}

/*-------------------------------------------
  -- Plugins
-------------------------------------------*/

.tv-site-widget {
	border: none !important;
}

iframe div {
	border: none;
}

/*-------------------------------------------
  -- Progress
-------------------------------------------*/

.progress {
	background-color: transparent;
	border: .125rem solid #5a0c75;
	border-radius: 0;
	height: .625rem;
}

	.progress .progress-bar {
		background-color: #5a0c75;
	}

/*-------------------------------------------
  -- Promo Numbers
-------------------------------------------*/

.ts-promo-numbers h2 {
	font-weight: normal;
}

.ts-promo-numbers h3 {
	font-weight: normal;
}

.ts-promo-number {
	position: relative;
}

	.ts-promo-number .ts-promo-number-divider:after {
		content: "";
		bottom: 0;
		border: .125rem solid #5a0c75;
		border-radius: 50%;
		height: .625rem;
		margin: auto;
		position: absolute;
		right: -0.3125rem;
		top: 0;
		width: .625rem;
	}

/*-------------------------------------------
  -- Select
-------------------------------------------*/

select.form-control {
	box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
	border-radius: .25rem;
	cursor: pointer;
	height: 2.8125rem !important;
	margin-top: -0.125rem;
	padding: .5rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: .0625rem;
	text-overflow: '';
}

	select.form-control:focus, select.form-control:hover {
		box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
	}

select::-ms-expand {
	display: none;
}



/*-------------------------------------------
  -- Slider
-------------------------------------------*/

.ts-slider {
	height: 100% !important;
}

	.ts-slider div {
		height: 100% !important;
	}

/*-------------------------------------------
  -- Tabs
-------------------------------------------*/

.nav-tabs {
	border-bottom: none;
}

	.nav-tabs h4 {
		font-weight: normal;
		margin-bottom: 0;
	}

	.nav-tabs .nav-link {
		background-color: transparent;
		border: none;
		border-bottom: .1875rem solid transparent;
		margin-left: .9375rem;
		margin-right: .9375rem;
		padding-right: 0;
		padding-left: 0;
		color: inherit;
		opacity: .5;
	}

		.nav-tabs .nav-link.active {
			color: #191919;
			background-color: transparent;
			border-bottom: .1875rem solid #5a0c75;
			opacity: 1;
		}

/* NEW */

/***********************************************************************************************************************
D. Plugins Styles
***********************************************************************************************************************/

/*-------------------------------------------
  -- Magnific Popup
-------------------------------------------*/

/* overlay at start */

.mfp-fade.mfp-bg {
	opacity: 0;
	background-color: #000;
	-webkit-transition: all .15s ease-out;
	-moz-transition: all .15s ease-out;
	transition: all .15s ease-out;
}

	/* overlay animate in */

	.mfp-fade.mfp-bg.mfp-ready {
		opacity: .8;
	}

	/* overlay animate out */

	.mfp-fade.mfp-bg.mfp-removing {
		opacity: 0;
	}

/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all .15s ease-out;
	-moz-transition: all .15s ease-out;
	transition: all .15s ease-out;
}

/* content animate it */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*-------------------------------------------
  -- Owl Carousel
-------------------------------------------*/

.owl-carousel .owl-dots {
	text-align: center;
}

	.owl-carousel .owl-dots .owl-dot {
		display: inline-block;
		padding: .3125rem;
	}

		.owl-carousel .owl-dots .owl-dot:hover span,
		.owl-carousel .owl-dots .owl-dot.active span {
			opacity: .7;
		}

		.owl-carousel .owl-dots .owl-dot span {
			background-color: #191919;
			border-radius: 50%;
			display: inline-block;
			height: .625rem;
			opacity: .2;
			transition: .3s ease;
			width: .625rem;
		}

.owl-carousel .owl-nav {
	position: absolute;
	top: -1.25rem;
	bottom: 0;
	height: 0;
	margin: auto;
	width: 100%;
}

	.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
		background-color: rgba(25, 25, 25, .6);
		border-radius: 50%;
		box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, .1);
		color: #fff;
		display: inline-block;
		height: 2.5rem;
		position: absolute;
		text-align: center;
		transition: .3s ease;
		width: 2.5rem;
	}

		.owl-carousel .owl-nav .owl-prev:after, .owl-carousel .owl-nav .owl-next:after {
			font-family: "Font Awesome\ 5 Free";
			font-weight: 900;
			font-size: 1.375rem;
			line-height: 2.5rem;
			-webkit-font-smoothing: antialiased;
		}

		.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-next:hover {
			background-color: rgba(25, 25, 25, .8);
		}

	.owl-carousel .owl-nav .owl-next {
		right: .3125rem;
	}

		.owl-carousel .owl-nav .owl-next:after {
			content: "\f105";
			margin-left: .1875rem;
		}

	.owl-carousel .owl-nav .owl-prev {
		left: .3125rem;
	}

		.owl-carousel .owl-nav .owl-prev:after {
			content: "\f104";
			margin-right: .0625rem;
		}

/***********************************************************************************************************************
E. Template Specific Elements
***********************************************************************************************************************/

/*-------------------------------------------
  -- Centered Slider
-------------------------------------------*/

.ts-carousel-centered .slide {
	margin-bottom: 1rem;
	margin-top: 1rem;
	padding: 1rem;
}

.ts-carousel-centered .owl-item {
	perspective: 1000;
}

	.ts-carousel-centered .owl-item .slide {
		opacity: .5;
		transition: .3s ease;
		transform: scale(.95);
	}

	.ts-carousel-centered .owl-item.active.center .slide {
		opacity: 1;
		transform: scale(1);
	}

.ts-carousel-centered .owl-nav .owl-prev,
.ts-carousel-centered .owl-nav .owl-next {
	height: 3.75rem;
	width: 3.75rem;
}

	.ts-carousel-centered .owl-nav .owl-prev:after,
	.ts-carousel-centered .owl-nav .owl-next:after {
		font-size: 1.375rem;
		line-height: 3.75rem;
	}

	.ts-carousel-centered .owl-nav .owl-prev:hover,
	.ts-carousel-centered .owl-nav .owl-next:hover {
		background-color: rgb(25, 25, 25);
	}

.ts-carousel-centered .owl-nav .owl-next {
	right: 1.25rem;
}

.ts-carousel-centered .owl-nav .owl-prev {
	left: 1.25rem;
}

/*-------------------------------------------
  -- Hero Form Floated
-------------------------------------------*/

.floated {
	position: relative;
	width: 100%;
	z-index: 1;
	bottom: -1.875rem;
}

	.floated form {
		position: relative;
		padding: 1.875rem 3.75rem;
	}

/*-------------------------------------------
  -- Price Box
-------------------------------------------*/

.ts-price-box__promoted {
	box-shadow: .375rem .3125rem 1.5625rem rgba(0, 0, 0, .2);
	margin-top: -1.25rem;
	margin-bottom: .625rem;
	z-index: 2;
}

	.ts-price-box__promoted .ts-title {
		transform: scale(1.2);
	}

/* NEW */

/*-------------------------------------------
  -- Time Line
-------------------------------------------*/

.ts-time-line__horizontal {
	padding-bottom: .625rem;
	padding-top: .625rem;
	position: relative;
	/* timeline line */
}

	.ts-time-line__horizontal ul {
		padding-left: 1.875rem;
		list-style: none;
		position: relative;
	}

	.ts-time-line__horizontal:after {
		background-color: #474747;
		content: "";
		bottom: 6.875rem;
		height: .1875rem;
		left: 0;
		position: absolute;
		width: 100%;
	}

	.ts-time-line__horizontal .ts-time-line__item {
		flex: 0 0 auto;
		margin-right: 1.875rem;
		position: relative;
		width: 18.75rem;
	}

		.ts-time-line__horizontal .ts-time-line__item .ts-box {
			position: relative;
			/* dot */
		}

			.ts-time-line__horizontal .ts-time-line__item .ts-box:before {
				background-color: #474747;
				bottom: -4.375rem;
				border-radius: 100%;
				content: "";
				left: 1.6875rem;
				height: .75rem;
				position: absolute;
				width: .75rem;
			}

		.ts-time-line__horizontal .ts-time-line__item .ts-box {
			/*triangle*/
		}

			.ts-time-line__horizontal .ts-time-line__item .ts-box:after {
				border-color: #fff transparent transparent transparent;
				border-style: solid;
				border-width: .5rem .5rem 0 .5rem;
				bottom: -0.4375rem;
				content: "";
				left: 1.5625rem;
				height: 0;
				position: absolute;
				width: 0;
			}

		.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone {
			width: 4.375rem;
		}

			.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone .ts-box {
				background-color: #5a0c75;
				color: #fff;
			}

				.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone .ts-box:after {
					border-color: #5a0c75 transparent transparent transparent;
				}

			.ts-time-line__horizontal .ts-time-line__item.ts-time-line__milestone h5 {
				writing-mode: vertical-lr;
				margin: 0;
			}

		.ts-time-line__horizontal .ts-time-line__item figure {
			margin-left: 1.875rem;
			margin-top: 4.6875rem;
		}

			.ts-time-line__horizontal .ts-time-line__item figure small {
				text-transform: uppercase;
				opacity: .4;
			}

			.ts-time-line__horizontal .ts-time-line__item figure small,
			.ts-time-line__horizontal .ts-time-line__item figure h6 {
				font-weight: 600;
			}

	.ts-time-line__horizontal .owl-stage-outer {
		padding: 1rem 1rem 0 1rem;
	}

	.ts-time-line__horizontal .owl-stage {
		align-items: flex-end;
		display: flex;
	}

	.ts-time-line__horizontal .ts-sly-frame.ts-loaded > ul {
		align-items: flex-end;
		display: flex;
	}

/*-------------------------------------------
  -- SVG Shapes
-------------------------------------------*/

.ts-svg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 0;
	z-index: -1;
	height: 100%;
	position: absolute;
	width: 100%;
	left: 0;
	margin: auto;
}

figure.icon {
	position: relative;
}

.ts-svg__organic-shape-01 {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='103.987' height='105.599'%3E%3cpath fill='%235a0c75' d='M101.017 45.961c-10.338 22.34-33.156 61.239-62.326 59.586-31.984-1.803-44.52-48.772-36.182-73.996 15.682-47.439 120.287-40.376 98.508 14.41-10.998 23.766 1.923-4.836 0 0z'/%3E%3c/svg%3E");
	width: 100%;
}

.ts-svg__organic-shape-02 {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='101.304' height='96.392'%3E%3cpath fill='%235a0c75' d='M101.048,47.97c-3.211,14.957-7.703,45.912-27.192,48.273C51.7,98.927,15.111,64.584,3.566,47.911 C-12.879,24.164,31.942,3.488,48.745,0.637C76.996-4.157,104.241,18.745,101.048,47.97C96.953,67.041,101.521,43.635,101.048,47.97z'/%3E%3c/svg%3E");
	width: 100%;
}

.ts-svg__organic-shape-03 {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'  width='108.618' height='86.25'%3E%3cpath fill='%235a0c75' d='M108.445,46.167c-3.677,13.771-12.625,26.526-26.764,32.547c-2.528,1.363-5.106,2.603-7.67,3.738 c-3.185,1.265-6.416,2.135-9.66,2.646c-16.22,2.553-32.746-3.877-45.176-14.933c-2.598-2.371-4.996-4.983-7.159-7.81 C5.546,53.879,1.18,43.477,0.023,31.901c-0.263-7.015,1.76-13.089,5.305-18.164c1.773-2.538,3.927-4.826,6.362-6.853 c34.619-23.33,88.777,19.27,94.878,29.671C109.214,40.443,108.6,42.851,108.445,46.167z'/%3E%3c/svg%3E");
	width: 100%;
}

/* NEW */

/*-------------------------------------------
  -- Other
-------------------------------------------*/

/* Footer push up */

#ts-footer .ts-box {
	margin-top: -3.125rem;
}

.ts-tabs-presentation .tab-pane img {
	opacity: 0;
	transition: .3s ease;
	transform: translateY(1.25rem);
}

.ts-tabs-presentation .tab-pane.show.active img {
	opacity: 1;
	transform: translateY(0);
}

/* Hero navigation arrows */

#ts-hero .owl-prev, #ts-hero .owl-next {
	background-color: transparent;
	border: .125rem solid rgba(255, 255, 255, .8);
}

	#ts-hero .owl-prev:after, #ts-hero .owl-next:after {
		line-height: 2.25rem;
	}

/* Hero slider height */

.ts-hero-slider {
	height: 100% !important;
}

	.ts-hero-slider div {
		height: 100% !important;
	}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
	html {
		font-size: 85%;
	}

	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 1.875rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	.ts-column-count-sm-1 {
		column-count: 1;
	}

	.ts-column-count-sm-2 {
		column-count: 2;
	}

	.ts-column-count-sm-3 {
		column-count: 3;
	}

	.ts-column-count-sm-4 {
		column-count: 4;
	}

	.ts-promo-numbers h2 {
		font-size: 2.375rem;
	}
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
	html {
		font-size: 90%;
	}

	h1 {
		font-size: 3.25rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.375rem;
	}

	.ts-column-count-md-1 {
		column-count: 1;
	}

	.ts-column-count-md-2 {
		column-count: 2;
	}

	.ts-column-count-md-3 {
		column-count: 3;
	}

	.ts-column-count-md-4 {
		column-count: 4;
	}

	.ts-promo-numbers h2 {
		font-size: 2.5rem;
	}
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
	html {
		font-size: 95%;
	}

	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 2.125rem;
	}

	h3 {
		font-size: 1.375rem;
	}

	.ts-column-count-lg-1 {
		column-count: 1;
	}

	.ts-column-count-lg-2 {
		column-count: 2;
	}

	.ts-column-count-lg-3 {
		column-count: 3;
	}

	.ts-column-count-lg-4 {
		column-count: 4;
	}

	.ts-block {
		padding-bottom: 6.25rem;
		padding-top: 6.25rem;
	}

	.ts-card__image {
		height: 12.5rem;
	}

	.ts-promo-numbers h2 {
		font-size: 2.75rem;
	}
}

@media (min-width: 75rem) {
	html {
		font-size: 100%;
	}

	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.625rem;
	}

	h3 {
		font-size: 1.625rem;
	}

	.ts-column-count-xl-1 {
		column-count: 1;
	}

	.ts-column-count-xl-2 {
		column-count: 2;
	}

	.ts-column-count-xl-3 {
		column-count: 3;
	}

	.ts-column-count-xl-4 {
		column-count: 4;
	}

	.ts-block {
		padding-bottom: 8.125rem;
		padding-top: 8.125rem;
	}

	.ts-card__image {
		height: 15.625rem;
	}

	.navbar.navbar-expand-xl .ts-background {
		opacity: 0;
	}

	.ts-promo-numbers h2 {
		font-size: 3rem;
	}

	.ts-carousel-centered .owl-nav .owl-next {
		right: 5rem;
	}

	.ts-carousel-centered .owl-nav .owl-prev {
		left: 5rem;
	}

	.floated form {
		padding: 2.5rem 5rem;
	}
}

@media (max-width: 35.9375rem) {
	h1 {
		font-size: 2.625rem;
		margin-bottom: 1.25rem;
	}

	h2 {
		font-size: 1.875rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	[class*="ts-column-count-"] {
		column-count: 1;
	}

	.ts-xs-text-center {
		text-align: center !important;
	}

	.ts-title {
		margin-bottom: 2.5rem;
	}

	.ts-promo-numbers h2 {
		font-size: 2.25rem;
	}

	.ts-promo-number {
		margin-bottom: 1.875rem;
	}
}

@media (min-width: 36rem) and (max-width: 61.9375rem) {
	h1 {
		margin-bottom: 1.875rem;
	}

	.ts-title {
		margin-bottom: 5rem;
	}

	.ts-block-inside {
		padding: 2.5rem;
	}
}

@media (min-width: 62rem) {
	h1 {
		margin-bottom: 2.5rem;
	}

	.ts-title {
		margin-bottom: 6.25rem;
	}

	.ts-block-inside {
		padding: 3.75rem;
	}

	.navbar.navbar-expand-lg .ts-background {
		opacity: 0;
	}

	.floated {
		position: absolute;
	}
}

@media (max-width: 47.9375rem) {
	h4 {
		font-size: 1.125rem;
	}
}

@media (min-width: 48rem) {
	h4 {
		font-size: 1.25rem;
	}

	.navbar.navbar-expand-md .ts-background {
		opacity: 0;
	}
}

@media (max-width: 61.9375rem) {
	.ts-card__image {
		height: 15.625rem;
	}
}

@media (min-width: 36rem) {
	.navbar.navbar-expand-sm .ts-background {
		opacity: 0;
	}

	.ts-carousel-centered .owl-nav .owl-next {
		right: 2.5rem;
	}

	.ts-carousel-centered .owl-nav .owl-prev {
		left: 2.5rem;
	}
}


.main-svg-slider {
	transform: scaleX(-1) !important;
}

.blog-slider {
	width: 95%;
	position: relative;
	max-width: 800px;
	margin: auto;
	background: #fff;
	box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	padding: 25px;
	border-radius: 25px;
	height: 400px;
	transition: all 0.3s;
}

@media screen and (max-width: 992px) {
	.blog-slider {
		max-width: 680px;
		height: 400px;
	}
}

@media screen and (max-width: 768px) {
	.blog-slider {
		min-height: 500px;
		height: auto;
		margin: 180px auto;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.blog-slider {
		height: 350px;
	}
}

.blog-slider__item {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.blog-slider__item {
		flex-direction: column;
	}
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
	opacity: 1;
	transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
	opacity: 1;
	transform: none;
}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
		transition-delay: 0.3s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
		transition-delay: 0.4s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
		transition-delay: 0.5s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
		transition-delay: 0.6s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
		transition-delay: 0.7s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
		transition-delay: 0.8s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
		transition-delay: 0.9s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
		transition-delay: 1s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
		transition-delay: 1.1s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
		transition-delay: 1.2s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
		transition-delay: 1.3s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
		transition-delay: 1.4s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
		transition-delay: 1.5s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
		transition-delay: 1.6s;
	}

	.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
		transition-delay: 1.7s;
	}

.blog-slider__img {
	width: 300px;
	flex-shrink: 0;
	height: 300px;
	box-shadow: 4px 13px 30px 1px rgba(98, 38, 224, 0.2);
	border-radius: 20px;
	transform: translateX(-80px);
	overflow: hidden;
}

	.blog-slider__img::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(147deg, #a16eff 0%, #5a0c75 74%);
		border-radius: 20px;
		opacity: 0.6;
	}

@media screen and (max-width: 768px) {
	.blog-slider__img {
		transform: translateY(-50%);
		width: 90%;
	}
}

@media screen and (max-width: 576px) {
	.blog-slider__img {
		width: 95%;
	}
}

@media screen and (max-height: 500px) and (min-width: 992px) {
	.blog-slider__img {
		height: 270px;
	}
}

.blog-slider__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	border-radius: 20px;
	transition: all 0.3s;
}

.blog-slider__content {
	padding-right: 25px;
}

@media screen and (max-width: 768px) {
	.blog-slider__content {
		margin-top: -80px;
		text-align: center;
		padding: 0 30px;
	}
}

@media screen and (max-width: 576px) {
	.blog-slider__content {
		padding: 0;
	}
}

.blog-slider__content > * {
	opacity: 0;
	transform: translateY(25px);
	transition: all 0.4s;
}

.blog-slider__code {
	color: #7b7992;
	margin-bottom: 15px;
	display: block;
	font-weight: 500;
}

.blog-slider__title {
	font-size: 24px;
	font-weight: 700;
	color: #0d0925;
	margin-bottom: 20px;
}

.blog-slider__text {
	color: #4e4a67;
	margin-bottom: 30px;
	line-height: 1.5em;
}

.blog-slider__button {
	display: inline-flex;
	padding: 15px 35px;
	border-radius: 50px;
	color: #fff;
	background-image: linear-gradient(147deg, #a16eff 0%, #5a0c75 74%);
	box-shadow: 0px 14px 80px rgba(98, 38, 224, 0.4);
	text-decoration: none;
	font-weight: 500;
	justify-content: center;
	text-align: center;
	letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
	.blog-slider__button {
		width: 100%;
	}
}

.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.blog-slider__pagination {
	position: absolute;
	z-index: 21;
	right: 20px;
	width: 11px !important;
	text-align: center;
	left: auto !important;
	top: 50%;
	bottom: auto !important;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.blog-slider__pagination {
		transform: translateX(-50%);
		left: 50% !important;
		top: 205px;
		width: 100% !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 8px 0 !important;
}

@media screen and (max-width: 768px) {
	.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 5px;
	}
}

.blog-slider__pagination .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	display: block;
	border-radius: 10px;
	background: #062744;
	opacity: 0.2;
	transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: #5a0c75;
	height: 30px;
	box-shadow: 0px 0px 20px rgba(98, 38, 224, 0.3);
}

@media screen and (max-width: 768px) {
	.blog-slider__pagination .swiper-pagination-bullet-active {
		height: 11px;
		width: 30px;
	}
}
/* برای دسکتاپ */
.blog-slider {
	display: block; /* نمایش اسلایدر */
}

.blog-slider__wrp {
	display: flex; /* نمایش اسلایدر به‌صورت افقی */
}

.blog-slider__item {
	flex: 0 0 auto; /* آیتم‌های اسلایدر در کنار هم */
}

/* برای موبایل */
@media (max-width: 767px) {
	.blog-slider {
		display: block; /* نمایش آیتم‌ها به‌صورت جداگانه */
	}

	.blog-slider__wrp {
		display: block; /* نمایش بلوک‌های جداگانه */
	}

	.blog-slider__item {
		display: block; /* نمایش هر آیتم به‌صورت بلوک جداگانه */
		margin-bottom: 20px; /* فاصله بین آیتم‌ها */
	}

	.swiper-wrapper, .swiper-pagination {
		display: none; /* پنهان کردن اسلایدر و pagination در موبایل */
	}
}


#ts-footer a {
	text-decoration: none;
}

#ts-footer a:hover {
	text-decoration: underline;
}

.footer__social {
	margin-top: 20px;
}

.social-icon {
	color: #5a0c75;
	font-size: 24px;
	margin: 0 10px;
	transition: color 0.3s ease, transform 0.3s ease;
}

	.social-icon:hover {
		color: #3498db;
		transform: scale(1.1);
	}
.ts-box {
	border-radius: 8px;
	padding: 30px;
}

	.ts-box h5 {
		font-weight: bold;
		font-size: 18px;
		margin-bottom: 15px;
	}

	.ts-box ul {
		padding: 0;
		list-style: none;
	}

		.ts-box ul li {
			margin-bottom: 10px;
		}

			.ts-box ul li a {
				color: #fff;
				text-decoration: none;
				font-size: 16px;
				transition: color 0.3s ease, transform 0.3s ease;
			}

				.ts-box ul li a:hover {
					color: #ff9800; /* رنگ نارنجی */
					transform: translateX(5px);
					text-decoration: underline;
				}

.footer__social {
	margin-top: 20px;
}

	.footer__social .social-icon {
		color: #5a0c75; /* رنگ آیکون‌ها */
		font-size: 24px;
		margin: 0 15px;
		transition: color 0.3s ease, transform 0.3s ease;
	}

		.footer__social .social-icon:hover {
			color: #3498db; /* تغییر رنگ آیکون‌ها به آبی */
			transform: scale(1.1); /* بزرگتر شدن آیکون‌ها */
		}

.doc_1 {
	z-index: 1 !important;
	width: 100% !important;
	position: absolute !important;
	text-align:center!important;
}
.doc_2 {
	padding-bottom: 1rem 1.5rem !important;
}
.doc_3 {
	z-index: 2 !important;
	left: 0% !important;
	bottom: 0% !important;
	position: absolute !important;
}
.doc_img_1 {
	display: inline-block !important;
}
.doc_img_3 {
	display: inline-block !important;
}
.blog-posts article {
	background-color: var(--surface-color);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 30px;
	height: 100%;
}

.blog-posts .post-img {
	/*max-height: 440px;*/
	margin: -30px -30px 0 -30px;
	overflow: hidden;

}

.blog-posts .title {
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}

	.blog-posts .title a {
		color: rgb(90, 12, 117);
		transition: 0.3s;
	}

		.blog-posts .title a:hover {
			color: rgb(90, 12, 117);
		}

.blog-posts .meta-top {
	margin-top: 20px;
	color: rgb(90, 12, 117);
}

	.blog-posts .meta-top ul {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		align-items: center;
		padding: 0;
		margin: 0;
	}

		.blog-posts .meta-top ul li + li {
			padding-left: 20px;
		}

	.blog-posts .meta-top i {
		font-size: 16px;
		margin-right: 8px;
		line-height: 0;
		color: rgb(90, 12, 117);
	}

	.blog-posts .meta-top a {
		color: rgb(90, 12, 117);
		font-size: 14px;
		display: inline-block;
		line-height: 1;
	}

.blog-posts .content {
	margin-top: 20px;
}

	.blog-posts .content .read-more {
		text-align: right;
	}

		.blog-posts .content .read-more a {
			background: rgb(90, 12, 117);
			color: #ffffff;
			display: inline-block;
			padding: 8px 30px;
			transition: 0.3s;
			font-size: 14px;
			border-radius: 4px;
		}

			.blog-posts .content .read-more a:hover {
				background: rgb(90, 12, 117);
			}

/*--------------------------------------------------------------
		# Blog Pagination Section
		--------------------------------------------------------------*/
.blog-pagination {
	padding-top: 0;
	color: rgb(90, 12, 117);
}

	.blog-pagination ul {
		display: flex;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.blog-pagination li {
		margin: 0 5px;
		transition: 0.3s;
	}

		.blog-pagination li a {
			color: rgb(90, 12, 117);
			padding: 7px 16px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

			.blog-pagination li a.active,
			.blog-pagination li a:hover {
				background: rgb(90, 12, 117);
				color: white;
			}

				.blog-pagination li a.active a,
				.blog-pagination li a:hover a {
					color: rgb(90, 12, 117);
				}

/*--------------------------------------------------------------
		# Blog Details Section
		--------------------------------------------------------------*/
.blog-details {
	padding-bottom: 30px;
}

	.blog-details .article {
		background-color: var(--surface-color);
		padding: 30px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	}

	.blog-details .post-img {
		margin: -30px -30px 20px -30px;
		overflow: hidden;
	}

	.blog-details .title {
		color: rgb(90, 12, 117);
		font-size: 28px;
		font-weight: 700;
		padding: 0;
		margin: 30px 0;
	}

	.blog-details .content {
		margin-top: 20px;
	}

		.blog-details .content h3 {
			font-size: 22px;
			margin-top: 30px;
			font-weight: bold;
		}

		.blog-details .content blockquote {
			overflow: hidden;
			background-color: rgb(90, 12, 117);
			padding: 60px;
			position: relative;
			text-align: center;
			margin: 20px 0;
		}

			.blog-details .content blockquote p {
				color: rgb(90, 12, 117);
				line-height: 1.6;
				margin-bottom: 0;
				font-style: italic;
				font-weight: 500;
				font-size: 22px;
			}

			.blog-details .content blockquote:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				bottom: 0;
				width: 3px;
				background-color: rgb(90, 12, 117);
				margin-top: 20px;
				margin-bottom: 20px;
			}

	.blog-details .meta-top {
		margin-top: 20px;
		color: rgb(90, 12, 117);
	}

		.blog-details .meta-top ul {
			display: flex;
			flex-wrap: wrap;
			list-style: none;
			align-items: center;
			padding: 0;
			margin: 0;
		}

			.blog-details .meta-top ul li + li {
				padding-left: 20px;
			}

		.blog-details .meta-top i {
			font-size: 16px;
			margin-right: 8px;
			line-height: 0;
			color: rgb(90, 12, 117);
		}

		.blog-details .meta-top a {
			color: rgb(90, 12, 117);
			font-size: 14px;
			display: inline-block;
			line-height: 1;
		}

	.blog-details .meta-bottom {
		padding-top: 10px;
		border-top: 1px solid rgb(90, 12, 117);
	}

		.blog-details .meta-bottom i {
			color: rgb(90, 12, 117);
			display: inline;
		}

		.blog-details .meta-bottom a {
			transition: 0.3s;
			color:#ffffff;
			text-decoration:none;
		}

		
		.blog-details .meta-bottom .cats {
			list-style: none;
			display: inline;
			font-size: 14px;
			padding:0;
		}

			.blog-details .meta-bottom .cats li {
				display: inline-block;
				background: rgb(90, 12, 117) ;
				color: #ffffff;
				border-radius: 10px;
				padding: 0px 8px;
				text-decoration: none;
			}

		.blog-details .meta-bottom .tags {
			list-style: none;
			display: inline;
			padding: 0;
			font-size: 14px;
		}

			.blog-details .meta-bottom .tags li {
				display: inline-block;
			}

				.blog-details .meta-bottom .tags li + li::before {
					padding-right: 6px;
					color: rgb(90, 12, 117);
					content: ",";
				}

		.blog-details .meta-bottom .share {
			font-size: 16px;
		}

			.blog-details .meta-bottom .share i {
				padding-left: 5px;
			}
	.blog-details .meta-top ul li {
		display: flex;
		align-items: center;
		gap: 5px;
	}
/*--------------------------------------------------------------
		# Blog Author Section
		--------------------------------------------------------------*/
.blog-author {
	padding: 10px 0 40px 0;
}

	.blog-author .author-container {
		background-color: #ffffff;
		padding: 20px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		border-radius:10px;
	}

	.blog-author img {
		max-width: 90px;
		height:90px;
		margin-left: 20px;
	}

	.blog-author h4 {
		font-weight: 600;
		font-size: 20px;
		margin-bottom: 8px;
		padding: 0;
		color: rgb(90, 12, 117);
	}

	.blog-author .social-links {
		margin: 0 10px 10px 0;
	}

		.blog-author .social-links a {
			color: rgb(90, 12, 117);
			margin-right: 5px;
		}

	.blog-author p {
		font-style: italic;
		color: rgb(90, 12, 117);
		margin-bottom: 0;
	}

/*--------------------------------------------------------------
		# Blog Comments Section
		--------------------------------------------------------------*/
/*------------------------------ Blog Comments ------------------------------*/
.blog-comments {
	padding: 10px 0;
}

	.blog-comments .comments-count {
		font-weight: bold;
	}

	.blog-comments .comment {
		margin-top: 30px;
		position: relative;
	}

		.blog-comments .comment .comment-img {
			margin-right: 14px;
		}

			.blog-comments .comment .comment-img img {
				width: 60px;
				border-radius: 50%;
			}

		.blog-comments .comment h5 {
			font-size: 16px;
			margin-bottom: 2px;
		}

			.blog-comments .comment h5 a {
				font-weight: bold;
				color: rgb(90, 12, 117); /* بنفش */
				transition: 0.3s;
			}

				.blog-comments .comment h5 a:hover {
					color: #4e148c; /* بنفش تیره */
				}

			.blog-comments .comment h5 .reply {
				padding-left: 10px;
				color: rgba(106, 27, 154, 0.8); /* بنفش روشن */
			}

				.blog-comments .comment h5 .reply i {
					font-size: 20px;
				}

		.blog-comments .comment time {
			display: block;
			font-size: 14px;
			color: rgba(106, 27, 154, 0.6); /* بنفش کمرنگ */
			margin-bottom: 5px;
		}

		.blog-comments .comment.comment-reply {
			padding-left: 40px;
		}

/*------------------------------ Comment Form Section ------------------------------*/
.comment-form {
	padding-top: 10px;
}

	.comment-form form {
		background-color: #f9f9f9; /* رنگ پس‌زمینه فرم */
		margin-top: 30px;
		padding: 30px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		border-radius: 8px;
	}

		.comment-form form h4 {
			font-weight: bold;
			font-size: 22px;
			color: rgb(90, 12, 117); /* بنفش */
		}

		.comment-form form p {
			font-size: 14px;
		}

		.comment-form form input {
			background-color: #f9f9f9; /* رنگ پس‌زمینه ورودی‌ها */
			color: #333333; /* رنگ متن */
			border: 1px solid rgba(106, 27, 154, 0.7); /* رنگ بنفش روشن برای مرز */
			font-size: 14px;
			border-radius: 4px;
			padding: 10px 10px;
			text-align:right;
		}

			.comment-form form input:focus {
				color: #333333;
				background-color: #f9f9f9;
				box-shadow: none;
				border-color: rgb(90, 12, 117); /* بنفش */
			}

			.comment-form form input::placeholder {
				color: rgba(51, 51, 51, 0.5); /* رنگ خاکی برای placeholder */
			}

		.comment-form form textarea {
			background-color: #f9f9f9; /* رنگ پس‌زمینه textarea */
			color: #333333; /* رنگ متن */
			border: 1px solid rgba(106, 27, 154, 0.7); /* رنگ بنفش روشن */
			border-radius: 4px;
			padding: 10px 10px;
			font-size: 14px;
			height: 120px;
		}

			.comment-form form textarea:focus {
				color: #333333;
				box-shadow: none;
				border-color: rgb(90, 12, 117); /* بنفش */
				background-color: #f9f9f9;
			}

			.comment-form form textarea::placeholder {
				color: rgba(51, 51, 51, 0.5); /* رنگ خاکی برای placeholder */
			}

		.comment-form form .form-group {
			margin-bottom: 25px;
		}

		.comment-form form .btn-primary {
			border-radius: 4px;
			padding: 10px 20px;
			border: 0;
			background-color: rgb(90, 12, 117); /* بنفش */
			color: #ffffff; /* رنگ سفید برای متن دکمه */
		}

			.comment-form form .btn-primary:hover {
				color: #ffffff;
				background-color: #4e148c; /* بنفش تیره برای hover */
			}

		.comment-form form select {
			background-color: #f9f9f9; /* رنگ پس‌زمینه ورودی‌ها */
			color: #333333; /* رنگ متن */
			border: 1px solid rgba(106, 27, 154, 0.7); /* رنگ بنفش روشن برای مرز */
			font-size: 14px;
			border-radius: 4px;
			padding: 10px 10px;
		}

			.comment-form form select:focus {
				color: #333333;
				background-color: #f9f9f9;
				box-shadow: none;
				border-color: rgb(90, 12, 117); /* بنفش */
			}

			.comment-form form select::placeholder {
				color: rgba(51, 51, 51, 0.5); /* رنگ خاکی برای placeholder */
			}
/*--------------------------------------------------------------
		# Widgets
		--------------------------------------------------------------*/
.widgets-container {
	background-color: var(--surface-color);
	padding: 30px;
	margin: 60px 0 30px 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
	color: rgb(90, 12, 117);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.widget-item {
	margin-bottom: 40px;
}

	.widget-item:last-child {
		margin-bottom: 0;
	}

.search-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6; /* پس‌زمینه روشن */
	border: 2px solid rgb(90, 12, 117); /* بنفش */
	border-radius: 25px; /* گوشه‌های گرد */
	padding: 5px 15px;
	max-width: 400px;
	margin: 20px auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* سایه */
}

	/* استایل اینپوت */
	.search-box input[type="text"] {
		flex: 1;
		border: none;
		outline: none;
		padding: 10px;
		font-size: 16px;
		color: #4b0082; /* بنفش تیره */
		background: none;
		font-family: 'Shabnam', sans-serif;
	}

	/* استایل دکمه */
	.search-box button {
		background: rgb(90, 12, 117); /* بنفش */
		border: none;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: background 0.3s ease;
	}

		/* آیکون دکمه */
		.search-box button i {
			color: #ffffff; /* سفید */
			font-size: 18px;
		}

		/* تغییر رنگ هنگام هاور روی دکمه */
		.search-box button:hover {
			background: #4b0082; /* بنفش پررنگ‌تر */
		}

/* استایل بخش دسته‌بندی‌ها */
.categories-widget {
	background: #f9f9f9; /* پس‌زمینه ملایم */
	padding: 20px;
	border-radius: 10px; /* گوشه‌های گرد */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* سایه ظریف */
	font-family: 'Shabnam', sans-serif;
}

.widget-title {
	font-size: 20px;
	font-weight: bold;
	color: rgb(90, 12, 117); /* بنفش */
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}

	.widget-title::after {
		content: '';
		display: block;
		width: 50px;
		height: 3px;
		background: rgb(90, 12, 117); /* خط زیر عنوان */
		margin: 10px auto 0;
	}

.category-list {
	list-style: none; /* حذف مارکر‌های لیست */
	padding: 0;
	margin: 0;
}

	.category-list li {
		margin: 10px 0;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

		.category-list li a {
			display: flex;
			justify-content: space-between;
			align-items: center;
			text-decoration: none; /* حذف خط زیر لینک‌ها */
			background: #ffffff; /* پس‌زمینه آیتم */
			padding: 10px 15px;
			border-radius: 8px;
			color: #4b0082; /* بنفش تیره */
			font-size: 16px;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* سایه ظریف */
			transition: background 0.3s ease, color 0.3s ease;
		}

			.category-list li a:hover {
				background: rgb(90, 12, 117); /* بنفش */
				color: #ffffff; /* سفید */
				box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* سایه بیشتر */
				transform: scale(1.02); /* بزرگنمایی کوچک */
			}

.category-title {
	font-weight: bold;
}

.category-count {
	font-size: 14px;
	color: #999; /* خاکستری */
}

/* حذف خط زیر متن لینک در حالت hover */
.category-list li a:hover {
	text-decoration: none;
}

.recent-posts-widget {
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.recent-posts-widget-detail {
	margin: auto 10px;
	background: #ffffff; /* پس‌زمینه آیتم */
	padding: 10px 15px;
	border-radius: 8px;
	color: #4b0082; /* بنفش تیره */
	font-size: 16px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* سایه ظریف */
	transition: background 0.3s ease, color 0.3s ease;
}

.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 15px;
}

	.recent-posts-widget .post-item:last-child {
		margin-bottom: 0;
	}

	.recent-posts-widget .post-item img {
		width: 80px;
		margin-right: 15px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* سایه ظریف */
		border-radius:5px;
	}

	.recent-posts-widget .post-item h4 {
		font-size: 15px;
		font-weight: bold;
		margin-bottom: 5px;
	}

		.recent-posts-widget .post-item h4 a {
			color: rgb(90, 12, 117);
			transition: 0.3s;
		}

			.recent-posts-widget .post-item h4 a:hover {
				color: rgb(90, 12, 117);
			}

	.recent-posts-widget .post-item time {
		display: block;
		font-style: italic;
		font-size: 14px;
		color: rgb(90, 12, 117);
	}

.tags-widget {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}




/* لیست تگ‌ها */
.tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tags-list li {
    margin: 0;
}

/* استایل لینک‌ها */
	.tags-list li a {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.9rem;
		color: #fff;
		background-color: rgb(90, 12, 117); /* رنگ بنفش */
		border-radius: 10px; /* برای دایره‌ای کردن */
		text-decoration: none;
		transition: all 0.3s ease;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
		overflow: hidden; /* برای اطمینان از برش متن‌های بلند */
		text-overflow: ellipsis;
		white-space: nowrap; /* جلوگیری از شکسته شدن متن */
		padding:0 8px;
	}

		.tags-list li a:hover {
			background-color: rgb(90, 12, 117); /* سایه تیره‌تر بنفش */
			transform: translateY(-3px);
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		}

.main-container {
	margin-bottom: 150px;
}

.heading {
	background: linear-gradient(135deg, rgb(90, 12, 117), #9c27b0); /* پس‌زمینه با گرادیانت بنفش */
	color: #ffffff; /* رنگ متن سفید */
	padding: 50px 0; /* فاصله داخلی بخش */
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* سایه زیبا */
}

	/* استایل متن عنوان */
	.heading .heading-title {
		font-size: 3rem; /* سایز بزرگ برای عنوان */
		font-weight: bold; /* ضخامت بیشتر برای تاکید */
		text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* سایه زیر متن */
	}

	/* استایل زیرعنوان */
	.heading .heading-subtitle {
		font-size: 1.2rem; /* اندازه مناسب برای زیرعنوان */
		opacity: 0.85; /* کمی شفاف‌تر */
		text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); /* سایه ظریف */
		margin-top: 10px; /* فاصله بالا */
	}

/* استایل برای نمایش روی صفحه‌های کوچک */
@media (max-width: 768px) {
	.heading .heading-title {
		font-size: 2.5rem; /* کاهش سایز برای موبایل */
	}

	.heading .heading-subtitle {
		font-size: 1rem;
	}
}


/* بخش پست‌های وبلاگ */
.blog-posts .post-img img {

	border-radius: 10px; /* گوشه‌های گرد برای تصاویر */
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* سایه برای تصاویر */
	transition: transform 0.3s ease-in-out; /* انیمیشن در حالت هاور */
	object-fit: cover; /* یا "contain" بسته به نیاز شما */
}

	.blog-posts .post-img img:hover {
		transform: scale(1.05); /* بزرگنمایی هنگام هاور */
	}

/* عنوان پست */
.blog-posts .title a {
	font-size: 1.8rem;
	font-weight: bold;
	color: rgb(90, 12, 117); /* رنگ بنفش */
	text-decoration: none;
	transition: color 0.3s ease;
}

	.blog-posts .title a:hover {
		color: #9c27b0; /* تغییر رنگ در هاور */
	}

/* متا دیتا */
.blog-posts .meta-top ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 15px;
	font-size: 0.9rem;
	color: rgb(90, 12, 117); /* رنگ بنفش کم‌رنگ */
}

	.blog-posts .meta-top ul li {
		display: flex;
		align-items: center;
		gap: 5px;
	}

		.blog-posts .meta-top ul li a {
			color: inherit;
			text-decoration: none;
			transition: color 0.3s ease;
		}

			.blog-posts .meta-top ul li a:hover {
				color: #9c27b0;
			}

/* محتوای پست */
.blog-posts .content p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555; /* رنگ متنی ساده */
	margin-top: 15px;
}

/* دکمه بیشتر بخوانید */
.blog-posts .read-more a {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: rgb(90, 12, 117); /* پس‌زمینه بنفش */
	color: #fff; /* رنگ متن سفید */
	border-radius: 5px;
	text-decoration: none;
	transition: background 0.3s ease;
}

	.blog-posts .read-more a:hover {
		background: #9c27b0; /* تغییر رنگ پس‌زمینه در هاور */
	}

/* بخش صفحه‌بندی */
.blog-pagination ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin-top: 30px;
}

	.blog-pagination ul li a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: rgb(90, 12, 117); /* رنگ پس‌زمینه دکمه‌ها */
		color: #fff; /* رنگ متن سفید */
		text-decoration: none;
		transition: background 0.3s ease, transform 0.2s ease;
		font-weight: bold;
	}

		.blog-pagination ul li a:hover {
			background: #9c27b0; /* تغییر رنگ دکمه‌ها در هاور */
			transform: scale(1.1); /* انیمیشن بزرگنمایی */
		}

		.blog-pagination ul li a.active {
			background: #9c27b0; /* رنگ بنفش پررنگ برای صفحه فعال */
		}

		/* آیکون‌ها */
		.blog-pagination ul li a i {
			font-size: 1rem;
		}

.main-blog-container {
	padding-bottom: 30px;
}

.main-header {
	position: relative;
	background-color: rgb(90, 12, 117); /* بنفش */
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
	overflow: hidden;
}


.blog-wave-svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 220px;
}

.blog-wave1 path {
	fill: #ffffff;
	opacity: 0.6;
	animation: waveAnim1 8s ease-in-out infinite;
}

.blog-wave2 path {
	fill: #ffffff;
	opacity: 0.4;
	animation: waveAnim2 10s ease-in-out infinite;
}

.blog-wave3 path {
	fill: #ffffff;
	opacity: 1;
	animation: waveAnim3 12s ease-in-out infinite;
}

@keyframes waveAnim1 {
	0%, 100% {
		d: path("M0,30 C300,70 700,0 1200,30 C1700,60 2100,20 2400,30 L2400,100 L0,100 Z	");
	}

	50% {
		d: path("M0,40 C300,20 700,60 1200,40 C1700,20 2100,60 2400,40 L2400,100 L0,100 Z");
	}
}

@keyframes waveAnim2 {
	0%, 100% {
		d: path("M0,40 C400,80 800,20 1200,40 C1600,60 2000,30 2400,40 L2400,100 L0,100 Z");
	}

	50% {
		d: path("M0,30 C400,10 800,60 1200,30 C1600,0 2000,60 2400,30 L2400,100 L0,100 Z");
	}
}

@keyframes waveAnim3 {
	0%, 100% {
		d: path("M0,35 C350,65 750,10 1200,35 C1650,60 2050,25 2400,35 L2400,100 L0,100 Z");
	}

	50% {
		d: path("M0,45 C350,25 750,60 1200,45 C1650,20 2050,60 2400,45 L2400,100 L0,100 Z");
	}
}
.comment-title {
	color: rgb(90, 12, 117);
	margin-bottom:15px
}

	.rotate-icon {
		transition: transform 0.3s ease;
	}

	.rotate-180 {
		transform: rotate(180deg);
	}

	.spin-animation {
		animation: spin 0.5s ease;
	}

	@keyframes spin {
		from {
			transform: rotate(0deg);
		}

		to {
			transform: rotate(360deg);
		}
	}

	.bounce-animation {
		animation: bounce 0.4s ease;
	}

	@keyframes bounce {
		0%, 100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(-8px);
		}
	}

	.doc-content p {
		margin: 0 !important;
	}

.doc-img{
	border-radius:20px;
}

.pulse-button {
	position: relative;
	background: linear-gradient(145deg, #5a0c75, #87278f);
	color: #fff;
	border-radius: 60px;
	border: none;
	cursor: pointer;
	outline: none;
	box-shadow: 0 10px 15px rgba(90, 12, 117, 0.4), inset 0 -3px 8px rgba(255, 255, 255, 0.15), inset 0 3px 6px rgba(0, 0, 0, 0.3);
	transform-style: preserve-3d;
	animation: pulse3d 2.5s ease-in-out infinite;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	user-select: none;
	font-size:16px;
}

	.pulse-button::before {
		content: '';
		position: absolute;
		top: -20%;
		left: -20%;
		width: 140%;
		height: 140%;
		background: radial-gradient(circle at center, rgba(255,255,255,0.3), transparent 70%);
		filter: blur(10px);
		opacity: 0.7;
		border-radius: 60px;
		pointer-events: none;
		animation: lightMove 3s linear infinite;
		transform-style: preserve-3d;
		z-index: 0;
	}

	.pulse-button:hover {
		transform: scale(1.1) translateZ(15px) rotateX(8deg) rotateY(-8deg);
		box-shadow: 0 20px 30px rgba(90, 12, 117, 0.6), inset 0 -5px 12px rgba(255, 255, 255, 0.25), inset 0 5px 10px rgba(0, 0, 0, 0.45);
	}

@keyframes pulse3d {
	0%, 100% {
		transform: scale(1) translateZ(0) rotateX(0) rotateY(0);
		box-shadow: 0 10px 15px rgba(90, 12, 117, 0.4), inset 0 -3px 8px rgba(255, 255, 255, 0.15), inset 0 3px 6px rgba(0, 0, 0, 0.3);
	}

	50% {
		transform: scale(1.12) translateZ(18px) rotateX(6deg) rotateY(-6deg);
		box-shadow: 0 22px 40px rgba(90, 12, 117, 0.7), inset 0 -6px 14px rgba(255, 255, 255, 0.3), inset 0 6px 12px rgba(0, 0, 0, 0.6);
	}
}

@keyframes lightMove {
	0% {
		transform: translateX(-100%) translateZ(0);
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(100%) translateZ(0);
		opacity: 0.6;
	}
}
.map {
	position: relative;
	height: 37.5rem; /* ارتفاع iframe */
	min-height: 12.5rem;
	width: 100%;
	overflow: hidden;
}

	.map iframe {
		width: 100%;
		height: 100%;
		border: 0;
		display: block;
	}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(90, 12, 117, 0.6);
	transition: opacity 0.5s ease;
	pointer-events: none; /* برای اینکه لایه جلویی مانع کلیک روی نقشه نشود */
}

.map:hover .map-overlay {
	opacity: 0; /* محو شدن لایه وقتی موس روی نقشه است */
}
a:hover {
	text-decoration: none!important;
}
.blogs-img{
	width:100%;
}
.custom-sidebar{
	top:120px
}

/*************************** faq section **************************/
section.faq-container {
	background-color: #5a0c75;
	padding: 50px 20px;
	border-radius: 20px;
	font-family: 'Shabnam', sans-serif !important;
}

.faq-section, .accordion-button, .accordion-body {
	font-family: 'Shabnam', sans-serif !important;
}

.faq-section {
	background-color: #5a0c75;
	border-radius: 15px;
	padding: 40px;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 32px rgba(90, 12, 117, 0.7);
	color: #fff;
	font-family: 'Shabnam';
}

.accordion-button {
	background-color: transparent;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	border-radius: 10px;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	display: flex;
	align-items: center;
}

	.accordion-button:not(.collapsed) {
		background-color: #ffb800;
		color: #5a0c75;
	}

	.accordion-button::after {
		/* رنگ زرد فلش وقتی بسته است */
		filter: invert(91%) sepia(8%) saturate(1149%) hue-rotate(318deg) brightness(91%) contrast(89%);
		transition: transform 0.3s ease, filter 0.3s ease;
	}

	.accordion-button.collapsed::after {
		transform: rotate(0deg);
	}

	.accordion-button:not(.collapsed)::after {
		transform: rotate(180deg);
		/* رنگ بنفش فلش وقتی باز است */
		filter: invert(20%) sepia(44%) saturate(508%) hue-rotate(239deg) brightness(88%) contrast(86%);
	}

	.accordion-button .faq-icon {
		/* رنگ زرد آیکون وقتی بسته است */
		color: #ffb800;
		margin-left: 10px;
		font-size: 1.5rem;
		transition: color 0.3s ease;
	}

	.accordion-button:not(.collapsed) .faq-icon {
		/* رنگ بنفش آیکون وقتی باز است */
		color: #5a0c75;
	}

.accordion-item {
	background-color: rgba(255, 255, 255, 0.05);
	border: none;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.accordion-body {
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.6;
	background: linear-gradient(145deg, #5a0c75, #4a0964);
	padding: 25px;
	border-radius: 0 0 15px 15px;
	border-top: 2px solid #ffb800;
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.4);
	animation: fadeIn 0.4s ease-in-out;
	transform-style: preserve-3d;
	transition: all 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


