.elementor-3218 .elementor-element.elementor-element-d9041cb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:30px 30px;--row-gap:30px;--column-gap:30px;--padding-top:120px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3218 .elementor-element.elementor-element-23ac4dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-3218 .elementor-element.elementor-element-1c54309 .section-title h2{font-family:"Inter", Sans-serif;font-size:30px;font-weight:700;letter-spacing:0px;word-spacing:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-3218 .elementor-element.elementor-element-fec5cb2{text-align:justify;font-family:"Belanosima", Sans-serif;font-size:18px;font-weight:400;}.elementor-3218 .elementor-element.elementor-element-036d99c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3218 .elementor-element.elementor-element-910a65a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3218 .elementor-element.elementor-element-0c76e63{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-3218 .elementor-element.elementor-element-d1bd318{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:justify;font-family:"Belanosima", Sans-serif;font-size:18px;font-weight:400;}.elementor-3218 .elementor-element.elementor-element-42dee68{text-align:justify;font-family:"Belanosima", Sans-serif;font-size:18px;font-weight:400;}.elementor-3218 .elementor-element.elementor-element-7e1114e{--display:grid;--e-con-grid-template-columns:repeat(4, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-3218 .elementor-element.elementor-element-9fb68c2 img{width:100%;}.elementor-3218 .elementor-element.elementor-element-93b4642 img{width:100%;}.elementor-3218 .elementor-element.elementor-element-55c5a8d img{width:100%;}.elementor-3218 .elementor-element.elementor-element-5b7315a img{width:100%;}@media(max-width:1024px){.elementor-3218 .elementor-element.elementor-element-910a65a{--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-3218 .elementor-element.elementor-element-7e1114e{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-3218 .elementor-element.elementor-element-d9041cb{--padding-top:50px;--padding-bottom:0px;--padding-left:15px;--padding-right:15px;}.elementor-3218 .elementor-element.elementor-element-910a65a{--padding-top:0px;--padding-bottom:50px;--padding-left:15px;--padding-right:15px;}.elementor-3218 .elementor-element.elementor-element-7e1114e{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-3218 .elementor-element.elementor-element-23ac4dc{--width:66%;}.elementor-3218 .elementor-element.elementor-element-036d99c{--width:40%;}.elementor-3218 .elementor-element.elementor-element-7e1114e{--width:100%;}}/* Start custom CSS for image, class: .elementor-element-77fe251 *//* put this in Additional CSS or Elementor Advanced > Custom CSS */
/* Add class "float-image" to the image widget (or target your .elementor-3218 .elementor-element.elementor-element-77fe251) */

.float-image {
  display: inline-block;            /* ensure transform behaves normally */
  will-change: transform;           /* performance hint */
  --float-distance: 12px;           /* how far up/down it moves */
  --float-duration: 4s;             /* one full cycle duration */
  animation: floaty var(--float-duration) ease-in-out infinite;
  transform-origin: center;
}

/* subtle variation: slower, larger movement - optional class */
.float-image.floaty-slow {
  --float-distance: 18px;
  --float-duration: 6s;
}

/* stronger bobbing */
.float-image.floaty-strong {
  --float-distance: 28px;
  --float-duration: 2.2s;
  animation-timing-function: cubic-bezier(.4,.05,.1,1);
}

/* stop animation on mobile to save CPU & battery */
@media (max-width: 768px) {
  .float-image { animation: none; transform: none; }
}

/* keyframes */
@keyframes floaty {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(calc(-1 * var(--float-distance))); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(var(--float-distance)); }
  100% { transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for image, class: .elementor-element-fc21680 *//* put this in Additional CSS or Elementor Advanced > Custom CSS */
/* Add class "float-image" to the image widget (or target your .elementor-3218 .elementor-element.elementor-element-fc21680) */

.float-image {
  display: inline-block;            /* ensure transform behaves normally */
  will-change: transform;           /* performance hint */
  --float-distance: 12px;           /* how far up/down it moves */
  --float-duration: 4s;             /* one full cycle duration */
  animation: floaty var(--float-duration) ease-in-out infinite;
  transform-origin: center;
}

/* subtle variation: slower, larger movement - optional class */
.float-image.floaty-slow {
  --float-distance: 18px;
  --float-duration: 6s;
}

/* stronger bobbing */
.float-image.floaty-strong {
  --float-distance: 28px;
  --float-duration: 2.2s;
  animation-timing-function: cubic-bezier(.4,.05,.1,1);
}

/* stop animation on mobile to save CPU & battery */
@media (max-width: 768px) {
  .float-image { animation: none; transform: none; }
}

/* keyframes */
@keyframes floaty {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(calc(-1 * var(--float-distance))); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(var(--float-distance)); }
  100% { transform: translateY(0); }
}/* End custom CSS */