@charset "UTF-8";
@import url(font_iranYekan.css);

:root {
	--color-primary: #7b208e;
	--color-primaryLight: #81548a;
	--color-primaryAlpha: #7a238c4d;
	--color-secondary: #0148A0;
	--color-secondaryAlpha: rgba(1, 72, 160, 0.4);
	--color-light: #E8E8E8;
	--color-text: #333;
	--color-textLight: #555;
	--color-price: #66b600;
	--color-priceOld: #777777;
	--color-discount: #c50000;
	--color-border: #b5b7b9;
	--color-borderLight: #dde1e9;
	--color-img: #f4f4f4;
	--color-hover: #7a238c32;
}

@media screen and (min-width:768px) {
	::-webkit-scrollbar {
		width: 4px;
		height: 2px;
	}

	::-webkit-scrollbar-track {
		background: #ddd;
		border-radius: 10px;
	}

	::-webkit-scrollbar-thumb {
		background: #666;
		border-radius: 10px;
		width: 12px;
	}

	::-webkit-scrollbar-thumb:hover {
		background: #444;
	}
}

* {
	font-family: 'default';
}

html {
	font-size: 14px;
	direction: rtl;
}

@media screen and (max-width:767px) {
	html {
		font-size: 13px;
	}
}

html,
body,
form,
fieldset,
table,
tr,
td,
img,
div {
	font-family: 'default' !important;
}

html,
body {
	overflow-x: hidden;
	color: var(--color-text);
	background-color: #fff;
}

body {
	line-height: normal;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

/*----------------------------------------------------------------------
btn
----------------------------------------------------------------------*/
.btn {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	border-radius: 25px;
	padding: 10px 15px;
}

.btn.btn-flat {
	border: none;
	box-shadow: none;
}

.btn.btn-flex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}


.btn.btn-w100 {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
}

.btn.btn-primary {
	background-color: var(--color-primary);
	color: #fff;
	border: none;
}

.btn.btn-primary.btn-outline {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background-color: transparent;
}

.btn.btn-play {
	background-color: transparent;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.btn.btn-play::before {
	content: "\f04b";
}

.btn.btn-gradient {
	background: linear-gradient(40deg, rgba(2, 27, 59, 1) 0%, rgba(1, 71, 159, 1) 28%, rgba(2, 27, 59, 1) 36%, rgba(2, 27, 59, 1) 52%, rgba(2, 27, 59, 1) 67%, rgba(1, 71, 159, 1) 80%, rgba(2, 27, 59, 1) 100%);
	color: #fff;
	border: none;
	border-radius: 5px;
}

.btn-info-light {
	border-radius: 4px;
	border: 2px solid var(--color-secondary);
	background: #FFFFFF8F;
	color: var(--color-secondary);
	min-width: 80px;
}

/*----------------------------------------------------------------------
list
----------------------------------------------------------------------*/
.list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list.list-row {
	display: flex;
	flex-direction: column;
}

.list.list-row-noFlex {}

.list.list-row li,
.list.list-row-noFlex li {
	display: flex;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.list.list-row li a,
.list.list-row-noFlex li a {
	display: flex;
	align-items: center;
	background-color: transparent;
	padding: 0;
}

.list.list-row li a .icon,
.list.list-row-noFlex li a .icon {
	color: var(--color-primaryAlpha);
	font-size: 1rem;
	margin: 0 8px;
}

.list.list-row li.line,
.list.list-row-noFlex li.line {
	height: 1px;
	background-color: #eee;
	margin: 10px 0;
}

.list.list-row li:hover,
.list.list-row-noFlex li:hover {
	background-color: var(--color-hover);
}

.list.list-row.list-center li,
.list.list-row-noFlex.list-center li,
.list.list-row-noFlex.list-center li a {
	justify-content: center;
}


/*----------------------------------------------------------------------
container
----------------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 100%;
	padding: 0 100px;
}

.container-i {
	width: 100%;
	max-width: 100%;
	padding-left: 100px !important;
	padding-right: 100px !important;
}

.container-right {
	width: 100%;
	max-width: 100%;
	padding: 0 100px 0 0;
}

.container-left {
	width: 100%;
	max-width: 100%;
	padding: 0 0 0 100px;
}

.container2 {
	width: 100%;
	max-width: 100%;
	padding: 0 50px;
}

@media screen and (max-width:1140px) {
	.container {
		padding: 0 50px;
	}

	.container-i {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}

@media screen and (max-width:768px) {

	.container,
	.container-left,
	.container-right,
	.container2 {
		padding: 0 25px;
	}

	.container-i {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
}

/*----------------------------------------------------------------------
section
----------------------------------------------------------------------*/
section {
	margin-bottom: 56px;
}

.page section {
	margin-bottom: 36px;
}

section .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
}

section .header.header-center {
	justify-content: center;
}

section .header.header-bordered {
	border-bottom: 1px solid var(--color-borderLight);
	margin-bottom: 20px;
}

section .header .title {
	display: flex;
	align-items: center;
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
	display: inline-block;
	position: relative;
	padding: 0;
	color: var(--color-text);
}

@media screen and (max-width:768px) {
	section {
		margin-bottom: 64x;
	}

	section .header.header-center-auto {
		justify-content: center;
	}

	section .header .title {
		padding: 0;
		font-size: 1.9rem;
		flex-wrap: nowrap;
		display: flex;
		justify-content: space-between;
		text-align: center;
	}
}

/*----------------------------------------------------------------------
page-header
----------------------------------------------------------------------*/
.page-header {
	width: 100%;
	text-align: center;
}

.page-header .page-header-container {
	display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
	width: 100%;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0px 3px 3px 1px #00000040;
	margin-bottom: 0;
}

.page-header .page-header-container.sticky {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 0 0 15px 15px;
	z-index: 2000;
	margin-top: -54px;
	transform: translateY(54px);
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.7);
}

.page-header .page-header-container .group {
	display: flex;
	align-items: center;
}

.page-header .page-header-inner {
	display: flex;
	align-items: center;
	height: 100%;
}

.page-header .page-header-inner .logo {
	height: 100%;
	margin-left: 15px;
}

.page-header .page-header-inner .logo img {
	height: 100%;
}

.page-header .page-header-inner .nav {
	display: inline-flex;
	align-items: center;
	height: 100%;
	list-style: none;
}

.page-header .page-header-inner .nav li a {
	color: var(--color-text);
	font-weight: bold;
	padding: 0 10px;
}

.page-header .page-header-inner .nav li a:hover {
	color: var(--color-primary);
}

.page-header .page-header-inner li.active a {
	color: var(--color-primary);
}

.page-header .page-header-inner li.active a::before {
	content: '\25CF';
	margin-left: 5px;
}

.page-header .page-header-inner.actions {
	display: inline-flex;
	align-items: center;
}

.page-header .page-header-inner.actions>.btn {
	margin: 0 8px;
}

.page-header .page-header-inner.actions>a {
	display: inline-flex;
	align-items: center;
	margin: 0 8px;
	font-size: 2rem;
	color: var(--color-textLight);
}

.page-header .page-header-inner.actions>a img {
	width: 26px;
}

.page-header .page-header-container .btn-menu {
	display: none;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0 8px;
	font-size: 1.9rem;
	cursor: pointer;
	color: var(--color-textLight);
}

.page-header .page-header-container .dropdown {
	margin: 0 8px;
}

.page-header .page-header-container .dropdown>button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	box-shadow: none;
	background-color: transparent;
	color: var(--color-textLight);
	font-size: 1.8rem;
	padding: 0;
}

.page-header .page-header-container .dropdown>button::after,
.page-header .page-header-container .dropdown>a::after {
	content: '';
	display: none !important;
}

.page-header .page-header-container .dropdown>button:active,
.page-header .page-header-container .dropdown>a:active {
	background-color: var(--color-hover);
}

@media screen and (max-width:768px) {
	.page-header .page-header-container {
		height: 56px;
		padding: 10px 10px;
		box-shadow: 0px 2px 2px 0px #00000040;
		margin-bottom: 0;
	}

	.page-header .page-header-container nav {
		display: none;
	}

	.page-header .page-header-container .btn-menu {
		display: flex;
	}
}

/*----------------------------------------------------------------------
main-hero-wrapp
----------------------------------------------------------------------*/
.main-hero-wrapp {
	position: relative;
	min-height: 420px;
}

.main-hero-wrapp .hero-background {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #d9d9d9;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.main-hero-wrapp .hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-hero-wrapp .hero-background::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.main-hero-wrapp .hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 50px;
	color: #fff;
	z-index: 2;
}

.main-hero-wrapp .hero-content .hero-content-title {
	text-align: center;
	margin-bottom: 15px;
	font-size: 2.7rem;
}

.main-hero-wrapp .hero-content .hero-content-description {
	font-size: 1rem;
	text-align: center;
}

.main-hero-wrapp .hero-content .hero-content-link {
	margin-bottom: 15px;
}

.main-hero-wrapp .hero-content .hero-content-link,
.main-hero-wrapp .hero-content .hero-content-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 1rem;
	color: #fff;
}

.main-hero-wrapp .hero-content .hero-content-link i {
	padding: 0 10px;
}

.main-hero-wrapp .hero-content .hero-content-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-hero-wrapp .hero-content .hero-content-actions .btn,
.main-hero-wrapp .hero-content .hero-content-actions a {
	margin-top: 5px;
	font-size: 1.3rem;
	background-color: transparent;
	border: 2px solid #fff;
	padding: 10px 10px;
	border-radius: 25px;
}

@media screen and (max-width:768px) {
	.main-hero-wrapp {
		flex-direction: column;
		display: flex;
		align-items: center;
	}

	.main-hero-wrapp .hero-content {
		align-items: baseline;
		width: 100%;
		left: 0;
		right: 0;
		top: 20%;
		bottom: 0;
		padding: 15px;
	}

	.main-hero-wrapp .hero-content .hero-content-title {
		font-size: 2.6rem;
		text-align: unset;
	}

	.main-hero-wrapp .hero-content .hero-content-link,
	.main-hero-wrapp .hero-content .hero-content-link a {
		justify-content: unset;
	}

	.main-hero-wrapp .hero-content .hero-content-actions {
		position: absolute;
		flex-direction: row;
		justify-content: center;
		left: 5%;
		right: 5%;
		bottom: 25px;
	}

	.main-hero-wrapp .hero-content .hero-content-actions .btn,
	.main-hero-wrapp .hero-content .hero-content-actions a {
		width: 85%;
	}

	.main-hero-wrapp .hero-content .hero-content-actions .btn:first-child {
		margin-left: 5px;
	}
}

@media screen and (max-width:376px) {
	.main-hero-wrapp .hero-content {
		padding: 25px;
	}
}

/*----------------------------------------------------------------------
tools-wrapp
----------------------------------------------------------------------*/
.tools-wrapp {}

.tools-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.tools-items .tools-item {
	position: relative;
	flex: 1;
	margin: 1%;
	margin-bottom: 28px;
	padding: 26px 10px 10px 10px;
	background-color: #f1f3f7;
	box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}

.tools-items .tools-item>.item-inner {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	height: 100%;
	color: var(--color-textLight);
}

.tools-items .tools-item>.item-inner img,
.tools-items .tools-item>.item-inner .icon {
	position: absolute;
	top: -28px;
	width: 56px;
	height: 56px;
	font-size: 42px;
	object-fit: contain;
}

.tools-items .tools-item>.item-inner span {
	font-weight: bold;
	margin-top: 10px;
	font-size: 1.3rem !important;
}

.tools-items .tools-item>.item-inner .link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primaryLight);
}

.tools-items .tools-item>.item-inner .link i {
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	margin: 0 10px;
	font-size: 0.8rem;
	background-color: #fff;
}

@media screen and (max-width:768px) {
	.tools-items {
		padding: 0px 25px;
	}

	.tools-items .tools-item {
		flex: 1 1 42%;
		margin: 10px;
		margin-bottom: 28px;
		height: 120px;
	}
}

@media screen and (max-width:376px) {
	.tools-items {
		padding: 0px 25px;
	}
}

/*----------------------------------------------------------------------
about-wrapp
----------------------------------------------------------------------*/
.about-wrapp {
	background-color: #f1f3f7;
	padding: 56px 0;
}

.about-wrapp .about-licens {
	display: flex;
	justify-content: space-between;
}

.about-wrapp .about-licens a {
	text-align: center;
	flex: 1;
}

.about-wrapp .about-licens-description {
	text-align: center;
	color: var(--color-text);
	padding: 0 30px;
	font-size: 1.5rem;
	width: 80%;
	margin: 20px auto 0 auto;
}

.about-wrapp .about-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	margin: 20px auto 0 auto;
}

.about-wrapp .about-items .item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	margin: 2%;
}

.about-wrapp .about-items .item img {
	width: 82px;
	height: 82px;
	object-fit: contain;
	margin-bottom: 10px;
}

.about-wrapp .about-items .item span,
.about-wrapp .about-items .item h2 {
	margin-bottom: 10px;
	font-size: 1.5rem;
	text-align: center;
	color: var(--color-text);
}

.about-wrapp .about-items .item .description {
	margin-bottom: 15px;
	font-size: 1.1rem;
	text-align: center;
	color: var(--color-textLight);
}

@media screen and (max-width:768px) {
	.about-wrapp .about-items {
		flex-direction: column;
	}

	.about-wrapp .about-items .item {
		width: 100%;
		margin-bottom: 15px;
	}

	.about-wrapp .about-items .item img {
		width: 64px;
		height: 64px;
	}
}

/*----------------------------------------------------------------------
services-wrapp
----------------------------------------------------------------------*/
.services-wrapp {}

.services-wrapp .accordion {
	padding: 0;
}

.services-wrapp .accordion .accordion-item {
	border: none;
	border-bottom: 2px solid #eee;
}

.services-wrapp .accordion .accordion-item:last-child {
	border: none;
}

.services-wrapp .accordion .accordion-item .accordion-header .accordion-button {
	display: flex;
	align-items: center;
	border: none;
	font-size: 1rem;
	padding: 15px 0;
}

.services-wrapp .accordion .accordion-item .accordion-body p {
	font-size: 1rem;
	line-height: 2rem;
	text-align: justify;
}

.services-wrapp .services-action {
	margin-top: 15px;
}

.services-wrapp .services-action a.btn {
	min-width: 120px;
	width: auto;
}

@media screen and (max-width:767px) {
	.services-wrapp .accordion {
		border-color: var(--color-secondaryAlpha);
		border-radius: 25px;
	}

	.services-wrapp .services-action a.btn {
		/* width: 100%; */
	}
}

/*----------------------------------------------------------------------
consultation
----------------------------------------------------------------------*/
.consultation-wrapp {
	position: relative;
}

.consultation-wrapp .consultation-content {
	position: absolute;
	left: 50%;
	top: 42px;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 2;
}

.consultation-wrapp .consultation-content h1 {
	font-size: 2.2rem;
	text-align: right;
	margin-bottom: 10px;
	color: #fff;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.consultation-wrapp .consultation-content h2 {
	font-size: 3rem;
	text-align: right;
	margin-bottom: 10px;
	color: #fe9c08;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.consultation-wrapp .consultation-image {
	position: relative;
	height: 220px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 25px 25px 0 0;
	overflow: hidden;
	z-index: 1;
}

.consultation-wrapp .consultation-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #fff;
	clip-path: ellipse(55% 100% at 50% 100%);
	display: none;
}

.consultation-wrapp .consultation-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.consultation-wrapp .consultation-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 15px;
	background-color: #eee;
	border-radius: 0 0 25px 25px;
}

.consultation-wrapp .consultation-action .call {
	font-size: 1.5rem;
	color: var(--color-text);
}

.consultation-wrapp .consultation-action .call .icon {
	margin: 0 5px;
}

@media screen and (max-width:768px) {
	.consultation-wrapp .consultation-content {
		align-items: flex-start;
		transform: unset;
		left: 42px;
	}

	.consultation-wrapp .consultation-image::after {
		display: block;
	}

	.consultation-wrapp .consultation-action {
		padding: 0;
		background-color: transparent;
	}
}

/*----------------------------------------------------------------------
department-wrapp
----------------------------------------------------------------------*/
.department-wrapp {
	background-color: #f1f3f7;
}

.department-wrapp .description {
	color: var(--color-textLight);
	font-size: 1.1rem;
	margin: 0 0 32px 0;
}

.department-wrapp .department-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.department-wrapp .department-list .item {
	width: 100%;
	height: 72px;
	margin-bottom: 15px;
	padding: 10px 0;
}

.department-wrapp .department-list .item:hover {
	background-color: #fff;
}

.department-wrapp .department-list .item a {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.department-wrapp .department-list .item a .image {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 12px;
	background-color: #fff;
	padding: 5px;
	margin-left: 10px;
	overflow: hidden;
}

.department-wrapp .department-list .item a .image img {
	height: 100%;
	height: 100%;
	object-fit: contain;
}

.department-wrapp .department-list .item a .title {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-left: 56px;
}

.department-wrapp .department-list .item a .title h2 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	color: var(--color-text);
}

.department-wrapp .department-list .item a .title span {
	font-size: 1rem;
	color: #666;
}

.department-wrapp .department-list .item a::after {
	content: "\f104";
	position: absolute;
	width: 32px;
	height: 32px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #666;
	border-radius: 50%;
	font-family: "Font Awesome 6 Pro";
	font-size: 1.2rem;
}

.department-wrapp .department-list .item.item-background {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
}

.department-wrapp .department-list .item.item-background a::after {
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width:768px) {
	.department-wrapp .header {
		justify-content: center;
	}

	.department-wrapp .description {
		text-align: center;
	}
}

/*----------------------------------------------------------------------
magazine-wrapp
----------------------------------------------------------------------*/
.magazine-wrapp {}

.magazine-wrapp .tab-content {
	padding-top: 15px;
}

.magazine-wrapp nav .nav-underline .nav-link {
	color: var(--color-text);
	padding: 10px 15px;
}

.magazine-wrapp nav .nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

.magazine-wrapp .magazine-banner {
	position: relative;
	width: 100%;
	height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.magazine-wrapp .magazine-banner::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%);
	z-index: 2;
}

.magazine-wrapp .magazine-banner img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.magazine-wrapp .magazine-banner .banner-content {
	position: relative;
	width: 50%;
	padding-top: 55px;
	z-index: 3;
}

.magazine-wrapp .magazine-banner .banner-content .content-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 25px;
	color: #fff;
}

.magazine-wrapp .magazine-banner .banner-content .content-description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
}

.magazine-wrapp .magazine-banner .banner-footer {
	display: flex;
	padding: 10px 0;
	z-index: 2;
}

.magazine-wrapp .magazine-banner .banner-footer .footer-item {
	color: #fff;
	font-size: 0.8rem;
	margin-left: 15px;
	opacity: 0.5;
}

.magazine-wrapp .magazine-banner .banner-footer .footer-item i {
	margin-left: 3px;
	color: var(--color-primary)
}

.magazine-wrapp .magazine-items {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	border-top: 1px solid #ddd;
}

.magazine-wrapp .magazine-items .item {
	height: 56px;
	border-bottom: 1px solid #ddd;
	list-style: none;
}

.magazine-wrapp .magazine-items .item:hover {
	background-color: var(--color-hover);
}

.magazine-wrapp .magazine-items .item a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	color: unset;
	width: 100%;
	height: 100%;
}

.magazine-wrapp .magazine-items .item a .item-title {
	font-size: 1rem;
	margin: 0;
}

.magazine-wrapp .magazine-items .item a .item-date {
	font-size: 0.8rem;
	color: #777;
}

.magazine-wrapp .magazine-items .item-other {
	display: block;
	text-align: left;
	font-size: 1.1rem;
	margin-top: 36px;
}

.magazine-wrapp .magazine-items .item-other a {
	display: inline-block;
	color: var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
}

@media screen and (max-width:768px) {
	.magazine-wrapp nav .nav-underline .nav-link {
		flex: 1;
		padding: 10px 0;
	}
}

/*----------------------------------------------------------------------
cares-wrapp
----------------------------------------------------------------------*/
.cares-wrapp {}

.cares-wrapp .cares-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.cares-wrapp .cares-content .cares-item {
	position: relative;
	padding: 7px 30px 7px 15px;
	text-align: center;
	color: var(--color-text);
	border: 1px solid var(--color-primary);
	border-radius: 25px;
	flex: auto;
	height: 34px;
	margin: 1%;
}

.cares-wrapp .cares-content .cares-item:hover {
	background-color: var(--color-hover);
}

.cares-wrapp .cares-content .cares-item a {
	color: var(--color-text)
}

.cares-wrapp .cares-content .cares-item::before {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	content: '\e09f';
	font-family: "Font Awesome 6 Pro";
	color: var(--color-primary);
}

/*----------------------------------------------------------------------
questionsBank-wrapp
----------------------------------------------------------------------*/
.questionsBank-wrapp {
	background-color: #eee;
}

.questionsBank-wrapp .questionsBank-title {
	padding: 25px 0;
	margin: 0 0 25px 0;
	text-align: center;
}

.questionsBank-wrapp .questionsBank-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	margin-bottom: 25px;
}

.questionsBank-wrapp .questionsBank-info .item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: var(--color-text);
}

.questionsBank-wrapp .questionsBank-info .item .item-counter {
	margin-bottom: 5px;
}

.questionsBank-wrapp .questionsBank-info .item .item-counter .number {
	color: var(--color-text);
}

.questionsBank-wrapp .questionsBank-info .item .item-counter .icon {
	margin: 0 5px;
	color: var(--color-primary);
}

.questionsBank-wrapp .questionsBank-questions .questions-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.questionsBank-wrapp .questionsBank-questions .questions-header .header-title {
	font-size: 1.2rem;
}

.questionsBank-wrapp .questionsBank-questions .questions-items {
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 1%;
	flex: 1;
	width: 100%;
	max-height: 300px;
	padding: 10px 25px 20px 25px;
	margin-bottom: 15px;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	overflow: hidden;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
	pointer-events: none;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-tags {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	font-size: 0.8rem;
	color: var(--color-textLight);
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-tags a {
	margin-bottom: 10px;
	margin-left: 5px;
	padding-left: 5px;
	color: var(--color-textLight);
	border-left: 1px solid var(--color-textLight);
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-tags a:last-child {
	border-left: none;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-info {
	display: inline-flex;
	align-items: center;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-info img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	margin-left: 10px;
	object-fit: cover;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-info .info-text {
	display: inline-flex;
	flex-direction: column;
	height: 100%;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-info .info-text .userName {
	font-weight: bold;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-info .info-text .item-date {
	font-size: 0.8rem;
	color: #666;
	z-index: 1;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-comment {
	margin-top: 10px;
	font-size: 1rem;
	color: var(--color-text);
	text-align: justify;
	line-height: 2rem;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-answer {
	margin-top: 10px;
	font-size: 1rem;
	color: var(--color-text);
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-answer .answer-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.questionsBank-wrapp .questionsBank-questions .questions-items .item .item-answer .answer-comment {
	font-size: 1rem;
	color: var(--color-text);
	text-align: justify;
	line-height: 2rem;
}

.questionsBank-wrapp .questionsBank-questions .questions-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
}

.questionsBank-wrapp .questionsBank-questions .questions-footer .input-search {
	position: relative;
	width: 50%;
	height: 32px;
	padding-right: 32px;
	border: 1px solid #666;
	background-color: #fff;
	border-radius: 25px;
	overflow: hidden;
}

.questionsBank-wrapp .questionsBank-questions .questions-footer .input-search button {
	position: absolute;
	width: 32px;
	height: 24px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
}

.questionsBank-wrapp .questionsBank-questions .questions-footer .input-search input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	box-shadow: none;
}

@media screen and (max-width:768px) {
	.questionsBank-wrapp .questionsBank-info {
		justify-content: space-evenly;
	}

	.questionsBank-wrapp .questionsBank-questions .questions-items {
		flex-direction: column;
	}

	.questionsBank-wrapp .questionsBank-questions .questions-items .item {
		width: 100%;
		flex: unset;
	}

	.questionsBank-wrapp .questionsBank-questions .questions-footer {
		flex-direction: column;
	}

	.questionsBank-wrapp .questionsBank-questions .questions-footer button {
		width: 80%;
		margin-bottom: 5px;
	}
}

/*----------------------------------------------------------------------
joinUs-wrapp
----------------------------------------------------------------------*/
.joinUs-wrapp {
	width: 100%;
}

.joinUs-wrapp .joinUs-content {
	display: flex;
	flex-wrap: wrap;
}

.joinUs-wrapp .joinUs-content .joinUs-item {
	position: relative;
	padding: 0 5px;
}

.joinUs-wrapp .joinUs-content .joinUs-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.joinUs-wrapp .joinUs-content .joinUs-item .item-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
	max-width: 444px;
}

.joinUs-wrapp .joinUs-content .joinUs-item .item-title {
	display: inline-flex;
	font-weight: 600;
	font-size: 1.3rem;
	word-wrap: break-word;
	color: var(--color-text);
	margin: 0 0 10px 0;
	text-align: center;
}

.joinUs-wrapp .joinUs-content .joinUs-item .item-title .icon {
	width: 24px;
	height: 24px;
	margin-left: 5px;
	object-fit: contain;
}

.joinUs-wrapp .joinUs-content .joinUs-item .item-description {
	color: var(--color-textLight);
	line-height: 2rem;
	text-align: center;
}

.joinUs-wrapp .joinUs-content.owl-carousel .owl-nav {
	top: 131px;
	left: -16px;
	right: -16px;
}

.joinUs-wrapp .joinUs-content .joinUs-footer {
	margin-top: 15px;
}

.joinUs-wrapp .joinUs-content.owl-carousel .owl-nav button.owl-prev,
.joinUs-wrapp .joinUs-content.owl-carousel .owl-nav button.owl-next {
	border-radius: 50%;
	background-color: #fff !important;
	color: var(--color-primaryLight) !important;
	font-size: 2rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
footer {
	margin-top: 96px;
	background-color: #fff;
	border-top: 1px solid var(--color-borderLight);
}

footer .footer-inner {
	display: flex;
	flex-wrap: wrap;
	padding-top: 36px;
}

footer .footer-inner .item {
	display: inline-flex;
	flex-direction: column;
	flex: 1;
	margin-left: 0;
	margin-bottom: 25px;
}

footer .footer-inner .footer-about {
	width: 35%;
	flex: unset !important;
}

footer .footer-inner .footer-about h1 {
	font-size: 1.5rem;
	color: var(--color-text);
}

footer .footer-inner .footer-about p {
	color: var(--color-text);
}

footer .footer-inner .footer-about img {
	width: 220px;
}

footer .footer-inner .footer-links {
	display: flex;
	list-style: none;
}


footer .footer-inner .footer-links li.link {
	margin-bottom: 15px;
	color: var(--color-text);
}

footer .footer-inner .footer-links li.link a {
	color: var(--color-text);
}

footer .footer-inner .footer-links li.title {
	border: none;
	margin-bottom: 25px;
	font-weight: bold;
	font-size: 1.4rem;
	color: var(--color-text);
}

footer .footer-inner .footer-links p {
	line-height: 2rem;
}

footer .footer-inner .item .content-wrapper {
	/* display: none; */
	padding-left: 20px;
}

footer .footer-inner .item .content-wrapper.open {
	display: block;
}

footer .footer-inner .item .toggle-icon {
	font-size: 20px;
	line-height: 1;
	display: none;
}

footer .footer-links-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
	margin-bottom: 20px;
}

footer .footer-links-icon img {
	width: 64px;
}

footer .footer-links-icon i.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	font-size: 24px;
	color: var(--color-text);
	margin: 0 10px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	padding: 10px;
}

footer .footer-copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0;
	color: var(--color-text);
}

footer .footer-copyright a {
	font-weight: bold;
	padding: 0 5px;
	color: var(--color-text);
}

footer .footer-locations {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

footer .footer-locations a {
	width: 190px;
	height: 46px;
	display: inline-block;
	border-radius: 10px;
	overflow: hidden;
	background-color: #ddd;
	padding: 0 10px;
	margin: 0 25px;
}

footer .footer-locations a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

footer .footer-locations a.contain img {
	object-fit: contain;
}

footer .footer-locations a.waze {
	background-color: #33ccff;
}

footer .footer-locations a.googlemap {
	background-color: #dbdbdb;
}

@media screen and (max-width:767px) {
	footer .footer-inner .footer-links {
		/* display: none; */
	}

	footer .footer-inner .item {
		margin: 0;
		padding: 0;
	}

	footer .footer-inner {
		flex-direction: column;
	}

	footer .footer-inner .item.item-content {
		width: 100%;
		flex: unset;
		margin: 0 0 20px 0;
		padding: 0;
	}

	footer .footer-inner .item.item-links {
		align-items: center;
	}

	footer .footer-inner .item.item-links .title {
		text-align: center;
	}

	footer .footer-inner .footer-about {
		width: unset;
		align-items: center;
	}

	footer .footer-locations {
		justify-content: space-around;
		flex-wrap: nowrap;
	}

	footer .footer-inner .item li.title,
	footer .footer-inner .item div.title {
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid var(--color-borderLight);
		padding: 10px 0;
		margin: 0;
	}

	footer .footer-inner .item .content-wrapper {
		display: none;
		padding: 10px 0 25px 0;
	}

	footer .footer-inner .item .content-wrapper.open {
		display: block;
	}

	footer .footer-inner .item .toggle-icon {
		display: inline-block;
	}
}

/*----------------------------------------------------------------------
scroll-to-top
----------------------------------------------------------------------*/
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	color: var(--color-text);
	border: none;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 2000;
}

.scroll-to-top:hover {
	background-color: var(--color-hover);
}

.scroll-to-top.show {
	display: flex;
	opacity: 1;
	transform: translateY(0);
	
}

@media screen and (max-width:768px) {
	.scroll-to-top {
		display: none;
		
	}
}

/*----------------------------------------------------------------------
.page, Style for pages with class
----------------------------------------------------------------------*/
.page {
	padding-top: 30px;
	padding-bottom: 50px;
}

.page .page-banner {
	position: relative;
	height: 300px;
	background-size: cover;
	background-position: center;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -30px;
	border-radius: 0 0 25px 25px;
	overflow: hidden;
}

.page .page-banner.page-banner-small {
	height: 150px;
}

.page .page-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-secondaryAlpha);
	;
	z-index: 1;
}

.page .page-banner-content {
	position: relative;
	z-index: 2;
	color: white;
	padding: 20px;
}

.page .page-banner h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.inner-page-banner {
	height: 300px;
	position: relative;
	background-size: cover;
	background-position: center;
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}

.inner-page-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-secondaryAlpha);
}

.inner-page-banner .page-banner-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
	text-align: center;
}

.inner-page-banner .page-banner-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page .breadcrumb {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 30px;
}

.page .breadcrumb ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.page .breadcrumb ul li {
	font-size: 14px;
}

.page .breadcrumb ul li a {
	color: #6c757d;
	text-decoration: none;
}

.page .breadcrumb ul li a:hover {
	color: var(--color-primary);
}

.page .breadcrumb ul li.separator {
	margin: 0 10px;
	color: #6c757d;
}

.page .breadcrumb ul li.active {
	color: var(--color-primary);
	font-weight: 600;
}

.page .page-description {
	margin-bottom: 30px;
}

.page .page-description {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 30px;
	border-right: 4px solid var(--color-primary);
}

.page .page-description p {
	margin: 0;
	line-height: 1.6;
	color: #495057;
}

.page .page-content {
	margin-bottom: 40px;
}

.page .pagination-wrapp {
	margin: 40px 0;
}

.page .pagination-wrapp .pagination .page-item .page-link {
	color: var(--color-text);
	border-color: var(--color-borderLight);
}

.page .pagination-wrapp .pagination .page-item .page-link:focus {
	box-shadow: 0 0 0 0.25rem var(--color-primaryAlpha);
}

.page .pagination-wrapp .pagination .page-item.active .page-link {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.page .pagination-wrapp .pagination .page-item.disabled .page-link {
	color: var(--color-textLight);
}

.page section {
	margin-bottom: 50px;
}

.page section .section-header {
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--color-borderLight);
}

.page section .section-header .section-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color-text);
	position: relative;
	padding-right: 15px;
}

.page section .section-header .section-title:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 25px;
	background-color: var(--color-primary);
	border-radius: 2px;
}

.page section .section-content {
	padding: 10px;
}

@media (max-width: 768px) {
	.page .page-banner {
		height: 200px;
	}

	.page .page-banner h1 {
		font-size: 1.8rem;
	}

	.page .treatment-item {
		flex: 0 0 100%;
	}

	.page .treatment-item img {
		height: 200px;
	}

	.page .treatments-list {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.page .treatment-item img {
		height: 180px;
	}

	.page .treatment-item h2 {
		font-size: 1.3rem;
	}
}


/*----------------------------------------------------------------------
.page, Style for pages with class
----------------------------------------------------------------------*/
.form {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 30px;
	margin-top: 50px;
	border: 1px solid var(--color-borderLight);
	/* border-right: 4px solid var(--color-primary); */
}

.form .form-title {
	color: var(--color-text);
	margin-bottom: 25px;
	font-weight: 600;
	position: relative;
}

.form .form-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 50px;
	height: 3px;
	background-color: var(--color-primary);
}

.form .form-group {
	margin-bottom: 20px;
}

.form .form-label {
	color: var(--color-text);
	font-weight: 500;
}

.form .form-control,
.form .form-select {
	border-color: var(--color-borderLight);
}

.form .form-control:focus,
.form .form-select:focus {
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 0.25rem var(--color-primaryAlpha) !important;
}

.form .form-check-input:checked {
	background-color: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}

.form button[type="submit"] {
	background-color: var(--color-primary) !important;
	border: none;
	padding: 10px 25px;
}

.form button[type="submit"]:hover {
	background-color: var(--color-primaryLight) !important;
}

@media (max-width: 768px) {
	.form {
		padding: 15px;
	}
}

	.green-afrang
{
  color: #5dc12a;
 
}
.green-afrang-bg
{
  background-color:   #5dc12a;
}
	
	.whatsapp, .whatsapp-mobile {
  position: fixed;
  bottom: 20px;
  left: 20px;
  text-align: center;
  font-size: 11px;
  z-index: 1000;
  float: left;
}