/* 
Theme Name: Hello Child
Theme URI: 
Description: 
Author: Hamid Darabpour
Author URI: https://midiyasoft.com
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
/* Import parent theme styles */
/* Custom Styles */
:root {
  /* Greyscales - Neutral */
  --neutral-black: #000000;
  --neutral-dark-gray: #424241;
  --neutral-medium-gray: #7A7A7A;
  --neutral-light-gray: #D9D9D9;
  --neutral-lighter-gray: #F5F5F5;
  --neutral-white: #FFFFFF;
  /* Red - Errors */
  --error-red-dark: #FF0000;
  --error-red-medium: #FF4D4F;
  --error-red-light: #FF7875;
  --error-red-lighter: #FFA39E;
  /* Green - Confirms */
  --success-green-dark: #237804;
  --success-green-medium: #52C41A;
  --success-green-light: #73D13D;
  --success-green-lighter: #B7EB8F;
  /* Complementary Colors */
  --complementary-blue-dark: #0050B3;
  --complementary-blue-medium: #096DD9;
  --complementary-blue-light: #1890FF;
  --complementary-blue-lighter: #69C0FF;
  /* Main Colors */
  --main-teal-dark: #007775;  /* پررنگ‌ترین سبزآبی */
  --main-teal-medium: #329D9C; /* سبزآبی متوسط */
  --main-teal-light: #86C4C3; /* سبزآبی روشن */
  --main-teal-lighter: #D4EDED; /* سبزآبی خیلی روشن */
  --main-teal-pale: #EAF7F7; /* سبزآبی کم‌رنگ */
  --main-orange-dark: #F59C00;  /* پررنگ‌ترین نارنجی */
  --main-orange-medium: #FABE4B; /* نارنجی متوسط */
  --main-orange-light: #FDDC99; /* نارنجی روشن */
  --main-orange-lighter: #FEF4D9; /* نارنجی خیلی روشن */
  --main-orange-pale: #FEF9EB; /* نارنجی کم‌رنگ */
  --primary-color: #007775 !important; /* رنگ اصلی */
  --accent-color: #F59C00 !important; /* رنگ مکمل */
  /* Typography */
  /* Large Headlines */
  --headline-large-size: 48px;
  --headline-large-weight: 600; /* Semi-Bold */
  /* Headlines */
  --headline-size: 36px;
  --headline-weight: 700; /* Semi-Bold */
  /* Large Title */
  --large-title-size: 28px;
  --large-title-weight: 600; /* Regular */
  /* Title */
  --title-size: 24px;
  --title-weight: 600; /* Semi-Bold */
  /* Subtitles */
  --subtitle-size: 20px;
  --subtitle-weight: 600; /* Semi-Bold */
  /* Body Text */
  --body-large-size: 20px;
  --body-regular-size: 16px;
  --body-small-size: 14px;
  --body-weight-regular: 400 ; /* Regular */
  --body-weight-bold: 600; /* Semi-Bold */
  /* Captions */
  --caption-size: 12px;
  --caption-weight: 400; /* Regular */
}
html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}
body,p,h1,h2,h3,h4,h5,h6{
	line-height: 120%;
    letter-spacing: -0.02em;
}
body {
  background-color: var(--neutral-light) !important; /* رنگ پس‌زمینه */
  color: var(--neutral-dark) !important; /* رنگ متن اصلی */
  font-family: Inter !important;
}
img{
	border-radius: 10px !important;
}
a {
  color: var(--primary-color) ; /* لینک‌ها */
  text-decoration: none !important;
}

.error-message {
  color: var(--error-color) !important; /* پیام خطا */
}
.success-message {
  color: var(--success-color) !important; /* پیام تایید */
}
button {
  background-color: var(--primary-color) !important; /* دکمه اصلی */
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}
button:hover .elementor-button:hover,   .getstarted-btn:hover ,.getstarted-btn:focus{
    background-color: #005C5A !important; 
	color: #fff !important;
	border-radius: 8px !important;
	transition: background-color 0.3s ease; /* انیمیشن نرم برای تغییر رنگ */
}
input:hover , textarea:hover{
    border: 1px solid var(--main-teal-dark) !important;
    border-radius: 8px !important;
}
input:focus,textarea:focus{
	border: 1px solid rgba(0, 119, 117, 0.5) !important;
}
/* استایل خطا برای فیلد ورودی */
.elementor-field-type-email.elementor-error input {
    border: 1px solid rgba(235, 4, 4, 0.5) !important;
    background: rgba(235, 4, 4, 0.1) !important;
}
/* استایل پیام خطا */
.elementor-message.elementor-message-danger {
	color: #CC2929;
    font-size: 14px !important;
}
.elementor-error .elementor-field{
	margin-bottom: 0 !important;
}
/* اضافه کردن آیکن به پیام خطا */
.elementor-message.elementor-message-danger::before {
    content: "";
    display: inline-block;
    width: 20px; /* اندازه آیکن */
    height: 20px;
    background-image: url('images/warning-error.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
h1 {
  font-size: var(--headline-large-size);
  font-weight: var(--headline-large-weight);
}
h2 {
  font-size: var(--headline-size);
  font-weight: var(--headline-weight);
  line-height: 44px;
}
h3 {
  font-size: var(--large-title-size);
  font-weight: var(--large-title-weight);
  color: var(--primary-color) ;
}
h4 {
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  color: var( --neutral-black);
}
p {
  font-size: var(--body-large-size);
  font-weight: var(--body-weight-regular);
  color: var(--neutral-dark-gray);
}
.small-text {
  font-size: var(--body-small-size);
  font-weight: var(--body-weight-regular);
  color: var(--neutral-medium);
}
.caption {
  font-size: var(--caption-size);
  font-weight: var(--caption-weight);
  color: var(--neutral-medium);
}
.elementor-widget-image img {
	border-radius: 8px !important;
}
/* Gtranslate */
.gtranslate_wrapper a.glink img {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    object-fit: cover;
}
.gtranslate_wrapper a.glink.gt-current-lang img {
    width: 24px;
    height: 24px;
}
.gtranslate_wrapper a.glink.gt-current-lang {
    font-weight: bold;
    background: #FFFFFF;
    border: 1px solid #B2B2B2;
    border-radius: 32px;
    padding: 4px 4px 8px;
	color: black;
}
.gtranslate_wrapper a.glink span{
    display:none;
}
.gtranslate_wrapper a.glink.gt-current-lang span {
  display: inline-block;
  font-size: var(--caption-size);
  font-weight: var(--body-weight-bold);
  line-height: var(--caption-size);

}
/* Header Styles */
.site-header {
	position: relative;
	top: 32px;
    z-index: 9999 !important;
	padding: 12px 30px !important;
    gap: 10px;
    width: 1190px !important;
    height: 72px !important;
    background: #FFFFFF !important;
    border: 1px solid #007775;
    box-shadow: 0px 0px 8px rgba(0, 119, 117, 0.24);
    border-radius: 64px !important;
	display:flex;
	justify-content: space-between; /* فاصله بین لوگو، منو و باکس‌های سمت راست */
  	align-items: center; /* تراز وسط عمودی */
    transition: background-color 0.3s ease; /* انیمیشن نرم برای تغییر رنگ */
}
/* Logo */
.site-header .logo{
  flex: 0 0 auto;
}
/* Navigation Menu */
.site-header .nav-menu {
  display: flex;
  gap: 20px;
  flex: 1; /* اشغال فضای باقیمانده */
  justify-content: center; /* تراز وسط منو */
}
.site-header .elementor-nav-menu--layout-horizontal .elementor-nav-menu {
    gap: 24px;
}
.site-header .nav-menu a {
  color:var(--neutral-black); /* Dark grey for links */
  font-size: var(--body-regular-size);
  font-weight: var(--body-weight-regular);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  padding: 0;
}
.site-header .nav-menu a:hover {
    padding: 0;
}
.site-header .nav-menu a:hover {
  color: var(--accent-color); /* Highlight color on hover */
}
/* کانتینر بخش عنوان */
.custom-page-header {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 1.12%, rgba(0, 0, 0, 0) 51.58%), #007775;
  color: #ffffff;
  min-height: 165px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 35px;

}
/* کلاس مخصوص تغییر رنگ هدر */
/* استایل پیش‌فرض هدر */
.site-header {
}
/* تغییر رنگ هدر زمانی که کلاس header-bg-teal-dark به بدنه اضافه شود */
.header-bg-teal-dark header {
    background-color: var(--main-teal-dark); /* رنگ جدید پس‌زمینه */
}
.custom-page-header .page-title {
    max-width: 1154px;
    margin: 0 auto;
    font-weight: var(--headline-weight);
    font-size: var(--headline-size);
}
.page-title-privacy-policy .custom-page-header,
.page-title-term-of-use .custom-page-header{
 	background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 1.12%, rgba(0, 0, 0, 0) 51.58%), var(--main-teal-dark);
}
.page-title-privacy-policy .custom-page-header .page-title,
.page-title-term-of-use .custom-page-header .page-title  {
    font-size: var(--headline-large-size);
    font-weight:700;
}
/* محتوای اصلی صفحه */
.page-content .container {
    max-width: 1158px;
    margin: 0 auto;
    padding: 0;
}
/* Call-to-Action Button */
.site-header .cta-button .elementor-button {
  background-color: transparent !important;
  padding: 0;
}
.footer-btn .elementor-button{
	background-color:var(--neutral-white);
	color: var(--main-teal-dark) !important;
    font-size: 14px;
    font-weight: var(--body-weight-bold);
	padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s ease-in-out;
}
.partners-portal {
    background-color: var(--neutral-white) !important;
    border-radius: 8px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
}
.partners-portal a {
    color: var(--main-teal-dark) !important;
    font-size: 12px !important;
    font-weight: var(--body-weight-bold);
    display: flex;
    gap: 5px;
    align-items: center;
}
.partners-portal a:after , .partners-portal-footer a:after ,.three-column-footer ul li:last-child {
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(images/arrow-right-rectangle.svg);
}

.partners-portal-footer a, .three-column-footer ul li:last-child {
    color: var(--main-teal-dark) !important;
    font-size: var(--caption-size) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    max-width: 137px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 8px;
    font-weight: var(--body-weight-bold) !important;
    justify-content: center;
}
.three-column-footer ul li:last-child {
    display: flex;
    flex-direction: row-reverse;
}
.three-column-footer ul li:last-child span{
	color: var(--main-teal-dark) !important;
	font-size: var(--caption-size) !important;
}

.site-header .cta-button .elementor-button-content-wrapper, .footer-btn .elementor-button-content-wrapper {
  gap: 8px !important;
  background-color: rgba(0, 119, 117, 0.1);
  color: var(--main-teal-dark) !important;
  font-size: var(--body-regular-size);
  font-weight: var(--body-weight-bold);
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
  max-width: max-content;
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 12px;
}
.site-header .cta-button .elementor-button-content-wrapper:hover {
  background-color: #fff;
  border: 1px solid #005C5A;
}
.site-header .cta-button .elementor-button span svg ,
.footer-btn .elementor-button  span svg{
    width: 24px;
    height: 24px;
}
/* Sticky Header */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-dark); /* Darker background for sticky */
  color: var(--neutral-light);
  transition: background-color 0.3s ease-in-out;
}
/* Home */
#wrapper-column-slider , #layer-column-slider {
    display: flex;
}
#slider-left-box {
    display: flex !important;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center !important;
}
.Home-slider {
  margin-top: 50px;
  margin-bottom: 13px;
}
.n2-ss-slider .n2-ss-item-image-content img {
    margin-top: 30px;
}
.getstarted-btn .n2-ss-button-container a:hover , .get-started.yellow-bg .elementor-button:hover , button:hover{
	background-color: #005C5A !important;
}

.bg-btn-green.highlight {
    color: white;
    width: 157.4px;
    max-height: 48.4px;
    background: #007775;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
}
.getstarted-btn a {
    padding: 16px !important;
	transition: background-color 0.3s ease;
}
.getstarted-btn img.arrow-icon {
    position: absolute;
    right: 16px;
    top: 16px;
}
.getstarted-btn .n2-ss-button-container a {
    display: flex !important;
    justify-content: center;
    height: 56px;
    max-width: 207px !important;
    background-color: #007775 !important;
    box-sizing: border-box;
    width: 100%;
}
div#n2-ss-2 .n2-ss-button-container a div {
    white-space: nowrap;
}
.getstarted-btn .n2-ss-button-container a > div {
    justify-content: space-between;
    gap: 67px;
}
div .n2i.lnr {
    font-weight: bold;
	margin: 0 !important;
}
.getstarted-btn .lnr-arrow-right:before {
    content: "\e87a";
    padding: 3px;
    display: flex;
    align-items: center;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    font-weight: bold;
}
div#n2-ss-2 .nextend-bullet-bar .n2-bullet{
	border : 2px solid transparent;
}
div#n2-ss-2 .nextend-bullet-bar .n2-bullet:active,
div#n2-ss-2 .nextend-bullet-bar .n2-bullet:hover{
	border : 2px solid RGBA(0,119,117,1) !important;
    background: #ffffff !important;
}

/* Overall Section Styling benefits*/
.benefits.e-con {
    padding: 0 !important;
    background-color: #fdf6ec;
    text-align: center;
    width: 100vw;
}
.benefits-section {
    padding: 30px 0px;
    text-align: center;
}
.benefits-header {
    gap: 0px;
    display: flex;
    flex-direction: column;
}
/* Header Styling */
.benefits-header .small-title, .steps .small-title, .many-benefits .small-title, .analytics-dasboard .small-title {
    margin: 0px auto 12px;
    font-weight: var(--body-weight-regular);
    font-size: var(--body-large-size);
    color: black;
    text-align: center;
}
.benefits-header .main-title, .many-benefits .main-title, .analytics-dasboard .main-title, .performance-management .main-title {
    font-size: var(--headline-size);
    color: #000000;
    margin: 10px 0 14px;
    font-weight: bold;
}
 .highlight {
  color: #007775; /* Highlight color for DENTIRATE */
}
 .highlight-accent {
    color: var(--accent-color);
}
.benefits-header .description , .many-benefits .description {
    max-width: 800px;
    margin: 10px auto;
    font-weight: var(--body-weight-regular);
    font-size: var(--body-small-size);
    color: #424241;
    text-align: left;  
}
/* Grid Styling */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 30px;
    max-width: 1080px;
    margin: 40px auto 0;
}
/* Individual Benefit Items */
.benefit-item {
  text-align: center;
  padding: 0;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-item h3 {
    font-size: var(--body-large-size) !important;
    margin: 7px 0 10px;
    font-weight: var(--body-weight-regular);
    color: black;
}
.benefit-item p {
    font-size: var(--body-small-size) !important;
    text-align: center;
    color: #424241;
}
/* Step */

.steps {
    padding: 30px 0px 0px !important;
}
.steps .e-con-inner {
    padding: 0 !important;
}
.steps-slider{
	padding-bottom: 5px;
}
.steps .elementor-widget-html br {
    display: none;
}
.steps-header .elementor-widget-container {
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.steps-header  .main-title {
    font-weight: 700;
    font-size: 36px;
}
.steps .bdt-interactive-tabs {
    max-width: 922px;
}
.steps .bdt-interactive-tabs-item {
    align-items: flex-end;
}
.steps .bdt-interactive-tabs-content {
    min-width: 570px;
    height: max-content !important;
}
.steps .bdt-interactive-tabs-item.bdt-active .bdt-interactive-tabs-title {
    font-size: var(--subtitle-size) !important;
    font-weight: var(--body-weight-bold) !important;
}
.steps .bdt-interactive-tabs-title {
    font-weight: var(--body-weight-regular);
    color: #5e5e5e !important;
}
.steps .cta-button .elementor-button {
  background-color: var(--main-teal-dark);
  color: var(--neutral-white);
  font-size: var(--title-size);
  font-weight: 500;
  cursor: pointer;
  text-transform: capitalize;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px;
  gap: 128px;
  min-width: 337px !important;
  max-height: 80px;
  border-radius: 8px;
  align-content: center;
  max-width: 100%;
}
.get-in-touch-cta .steps .cta-button .elementor-button {
	min-width: unset !important;
}
.get-started {
    background-color: var(--main-orange-dark);
    padding: 40px;
    min-height: 163px !important;
    width: 100vw;
}
.get-started .e-con-inner{
	max-width: 1158px;
}
.get-started .bdt-ep-advanced-heading-sub-title-content {
    font-size: var(--body-large-size);
    font-weight: var(--body-weight-regular);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.get-started .bdt-ep-advanced-heading-main-title-inner {
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    line-height: 43.2px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: black;
}
.join-speedup .bdt-ep-advanced-heading {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.get-started span.elementor-button-icon {
    font-size: 32px;
	margin-top: 8px;
}
.get-in-touch-cta .get-started span.elementor-button-icon{
	margin-top: 0;
}
.get-started .cta-button .elementor-button .elementor-button-content-wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 110px;
    padding: 10px 5px;
}
.get-in-touch-cta .get-started .cta-button .elementor-button .elementor-button-content-wrapper {
	gap: 20px;
}
.get-started .elementor-button-text{
	font-size: var(--title-size);
}
/* Benefits 2*/
.benefits-two {
    padding: 30px 0px 0px !important;
    background-color: rgba(0, 119, 117, 0.1);
}
.many-benefits .elementor-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 778px;
    margin: 0 auto;
}
.many-benefits .elementor-widget-container br, .analytics-dasboard br{
	display: none;
}
.benefits-two .benefits-flex {
    display: flex;
    flex-wrap: wrap;
    gap:32px 55px;
    justify-content: space-around;
    max-width: 1080px;
    margin: 0 auto;
}
.benefits-two .e-con-inner {
    gap: 30px;
    padding-bottom: 0;
}
.benefits-two .benefits-flex .elementor-image-box-wrapper {
    gap: 33px;
}
.benefits-flex .elementor-image-box-wrapper .elementor-image-box-img {
    width: auto;
}
.benefits-two .benefits-flex .elementor-image-box-title {
    color: var(--main-teal-dark);
    font-weight: var(--body-weight-bold);
    font-size: var(--body-large-size);
    text-align: left;
}
.benefits-two .benefits-flex .elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper {
    text-align: right;
}
.benefits-two .benefits-flex .elementor-image-box-wrapper .elementor-image-box-img {
    max-width: 64px;
}
.benefits-two .benefit-item{
	flex-basis: calc(31% - 10px); /* تعیین عرض آیتم‌ها به‌طور معین */
    padding: 0px;
    margin: 5px;
    border-radius: 5px;
	max-width: 245px !important;
}
.benefits-two .benefit-item p{
	text-align: left;
}
.bdt-show-hide-container .bdt-show-hide .bdt-show-hide-item .bdt-show-hide-title .bdt-show-hide-btn {
    transition: all .3s ease;
    border: 1px solid #007775;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #007775;
    height: 33px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 103px;
}
.bdt-show-hide-container .bdt-show-hide .bdt-show-hide-item .bdt-show-hide-title:before{
	background: transparent !important;
}

.benefits-two .veiw-more-btn .bdt-show-hide-item {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%);
}
.benefits-two .veiw-more-btn .bdt-show-hide-item.bdt-open {
  position: relative;
  margin-top: 23px;
}
/* analytics-dasboard */ 
.analytics-dasboard {
    padding: 40px 0;
    max-width: 1320px !important;
}
.analytics-dasboard .elementor-heading-title h2 {
    max-width: 600px;
    margin: 0px auto 20px;
    color: black;
    text-align: center;
}
.analytics-dasboard .elementor-image-box-wrapper {
  max-width: 85%;
  margin: 8px auto;
}
.analytics-dasboard .elementor-image-box-wrapper .elementor-image-box-img {
    margin-left: -60px;
}
.analytics-dasboard .elementor-image-box-description {
    min-width: 349px;
}
/* performance-management */
.elevate-office{
	max-width: 1320px !important;
}
.performance-management {
    position: relative;
}
.performance-management .e-con-inner{
	max-width: 1320px;
}
.performance-management:after {
    content: "";
    background-image: url(images/home/laptop.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    max-height: 100%;
    height: 600px;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-40%);
    width: 100%;
    max-width: 970px;
}
.performance-management .bdt-ep-advanced-heading-sub-title-content {
    color: var(--main-teal-dark);
    font-size: var(--subtitle-size);
    font-weight: var(--body-weight-bold);
    margin-bottom: 20px;
}
.performance-management .bdt-ep-advanced-heading-title {
    max-width: 256px;
    font-size: var(--body-small-size) !important;
	color: var(--neutral-dark-gray);
}
/* Healthcare */
.healthcare {
    padding: 0;
    margin-top: -72px;
}
.healthcare .content {
    position: absolute;
    bottom: 50px;
    z-index: 2;
    text-align: left;
}
/* 📍 حالت دسکتاپ */

/* 📍 محتوا در دسکتاپ */
.healthcare .content {
    position: absolute;
    bottom: 50px;
    z-index: 2;
    text-align: left;
}
/* 📱 حالت موبایل */
@media (max-width: 768px) {
    .healthcare {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: auto; /* ارتفاع خودکار برای موبایل */
        background: none; /* بک‌گراند اصلی حذف می‌شود */
    }

	.healthcare .content {
        padding: 20px;
        background: var(--main-teal-dark);
        left: 0;
    }
}
.healthcare-btn .elementor-button {
    padding: 16px;
    gap: 16px;
    min-width: 362px;
	max-width: max-content;
    background: rgba(0, 119, 117, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 48px;
}
.healthcare-btn .elementor-button-content-wrapper {
    justify-content: center;
    align-items: center;
}
.lender .healthcare-btn .elementor-button {
    background: rgba(245, 156, 0, 0.7);
    min-width: 272px;
}
.boost-income .elementor-heading-title {
    color: #FFFFFF;
}
.Enroll-btn .elementor-button {
    background-color: var(--neutral-white) !important;
    color: var(--main-teal-dark) !important;
    font-size: 12px !important;
    font-weight: var(--body-weight-bold);
    gap: 5px;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    min-width: 216px;
    min-height: 56px;
    max-width: max-content;
}
.Enroll-btn {
  margin-top: 15px !important;
}
.Enroll-btn .elementor-button-content-wrapper {
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
}
.Enroll-btn .elementor-button-text {
    font-weight: 600;
    font-size: 16px;
}
.Enroll-btn .elementor-button-icon svg {
    width: 24px;
    height: 24px;
}
/* Container اصلی */
.section-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 80px;
    padding: 50px 0;
}
/* هر بلاک محتوا */
.content-block {
    display: flex;
    flex-direction: row;
    gap: 105px;
    max-width: 1190px;
    margin: 0 auto;
    justify-content: space-between;
}
/* عنوان‌ها */
.content-block .title, .content-block .title p {
  margin: 0;
  font-weight: var(--headline-weight);
  font-size: var(--headline-size);
}
.content-block .title {
  min-width: 504px;
}
.content-block .title p {
  min-width: 590px;
}
/* توضیحات */
.content-block .description {
  margin: 0;
  font-size: var(--subtitle-size);
  color: var(--neutral-dark-gray);
  font-weight: var(--body-weight-regular);
}
.instant-results { 
	background-color: rgba(0, 119, 117, 0.1); 
	padding: 20px 0;
}
.lending-realationships{
	background-color: rgba(245, 156, 0, 0.1);
	padding: 40px;
}
.instant-flex .e-con-inner {
  flex-direction: row !important;
  justify-content: center !important;
  gap: 85px 100px;
  max-width: 1080px;

}
.instant-flex .benefit-item p {
    text-align: left;
}
.instant-flex .elementor-image-box-wrapper {
    gap: 20px;
}
.instant-flex .benefit-item .elementor-image-box-content {
    max-width: 150px;
}
.instant-results .benefit-item , .lending-realationships .benefit-item {
    max-width: 30% !important;
}
.instant-results .benefit-item h5.elementor-image-box-title {
  color: var(--main-teal-dark);
  font-weight: var(--body-weight-bold);
  font-size: var(--subtitle-size);
}
.learn-more-box .elementor-heading-title , .faq .mian-title {
	text-align: center;
}
.our-partners {
    display: flex;
    justify-content: center;
    background: #FAFAFA;
}
.our-partners figcaption {
    color: #1E1E1E;
    font-style: normal;
    font-weight: 600;
    font-family: 'Inter';
}
 .logo-partner {
    max-width: 750px;
}
 .logo-partner .bdt-ep-static-carousel-content{
	padding: 0;
}
.our-partners .logo-partner .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    flex-direction: column;
    padding: 0;
    margin: 0;
    font-size: 14px !important;
    gap: 16px;
}
.our-partners .logo-partner .bdt-ep-static-carousel-title {
    font-size: 16px;
    color: #1E1E1E;
    font-weight: var(--body-weight-bold);
}
/*.our-partners .logo-partner .bdt-ep-static-carousel-content {
    padding: 20px 0;
}*/
.join-movement {
    max-width: 525px !important;
}
.join-movement h2{
	color: #000000;
}
.join-movement .elementor-heading-title p {
    min-width: 345px;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: -0.02em;
	color: #000000;
}
.our-partners .get-started {
  gap: 255px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.get-started.yellow-bg .elementor-button {
    background-color: var(--main-teal-dark);
    border-radius: 8px;
    padding: 0;
    min-width: 321px;
    height: 80px;
    display: flex;
    justify-content: center;
}
.faq {
    background: #FAFAFA;
    padding-bottom: 60px;
}
.faq-section {
    max-width: 1180px !important;
    margin: 0 auto;
}
.faq .elementor-widget-n-accordion .e-n-accordion-item {
    margin-top: 25px;
    background: #FFFFFF;
    border: 1px solid rgb(0, 119, 117);
    box-shadow: 0px 4px 4px 0px rgba(0, 119, 117, 0.24);
    border-radius: 4px;
    min-width: 1158px;
    /* margin-right: 20px; */
    /* margin-left: 20px; */
}
.faq .elementor-widget-n-accordion .e-n-accordion-item-title, .faq .elementor-widget-n-accordion .e-n-accordion-item-title-text {
    border: none !important;
    font-weight: 600 !important;
    font-size: var(--title-size) !important;
    color: var(--main-teal-dark) !important;
    height: 64px;
    display: flex;
    padding-left: 8px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
}
.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover>.e-n-accordion-item-title .e-n-accordion-item-title-icon span>svg {
    fill: none !important;
}
.faq .e-con-full.e-flex.e-con.e-child{
	border: none !important;
}
.faq .elementor-widget-n-accordion .e-n-accordion-item p {
    background: #F5F5F5;
    border-radius: 4px;
    font-weight: 400;
    font-size: 20px;
    color: var(--neutral-dark-gray);
    padding: 16px;
    line-height: 24px;
    margin:0 6px 6px;
    max-width: 1130px;
}
.faq .elementor-widget-n-accordion .e-n-accordion-item-title-icon {
    margin-top: -20px;
}
.faq .elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span>svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
/* Blog */
.archive-blog {
    max-width: 1156px !important;
    margin: 70px auto 0;
    padding: 0;
}
.archive-blog .e-con-inner {
    padding: 0;
    margin: 0;
}
.archive-blog .e-con-inner .elementor-element {
    padding-right: 0;
    padding-left: 0;
}
.archive-content {
    max-width: 1156px !important;
    padding: 0;
}
.archive-blog .page-title .elementor-heading-title {
    font-weight: var(--body-weight-bold);
    font-size: var(--body-regular-size);
    line-height: 140%;
    color: #1E1E1E;
	margin-bottom: 10px;
}

.left-box .e-n-tabs-heading {
    background: rgba(0, 119, 117, 0.1);
    border-radius: 8px;
    max-width: max-content;
    padding: 8px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.left-box .elementor-button ,.left-box .e-n-tabs-heading button{
	padding: 8px 12px !important;
	gap: 8px;
	width: max-content;
	height: 32px;
	background: rgba(255, 255, 255, 0.6) !important;
	border-radius: 8px !important;
}
.left-box .elementor-button .elementor-button-content-wrapper {
    align-items: center;
    justify-content: center;
}
.left-box .e-n-tabs-heading .e-n-tab-title-text {
    display: inline-block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: var(--caption-size);
    line-height: 100%;
    color: #007775;
}
.left-box .elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg {
    fill: none !important;
}
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon svg{
	fill: none !important;
}
.left-box .elementor-button.active {
    background-color: #fff !important;
    display: flex;
}
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true],
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] a,
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-title-text {
    background-color: #FFf !important;
    font-weight: 600;
}
.elementor-widget-n-tabs .e-n-tabs-content .e-active {
    padding: 0;
    margin: 0;
}
.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true]{
	box-shadow: 0px 1px 2px 0px rgba(0, 119, 117, 0.4);
}
.elementor-widget-search .e-search-input::placeholder {
    color: rgba(178, 178, 178, 1) !important;
}
.search-box {
    position: absolute;
    top: 45px;
    width: 100% !important;
    max-width: 551px !important;
    z-index: 999;
}
.archive-category-tags .search-box , .search-page .search-box {
    position: relative;
    top: 0;
}
.search-box .e-search-form .e-search-input-wrapper .e-search-input {
    width: 100%;
	max-width: 551px;
    padding: 10px;
    min-height: 40px;
    max-height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(178, 178, 178, 1) !important;
    border-radius: 8px;
    display: flex;
}
.search-box .e-search-form button.e-search-submit {
    background-color: transparent !important;
    position: absolute;
    right: -20px;
    top: -3px;
}
.search-box .elementor-widget-search .e-search-input::placeholder {
    color: #A5A5A5;
}
.search-box .elementor-widget-search .e-search-label>i:is(svg), .elementor-widget-search .e-search-label>svg:is(svg) {
    fill: #fff;
}
.News, .Articles {
    padding: 45px 0px 25px;
    border-top: 1px solid rgba(217, 217, 217, 1);
    margin-top: 25px;
}
.page-title-news .News ,.page-title-articels .Articles{
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
	margin: 0;
	gap: 0;
}
.page-title-news .News .header-page-title ,.page-title-articels .News .header-page-title  {
    margin: 35px 0 35px 0 !important;
}
.News .elementor-heading-title ,.news-page-wrapper .elementor-heading-title,
.news-page-wrapper .post-card .elementor-post__title a,
.news-page-wrapper .post-card .elementor-post__read-more,
.articels-page-wrapper .post-card .elementor-post__read-more,
.elementor-post__read-more {
    color: var(--main-orange-dark);
}
.view-all-btn span.elementor-button-content-wrapper:after {
    content: "";
    width: 8px;
    height: 16px;
    background-image: url(images/view-all.svg);
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    right: 0;
    top: 7px;
}

.elementor-post__read-more .elementor-icon-list-text{
    color: var(--main-orange-dark);
	font-size: var(--caption-size);
    font-weight: var(--body-weight-bold);
}
.Articles .elementor-heading-title, .articels-page-wrapper .elementor-heading-title {
    color: var(--main-teal-dark);
}
.News .elementor-button,
.Articles .elementor-button, 
.News .elementor-button-content-wrapper .elementor-button-text
.Articles .elementor-button-content-wrapper .elementor-button-text{
    background-color: transparent;
    color: var(--main-orange-dark);
    font-weight: var(--body-weight-bold);
    font-size: var(--body-small-size);
}

.News .elementor-button svg , .Articles .elementor-button svg {
    fill: var(--main-orange-dark) !important;
    width: 1em;
    height: 1em;
}
.archive-content .elementor-posts .elementor-post {
    gap: 40px;
}
.archive-content .elementor-posts--thumbnail-top .elementor-post__text {
    max-width: 245px;
}
.News .elementor-posts-container.elementor-posts.elementor-posts--skin-classic.elementor-grid.elementor-has-item-ratio {
    gap: 60px;
}
.archive-content .elementor-posts--skin-classic .elementor-post {
    overflow: visible;
}
.archive-content .elementor-posts-container .elementor-post__thumbnail {
    overflow: visible;
    max-width: 240px;
    max-height: 240px;
}

/* تنظیم اندازه تصویر شاخص برای ویجت Posts */
.archive-content .elementor-post__thumbnail img {
    width: 232px !important;
    height: 232px !important;
    object-fit: cover;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 1.12%, rgba(0, 0, 0, 0) 51.58%);
	border-radius: 16px;
}
.archive-content .elementor-post__terms {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 10px;
}
.archive-content .elementor-posts .elementor-post__excerpt p, .elementor-posts .elementor-post__excerpt p, .elementor-widget-theme-post-excerpt {
    font-size: var(--subtitle-size);
    color: var(--neutral-dark-gray);
    line-height: 24px;
    font-weight: 400;
    max-width: 238px !important;
}

.archive-content .elementor-posts .elementor-post__meta-data , .elementor-posts .elementor-post__meta-data  {
    color: #757575;
    font-weight: var(--body-weight-bold);
}
.archive-content .elementor-post__terms a , .elementor-post__terms a {
    color: var(--main-teal-dark);
    padding: 4px;
    background: #F5F5F5;
    border-radius: 4px;
    font-size: 12px;
	max-width: max-content;
}
.archive-content .elementor-post-date, .elementor-post-date{
    display: flex;
    gap: 5px;
    font-size: var(--caption-size);
    color: #757575;
    font-weight: var(--body-weight-bold);
}
.elementor-post-info__item--type-date {
    font-size: var(--caption-size);
    color: #757575;
    font-weight: var(--body-weight-bold);
}
.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item svg path{
	fill: #fff !important;
}
.news-post .elementor-post__title a, .articles-post .elementor-post__title a, .elementor-post__title a, .news-post.post-card .elementor-heading-title {
    font-weight: var(--body-weight-bold);
    font-size: var(--title-size);
    min-height: 60px;
}
.archive-category-tags .elementor-posts .elementor-post__title,
.search-page .elementor-posts .elementor-post__title {
    min-height: 60px;
}
.archive-category-tags .elementor-posts .elementor-post__read-more ,
.search-page .elementor-posts .elementor-post__read-more {
    margin-top: 10px;
}
.news-post.post-card {
	padding: 0;
}
.news-post.post-card .e-con-inner{
    align-items: flex-start;
}
.news-post.post-card .e-con-inner .featured-image {
    margin-bottom: 20px;
}
.news-post .elementor-post__title a , .news-post.post-card .elementor-heading-title {
    color: var(--main-orange-dark);
    max-width: 232px;
}
.articles-post .elementor-post__title a, .articles-post .news-post.post-card .elementor-heading-title {
    color: var(--main-teal-dark);
    max-width: 232px;
}
.elementor-post__read-more {
    display: flex;
    align-items: center;
    gap: 4px;
}
.elementor-post__read-more:after {
    content: "";
    width: 8px;
    height: 12px;
    background-image: url(images/read-more.svg);
    display: flex;
    background-repeat: no-repeat;
}
/* Articels Page - News Page */
.news-page-wrapper ,.articels-page-wrapper {
	max-width: 1158px !important;
}
.news-container , .articels-container {
    display: grid;
    grid-template-columns: 78% 22%;
    gap: 40px;
    padding:40px 0;
}
.news-page-wrapper .post-card ,
.articels-page-wrapper .post-card,
.news-container .post-card{
    max-width: 925px !important;
    width: 100%;
}
.news-page-wrapper .post-card .elementor-post,
.articels-page-wrapper .post-card .elementor-post ,
.news-container .post-card .elementor-post {
    overflow: unset;
    gap: 40px;
}
.news-page-wrapper .post-card .elementor-post__thumbnail img ,
.articels-page-wrapper .post-card .elementor-post__thumbnail img,
.news-container .post-card .elementor-post__thumbnail img{
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 1.12%, rgba(0, 0, 0, 0) 51.58%);
    border-radius: 16px;
}
.news-page-wrapper .post-card .elementor-post__thumbnail,
.articels-page-wrapper .post-card .elementor-post__thumbnail,
.news-container .post-card .elementor-post__thumbnail{
    border-radius: 16px;
    height: 232px;
    width: 232px;
}
.featured-image{
    max-width: 232px !important;
    max-height: 232px;
}

.featured-image img{
    height: 232px;
    border-radius: 16px !important;
}
.news-page-wrapper .post-card .elementor-grid,
.articels-page-wrapper .post-card .elementor-grid,
.news-container .post-card .elementor-grid {
    gap: 40px;
}
.News .news-post .e-loop-item .e-con-inner {
    gap: 40px;
}
.news-post .elementor-widget-theme-post-excerpt {
    max-width: 100% !important;
    padding-right: 45px !important;
}
/* بخش سایدبار */
.news-sidebar {
    max-width: 208px !important;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    height: max-content;
}
.news-sidebar h3.wp-block-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1E1E1E;
}
.news-sidebar h3.wp-block-heading:before {
    content: "";
    width: 24px;
    display: flex;
    background: url(images/tag.svg);
    height: 24px;
}
.news-sidebar ul {
    list-style: none;
    padding: 0 10px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}
.news-sidebar .wp-block-categories li.cat-item {
    background: #F5F5F5;
    border-radius: 4px;
    max-width: max-content;
    padding: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
}
.news-page-wrapper .elementor-pagination ,
.articels-page-wrapper .elementor-pagination,
.search-page .elementor-pagination,
.elementor-pagination{
    width: calc(128% - 0px);
    margin: 30px auto;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.page-numbers {
    gap: 6px;
    width: 16px;
    height: 16px;
    font-weight: 500;
    font-size: 12px;
    text-align: right;
	color: #6F6F6F;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.page-numbers.first-page , .page-numbers.last-page {
    font-size: 1em;
    margin: 0 !important;
}
span.page-numbers.current {
    border: 1px solid #007775;
    color: #007775;
    padding-top: 2px;
}
.page-numbers.prev, .page-numbers.next {
    margin: 0 !important;
}
/* Single Blog Post */
.single-post-container {
    max-width: 1158px !important;
    margin-top: 60px;
    padding: 0;
}
.main-content-container {
    padding-right: 40px;
}
.single-post-container .post-content {
    padding: 0;
    gap: 20px;
    margin-top: 2rem;
}
.post-header {
    padding: 0;
    justify-content: space-between;
}
.post-title.post-metadata {
    padding: 0px 0 15px;
	max-width: max-content;
}
.post-title .elementor-heading-title {
    font-weight: var(--body-weight-bold);
    font-size: var(--title-size);
    color: var(--main-teal-dark);
}
.post-title .elementor-icon-list-items  time,
.post-title .elementor-post-info__item--type-author,
.post-title .elementor-post-info__item-prefix {
    font-weight: var(--body-weight-bold);
    line-height: 140%;
    color: #757575;
}
.post-title .elementor-icon-list-items  time,
.post-title .elementor-post-info__item--type-author {
    font-size: var(--caption-size);
}
.post-title .elementor-post-info__item-prefix {
    font-size: 10px;
}
.post-title .elementor-post-info__terms-list-item , .elementor-post-info__terms-list-item{
    padding: 4px;
    background: #F5F5F5;
    border-radius: 4px;
    font-weight: var(--body-weight-regular);
    font-size: var(--caption-size) !important;
    color: var(--main-teal-dark);
	margin-right: 5px;
}
.post-title .elementor-post-info {
    gap: 15px 10px;
}
.post-title li.elementor-icon-list-item:nth-child(3) {
    flex-basis: 100%;
    gap: 10px;
}
/* تنظیم لینک‌های شبکه‌های اجتماعی */
.social-share-container .title {
    font-weight: var(--body-weight-bold);
    font-size: var(--body-regular-size-size);
}
.post-header .social-share-container a {
    overflow: visible;
}
.post-header .social-share-container img {
    border-radius: 0 !important;
}
/* === کانتینر اصلی جدول محتوا === */
.post-toc {
    padding: 15px 0;
    margin: 170px 0 0;
    min-width: 202px !important;
}
.elementor-toc__body {
    padding: 0;
    gap: 8px;
    width: 202px;
    border-left: 1px solid #B2B2B2;
    display: flex;
    overflow: hidden;
}
.post-toc .elementor-widget-container {
    border: none;
}
/* === هدر جدول محتوا === */
.post-toc .elementor-toc__header {
    font-size: var(--subtitle-size);
    font-weight: var(--body-weight-bold);
    margin: 0;
    color: #333;
    border: none;
    padding: 10px 0;
}
/* === لیست آیتم‌ها === */
.post-toc .elementor-toc__list-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* === هر آیتم از لیست === */
.post-toc .elementor-toc__list-item {
    border-radius: 0px 4px 4px 0px;
    display: flex;
    margin: 0;
}
/* === آیتم فعال === */
.post-toc .elementor-toc__list-item:not(.elementor-item-active) {
    padding-left: 8px;
}
.post-toc .elementor-item-active {
    background: #F5F5F5;
    border-left: 1px solid #007775;
    border-radius: 0px 4px 4px 0px;
    padding: 6px 8px;
    margin-left: -8px;
    z-index: 9;
    min-width: 202px;
}
/* === آیکون آیتم فعال === */
.post-toc .elementor-toc__list-item-text.elementor-item-active:after {
    content: '»';
    color: #007775;
    font-size: 16px;
    position: absolute;
    right: 12px;
    font-weight: 400;
}
/* === لینک‌های آیتم‌ها === */
.post-toc .elementor-toc__list-item-text {
    font-size: var(--caption-size);
    color: var(--neutral-dark-gray);
}
.elementor-toc__body .elementor-toc__list-item-text.elementor-item-active {
    font-weight: var(--body-weight-bold);
    font-size: var(--caption-size);
    color: var(--main-teal-dark);
    width: 100%;
    display: block;
}
/* === هاور آیتم‌ها === */
.post-toc .elementor-toc__list-item-text:hover {
    color: #1890ff;
}
.post-related-articles{
    padding: 16px;
    gap: 32px;
    max-width: 264px;
    height: max-content;
    background: #F5F5F5;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
}
.post-related-articles .elementor-heading-title {
    font-weight: var(--body-weight-bold);
    font-size: var(--body-regular-size);
    line-height: 140%;
    color: #1E1E1E;
}
.post-related-articles .elementor-posts-container {
    gap: 20px;
}
.post-related-articles .elementor-post__title a {
    font-size: var(--body-regular-size);
}
.post-related-articles .elementor-post__thumbnail {
    overflow: visible;
}
.post-related-articles .elementor-post__thumbnail img {
    width: 80px;
    height: 80px;
}
.post-related-articles .elementor-posts .elementor-post {
    gap: 20px;
}
.post-related-articles .elementor-posts .elementor-post__read-more ,
.post-related-articles .elementor-post-date{
	font-size: 10px;
}
.post-related-articles .elementor-post__read-more:after {
    margin-top: 3px;
}
.post-related-articles .elementor-post__terms {
    display: none;
}
#key-takeaways {
    padding: 16px;
    gap: 10px;
    height: max-content;
    background: rgba(0, 119, 117, 0.1);
    border-radius: 8px;
	margin: 50px 0 30px;
}
#key-takeaways h3.wp-block-heading {
    font-weight: var(--body-weight-bold);
    font-size: var(--body-large-size);
    color: var(--main-teal-dark);
}
#key-takeaways ul.wp-block-list li {
    font-weight: var(--body-weight-regular);
    font-size: var(--body-large-size);
    color: var(--neutral-dark-gray);
    line-height: 30px;
}
.main-content-container .content-post h2{
	color: var(--neutral-dark-gray);
}
/* About Us */
.about-us.wrapper-box-content .e-con-inner {
    display: flex;
    gap: 40px;
    align-content: space-between;
    padding: 0;
}
.about-page-title {
	margin-top: 35px;
}
.about-content {
    padding: 0;
    display: flex;
    max-width: 550px;
    max-height: 440px;
    gap: 60px;
    justify-content: space-between;
}
.about-thumbnail img {
    max-width: 568px !important;
    width: 100% !important;
    max-height: 424px;
    height: 100%;
}
.About-head h3 {
    color: var(--main-teal-dark);
    font-weight: var(--headline-large-weight) !important;
    margin-bottom: 0;
    padding: 0;
}
.about-us p {
    font-size: var(--body-large-size);
    font-weight: var(--body-weight-regular);
    margin-bottom: 0;
    line-height: 24px;
}

.our-team .elementor-testimonial-wrapper {
    display: flex;
    flex-direction: column-reverse;
    max-width: 256px;
    align-items: center;
    gap: 20px;
}
.our-team .e-con-inner {
    gap: 45px 0;
    margin-top: 12px;
    padding-bottom: 0;
}
.our-team .wrapper-team-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 0 !important;
}
.wrapper-team-box .elementor-testimonial-wrapper .elementor-testimonial-content {
    margin-bottom: 0;
}
.our-team .wrapper-team-box .elementor-testimonial-details {
    display: flex !important;
    gap: 10px;
    flex-direction: column;
}
.our-team .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img {
    max-height: 256px;
    max-width: 256px;
    width: 100%;
    height: 100%;
}
.our-team .elementor-testimonial-wrapper .elementor-testimonial-name {
    font-weight: var(--body-weight-bold);
    font-size: var(--title-size);
    color: var(--main-teal-dark);
}
.our-team .elementor-testimonial-wrapper .elementor-testimonial-job {
    font-weight: var(--body-weight-bold);
    font-size: var(--subtitle-size);
    color: var(--main-orange-dark);
}
.our-team .elementor-testimonial-wrapper .elementor-testimonial-content {
    font-weight: var(--body-regular-size);
    font-size: var(--body-regular-size);
    color: var(--neutral-dark-gray);
    text-align: left;
}
/* Contact Us */
.Contact-Us {
    padding: 24px 24px 0;
}
.contact-page-title {
    padding: 35px 0 5px;
}
.contact-page-title .e-con-inner {
    gap: 21px;
}
.contact-right-box {
    padding-bottom: 0;
}
.contact-page-title h3.elementor-heading-title {
    font-size: var(--headline-size);
	font-weight: var(--headline-weight);
}
.contact-page-title h6.elementor-heading-title {
    font-size: var(--title-size);
}
.Contact-Us .elementor-form .elementor-button.elementor-size-sm {
    min-height: 48px;
}
.Contact-Us .elementor-form .elementor-field,.Contact-Us .elementor-form  .elementor-field-group {
    margin: 0 !important;
}
.Contact-Us .elementor-form .elementor-form-fields-wrapper {
    gap: 35px;
}
.Contact-Us-Right {
    background-color: rgba(245, 156, 0, 0.1);
    border-radius: 8px !important;
    gap: 30px !important;
    padding: 60px 0 60px 24px !important;
	align-items: center !important;
	max-width: 569px;
}
.Contact-Us-Right.social-share {
  padding: 45px 0 40px !important;
  max-height: 185px;
}
.Contact-Us-Right  .elementor-icon-box-wrapper {
    max-height: 102px;
}
.Contact-Us-Right .elementor-icon svg {
    width: 40px;
    height: 40px;
}
.Contact-Us-Right .elementor-icon-box-content {
    display: flex;
    justify-content: center;
}
.Contact-Us-Right h5 {
    color: var(--neutral-medium-gray);
    max-width: 320px;
    text-align: left;
	font-weight: var(--body-weight-bold);
}
.Contact-Us-Right .elementor-social-icons-wrapper.elementor-grid {
    --grid-column-gap: 65px;
}
.Contact-Us-Right .elementor-social-icon {
    width: 40px !important;
    height: 40px !important;
}
input[type="text"], input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], select, textarea {
    padding: 24px 12px;
    color: #6F6F6F !important;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.02em;
    border: 1px solid #6f6f6f !important;
}
.elementor-field-group .elementor-field-textual::placeholder {
    color: #6F6F6F !important;
    font-family: 'Inter';
    opacity: 1 !important;
}
/* Privacy Policy - Terms */
.terms-conditions {
	max-width: 1158px !important;
}
.page-title-privacy-policy .page-content ,
.page-title-term-of-use .page-content{
    margin-top: 40px;
}
.terms-conditions.is-layout-flex a{
	color: var(--neutral-dark-gray);
    text-decoration: underline !important;
}
}
.terms-conditions.is-layout-flex {
    justify-content: center;
    max-width: 1158px;
    margin: 0 auto 2rem;
}

.terms-conditions h2 {
    font-size: var(--title-size) !important;
    font-weight: var(--body-weight-bold);
    color: var(--main-teal-dark);
}
.terms-conditions .h2-LLC {
    margin-bottom: 0;
    line-height: 30px;
}
.terms-conditions .DISCLAIMERS {
    margin-top: 45px;
}
.terms-conditions .bg-blue {
    background-color: rgba(0, 119, 117, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: var(--body-large-size);
   // margin: 20px 0 45px;
}

.page-title-privacy-policy .page-content p.has-text-color.has-link-color {
    font-size: 20px !important;
    font-weight: 400;
    padding-bottom: 5px;
}
.terms-conditions ol.wp-block-list {
    list-style-type: disc !important;
    font-style: normal;
    font-weight: var(--body-weight-regular);
    font-size: var(--body-large-size) !important;
    color: var(--neutral-dark-gray);
    gap: 7px;
    display: flex;
    flex-direction: column;
	line-height: 24px;
}
.terms-conditions .wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained{
	margin-block-start:0 !important;
}
.last-updated {
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    flex: auto;
	max-width: none !important;
}
.section-shortcode {
    display: flex;
    margin-block-start: 0 !important;
	gap: 0 !important;
}
.social-share-container {
    position: relative;
    display: flex;
    gap: 10px;
    z-index: 100;
    align-items: center;
    justify-content: flex-start;
    bottom: 15px;
}
.post-header .social-share-container {
    bottom: -10px;
}
.terms-conditions .wp-container-core-group-is-layout-2 {
    gap: 20px;
}

.terms-conditions .welcome-first {
    margin-top: -10px;
}
/* استایل آیکن‌ها */
.social-share-container a {
  display: inline-block;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-share-container a img {
    border-radius: 0 !important;
}
.social-share-container a:hover {
    transform: scale(1.1);
    transition: 0.2s;
}
/* Footer Styles */
.elementor-location-footer {
    background-color: var(--main-teal-dark);
    color: var(--neutral-white);
    border-top: 4px solid var(--main-orange-dark);
    min-height: 355px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
	margin-top: 64px;
}
.page-title-lender-elementor .elementor-location-footer,
.page-title-healthcare-elementor .elementor-location-footer,
.page-title-home .elementor-location-footer,
.partners-template .elementor-location-footer{
	margin-top: 0;
}
footer {
  width: 1240px !important;
}
body:not(.page-id-4010) .elementor-location-footer .footer {
    max-width: 1275px;
    padding: 0;
    margin: 0 auto;
	align-items: flex-start;
}
.elementor-location-footer .footer .elementor-element{
	padding: 0;
}
.contact-footer span {
  font-size: 14px;
  font-weight: 500;
}
footer .elementor-social-icon,.Contact-Us-Right .elementor-social-icon {
    --e-social-icon-icon-color: transparent !important;
    background-color: transparent !important;
}
.menu-footer-menu-container {
  display: flex;
  gap: 40px; /* فاصله بین ستون‌ها */
}
#menu-footer-menu , .three-column-footer ul{
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#menu-footer-menu li:nth-child(1),
#menu-footer-menu li:nth-child(2),
#menu-footer-menu li:nth-child(3),
#menu-footer-menu li:nth-child(4),
#menu-footer-menu li:nth-child(5),
#menu-footer-menu li:nth-child(6),
#menu-footer-menu li:nth-child(7),
#menu-footer-menu li:nth-child(8),
#menu-footer-menu li:nth-child(9),
#menu-footer-menu li:nth-child(10) {
  flex: 1 1 25%; /* ستون سوم */
  padding-bottom: 5px;
}
#menu-footer-menu li:nth-child(4),
#menu-footer-menu li:nth-child(5),
#menu-footer-menu li:nth-child(6){
}
.three-column-footer ul li:nth-child(1),
.three-column-footer ul li:nth-child(2),
.three-column-footer ul li:nth-child(3),
.three-column-footer ul li:nth-child(4),
.three-column-footer ul li:nth-child(5),
.three-column-footer ul li:nth-child(6),
.three-column-footer ul li:nth-child(7),
.three-column-footer ul li:nth-child(8),
.three-column-footer ul li:nth-child(9),
.three-column-footer ul li:nth-child(10) {
  flex: 1 1 25%; /* ستون سوم */
}

#menu-footer-menu a , .three-column-footer ul li span {
  color: var(--neutral-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
#menu-footer-menu a:hover {
  color: var(--main-orange-dark);
}
/* === Partner Profile Page Styles === */
/* General Styles */
.partner-profile {
	padding: 0;
    margin-top: -82px;
}
/* Header Section */
/* Partner Header */
.partner-header {
}
.partner-header img {
    height: 400px;
    border-radius: 0 !important;
}
.partner-header-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* کانتینر اصلی */
.partner-header-content {
    margin-top: -3rem;
}
.partner-header-content .e-con-inner {
    align-items: center !important;
    gap: 5rem;
    max-width: 1158px !important;
    justify-content: space-between !important;
    flex-direction: row !important;
}
/* بخش لوگو */
.partner-header-content .partner-logo-container figure.elementor-image-box-img {
    border-radius: 50% !important;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    background-color: #fff;
    top: -4rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
	max-width: 192px;
	max-height: 192px;
}
.partner-header-content .partner-logo-container figure.elementor-image-box-img img {
    max-width: 128px;
    max-height: 128px;
    object-fit: contain;
}
/* بخش جزئیات */
.partner-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    z-index: 1;
}
.partner-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}
.partner-tagline {
    font-size: 1rem;
    color: #666;
    margin: 0;
}
/* بخش وب‌سایت */
.partner-website-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0.25rem;
    z-index: 1;
}
.partner-website .elementor-button {
    padding: 8px 16px;
    gap: 8px;
    border: 1px solid #007775;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: var(--main-teal-dark);
	transition: background-color 0.3s ease;
}
.partner-website .elementor-widget-container:hover {
   // background-color: #005C5A;
    border-radius: 8px;
}
.partner-website .elementor-widget-container:hover .elementor-button-text {
    color: #fff;
}
.partner-website-text p {
    font-size: 10px;
    color: #1E1E1E;
	font-weight: var(--body-weight-bold);
	text-align: center;
}
/* About Section */
.partner-about {
    padding: 64px 128px;
    background: #FAFAFA;
    border-bottom: 1px solid #B2B2B2;
    max-height: max-content;
}
.partner-about .e-con-inner {
    display: flex;
    flex-direction: row;
}
.partner-content p {
    font-weight: var(--body-weight-regular);
    font-size: var(--subtitle-size);
    color: var(--neutral-dark-gray);
    line-height: 24px;
}
/* Services Section */
.partner-services ,.partner-payment ,.partner-faq{
    padding: 64px 128px;
}
.partner-services .e-con-inner,.partner-payment .e-con-inner {
    padding: 0;
    gap: 80px;
    display: flex;
    align-items: center !important;
}
.partner-services .about-title .elementor-heading-title,
.partner-about .about-title .elementor-heading-title,
.partner-payment .about-title .elementor-heading-title{
    max-width: 120px;
    color: var(--main-teal-dark);
}
.partner-services ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 160px;
}
.partner-services .elementor-icon-list-item::before {
    content: '•'; /* نمایش نقطه */
    color: black; /* رنگ نقطه */
    font-size: 1.2em; /* سایز نقطه */
    margin-right: 8px; /* فاصله نقطه از متن */
}
.partner-services .elementor-icon-list-text {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    color: rgba(66, 66, 65, 1);
}
/* Payment Section */
.partner-payment {
    background: #fdf5e6;
    padding: 64px 128px;
}
/* استایل کلی با کلاس اختصاصی */
.financing-box {
  display: flex !important;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  justify-content: center;
  max-width: 260px;
}
/* استایل عنصر آیکون */
.financing-box .elementor-icon-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.financing-box .elementor-icon-box-icon svg {
  width: 50px;
  height: 50px;
  fill: #FBB03B;
}
/* استایل بخش محتوا */
.financing-box .elementor-icon-box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
/* استایل عنوان */
.financing-box .elementor-icon-box-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}
/* استایل توضیحات */
.financing-box .elementor-icon-box-description {
    font-size: 20px;
    color: rgba(66, 66, 65, 1);
    margin: 0;
    font-weight: 600;
    line-height: 24px;
}
/* Search Results */

.search-results .search-page,
.search-no-results .search-page{
	margin: 80px auto;
	max-width: 1158px;
} 
.search-page .elementor-posts .elementor-post__thumbnail {
    border-radius: 10px;
}
.search-page .elementor-grid {
    gap: 50px;
	margin-top: 50px;
}
.no-results-message {
    display: none;
}
body.search-no-results .no-results-message {
    display: block;
}

.wpsc-guest-create-ticket{
display: flex;
    align-items: center;
    justify-content: center;
    background: #005755;
    color: white !important;
    border-radius: 12px;
    height: 40px;
    width: 100%;
}
.wpsc-guest-create-ticket:hover{
	 background: #f29e00;
	color : black;
}
.slogan-back{
	    background: url(https://dentirateststg.wpenginepowered.com/wp-content/uploads/2025/03/slider-back.png);
    background-size: contain;
    background-repeat: no-repeat;
	padding : 12px 0;
}
.title-slider{
	padding: 16px 0 !important;
/* 	webkit-mask-image: linear-gradient(to bottom, black 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 40%, rgba(0, 0, 0, 0) 100%); */
}

	
