.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-2846b92:#F9FBFF;--e-global-color-5306f2c:#52E0D7;--e-global-color-9e4b98b:#124C78;--e-global-color-b38c929:#FFFFFF;--e-global-typography-primary-font-family:"Qurova";--e-global-typography-primary-font-size:4vw;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:2.5vw;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:1vw;--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:1.2vw;--e-global-typography-accent-font-weight:600;--e-global-typography-9d6ca3a-font-family:"Poppins";--e-global-typography-9d6ca3a-font-size:1.4vw;--e-global-typography-9d6ca3a-font-weight:400;--e-global-typography-3b2613e-font-family:"Poppins";--e-global-typography-3b2613e-font-size:1vw;--e-global-typography-3b2613e-font-weight:300;--e-global-typography-d5239f8-font-family:"Qurova";--e-global-typography-d5239f8-font-size:3.3vw;--e-global-typography-d5239f8-font-weight:500;--e-global-typography-d5239f8-text-transform:uppercase;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-text-font-size:1.2vw;--e-global-typography-9d6ca3a-font-size:1.4vw;--e-global-typography-3b2613e-font-size:1.2vw;--e-global-typography-d5239f8-font-size:4.4vw;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-text-font-size:3.5vw;--e-global-typography-accent-font-size:4vw;--e-global-typography-9d6ca3a-font-size:4vw;--e-global-typography-3b2613e-font-size:3.5vw;--e-global-typography-d5239f8-font-size:9.1vw;--e-global-typography-d5239f8-line-height:9.1vw;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */html, body {
    overflow-x: clip; /* עובד בדיוק כמו hidden אבל משפר ביצועים */
    overscroll-behavior-x: none; /* מונע בעיות גלילה באנדרואיד */
}



/* ===== Button with perfect circular icon background + inner breathing ===== */
.rotate-btn{
  --background-color: var(--Color, #124C78);
  --background-hover: var(--Color, #124C78);
  --transition: .3s;

  /* קוטר העיגול (VW), אוברלאפ עדין לצד הטקסט, וגודל האייקון בפנים */
  --icon-diameter: 2.6vw;
  --icon-overlap: -0.3vw;
  --icon-inner-scale: .48; /* שחקי בין .52–.60 לפי העין */
}

/* צ'יפ הטקסט (כמו שהיה) */
.rotate-btn .elementor-button-text{
  border-radius: 50px;
  background: var(--background-color);
  padding: 0.8vw 1vw;
  transition: background var(--transition);
}
.rotate-btn:hover .elementor-button-text{
  background: var(--background-hover);
}

/* סקייל עדין לכל הכפתור */
.rotate-btn{
  transition: transform var(--transition);
}
.rotate-btn:hover{
  transform: scale(1.02);
}

/* מיקום האייקון מימין לטקסט (כולל RTL/LTR) */
.rotate-btn .elementor-button-content-wrapper{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

/* ===== העיגול המושלם סביב האייקון ===== */
.rotate-btn .elementor-button-icon{
  display: inline-grid;          /* מרכז מדויק + מאפשר aspect-ratio */
  place-items: center;
  width: var(--icon-diameter);   /* בסיס לחישוב ה-aspect-ratio */
  aspect-ratio: 1 / 1;           /* תמיד ריבוע → עם 50% נהיה עיגול */
  border-radius: 50%;
  background: var(--background-color);
  margin-inline-start: var(--icon-overlap); /* אוברלאפ לוגי RTL/LTR */
  transform: rotate(45deg);
  transition: transform var(--transition), background var(--transition);

  /* חשוב לעיגול נקי: בלי פדינג, בלי גובה/רוחב נוספים */
  padding: 0;
  line-height: 1;
}
.rotate-btn:hover .elementor-button-icon{
  background: var(--background-hover);
  transform: rotate(0deg);
}

/* אייקון מסוג פונט */
.rotate-btn .elementor-button-icon i{
  display: inline-block;
  line-height: 1;
  font-size: calc(var(--icon-diameter) * var(--icon-inner-scale));
}

/* אייקון SVG */
.rotate-btn .elementor-button-icon svg{
  display: block;
  width:  calc(var(--icon-diameter) * var(--icon-inner-scale));
  height: calc(var(--icon-diameter) * var(--icon-inner-scale));
  /* אם צריך שה-SVG יקבל את צבע הטקסט:
     fill: currentColor; */
}

/* ===== רספונסיביות (שומר על VW) ===== */
@media (max-width: 1024px){
  .rotate-btn{
    --icon-diameter: 3.8vw;
    --icon-overlap: -0.4vw;
    --icon-inner-scale: .54;
  }
  .rotate-btn .elementor-button-text{
    padding: 0.8vw 4vw 0.8vw 2vw;
  }
}
@media (max-width: 767px){
  .rotate-btn{
    --icon-diameter: 8.3vw;
    --icon-overlap: 0.5vw;
    --icon-inner-scale: .52;
  }
  .rotate-btn .elementor-button-text{
    padding: 0.7vw 3vw;
  }
}






/* ===== כפתור סטרוק: עיגול מושלם לאייקון + יישור אנכי מדויק ===== */
.rotate-btn1{
  --transition: .3s;

  /* צבע מסגרת */
  --stroke-color: var(--Color, #124C78);

  /* ריווח פנימי של הצ'יפ (VW) */
  --py: 0.8vw;     /* למעלה/למטה */
  --px: 1vw;       /* ימין/שמאל */

  /* אוברלאפ בין הצ'יפ לעיגול (שלילי מתקרב) */
  --icon-overlap: -0.3vw;

  /* גודל האייקון בתוך העיגול (אחוז מהקוטר) */
  --icon-scale: 1; /* שחקי בין .52–.60 */
}

/* ייצוב התוכן ושמירה על שורה אחת */
.rotate-btn1 .elementor-button-content-wrapper{
  display: flex;
  flex-direction: row-reverse; /* אייקון אחרי הטקסט */
  align-items: center;
  gap: 0;
}
.rotate-btn1 .elementor-button{
  transition: transform var(--transition);
}
.rotate-btn1:hover .elementor-button{
  transform: scale(1.02);
}

/* הצ'יפ של הטקסט (הקפסולה) */
.rotate-btn1 .elementor-button-text{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;          /* לא לשבור שורה */
  line-height: 1;               /* חובה לדיוק הגובה */
  border: 0.2vw solid var(--stroke-color);
  border-radius: 999px;
  padding: 0.8vw 1.5vw!important;
}

/* ===== העיגול המושלם סביב האייקון =====
   קוטר העיגול = גובה הצ'יפ = 1em + 2*--py  → תמיד באותו גובה בדיוק */
.rotate-btn1 .elementor-button-icon{
  display: grid;
  place-items: center;
  width:  calc(1em + (2 * var(--py)));
  aspect-ratio: 1 / 1;         /* עיגול אמיתי */
  border-radius: 50%;
  box-sizing: border-box;       /* שה-border לא יבלגן את הקוטר */
  border: 0.1vw solid var(--stroke-color);
  background: transparent;
  margin-inline-start: var(--icon-overlap); /* אוברלאפ לוגי RTL/LTR */
  transform: rotate(45deg);
  transition: transform var(--transition), border-color var(--transition);
  padding: 0;                   /* חשוב לעיגול נקי */
  line-height: 1;
}
.rotate-btn1:hover .elementor-button-icon{
  transform: rotate(0deg);
}

/* גודל האייקון בפנים — נשלט ע"י --icon-scale */
.rotate-btn1 .elementor-button-icon i{
  font-size: calc((1em + (2 * var(--py))) * var(--icon-scale));
  line-height: 1;
}
.rotate-btn1 .elementor-button-icon svg{
  display: block;
  width:  calc(100% * var(--icon-scale));
  height: calc(100% * var(--icon-scale));
  /* צריך שיקבל צבע טקסט? בטלי fill פנימי:
     fill: currentColor; */
}

/* ===== התאמות רספונסיביות ב-VW ===== */
@media (max-width: 1024px){
  .rotate-btn1{
    --py: 1.2vw;     /* אפשר להשאיר */
    --px: 1vw;       /* כמו שאהבת בעבר לטאבלט */
    --icon-overlap: 0.5vw;
    --icon-scale: 1.5;
  }
  
  .rotate-btn1 .elementor-button-text{
  padding: 1vw 1.5vw!important;
}
}
@media (max-width: 767px){
.rotate-btn1{
  --py: 2.5vw;     /* למעלה/למטה */
  --px: 2.5vw;       /* ימין/שמאל */
 --icon-scale: 1;
  }
  
.rotate-btn1 .elementor-button-text{
  padding: 2vw 3vw!important;
}
}


/* גראדיאנט כותרות ראשיות*/
.Gradient-large-title{
background: linear-gradient(267deg, #124C78 9.32%, #52E0D7 94.79%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color:transparent;
}

/* סוף קוד גראדיאנט כותרות ראשיות*/


.grecaptcha-badge {
    display: none !important;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Qurova';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://initiamedical.com/wp-content/uploads/2025/09/Qurova-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Qurova';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://initiamedical.com/wp-content/uploads/2025/09/Qurova-SemiBold.woff2') format('woff2');
}
/* End Custom Fonts CSS */