/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.air-datepicker-cell.-year-.-other-decade-,.air-datepicker-cell.-day-.-other-month-{color:var(--adp-color-other-month)}
.air-datepicker-cell.-year-.-other-decade-:hover,.air-datepicker-cell.-day-.-other-month-:hover{color:var(--adp-color-other-month-hover)}
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-{color:var(--adp-color-other-month)}
.-selected-.air-datepicker-cell.-year-.-other-decade-,.-selected-.air-datepicker-cell.-day-.-other-month-{color:#fff;background:var(--adp-background-color-selected-other-month)}
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-{background:var(--adp-background-color-selected-other-month-focused)}
.-in-range-.air-datepicker-cell.-year-.-other-decade-,.-in-range-.air-datepicker-cell.-day-.-other-month-{background-color:var(--adp-background-color-in-range);color:var(--adp-color)}
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-{background-color:var(--adp-background-color-in-range-focused)}
.air-datepicker-cell.-year-.-other-decade-:empty,.air-datepicker-cell.-day-.-other-month-:empty{background:none;border:none}
.air-datepicker-cell{border-radius:var(--adp-cell-border-radius);box-sizing:border-box;cursor:pointer;display:flex;position:relative;align-items:center;justify-content:center;z-index:1}
.air-datepicker-cell.-focus-{background:var(--adp-cell-background-color-hover)}
.air-datepicker-cell.-current-{color:var(--adp-color-current-date)}
.air-datepicker-cell.-current-.-focus-{color:var(--adp-color)}
.air-datepicker-cell.-current-.-in-range-{color:var(--adp-color-current-date)}
.air-datepicker-cell.-disabled-{cursor:default;color:var(--adp-color-disabled)}
.air-datepicker-cell.-disabled-.-focus-{color:var(--adp-color-disabled)}
.air-datepicker-cell.-disabled-.-in-range-{color:var(--adp-color-disabled-in-range)}
.air-datepicker-cell.-disabled-.-current-.-focus-{color:var(--adp-color-disabled)}
.air-datepicker-cell.-in-range-{background:var(--adp-cell-background-color-in-range);border-radius:0}
.air-datepicker-cell.-in-range-:hover,.air-datepicker-cell.-in-range-.-focus-{background:var(--adp-cell-background-color-in-range-hover)}
.air-datepicker-cell.-range-from-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius)}
.air-datepicker-cell.-range-to-{border:1px solid var(--adp-cell-border-color-in-range);background-color:var(--adp-cell-background-color-in-range);border-radius:0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0}
.air-datepicker-cell.-range-to-.-range-from-{border-radius:var(--adp-cell-border-radius)}
.air-datepicker-cell.-selected-{color:#fff;border:none;background:var(--adp-cell-background-color-selected)}
.air-datepicker-cell.-selected-.-current-{color:#fff;background:var(--adp-cell-background-color-selected)}
.air-datepicker-cell.-selected-.-focus-{background:var(--adp-cell-background-color-selected-hover)}
.air-datepicker-body{transition:all var(--adp-transition-duration) var(--adp-transition-ease)}
.air-datepicker-body.-hidden-{display:none}
.air-datepicker-body--day-names{display:grid;grid-template-columns:repeat(7, var(--adp-day-cell-width));margin:8px 0 3px}
.air-datepicker-body--day-name{color:var(--adp-day-name-color);display:flex;align-items:center;justify-content:center;flex:1;text-align:center;text-transform:uppercase;font-size:.8em}
.air-datepicker-body--day-name.-clickable-{cursor:pointer}
.air-datepicker-body--day-name.-clickable-:hover{color:var(--adp-day-name-color-hover)}
.air-datepicker-body--cells{display:grid}
.air-datepicker-body--cells.-days-{grid-template-columns:repeat(7, var(--adp-day-cell-width));grid-auto-rows:var(--adp-day-cell-height)}
.air-datepicker-body--cells.-months-{grid-template-columns:repeat(3, 1fr);grid-auto-rows:var(--adp-month-cell-height)}
.air-datepicker-body--cells.-years-{grid-template-columns:repeat(4, 1fr);grid-auto-rows:var(--adp-year-cell-height)}
.air-datepicker-nav{display:flex;justify-content:space-between;border-bottom:1px solid var(--adp-border-color-inner);min-height:var(--adp-nav-height);padding:var(--adp-padding);box-sizing:content-box}
.-only-timepicker- .air-datepicker-nav{display:none}
.air-datepicker-nav--title,.air-datepicker-nav--action{display:flex;cursor:pointer;align-items:center;justify-content:center}
.air-datepicker-nav--action{width:var(--adp-nav-action-size);border-radius:var(--adp-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none}
.air-datepicker-nav--action:hover{background:var(--adp-background-color-hover)}
.air-datepicker-nav--action:active{background:var(--adp-background-color-active)}
.air-datepicker-nav--action.-disabled-{visibility:hidden}
.air-datepicker-nav--action svg{width:32px;height:32px}
.air-datepicker-nav--action path{fill:none;stroke:var(--adp-nav-arrow-color);stroke-width:2px}
.air-datepicker-nav--title{border-radius:var(--adp-border-radius);padding:0 8px}
.air-datepicker-nav--title i{font-style:normal;color:var(--adp-nav-color-secondary);margin-left:.3em}
.air-datepicker-nav--title:hover{background:var(--adp-background-color-hover)}
.air-datepicker-nav--title:active{background:var(--adp-background-color-active)}
.air-datepicker-nav--title.-disabled-{cursor:default;background:none}
.air-datepicker-buttons{display:grid;grid-auto-columns:1fr;grid-auto-flow:column}
.air-datepicker-button{display:inline-flex;color:var(--adp-btn-color);border-radius:var(--adp-btn-border-radius);cursor:pointer;height:var(--adp-btn-height);border:none;background:rgba(255,255,255,0)}
.air-datepicker-button:hover{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover)}
.air-datepicker-button:focus{color:var(--adp-btn-color-hover);background:var(--adp-btn-background-color-hover);outline:none}
.air-datepicker-button:active{background:var(--adp-btn-background-color-active)}
.air-datepicker-button span{outline:none;display:flex;align-items:center;justify-content:center;width:100%;height:100%}
.air-datepicker-time{display:grid;grid-template-columns:max-content 1fr;grid-column-gap:12px;align-items:center;position:relative;padding:0 var(--adp-time-padding-inner)}
.-only-timepicker- .air-datepicker-time{border-top:none}
.air-datepicker-time--current{display:flex;align-items:center;flex:1;font-size:14px;text-align:center}
.air-datepicker-time--current-colon{margin:0 2px 3px;line-height:1}
.air-datepicker-time--current-hours,.air-datepicker-time--current-minutes{line-height:1;font-size:19px;font-family:"Century Gothic",CenturyGothic,AppleGothic,sans-serif;position:relative;z-index:1}
.air-datepicker-time--current-hours:after,.air-datepicker-time--current-minutes:after{content:"";background:var(--adp-background-color-hover);border-radius:var(--adp-border-radius);position:absolute;left:-2px;top:-3px;right:-2px;bottom:-2px;z-index:-1;opacity:0}
.air-datepicker-time--current-hours.-focus-:after,.air-datepicker-time--current-minutes.-focus-:after{opacity:1}
.air-datepicker-time--current-ampm{text-transform:uppercase;align-self:flex-end;color:var(--adp-time-day-period-color);margin-left:6px;font-size:11px;margin-bottom:1px}
.air-datepicker-time--row{display:flex;align-items:center;font-size:11px;height:17px;background:linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat}
.air-datepicker-time--row:first-child{margin-bottom:4px}
.air-datepicker-time--row input[type=range]{background:none;cursor:pointer;flex:1;height:100%;width:100%;padding:0;margin:0;-webkit-appearance:none}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{-webkit-appearance:none}
.air-datepicker-time--row input[type=range]::-ms-tooltip{display:none}
.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb{border-color:var(--adp-time-track-color-hover)}
.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb{border-color:var(--adp-time-track-color-hover)}
.air-datepicker-time--row input[type=range]:hover::-ms-thumb{border-color:var(--adp-time-track-color-hover)}
.air-datepicker-time--row input[type=range]:focus{outline:none}
.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}
.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}
.air-datepicker-time--row input[type=range]:focus::-ms-thumb{background:var(--adp-cell-background-color-selected);border-color:var(--adp-cell-background-color-selected)}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-webkit-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}
.air-datepicker-time--row input[type=range]::-moz-range-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-moz-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}
.air-datepicker-time--row input[type=range]::-ms-thumb{box-sizing:border-box;height:12px;width:12px;border-radius:3px;border:1px solid var(--adp-time-track-color);background:#fff;cursor:pointer;-ms-transition:background var(--adp-transition-duration);transition:background var(--adp-transition-duration)}
.air-datepicker-time--row input[type=range]::-webkit-slider-thumb{margin-top:calc(var(--adp-time-thumb-size)/2*-1)}
.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}
.air-datepicker-time--row input[type=range]::-moz-range-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}
.air-datepicker-time--row input[type=range]::-ms-track{border:none;height:var(--adp-time-track-height);cursor:pointer;color:rgba(0,0,0,0);background:rgba(0,0,0,0)}
.air-datepicker-time--row input[type=range]::-ms-fill-lower{background:rgba(0,0,0,0)}
.air-datepicker-time--row input[type=range]::-ms-fill-upper{background:rgba(0,0,0,0)}
.air-datepicker{--adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--adp-font-size: 14px;--adp-width: 246px;--adp-z-index: 100;--adp-padding: 4px;--adp-grid-areas: "nav" "body" "timepicker" "buttons";--adp-transition-duration: .3s;--adp-transition-ease: ease-out;--adp-transition-offset: 8px;--adp-background-color: #fff;--adp-background-color-hover: #f0f0f0;--adp-background-color-active: #eaeaea;--adp-background-color-in-range: rgba(92, 196, 239, .1);--adp-background-color-in-range-focused: rgba(92, 196, 239, .2);--adp-background-color-selected-other-month-focused: #8ad5f4;--adp-background-color-selected-other-month: #a2ddf6;--adp-color: #4a4a4a;--adp-color-secondary: #9c9c9c;--adp-accent-color: #4eb5e6;--adp-color-current-date: var(--adp-accent-color);--adp-color-other-month: #dedede;--adp-color-disabled: #aeaeae;--adp-color-disabled-in-range: #939393;--adp-color-other-month-hover: #c5c5c5;--adp-border-color: #dbdbdb;--adp-border-color-inner: #efefef;--adp-border-radius: 4px;--adp-border-color-inline: #d7d7d7;--adp-nav-height: 32px;--adp-nav-arrow-color: var(--adp-color-secondary);--adp-nav-action-size: 32px;--adp-nav-color-secondary: var(--adp-color-secondary);--adp-day-name-color: #ff9a19;--adp-day-name-color-hover: #8ad5f4;--adp-day-cell-width: 1fr;--adp-day-cell-height: 32px;--adp-month-cell-height: 42px;--adp-year-cell-height: 56px;--adp-pointer-size: 10px;--adp-poiner-border-radius: 2px;--adp-pointer-offset: 14px;--adp-cell-border-radius: 4px;--adp-cell-background-color-hover: var(--adp-background-color-hover);--adp-cell-background-color-selected: #5cc4ef;--adp-cell-background-color-selected-hover: #45bced;--adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);--adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);--adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);--adp-btn-height: 32px;--adp-btn-color: var(--adp-accent-color);--adp-btn-color-hover: var(--adp-color);--adp-btn-border-radius: var(--adp-border-radius);--adp-btn-background-color-hover: var(--adp-background-color-hover);--adp-btn-background-color-active: var(--adp-background-color-active);--adp-time-track-height: 1px;--adp-time-track-color: #dedede;--adp-time-track-color-hover: #b1b1b1;--adp-time-thumb-size: 12px;--adp-time-padding-inner: 10px;--adp-time-day-period-color: var(--adp-color-secondary);--adp-mobile-font-size: 16px;--adp-mobile-nav-height: 40px;--adp-mobile-width: 320px;--adp-mobile-day-cell-height: 38px;--adp-mobile-month-cell-height: 48px;--adp-mobile-year-cell-height: 64px}
.air-datepicker-overlay{--adp-overlay-background-color: rgba(0, 0, 0, .3);--adp-overlay-transition-duration: .3s;--adp-overlay-transition-ease: ease-out;--adp-overlay-z-index: 99}
.air-datepicker{background:var(--adp-background-color);border:1px solid var(--adp-border-color);box-shadow:0 4px 12px rgba(0,0,0,.15);border-radius:var(--adp-border-radius);box-sizing:content-box;display:grid;grid-template-columns:1fr;grid-template-rows:repeat(4, max-content);grid-template-areas:var(--adp-grid-areas);font-family:var(--adp-font-family),sans-serif;font-size:var(--adp-font-size);color:var(--adp-color);width:var(--adp-width);position:absolute;transition:opacity var(--adp-transition-duration) var(--adp-transition-ease),transform var(--adp-transition-duration) var(--adp-transition-ease);z-index:var(--adp-z-index)}
.air-datepicker:not(.-custom-position-){opacity:0}
.air-datepicker.-from-top-{transform:translateY(calc(var(--adp-transition-offset) * -1))}
.air-datepicker.-from-right-{transform:translateX(var(--adp-transition-offset))}
.air-datepicker.-from-bottom-{transform:translateY(var(--adp-transition-offset))}
.air-datepicker.-from-left-{transform:translateX(calc(var(--adp-transition-offset) * -1))}
.air-datepicker.-active-:not(.-custom-position-){transform:translate(0, 0);opacity:1}
.air-datepicker.-active-.-custom-position-{transition:none}
.air-datepicker.-inline-{border-color:var(--adp-border-color-inline);box-shadow:none;position:static;left:auto;right:auto;opacity:1;transform:none}
.air-datepicker.-inline- .air-datepicker--pointer{display:none}
.air-datepicker.-is-mobile-{--adp-font-size: var(--adp-mobile-font-size);--adp-day-cell-height: var(--adp-mobile-day-cell-height);--adp-month-cell-height: var(--adp-mobile-month-cell-height);--adp-year-cell-height: var(--adp-mobile-year-cell-height);--adp-nav-height: var(--adp-mobile-nav-height);--adp-nav-action-size: var(--adp-mobile-nav-height);position:fixed;width:var(--adp-mobile-width);border:none}
.air-datepicker.-is-mobile- *{-webkit-tap-highlight-color:rgba(0,0,0,0)}
.air-datepicker.-is-mobile- .air-datepicker--pointer{display:none}
.air-datepicker.-is-mobile-:not(.-custom-position-){transform:translate(-50%, calc(-50% + var(--adp-transition-offset)))}
.air-datepicker.-is-mobile-.-active-:not(.-custom-position-){transform:translate(-50%, -50%)}
.air-datepicker.-custom-position-{transition:none}
.air-datepicker-global-container{position:absolute;left:0;top:0}
.air-datepicker--pointer{--pointer-half-size: calc(var(--adp-pointer-size) / 2);position:absolute;width:var(--adp-pointer-size);height:var(--adp-pointer-size);z-index:-1}
.air-datepicker--pointer:after{content:"";position:absolute;background:#fff;border-top:1px solid var(--adp-border-color-inline);border-right:1px solid var(--adp-border-color-inline);border-top-right-radius:var(--adp-poiner-border-radius);width:var(--adp-pointer-size);height:var(--adp-pointer-size);box-sizing:border-box}
.-top-left- .air-datepicker--pointer,.-top-center- .air-datepicker--pointer,.-top-right- .air-datepicker--pointer,[data-popper-placement^=top] .air-datepicker--pointer{top:calc(100% - var(--pointer-half-size) + 1px)}
.-top-left- .air-datepicker--pointer:after,.-top-center- .air-datepicker--pointer:after,.-top-right- .air-datepicker--pointer:after,[data-popper-placement^=top] .air-datepicker--pointer:after{transform:rotate(135deg)}
.-right-top- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer,[data-popper-placement^=right] .air-datepicker--pointer{right:calc(100% - var(--pointer-half-size) + 1px)}
.-right-top- .air-datepicker--pointer:after,.-right-center- .air-datepicker--pointer:after,.-right-bottom- .air-datepicker--pointer:after,[data-popper-placement^=right] .air-datepicker--pointer:after{transform:rotate(225deg)}
.-bottom-left- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer,[data-popper-placement^=bottom] .air-datepicker--pointer{bottom:calc(100% - var(--pointer-half-size) + 1px)}
.-bottom-left- .air-datepicker--pointer:after,.-bottom-center- .air-datepicker--pointer:after,.-bottom-right- .air-datepicker--pointer:after,[data-popper-placement^=bottom] .air-datepicker--pointer:after{transform:rotate(315deg)}
.-left-top- .air-datepicker--pointer,.-left-center- .air-datepicker--pointer,.-left-bottom- .air-datepicker--pointer,[data-popper-placement^=left] .air-datepicker--pointer{left:calc(100% - var(--pointer-half-size) + 1px)}
.-left-top- .air-datepicker--pointer:after,.-left-center- .air-datepicker--pointer:after,.-left-bottom- .air-datepicker--pointer:after,[data-popper-placement^=left] .air-datepicker--pointer:after{transform:rotate(45deg)}
.-top-left- .air-datepicker--pointer,.-bottom-left- .air-datepicker--pointer{left:var(--adp-pointer-offset)}
.-top-right- .air-datepicker--pointer,.-bottom-right- .air-datepicker--pointer{right:var(--adp-pointer-offset)}
.-top-center- .air-datepicker--pointer,.-bottom-center- .air-datepicker--pointer{left:calc(50% - var(--adp-pointer-size)/2)}
.-left-top- .air-datepicker--pointer,.-right-top- .air-datepicker--pointer{top:var(--adp-pointer-offset)}
.-left-bottom- .air-datepicker--pointer,.-right-bottom- .air-datepicker--pointer{bottom:var(--adp-pointer-offset)}
.-left-center- .air-datepicker--pointer,.-right-center- .air-datepicker--pointer{top:calc(50% - var(--adp-pointer-size)/2)}
.air-datepicker--navigation{grid-area:nav}
.air-datepicker--content{box-sizing:content-box;padding:var(--adp-padding);grid-area:body}
.-only-timepicker- .air-datepicker--content{display:none}
.air-datepicker--time{grid-area:timepicker}
.air-datepicker--buttons{grid-area:buttons}
.air-datepicker--buttons,.air-datepicker--time{padding:var(--adp-padding);border-top:1px solid var(--adp-border-color-inner)}
.air-datepicker-overlay{position:fixed;background:var(--adp-overlay-background-color);left:0;top:0;width:0;height:0;opacity:0;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),left 0s,height 0s,width 0s;transition-delay:0s,var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration),var(--adp-overlay-transition-duration);z-index:var(--adp-overlay-z-index)}
.air-datepicker-overlay.-active-{opacity:1;width:100%;height:100%;transition:opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease),height 0s,width 0s}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.\!absolute {
  position: absolute !important;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.m-0 {
  margin: 0px;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.\!-ml-6 {
  margin-left: -1.5rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.mt-4 {
  margin-top: 1rem;
}
.\!line-clamp-1 {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.hidden {
  display: none;
}
.h-16 {
  height: 4rem;
}
.h-7 {
  height: 1.75rem;
}
.h-\[215px\] {
  height: 215px;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.\!w-60 {
  width: 15rem !important;
}
.\!w-full {
  width: 100% !important;
}
.w-44 {
  width: 11rem;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-\[190px\] {
  width: 190px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.min-w-\[300px\] {
  min-width: 300px;
}
.\!max-w-none {
  max-width: none !important;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-solid {
  border-style: solid;
}
.\!border-none {
  border-style: none !important;
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-white-400 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.bg-bg-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 244 247 / var(--tw-bg-opacity));
}
.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(205 205 205 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-pink-200\/20 {
  --tw-gradient-from: rgb(250 113 165 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 113 165 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-200\/40 {
  --tw-gradient-from: rgb(250 113 165 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 113 165 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-white {
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.\!object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-top {
  -o-object-position: top;
     object-position: top;
}
.p-2 {
  padding: 0.5rem;
}
.\!py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.\!text-left {
  text-align: left !important;
}
.text-center {
  text-align: center;
}
.font-sans {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.\!text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-bold {
  font-weight: 700 !important;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-3 {
  line-height: .75rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-\[1\.8rem\] {
  line-height: 1.8rem;
}
.text-inherit {
  color: inherit;
}
.text-pink {
  --tw-text-opacity: 1;
  color: rgb(252 143 184 / var(--tw-text-opacity));
}
.text-pink-200 {
  --tw-text-opacity: 1;
  color: rgb(250 113 165 / var(--tw-text-opacity));
}
.text-text-primary {
  --tw-text-opacity: 1;
  color: rgb(20 28 37 / var(--tw-text-opacity));
}
.text-text-secondary {
  --tw-text-opacity: 1;
  color: rgb(52 64 81 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.no-underline {
  text-decoration-line: none;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
*,*:before,*:after{box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}
video{border:0;outline:none}
img{outline:none;max-width:100%}
button{font:inherit}
a,button{cursor:pointer;outline:none}
ul{margin:0;padding:0;list-style:none}
figure{margin:0}
@media(max-width: 1280px){.tablet-hidden{display:none !important}}
@media(min-width: 1440px){.tablet-show{display:none !important}}
@media(max-width: 1100px){.medium-tablet-hidden{display:none !important}}
@media(min-width: 993px){.medium-tablet-show{display:none !important}}
@media(max-width: 993px){.mobile-hidden{display:none !important}}
@media(min-width: 768px){.mobile-show{display:none !important}}
body,html{font-size:16px;scroll-behavior:smooth}
.opened-submenu{opacity:.5}
.tax-featured,.single-nursing-home,.single-job-vacancy{background:#f5f5f5}
body{margin:0;font:400 16px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,Arial,Helvetica,sans-serif;background:#fff;color:#252c32;min-width:375px}
body.chat-open{overflow:hidden}
body .grecaptcha-badge{visibility:hidden}
@media(max-width: 993px){body .city-desktop{display:none}}
body .city-mobile{display:none}
@media(max-width: 993px){body .city-mobile{display:flex}}
@media(min-width: 1440px){*{scrollbar-color:#fc8fb8 #d1d1d1;scrollbar-width:thin}*::-webkit-scrollbar-track{background-color:#d1d1d1;border-radius:0.25rem;opacity:0}*::-webkit-scrollbar{width:0.5rem;height:4px;background-color:#d1d1d1;border-radius:0.25rem}*::-webkit-scrollbar-thumb{background-color:#fc8fb8;border-radius:0.25rem}}
video{border:0;outline:none}
img{outline:none;max-width:100%}
.container{max-width:1440px;width:100%;padding:0 2rem;margin-left:auto;margin-right:auto}
@media(max-width: 1280px){.container{padding:0 2.5rem}}
.container--02{padding:0 6.875rem}
@media(max-width: 1280px){.container{padding:0 2.5rem}}
@media(max-width: 993px){.container{padding:0 1.25rem}}
.short-container{max-width:945px;width:100%}
.display-none{display:none !important}
._bold{font-weight:700}
a{color:#f17ca8;font-size:1rem;font-weight:500;line-height:1.5rem;text-decoration:underline}
a:hover{text-decoration:none}
.border-b-solid{border-bottom-style:solid;border-bottom-width:1px}
.border-y-solid{border-top-style:solid;border-top-width:1px;border-bottom-style:solid;border-bottom-width:1px}
.border-l-solid{border-left-style:solid;border-left-width:1px}
p:not(.article__content p,.new-form__title,.city_banner__description p,.article-card__subtitle,.article-card__title,.not-p){margin:0 0 1.5rem 0;color:#888;font-size:1rem;line-height:1.5rem;font-weight:400}
@media(max-width: 993px){p:not(.article__content p,.new-form__title,.city_banner__description p,.article-card__subtitle,.article-card__title,.not-p){font-size:0.875rem;line-height:1.5rem}}
strong{font-weight:600}
@media(max-width: 993px){strong{font-size:0.875rem;line-height:1.5rem}}
.title{margin:0 0 20px 0;font-size:36px;font-weight:600;line-height:1.22;color:#252c32;text-align:center}
@media(max-width: 993px){.title{margin:0 0 16px 0;font-size:24px}}
.title--02{font-size:2.5rem;line-height:2.75rem;font-weight:400}
@media(max-width: 993px){.title--02{margin:0 0 1.25rem 0;font-size:1.6875rem;line-height:2.0625rem}}
.section-indents--very-low{margin-bottom:3.75rem}
.section-indents--low{margin-bottom:5rem}
@media(max-width: 1280px){.section-indents{margin-bottom:4rem}}
@media(max-width: 993px){.section-indents{margin-bottom:2.5rem}}
.top-quality{min-width:-moz-max-content;min-width:max-content;height:-moz-max-content;height:max-content;display:flex;align-items:center;-moz-column-gap:0.125rem;column-gap:0.125rem;padding:0.3125rem 0.625rem;border:0.0625rem solid #f6de89;border-radius:3.125rem;color:#fff;font-size:0.625rem;line-height:1rem;font-weight:400;background:linear-gradient(90deg, #E5CE81 1.68%, #E1BB64 28.64%, #DFB156 74.37%, #F5E99A 99.37%)}
.disable{opacity:0;pointer-events:none}
.copy{cursor:pointer;min-width:-moz-max-content;min-width:max-content;display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;color:#888;font-size:1rem;font-weight:600;line-height:1.5rem;padding:0.5rem 0.75rem;transition:all .3s ease;border-radius:8px;border:1px solid #e5e7eb;background:#fff;box-shadow:0px 1px 2px 0px rgba(16,24,40,.05)}
.copy:hover{box-shadow:0 0.0625rem 0.5rem 0.375rem rgba(39,21,29,.06)}
@media(max-width: 993px){.copy{font-size:1rem;line-height:0.9375rem;-moz-column-gap:0.3125rem;column-gap:0.3125rem;padding:.75rem 1.5rem}}
.copy__icon{width:1.875rem;height:1.875rem;display:flex;align-items:center;justify-content:center}
@media(max-width: 993px){.copy__icon{width:1.125rem;height:1.125rem}}
.copy span{white-space:nowrap}
.adress{display:flex;align-items:center;-moz-column-gap:0.625rem;column-gap:0.625rem;font-size:1rem;color:#888;font-weight:600;line-height:1.5rem}
@media(max-width: 993px){.adress{color:#999;font-size:0.75rem;line-height:1.25rem;font-weight:500;-moz-column-gap:0.375rem;column-gap:0.375rem}}
.adress__icon{width:1.625rem;height:1.625rem;display:flex;align-items:center;justify-content:center}
@media(max-width: 993px){.adress__icon{width:1.25rem;height:1.25rem}}
.price{display:flex;align-items:flex-end;-moz-column-gap:0.25rem;column-gap:0.25rem;color:#252c32;font-size:1.5rem;font-weight:500;line-height:2rem}
@media(max-width: 993px){.price{font-size:1.25rem;line-height:2rem}}
.price span{color:#888;font-size:1rem;line-height:1.75rem;font-weight:400}
@media(max-width: 993px){.price span{font-size:0.875rem}}
.notification{padding:1.875rem;border-radius:0.875rem;background-color:#e2f2ff;color:#666;font-weight:500;display:flex;align-items:center;flex-wrap:wrap;gap:0.375rem}
@media(max-width: 993px){.notification{padding:1rem;align-items:flex-start;flex-direction:column;row-gap:1rem;color:#888;font-weight:400}}
.notification__title{display:flex;-moz-column-gap:1rem;column-gap:1rem;color:#252c32;font-size:1rem;line-height:1.75rem;letter-spacing:-0.0225rem;font-weight:500}
@media(max-width: 993px){.notification__title{font-size:1rem;line-height:1.5rem}}
.notification__icon{min-width:1.5rem;max-width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
.notification span{font-weight:500}
@media(max-width: 993px){.notification span{padding:0;font-weight:400}}
@media(max-width: 1280px){.tablet-hidden{display:none !important}}
@media(min-width: 1440px){.tablet-show{display:none !important}}
@media(max-width: 1100px){.medium-tablet-hidden{display:none !important}}
@media(min-width: 993px){.medium-tablet-show{display:none !important}}
@media(max-width: 993px){.mobile-hidden{display:none !important}}
@media(min-width: 768px){.mobile-show{display:none !important}}
@font-face{font-family:"swiper-icons";src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}
:root{--swiper-theme-color: #007aff}
:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}
.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}
.swiper-vertical>.swiper-wrapper{flex-direction:column}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}
.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}
.swiper-horizontal{touch-action:pan-y}
.swiper-vertical{touch-action:pan-x}
.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}
.swiper-slide-invisible-blank{visibility:hidden}
.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}
.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}
.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}
.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}
.swiper-3d .swiper-wrapper{transform-style:preserve-3d}
.swiper-3d{perspective:1200px}
.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}
.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}
.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}
.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}
.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}
.swiper-3d .swiper-slide-shadow{background:rgba(0, 0, 0, 0.15)}
.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}
.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}
.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}
.swiper-lazy-preloader-black{--swiper-preloader-color: #000}
@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:"";position:absolute;left:0;top:0;pointer-events:none}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}
:root{--swiper-navigation-size: 44px}
.swiper-button-prev,.swiper-button-next{position:absolute;top:var(--swiper-navigation-top-offset, 50%);width:calc(var(--swiper-navigation-size)/44*27);height:var(--swiper-navigation-size);margin-top:calc(0px - var(--swiper-navigation-size)/2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}
.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}
.swiper-button-prev.swiper-button-hidden,.swiper-button-next.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}
.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next{display:none !important}
.swiper-button-prev svg,.swiper-button-next svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center}
.swiper-rtl .swiper-button-prev svg,.swiper-rtl .swiper-button-next svg{transform:rotate(180deg)}
.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset, 10px);right:auto}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}
.swiper-button-lock{display:none}
.swiper-button-prev:after,.swiper-button-next:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;font-variant:initial;line-height:1}
.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}
.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}
.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}
.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}
.swiper-pagination.swiper-pagination-hidden{opacity:0}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none !important}
.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}
.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}
.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}
button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}
.swiper-pagination-bullet:only-child{display:none !important}
.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}
.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0)}
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:200ms transform,200ms top}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform,200ms left}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform,200ms right}
.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}
.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));position:absolute}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}
.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}
.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}
.swiper-pagination-lock{display:none}
.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius, 10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))}
.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none !important}
.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset, 1%);bottom:var(--swiper-scrollbar-bottom, 4px);top:var(--swiper-scrollbar-top, auto);z-index:50;height:var(--swiper-scrollbar-size, 4px);width:calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))}
.swiper-vertical>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical{position:absolute;left:var(--swiper-scrollbar-left, auto);right:var(--swiper-scrollbar-right, 4px);top:var(--swiper-scrollbar-sides-offset, 1%);z-index:50;width:var(--swiper-scrollbar-size, 4px);height:calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));border-radius:var(--swiper-scrollbar-border-radius, 10px);left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-scrollbar-lock{display:none}
.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}
.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}
.swiper-slide-zoomed{cursor:move;touch-action:none}
.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}
.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}
.swiper-grid>.swiper-wrapper{flex-wrap:wrap}
.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}
.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}
.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}
.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}
.swiper-fade .swiper-slide-active{pointer-events:auto}
.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper.swiper-cube{overflow:visible}
.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}
.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}
.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}
.swiper-cube .swiper-cube-shadow:before{content:"";background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}
.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}
.swiper.swiper-flip{overflow:visible}
.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}
.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}
.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}
.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}
.swiper.swiper-cards{overflow:visible}
.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}
@media(max-width: 993px){.home .header{background:#fff !important}}
.home .header__holder{display:flex;align-items:center;justify-content:space-between;color:#252c32;font-weight:600}
.home .header__holder .header__logo-img{display:block}
@media(max-width: 993px){.home .header__holder .header__logo-img{display:none}}
.home .header__holder .header__logo-img-white{display:none}
@media(max-width: 993px){.home .header__holder .header__logo-img-white{display:none}}
@media(max-width: 1100px){.home .header__holder{justify-content:flex-start}}
.home .header__logo{display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem;color:#252c32;font-size:1.375rem;font-weight:700;text-decoration:none;width:152px}
@media(max-width: 993px){.home .header__logo{font-size:0.875rem;line-height:1rem}}
.home .header .header__child-nav-list li a{color:#000}
.home .header__nav{display:flex;align-items:center;justify-content:space-between}
@media(max-width: 1100px){.home .header__nav{justify-content:flex-start;position:fixed;right:0;top:5rem;height:calc(100vh - 5rem);background:#fff;flex-direction:column;width:16.25rem;align-items:center;padding:1.0625rem;overflow:auto;z-index:10;transform:translateX(100%);opacity:0;transition:all .15s linear;box-shadow:0.0625rem 0.1875rem 0.3125rem 0 rgba(49,66,83,.05)}}
.home .header__nav-list{display:flex;-moz-column-gap:2.5rem;column-gap:2.5rem}
@media(max-width: 1280px){.home .header__nav-list{-moz-column-gap:1.25rem;column-gap:1.25rem}}
@media(max-width: 1100px){.home .header__nav-list{margin-bottom:0.9375rem;flex-direction:column;width:100%}}
.home .header__nav-item{padding:2rem 0;cursor:pointer}
.home .header__nav-item a{font-weight:400}
@media(max-width: 1100px){.home .header__nav-item{border-bottom:0.0625rem solid #252c32}.home .header__nav-item:first-child .header__nav-link{padding-top:0}.home .header__nav-item:last-child{border-bottom:0}}
.home .header__nav-opener{display:none}
@media(max-width: 1100px){.home .header__nav-opener{display:block;position:relative;border:0;padding:0;width:1.546875rem;height:1.03125rem}.home .header__nav-opener:before,.home .header__nav-opener:after{content:""}.home .header__nav-opener:before,.home .header__nav-opener:after,.home .header__nav-opener-line{position:absolute;transition:all .15s linear;left:0;height:0.125rem;width:1.125rem}.home .header__nav-opener:before{top:0rem;left:0.53125rem}.home .header__nav-opener-line{top:0.75rem;left:0.53125rem}.home .header__nav-opener:after{top:0.375rem;left:0.53125rem}}
.home .header__actions{margin-left:2rem;display:flex;-moz-column-gap:2rem;column-gap:2rem}
@media(max-width: 1280px){.home .header__actions{-moz-column-gap:1rem;column-gap:1rem;margin:0 0 0 1rem}}
@media(max-width: 1100px){.home .header__actions{margin:0 1rem 0 auto}}
.home .header__actions .header__button{padding:0.625rem 1rem}
@media(max-width: 993px){.home .header__actions .header__button{padding:0.3125rem 0.3125rem !important}.home .header__actions .header__button div,.home .header__actions .header__button span{padding:0.25rem 0.75rem}}
.home .header__phone-icon{display:flex;align-items:center;justify-content:center}
.home .header__phone-icon svg{fill:#252c32}
@media(max-width: 993px){.home .header__phone{display:none}}
.header{padding:0;box-shadow:0.0625rem 0.1875rem 0.3125rem 0 rgba(49,66,83,.05);position:fixed;top:0;width:100%;background:#fff;z-index:10}
.header.header-author{position:absolute;background:rgba(0,0,0,0);box-shadow:unset}
.header.header-author.scrolled{position:sticky;box-shadow:.0625rem .1875rem .3125rem 0 rgba(49,66,83,.05)}
.header__holder{display:flex;align-items:center;justify-content:space-between;color:#252c32;font-weight:600}
@media(max-width: 1100px){.header__holder{justify-content:flex-start}}
.header__logo{display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem;color:#252c32;font-size:1.375rem;font-weight:700;text-decoration:none}
@media(max-width: 993px){.header__logo{font-size:0.875rem;line-height:1rem}}
.header__search-opener{background:rgba(0,0,0,0);border:0;padding:0;margin:0;height:24px;opacity:1;transition:opacity 300ms}
.header__nav-opener.open:before{width:0.5625rem}
.header__nav-opener.open:after{width:0.8125rem}
.header__nav{display:flex;align-items:center;justify-content:space-between}
@media(max-width: 993px){.header__nav{justify-content:flex-start;position:fixed;right:0;top:5rem;height:calc(100vh - 5rem);background:#fff;flex-direction:column;width:16.25rem;align-items:center;padding:1.0625rem;overflow:auto;z-index:10;transform:translateX(100%);opacity:0;transition:all .15s linear;box-shadow:0.0625rem 0.1875rem 0.3125rem 0 rgba(49,66,83,.05)}}
.header__nav-list{display:flex;-moz-column-gap:2.5rem;column-gap:2.5rem}
@media(max-width: 1280px){.header__nav-list{-moz-column-gap:1.25rem;column-gap:1.25rem}}
@media(max-width: 993px){.header__nav-list{margin-bottom:0.9375rem;flex-direction:column;width:100%}}
.header__nav-item{padding:2rem 0;cursor:pointer}
.header__nav-item.header__nav-item-has-child{display:flex;align-items:center;gap:0.25rem}
.header__nav-item.header__nav-item-has-child span{display:flex;flex-shrink:0;margin-top:4px;transform:rotate(0deg);transition:.3s ease-in-out}
.header__nav-item.header__nav-item-has-child.submenu-open span{transform:rotate(-180deg)}
@media(max-width: 993px){.header__nav-item{border-bottom:0.0625rem solid #252c32}.header__nav-item:first-child .header__nav-link{padding-top:0}.header__nav-item:last-child{border-bottom:0}}
.header__nav-link{display:block;color:#fff;text-decoration:none;font-size:1rem;line-height:1.5rem}
.header__nav-link:hover{text-decoration:underline}
@media(max-width: 993px){.header__nav-link{display:flex;align-items:center;justify-content:center;padding-top:0.9375rem;padding-bottom:0.9375rem}}
.header__nav-opener{display:none}
@media(max-width: 993px){.header__nav-opener{display:block;position:relative;border:0;padding:0;width:2rem;height:2rem;background:#fc8fb8;border-radius:0.375rem}.header__nav-opener:before,.header__nav-opener:after{content:""}.header__nav-opener:before,.header__nav-opener:after,.header__nav-opener-line{position:absolute;left:50%;transform:scale(1, 1);margin-left:-0.5rem;background:#fff;border-radius:0.125rem;height:0.125rem;width:1.375rem;transition:all .15s linear}.header__nav-opener:before{top:0.5625rem}.header__nav-opener-line{top:1.3125rem}.header__nav-opener:after{top:0.9375rem}}
.header__actions{margin-left:2rem;display:flex;-moz-column-gap:2rem;column-gap:2rem}
@media(max-width: 1280px){.header__actions{margin:0 0 0 1rem}}
@media(max-width: 1100px){.header__actions{margin:0 1rem 0 auto}}
@media(max-width: 993px){.header__actions .header__button div,.header__actions .header__button span{padding:0.25rem 0.75rem}}
.header__phone{min-width:-moz-max-content;min-width:max-content;display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem;font-size:0.875rem;line-height:1.3125rem;color:#fff;text-decoration:none;font-weight:600}
.header__phone-icon{display:flex;align-items:center;justify-content:center}
.header__phone-icon svg{fill:#252c32}
@media(max-width: 993px){.header__phone{display:none}body.show-menu{overflow:hidden}body.show-menu .header__nav-opener:before{top:50%;transform:rotate(45deg)}body.show-menu .header__nav-opener-line{transform:scale(0, 1)}body.show-menu .header__nav-opener:after{top:50%;transform:rotate(-45deg)}body.show-menu .header__nav{transform:translateX(0);opacity:1}}
.header__logo-img-white{display:block}
@media(max-width: 993px){.header__logo-img-white{display:none}}
.header__logo-img{display:none}
.transparent .header__logo-img-white{display:none}
.transparent .header__logo-img{display:block}
@media(max-width: 993px){.transparent .header__logo-img{display:none}}
.transparent.scrolled .header__logo-img-white{display:block}
@media(max-width: 993px){.transparent.scrolled .header__logo-img-white{display:none}}
.transparent.scrolled .header__logo-img{display:none}
.transparent .header__nav-link,.transparent .header__phone{color:#fff}
@media(max-width: 1280px){.transparent .header__nav-link,.transparent .header__phone{color:#000}}
.transparent.scrolled .header__nav-link,.transparent.scrolled .header__phone{color:#fff}
.home{overflow-x:hidden !important}
.header__logo-img-mobile{display:none}
@media(max-width: 993px){.header__logo-img-mobile{display:block !important;width:9.375rem}ul.header__child-nav-list li:first-child{display:block;border-bottom:0}}
.header__nav-item{display:flex;align-items:center;text-align:center}
.header__nav-item.is-simple{position:relative}
.header__nav-item.is-simple .header__child-nav-list--is-simple{padding:15px 5px;margin-left:-15px;width:-moz-fit-content;width:fit-content;min-width:250px;white-space:nowrap}
.header__nav-item.is-simple li{display:block !important}
.scrolled .header__nav-item.is-simple a.header__nav-link--is-simple{color:#333}
@media(max-width: 993px){ul.header__child-nav-list li{display:none}}
.desktop-header{display:flex}
@media(max-width: 993px){.desktop-header{display:none !important}}
.mobile-header{display:none;justify-content:space-between;align-items:center;padding:1em}
@media(max-width: 993px){.mobile-header{display:flex}}
.mobile-header .wrapper-header-nav-opener{display:flex;align-items:center;justify-content:flex-start;gap:5px}
.mobile-header .wrapper-header-nav-opener .decorate-menu{color:#fff;font-size:1rem;opacity:0;pointer-events:none;transition:all 300ms}
.mobile-header .header__logo{width:40px;height:40px}
.mobile-header .mobile-button-wrapper{display:flex;align-items:center;justify-content:space-around;gap:1.25rem}
.mobile-header .mobile-button-wrapper.flex3{gap:0.5rem}
.mobile-header .mobile-button-wrapper.flex3 .header-call-action{padding:0.5rem 1rem}
.mobile-header .mobile-button-wrapper.flex3 .header__button{padding:0.5rem 1rem}
.mobile-header .mobile-button-wrapper__divider{height:30px;width:1px;background:#fff}
.mobile-header .button{padding:0.5rem 1.875rem}
.mobile-header .button div,.mobile-header .button span{padding:0;font-size:16px;line-height:1.5rem;gap:.5em}
.mobile-header .header-call-action{display:flex;align-items:center;justify-content:center;color:#fff;font-size:1rem;text-decoration:none;transition:.3s ease-in-out}
.mobile-header .header-call-action svg{margin-right:0.5rem}
.mobile-header .header-call-action svg path{fill:#fff;transition:.3s ease-in-out}
.mobile-header .header-call-action svg.home_btn path{fill:rgba(0,0,0,0)}
.mobile-header .header-call-action:hover{color:#252c32}
.mobile-header .header-call-action:hover svg path{fill:#252c32}
.mobile-navs{padding:1rem;box-shadow:0 0 14px 0 rgba(113,109,112,.1),0px 9px 26px 0px rgba(23,15,73,.07);background:#fff;display:none;overflow:hidden;transition:max-height .5s ease-out}
.mobile-navs .button{box-shadow:none;padding:10px;justify-content:flex-start}
.mobile-navs .button--pink{color:#fff}
header .mobile-navs-search.active{display:flex}
.mobile-navs-search{box-shadow:0 0 14px 0 rgba(113,109,112,.1),0px 9px 26px 0px rgba(23,15,73,.07);background:#fff;display:none;overflow:hidden;transition:max-height .5s ease-out;flex-direction:column;gap:1.25rem;padding:1.25rem 0.75rem}
.mobile-navs-search .mobile-care,.mobile-navs-search .mobile-living{display:flex;flex-direction:column;gap:6px;margin-left:8px}
.mobile-navs-search .mobile-care li:first-child,.mobile-navs-search .mobile-living li:first-child{margin-bottom:6px}
.mobile-navs-search a.header__nav-link-mobile{color:#141c25;text-decoration:none;font-size:18px;font-weight:400}
.mobile-navs-search a.header__nav-link-mobile.first-el{font-weight:bold;text-transform:capitalize}
.mobile-navs-search a.header__nav-link-mobile:hover{text-decoration:underline}
.mobile-navs-search ul{list-style:none}
.mobile-navs-search__submenu{background:#f9639d;border-radius:16px;padding:1rem 1.5625rem;transition:all 300ms}
.mobile-navs-search__submenu .submenu__content{display:flex;flex-direction:column;gap:0.5rem}
.mobile-navs-search__submenu .submenu__content h2{color:#fff;font-size:1.25rem;margin:0}
.mobile-navs-search__submenu .submenu__content span{color:#fff;font-size:1rem;margin-bottom:12px}
.mobile-navs-search__submenu .submenu__content .submenu__button{padding:0.5rem 1rem}
@media(max-width: 993px){.chat-open .mobile-footer{z-index:100}}
.mobile-footer{display:none}
@media(max-width: 993px){.mobile-footer{border-top:.5px solid #b0babf;background:#f7f7f8;display:flex;justify-content:space-around;align-items:center;padding:1.5rem 0;position:fixed;bottom:0;z-index:8;width:100%;overflow:hidden}}
.mobile-footer.nursing-home{display:none}
@media(max-width: 993px){.mobile-footer.nursing-home{border-top:1px solid #e4e7ec;box-shadow:0px -2px 14px 0px rgba(0,0,0,.231372549);border-top-right-radius:12px;border-top-left-radius:12px;background:#fff;display:flex;justify-content:space-around;align-items:center;padding:20px 20px 10px;position:fixed;bottom:0;z-index:8;width:100%;overflow:hidden;flex-direction:column;gap:0.625rem}.mobile-footer.nursing-home .mobile-footer__button{display:flex;gap:0;padding:0.625rem 0;background:#ff91ba}.mobile-footer.nursing-home .mobile-footer__button:hover{background:#f17ca8}.mobile-footer.nursing-home .mobile-footer__button a{text-decoration:none}.mobile-footer.nursing-home .footer__less-actions{display:flex;flex-direction:column;width:100%;align-items:center}.mobile-footer.nursing-home .footer__less-actions .show__more:after{content:"More"}.mobile-footer.nursing-home .footer__less-actions__show-more{display:flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.375rem 0;cursor:pointer}.mobile-footer.nursing-home .footer__less-actions__show-more .show-more-svg{transition:all 300ms;rotate:180deg}.mobile-footer.nursing-home .footer__less-actions__show-more.open .show-more-svg{rotate:0deg}.mobile-footer.nursing-home .footer__less-actions__show-more.open .show__more:after{content:"Less"}.mobile-footer.nursing-home .footer__less-actions__container{grid-template-columns:repeat(4, 1fr);gap:0.625rem;width:100%;padding-top:0;padding-bottom:0;transition:all 300ms;max-height:0;overflow:hidden}.mobile-footer.nursing-home .footer__less-actions__container.open{padding-top:0.625rem;padding-bottom:0.625rem;height:100%}.mobile-footer.nursing-home .footer__less-actions__container .footer-icon{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;box-shadow:0px 1px 2px 0px rgba(20,28,37,.0392156863);border-radius:0.75rem;border:1px solid #e4e7ec;min-height:88px;color:#000;text-decoration:none;transition:all 300ms}.mobile-footer.nursing-home .footer__less-actions__container .footer-icon:hover{border-color:#f17ca8}}
.footer-icon a{display:flex;flex-direction:column;justify-content:center;align-items:center;text-decoration:none;color:#252c32 !important;font-size:12px}
@media(max-width: 993px){#page header.header{height:auto !important;background-color:#ff90ba !important;padding-bottom:0}}
.mobile-navs.active{display:block}
.mobile-navs.active a{text-transform:capitalize}
[data-popup-title=get-brochure] svg{margin-bottom:2px}
@media only screen and (max-width: 1130px){.header__nav-list li:last-child{display:none}.header__nav{margin-left:2rem}}
@media only screen and (max-width: 1100px){.header__nav-list li:nth-last-child(2){display:none}.header__nav-list li:nth-last-child(3){display:none}.header__nav{margin-left:4rem}}
header .mobile-navs-search{display:none}
@media(max-width: 993px){header .mobile-header{position:relative;min-height:70px}header .mobile-header .wrapper-mobile-search__wrap-clear{position:relative}header .mobile-header .wrapper-mobile-search__clear{position:absolute;top:50%;right:5px;transform:translateY(-50%);display:flex;gap:8px}header .mobile-header .wrapper-mobile-search__clear span{background:#ff91ba;border-radius:50%;height:40px;width:40px;display:flex;align-items:center;justify-content:center}header .mobile-header .wrapper-mobile-search__clear .search-clear-btn{display:flex;align-items:center;justify-content:center;transition:all 300ms}header .mobile-header .mobile-button-wrapper{transition:opacity 300ms;position:absolute;left:50%;transform:translateX(-50%)}header .mobile-header .header__btn_close{position:absolute;top:50%;right:1rem;transform:translateY(-50%);opacity:0;z-index:-1;pointer-events:none;height:24px;transition:opacity 300ms;transform:translate(0, -50%)}header .mobile-header .wrapper-mobile-search{position:absolute;top:50%;left:0;transform:translate(-110%, -50%);width:100%;padding:0 4rem 0 0.75rem;opacity:0;z-index:-1;transition:all 300ms}header .mobile-header .wrapper-mobile-search .mobile-search-input{width:100%;border-radius:62px;padding:1rem 4rem 1rem 1rem;border:0;outline:0;font-size:16px;font-weight:500}header .mobile-header.open_menu .wrapper-header-nav-opener .decorate-menu{opacity:1}header .mobile-header.open_menu .mobile-button-wrapper{opacity:0;pointer-events:none}header .mobile-header.open_menu .header__search-opener{opacity:0;pointer-events:none}header .mobile-header.open_menu .header__btn_close{opacity:1;z-index:1;pointer-events:unset}header .mobile-header.open_search .mobile-button-wrapper{opacity:0;pointer-events:none}header .mobile-header.open_search .header__search-opener{opacity:0;pointer-events:none}header .mobile-header.open_search .header__nav-opener{opacity:0;pointer-events:none}header .mobile-header.open_search .header__btn_close{opacity:1;z-index:2;pointer-events:unset}header .mobile-header.open_search .wrapper-mobile-search{opacity:1;z-index:1;transform:translate(0, -50%)}}
@media(min-width: 992px){.button.header-call-button{display:none}}
.footer{background-color:#f7f7f8;position:relative}
.footer .footer-vector{position:absolute;left:0;top:0;width:100%;z-index:0}
.footer__holder{background:#f7f7f8;padding:3.75rem 0;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative;z-index:2}
@media(max-width: 993px){.footer__holder{padding:2.5rem 0}}
.footer__logo-img{height:54px;width:154px}
.footer__logo{display:flex;align-items:center;justify-content:space-between;padding-bottom:3.75rem;border-bottom:1px solid #e5e7eb;-moz-column-gap:0.75rem;column-gap:0.75rem;color:#fff;font-size:1.375rem;font-weight:700;width:100%}
@media(max-width: 993px){.footer__logo{font-size:1.125rem;line-height:1rem;justify-content:space-between;padding-bottom:2.5rem;align-self:flex-start}}
.footer__columns{display:grid;grid-template-columns:repeat(5, 1fr);padding:3.75rem 0;border-bottom:1px solid #e5e7eb;width:100%;gap:1.875rem}
@media(max-width: 993px){.footer__columns{grid-template-columns:100%;justify-content:flex-start;padding:2.5rem 0}}
.footer__column{display:flex;flex-direction:column;row-gap:1rem}
.footer__column-title{margin:0;font-size:1rem;line-height:1.5rem;color:#000;font-weight:700}
@media(max-width: 993px){.footer__column{width:100%}.footer__column:not(:last-child){padding-bottom:2.5rem;border-bottom:1px solid #e5e7eb}}
.footer__list{display:flex;flex-direction:column;row-gap:0.75rem}
.footer__list li{max-width:200px}
@media(max-width: 993px){.footer__list{display:grid;grid-template-columns:repeat(2, 1fr);gap:1.25rem}}
.footer__locations{width:100%;padding:3.75rem 0;border-bottom:1px solid #e5e7eb}
@media(max-width: 993px){.footer__locations{padding:2.5rem 0}}
.footer__locations .footer__column-title{margin-bottom:1rem}
.footer__locations-list{display:grid;grid-template-columns:repeat(5, 1fr);gap:1.875rem;width:100%}
@media(max-width: 993px){.footer__locations-list{grid-template-columns:repeat(2, 1fr);gap:1.25rem}}
.footer__link{color:#252c32;font-size:0.875rem;line-height:1.25rem;font-weight:400;text-decoration:none}
.footer__link:hover{text-decoration:underline}
.footer__row{display:flex;-moz-column-gap:3.75rem;column-gap:3.75rem}
.footer__row-link{color:#fff;font-weight:700;text-decoration:none}
.footer__row-link:hover{text-decoration:underline}
.footer__copyright{padding:3.75rem 0 3.125rem;background-color:#f7f7f8;text-align:center;display:flex}
@media(max-width: 993px){.footer__copyright{padding-top:2.5rem;padding-bottom:9.375rem}}
.footer__copyright .copyright-text{text-align:left;width:-moz-max-content;width:max-content}
@media(max-width: 993px){.footer__copyright .copyright-text{width:50%}}
.footer__copyright-holder{display:flex;justify-content:flex-start;-moz-column-gap:1.5rem;column-gap:1.5rem;flex:1}
@media(max-width: 993px){.footer__copyright-holder{display:block}}
.footer__copyright-link{color:#000;font-size:0.875rem;line-height:1.25rem;font-weight:400;text-decoration:none}
.footer__copyright-link:hover{text-decoration:underline}
.button{border-radius:12px;text-decoration:none;outline:none;display:flex;min-width:-moz-max-content;min-width:max-content;padding:0.59375rem 0.975rem;align-items:center;justify-content:center;-moz-column-gap:0.45625rem;column-gap:0.45625rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:1rem;line-height:1.5rem;font-weight:400;color:#252c32;background:#fff;box-shadow:0 1px 2px 0 rgba(1,18,34,.04);transition:all .5s ease-in-out;border:none}
@media(max-width: 993px){.button{padding:0;width:100%}}
.button:hover{background:#f9f9fb}
.button div,.button span{display:flex;justify-content:center;align-items:center;gap:.5rem}
@media(max-width: 993px){.button div,.button span{padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5rem}.button div svg,.button div img,.button span svg,.button span img{width:0.9375rem;height:0.9375rem}}
.button.active{background-color:#fc8fb8 !important}
.button.active:hover div,.button.active:hover span{background:rgba(0,0,0,0)}
.button.active div,.button.active span{color:#fff;display:flex;justify-content:center;align-items:center;gap:.5rem}
.button--pink{background:#fc8fb8;color:#fff}
.button--pink:hover{background:#f17ca8}
.button--pink div,.button--pink span{color:#fff;border-color:#fc8fb8;display:flex;justify-content:center;align-items:center;gap:.5rem}
.button--orange{background:#fff}
.button--orange:hover div,.button--orange:hover span{background:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center;gap:.5rem}
.button--orange div,.button--orange span{color:#252c32;border-color:#252c32;background:#fff;display:flex;justify-content:center;align-items:center;gap:.5rem}
.button--contact{max-width:-moz-max-content;max-width:max-content;padding:0.59375rem 0.975rem;display:flex;align-items:center;justify-content:center;-moz-column-gap:0.4875rem;column-gap:0.4875rem;color:#252c32;font-size:1rem;line-height:1.5rem;font-weight:600;text-decoration:none;border-radius:0.5rem;border:0.0625rem solid #fff;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.button--contact:hover{background:#fee7f0}
@media(max-width: 993px){.button--contact{padding:0.5rem 0.625rem;font-size:0.75rem;line-height:1rem;font-weight:500;-moz-column-gap:0.375rem;column-gap:0.375rem}.button--contact img{width:1.25rem;height:1.25rem}}
.button__review{box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863);border:1px solid #e5e7eb;padding:0.625pxrem 1pxrem;border-radius:14px}
.button__review span{font-weight:500;padding:0}
.button__review--wrap{display:flex;justify-content:center;align-items:center;margin-top:2.75rem}
.button__back-to-top{border:1px solid #e5e7eb;border-radius:0.875rem;padding:0.625rem 1rem;box-shadow:0 1px 2px 0 rgba(1,18,34,.04);background:#fff}
.button__search-communities{width:14.375rem;margin:1.875rem auto}
@media(max-width: 993px){.button__search-communities{width:11.875rem}}
.button.button-table{padding:0.8125rem 0.875rem !important;border:1px solid #e5e7eb;border-radius:0.5rem;width:100%}
.button-hide{background:rgba(0,0,0,0);color:inherit;border:none;padding:0;margin:0}
.button-border{border:1px solid #f5f5f5 !important}
.round-btn{display:none}
@media(max-width: 993px){.round-btn{display:flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;border:.64px solid #e5e7eb;background:#fff}}
.round-btn svg{transition:.3s ease-in-out}
.round-btn.scroll-left svg{transform:rotate(180deg)}
.nav__btns{width:100%;display:flex;align-items:center;justify-content:space-between}
.nav__btns svg *[fill]{fill:#8b8b8b}
.nav__btns svg *[stroke]{stroke:#8b8b8b}
.nav__btns svg{min-width:1.5rem;max-width:1.5rem;height:1.5rem}
@media(max-width: 993px){.nav__btns svg{min-width:1.25rem;max-width:1.25rem;height:1.25rem}}
.nav__btn-back{display:flex;align-items:center;-moz-column-gap:0.625rem;column-gap:0.625rem;color:#252c32;font-size:0.875rem;line-height:1.25rem;font-weight:500;text-decoration:none}
.nav__btn-back svg{width:1.125rem;height:1.125rem}
.nav__btn-next{width:9.375rem;-moz-column-gap:0.25rem;column-gap:0.25rem}
@media(max-width: 993px){.nav__btn-next{width:7.25rem}}
.nav__btn-next div,.nav__btn-next span{display:flex;justify-content:center;align-items:center;gap:.5rem}
@media(max-width: 993px){.nav__btn-next div svg,.nav__btn-next span svg{min-width:1.25rem;max-width:1.25rem;height:1.25rem}}
.breadcrumb{display:flex;align-items:center;gap:10px}
@media(max-width: 768px){.breadcrumb{padding:0}}
.breadcrumb__item{font-size:12px;color:#1a1a1a;font-weight:400}
.breadcrumb__item a{font-size:12px;color:#637083;font-weight:400;text-decoration:none}
.breadcrumb__item span{color:#141c25;font-weight:500}
.breadcrumb__separator{width:auto;height:auto;flex-shrink:0}
.select{position:relative;display:inline-block;width:100%}
.select-opener{position:relative;width:100%;border:0;border-radius:0.25rem;padding:0.596875rem 2.9375rem 0.596875rem 0.975rem;color:#252c32;font-size:1rem;line-height:1.5rem;font-weight:400;cursor:pointer;background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/select-icons/arrow-down.svg) no-repeat calc(100% - 1rem);outline:0;transition:all .3s ease}
.select-opener::-moz-placeholder{color:#252c32;-moz-transition:all .3s ease;transition:all .3s ease}
.select-opener::placeholder{color:#252c32;transition:all .3s ease}
.select.active{z-index:3}
.select.active .select-opener{background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/select-icons/arrow-up.svg) no-repeat calc(100% - 1rem)}
.select.active .select__options{opacity:1;pointer-events:all;visibility:visible}
.select__options{width:100%;opacity:0;visibility:hidden;pointer-events:none;position:absolute;list-style:none;padding:0;margin-top:0.25rem;border:0.0625rem solid #d1d1d1;border-radius:0.25rem;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);transition:opacity .3s ease-in-out,visibility .3s linear;z-index:2}
@media(max-width: 993px){.select__options{max-height:300px;overflow:auto}}
.select__options-header{padding:0.625rem 0.875rem;color:#d1d1d1}
.select-option{text-align:start;border:none;background-color:rgba(0,0,0,0);width:100%;padding:0.75rem 2.625rem 0.75rem 1.5rem;cursor:pointer;font-size:0.875rem;font-weight:500;line-height:1.09375rem}
.select-option.selected{background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/check-2.svg) no-repeat;background-position:calc(100% - 0.875rem)}
input::-moz-placeholder{font-weight:400 !important}
input::placeholder{font-weight:400 !important}
.front-page-main .intro--city{margin-bottom:3.125rem}
@media(max-width: 993px){.front-page-main .intro--city{margin-bottom:2.5rem}}
.front-page-main .intro--city .intro__holder{min-height:auto}
@media(max-width: 993px){.front-page-main .intro--city .intro__holder{min-height:25rem}}
.front-page-main .intro--city .intro__bg::before{width:65%;background:linear-gradient(108deg, #404040 -4.45%, rgba(73, 73, 73, 0.21) 58.33%, rgba(67, 67, 67, 0) 84.88%, rgba(67, 67, 67, 0) 107.17%, rgba(67, 67, 67, 0) 121.47%)}
.front-page-main .intro--city .intro__info{margin:5rem 0 5.625rem 0}
@media(max-width: 993px){.front-page-main .intro--city .intro__info{display:none}}
.front-page-main .intro--city .intro__title{margin:2rem 0 1rem 0;font-size:2.25rem;line-height:2.75rem;font-weight:500}
.front-page-main .intro--city .intro__text{margin:0 0 1.5rem 0;font-size:1rem;line-height:1.5rem;font-weight:400;text-align:center !important}
.front-page-main .intro--city .intro__text:last-child{margin:0}
.front-page-main .intro__container{padding:0 1.875rem}
@media(max-width: 993px){.front-page-main .intro__container{padding:0 1.25rem}}
.front-page-main .intro__holder{padding:0 3.160625rem;position:relative;min-height:41.375rem;display:flex;flex-direction:column;justify-content:space-between}
@media(max-width: 993px){.front-page-main .intro__holder{padding:6.25rem 0rem 1.875rem 0rem;min-height:25.9375rem}}
.front-page-main .intro__bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;border-radius:1.25rem;overflow:hidden}
.front-page-main .intro__bg::before{content:"";background:linear-gradient(111deg, #494949 2.6%, rgba(73, 73, 73, 0.21) 42.46%, rgba(67, 67, 67, 0) 66.04%, rgba(67, 67, 67, 0) 88.38%);position:absolute;top:0;left:0;width:50%;height:100%}
.front-page-main .intro__bg img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.front-page-main .intro__title{margin:14rem 0 2rem 0;color:#fff;font-size:3.5rem;font-weight:500;line-height:3.875rem;text-align:center}
@media(max-width: 993px){.front-page-main .intro__title{margin:0 0 0.625rem 0;font-size:2.25rem;line-height:1.2}}
.front-page-main .intro__title_pink{color:#fc8fb8 !important;display:block}
.front-page-main .intro__title-mobile{display:none;padding:0 1.25rem;margin:2.5rem 0 1rem 0;font-size:1.5rem;font-weight:700;line-height:1.875rem;text-align:center;font-weight:normal}
@media(max-width: 993px){.front-page-main .intro__title-mobile{display:block}}
.front-page-main .intro .intro__text{text-align:center !important}
.front-page-main .intro__text{color:#fff;font-size:1.375rem;font-weight:400;line-height:2rem}
@media(max-width: 993px){.front-page-main .intro__text{font-size:0.875rem;line-height:1.3125rem}}
.front-page-main .intro__text-mobile{display:none;padding:0 1.25rem;color:#999;font-size:0.75rem;font-weight:500;line-height:1.1875rem}
@media(max-width: 993px){.front-page-main .intro__text-mobile{display:block}}
.front-page-main .intro.search{margin-bottom:3.4375rem;border-radius:1.75rem}
@media(max-width: 993px){.front-page-main .intro.search{margin:0}}
.front-page-main .intro__scroll{display:flex;flex-direction:column;align-items:center;row-gap:0.5rem;position:absolute;right:5rem;bottom:4.375rem;cursor:pointer;color:#fff;font-size:0.75rem;line-height:1.5rem;font-weight:600}
@media(max-width: 1100px){.front-page-main .intro__scroll{right:2.5rem;bottom:2.5rem}}
@media(max-width: 993px){.front-page-main .intro__scroll{right:1.25rem;bottom:1.25rem}}
.front-page-header{background:rgba(0,0,0,0)}
.front-page-header .header__nav a,.front-page-header .header__phone{color:#fff}
.front-page-main{padding-top:0 !important;transition:background-color .3s ease-out}
.front-page-main .intro__bg{border-radius:0}
.front-page-main .intro-overlay{background:linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.57) 100%);position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}
.scrolled{background-color:#fff !important}
.scrolled .header__nav a,.scrolled .header__phone{color:#fff}
.city-archive .intro--city,.single .intro--city{padding:3.75rem 0 3.125rem;margin:0;position:relative;overflow:hidden}
.city-archive .intro--city .container,.single .intro--city .container{position:relative}
.city-archive .intro--city .bg-svg,.single .intro--city .bg-svg{display:none;position:absolute;bottom:-6px;left:50%;transform:translateX(-50%);max-width:none;width:196vw}
.city-archive .intro--city .bg-svg svg,.single .intro--city .bg-svg svg{width:100%}
@media(max-width: 993px){.city-archive .intro--city .bg-svg,.single .intro--city .bg-svg{display:block}.city-archive .intro--city,.single .intro--city{background:#272727;padding:1.875rem 0 2.5rem}}
.city-archive .intro--city .intro__holder,.single .intro--city .intro__holder{min-height:auto}
@media(max-width: 993px){.city-archive .intro--city .intro__holder,.single .intro--city .intro__holder{display:none}}
.city-archive .intro--city .intro__bg::before,.single .intro--city .intro__bg::before{width:65%;background:linear-gradient(108deg, #404040 -4.45%, rgba(73, 73, 73, 0.21) 58.33%, rgba(67, 67, 67, 0) 84.88%, rgba(67, 67, 67, 0) 107.17%, rgba(67, 67, 67, 0) 121.47%)}
.city-archive .intro--city .intro__info,.single .intro--city .intro__info{padding:5rem 3.125rem;border-radius:1.25rem 0 0 1.25rem;background-size:cover;width:50%}
@media(max-width: 993px){.city-archive .intro--city .intro__info,.single .intro--city .intro__info{display:none}}
.city-archive .intro--city .intro__info .bg-overlay,.single .intro--city .intro__info .bg-overlay{position:absolute;right:0;bottom:0}
.city-archive .intro--city .intro__title,.single .intro--city .intro__title{margin:0 0 1rem 0;font-size:2.25rem;line-height:2.75rem;font-weight:500}
.city-archive .intro--city .intro__sub-title,.single .intro--city .intro__sub-title{margin:0 0 1rem 0;font-size:1.25rem;text-align:start}
.city-archive .intro--city .intro__text,.single .intro--city .intro__text{margin:0 0 1.5rem 0;font-size:1rem;line-height:1.5rem;font-weight:500 !important;text-align:left !important}
.city-archive .intro--city .intro__text:last-child,.single .intro--city .intro__text:last-child{margin:0}
.city-archive .intro .container,.single .intro .container{display:flex;flex-direction:column}
.city-archive .intro__container,.single .intro__container{padding:0 1.875rem}
@media(max-width: 993px){.city-archive .intro__container,.single .intro__container{padding:0 1.25rem}}
.city-archive .intro__holder,.single .intro__holder{position:relative;min-height:41.375rem;display:flex;flex-direction:row;justify-content:space-between}
@media(max-width: 993px){.city-archive .intro__holder,.single .intro__holder{padding:1.25rem;min-height:25.9375rem}}
.city-archive .intro__bg,.single .intro__bg{width:54%;height:100%;z-index:-1;border-radius:0 1.25rem 1.25rem 0;overflow:hidden;position:absolute;right:0}
@media(max-width: 993px){.city-archive .intro__bg,.single .intro__bg{width:100%;border-radius:1.25rem}}
.city-archive .intro__bg img,.single .intro__bg img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:0 1.875rem 1.875rem 0}
.city-archive .intro__title,.single .intro__title{margin:14rem 0 1rem 0;color:#fff;font-size:3.5rem;font-weight:500;line-height:3.875rem;text-align:left}
@media(max-width: 993px){.city-archive .intro__title,.single .intro__title{margin:0 0 0.625rem 0;font-size:1.5rem;line-height:1.65rem}}
.city-archive .intro__title_pink,.single .intro__title_pink{color:#fc8fb8 !important;display:block}
.city-archive .intro__title-mobile,.single .intro__title-mobile{display:none;padding:0 1.25rem;margin:2.5rem 0 1rem 0;font-size:1.5rem;font-weight:700;line-height:1.875rem;text-align:center;font-weight:normal}
@media(max-width: 993px){.city-archive .intro__title-mobile,.single .intro__title-mobile{display:block;padding:0 0;text-align:left;color:#fff}}
.city-archive .intro__text,.single .intro__text{color:#fff;font-size:1.375rem;font-weight:600;line-height:2rem}
@media(max-width: 993px){.city-archive .intro__text,.single .intro__text{font-size:0.875rem;line-height:1.3125rem}}
.city-archive .intro__text-mobile,.single .intro__text-mobile{display:none;padding:0 0;color:#999;font-size:0.75rem;font-weight:500;line-height:1.1875rem}
@media(max-width: 993px){.city-archive .intro__text-mobile,.single .intro__text-mobile{text-align:left}.city-archive .intro__text-mobile h2,.single .intro__text-mobile h2{color:#fff}}
.city-archive .intro__text-mobile p,.single .intro__text-mobile p{font-weight:600;line-height:1.5}
@media(max-width: 993px){.city-archive .intro__text-mobile p,.single .intro__text-mobile p{font-size:1rem;color:#fff;padding:0}}
.city-archive .intro .search,.single .intro .search{margin-bottom:3.4375rem}
@media(max-width: 993px){.city-archive .intro .search,.single .intro .search{margin:0}}
.city-archive .intro__scroll,.single .intro__scroll{display:flex;flex-direction:column;align-items:center;row-gap:0.5rem;position:absolute;right:5rem;bottom:4.375rem;cursor:pointer;color:#fff;font-size:0.75rem;line-height:1.5rem;font-weight:600}
@media(max-width: 1100px){.city-archive .intro__scroll,.single .intro__scroll{right:2.5rem;bottom:2.5rem}}
@media(max-width: 993px){.city-archive .intro__scroll,.single .intro__scroll{right:1.25rem;bottom:1.25rem}}
.city-archive .front-page-header,.single .front-page-header{background:rgba(0,0,0,0)}
.city-archive .front-page-header .header__nav a,.city-archive .front-page-header .header__phone,.single .front-page-header .header__nav a,.single .front-page-header .header__phone{color:#fff}
.city-archive .front-page-main,.single .front-page-main{padding-top:0 !important;transition:background-color .3s ease-out}
.city-archive .front-page-main .intro__bg,.single .front-page-main .intro__bg{border-radius:0}
.city-archive .front-page-main .intro-overlay,.single .front-page-main .intro-overlay{background:linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.57) 100%);position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}
.city-archive .scrolled,.single .scrolled{background:linear-gradient(90deg, #FF90BA 0%, #FF8BB7 48.5%, #FF8DB8 100%)}
.city-archive .scrolled .header__nav a,.city-archive .scrolled .header__phone,.single .scrolled .header__nav a,.single .scrolled .header__phone{color:#fff}
.city-archive .city-archive .profile-section-mb iframe,.single .city-archive .profile-section-mb iframe{border-radius:1.25rem}
.city-archive .city-archive .big-card__header,.single .city-archive .big-card__header{display:flex;gap:1rem;flex-direction:column}
.city-archive .big-card__header,.single .big-card__header{display:flex;gap:1rem}
@media(max-width: 993px){.city-archive .big-card__header,.single .big-card__header{flex-direction:column;gap:1.25rem}}
.front-page-header{background:rgba(0,0,0,0)}
.front-page-header .header__nav a,.front-page-header .header__phone{color:#fff}
.front-page-main{padding-top:0 !important;transition:background-color .3s ease-out}
.front-page-main .intro__bg{border-radius:0}
.front-page-main .intro-overlay{background:linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.57) 100%);position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}
.scrolled{background:linear-gradient(90deg, #FF90BA 0%, #FF8BB7 48.5%, #FF8DB8 100%) !important}
.scrolled .header__nav a,.scrolled .header__phone{color:#fff}
.search__holder{margin-top:1pxrem !important;border-radius:1.5625rem}
.intro__text h2{font-size:1rem;font-style:normal;font-weight:500;line-height:1.5rem}
.video-page .intro__container{padding:0 1.875rem}
@media(max-width: 993px){.video-page .intro__container{padding:0 1.25rem}}
.video-page .intro__holder{padding:0 1.875rem;position:relative;min-height:32.8125rem;display:flex;flex-direction:column;justify-content:space-between}
@media(max-width: 993px){.video-page .intro__holder{padding:7.5rem 0rem;min-height:25.9375rem}}
.video-page .intro__overlay{background:linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.22) 100%);z-index:1;position:absolute;left:0;top:0;width:100%;height:100%}
.video-page .intro__bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;border-radius:0;overflow:hidden}
.video-page .intro__bg::before{content:"";background:linear-gradient(111deg, #494949 2.6%, rgba(73, 73, 73, 0.21) 42.46%, rgba(67, 67, 67, 0) 66.04%, rgba(67, 67, 67, 0) 88.38%);position:absolute;top:0;left:0;width:50%;height:100%}
.video-page .intro__bg img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.video-page .intro__title{margin:14rem 0 2rem 0;color:#fff;font-size:3.5rem;font-weight:500;line-height:3.875rem;text-align:center}
@media(max-width: 993px){.video-page .intro__title{margin:0 0 0.625rem 0;font-size:2.25rem;line-height:1.65rem}}
.video-page .intro__title_pink{color:#fc8fb8 !important;display:block}
.video-page .intro__title-mobile{display:none;padding:0 1.25rem;margin:2.5rem 0 1rem 0;font-size:1.5rem;font-weight:700;line-height:1.875rem}
@media(max-width: 993px){.video-page .intro__title-mobile{display:block}}
.video-page .intro__text{color:#fff;font-size:1.375rem;font-weight:400;line-height:2rem;text-align:center}
@media(max-width: 993px){.video-page .intro__text{font-size:0.875rem;line-height:1.3125rem}}
.video-page .intro__text-mobile{display:none;padding:0 1.25rem;color:#999;font-size:0.75rem;font-weight:500;line-height:1.1875rem}
@media(max-width: 993px){.video-page .intro__text-mobile{display:block}}
.video-city__button-wrap{position:relative;padding-top:36.34%}
.video-city__button-wrap img{display:block;position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:1.875rem}
.video-city__button-wrap .btn-wrapper{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);z-index:1}
.video-city__button-wrap .button{display:flex;align-items:center;justify-content:center;border:5px solid #fff;border-radius:50%;width:4.375rem;height:4.375rem;background:rgba(48,48,54,.5)}
.video-city__button-wrap .button:hover svg,.video-city__button-wrap .button:focus svg{animation:pulse 1.5s infinite}
@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}
.video-city__video{max-height:520px;height:100%;width:100%;-o-object-fit:cover;object-fit:cover;border-radius:1.875rem;position:absolute;top:0;left:0}
header.header.transparent{position:fixed;background:rgba(0,0,0,0);box-shadow:none !important}
.bg-gray{background:#f5f5f5;padding:5rem 0}
.bg-gra-btn{background:#eae5e8}
.popup-intro{display:flex;justify-content:center;align-items:center;gap:1rem;margin-top:2rem}
@media(max-width: 993px){.popup-intro{display:block}}
.mt-2{margin-top:0}
@media(max-width: 993px){.mt-2{margin-top:2rem}}
.intro-popup-button{display:flex;justify-content:center;align-items:center;color:#fff;gap:.5em;margin-bottom:1em}
.intro-popup-button button{color:#fff !important;font-weight:bold;position:relative}
.intro-popup-button button:after{content:"";display:block;position:absolute;left:0;bottom:2px;width:100%;height:1px;background:#fff}
.header__nav-item-has-child ul a{color:#333}
.search{padding:1.25rem;border-radius:1.75rem}
.search__service{flex:6 !important}
.search__service .select input{padding-left:0}
.search__service .select input::-moz-placeholder{color:#6b7280}
.search__service .select input::placeholder{color:#6b7280}
.search__zip{min-width:12.5rem}
.search__zip input{padding-left:0.625rem}
.search__zip input::-moz-placeholder{color:#6b7280}
.search__zip input::placeholder{color:#6b7280}
@media(max-width: 993px){.search__zip{width:100%}}
@media(max-width: 1280px){.search__zip input{padding-left:0 !important}.search{padding:0}}
.search__holder{padding:0.375rem 0.40625rem 0.375rem 1.875rem;display:flex;align-items:center;border:0.0625rem solid #e5e7eb;border-radius:0.8125rem;background-color:#fff}
@media(min-width: 1280px){.search__holder{height:3.75rem}}
@media(max-width: 1280px){.search__holder{height:15rem;padding:1rem;border:0;display:flex;flex-direction:column;gap:1rem}.search__holder>*{width:100%}}
.search__input-not-border{border:none !important}
.search__input-search-city{padding:0.421875rem 0 0.421875rem 2.25rem;height:37px !important}
@media(max-width: 1280px){.search__input-search-city-input{padding-left:2rem !important}}
.search__input{height:3rem;padding:0 1.25rem 0 0;flex:2;display:flex;align-items:center;position:relative;border-right:0.0625rem solid #d1d5db}
@media(max-width: 1280px){.search__input{padding:0;border-right:none;width:100%}}
.search__input svg{position:absolute;fill:#777;z-index:1}
@media(max-width: 993px){.search__input svg{width:1.75rem;height:1.75rem}}
.search__input input{width:100%;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.5rem;outline:none;border:none !important}
@media(max-width: 993px){.search__input input{font-weight:500;font-size:1rem !important;color:#6b7280 !important}}
@media(max-width: 1280px){.search__input{width:100%;border:0}}
.search__select{flex:1;border-right:0.0625rem solid #d1d5db}
.search__select .select-opener{padding:0.40625rem 2.9375rem 0.40625rem 0.975rem;border:0}
.search__select .select-opener::-moz-placeholder{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:#666;font-size:1rem !important;font-weight:600;line-height:1.5rem}
.search__select .select-opener::placeholder{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:#666;font-size:1rem !important;font-weight:600;line-height:1.5rem}
@media(max-width: 993px){.search__select .select-opener{font-size:1rem;line-height:1rem;font-weight:500;background-size:1.25rem}.search__select .select-opener::-moz-placeholder{font-size:0.75rem;line-height:1rem;font-weight:500}.search__select .select-opener::placeholder{font-size:0.75rem;line-height:1rem;font-weight:500}}
@media(max-width: 1280px){.search__select{width:100%;border-right:none}}
@media(max-width: 993px){.search__select{width:100%;padding-bottom:0.625rem;border-bottom:0.0625rem solid #eee}.search__select:nth-child(3){border-bottom:0;padding-bottom:0}.search__select .select.active .select-opener{background-size:1.25rem}}
.search__button{width:9.375rem;margin-left:2.625rem}
@media(max-width: 1280px){.search__button{margin:0;width:100%}}
@media(max-width: 993px){.search__button{width:100%;padding:.5em !important;border-radius:15px;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}.search__button div,.search__button span{padding:0 0.524375rem;font-size:1rem}}
.search__price .select__options{padding:0.75rem;display:flex;flex-direction:column;row-gap:10px}
.search__tab__active{background-color:rgba(0,0,0,0);padding:10px 20px;border:none;border-bottom:2px solid #fc8fb8;color:#fff;font-weight:700}
.search__tab__not-active{background-color:rgba(0,0,0,0);padding:10px 20px;border:none;font-weight:500;border-bottom:1px solid #fff;color:#999}
.search-job{margin-left:1rem}
.search-job div,.search-job span{padding:0.625rem 1.875rem}
.sticky-top-search{position:sticky;top:80px;z-index:100;background:#fff;padding:1rem 0}
.select__options__services{max-height:300px;overflow-y:auto}
.info__counts-wrapper{border-top:1px solid rgba(1,18,34,.0392156863);border-bottom:1px solid rgba(1,18,34,.0392156863)}
.info__holder{display:flex;flex-direction:column;padding-top:5rem}
.info .accent-text{color:#fc8fb8;margin-bottom:1rem}
.info .title-left{text-align:left;margin-left:0;padding-top:0.625pxrem;font-weight:400;font-size:2.25pxrem}
.info__text{margin:0 auto 4rem;max-width:25.9375rem;text-align:center}
@media(max-width: 993px){.info__text{margin:0 auto 1.25rem}}
.info__cards{margin-bottom:4rem;display:flex;justify-content:center;flex-wrap:wrap;gap:1rem}
@media(max-width: 993px){.info__cards{margin-bottom:2.5rem}}
.info__card_image{position:absolute;left:0;width:100%;z-index:-1}
.info__card{width:calc(33% - 0.5rem);display:flex;flex-direction:column;background-color:#f8f8f8;border-radius:0.625rem;overflow:hidden}
@media(max-width: 1280px){.info__card{width:calc(50% - 0.5rem)}}
@media(max-width: 993px){.info__card{width:100%}}
.info__card-img{height:16.5rem;width:100%}
.info__card-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.info__card-description{-moz-column-gap:1.038125rem;column-gap:1.038125rem;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;background:#fff}
.info__card-number{color:#252c32;padding:1.25rem}
.info__card-number-bg{display:flex;justify-content:center;align-items:center}
.info__card-number-bg svg{border-radius:50px;position:absolute}
.info__card-title{font-size:1.25rem;padding-left:.5rem;font-weight:500;line-height:1.75rem;border-left:2px solid #f17ca8}
@media(max-width: 993px){.info__card-title{font-size:1rem}}
.info__card-text{margin:0;color:#999;font-size:1rem;line-height:1.25rem;font-weight:500;padding-top:.5rem}
@media(max-width: 993px){.info__card-text{font-weight:500;font-size:0.75rem;line-height:1.25rem}}
.info__card-link{text-decoration:none;display:flex;justify-content:flex-start;align-items:center;margin-top:.5rem;font-weight:600;font-size:0.875rem;transition:.3s}
.info__card-link:hover{color:#252c32}
.info__card-link:hover svg{margin-left:0.5rem}
.info__card-link:hover svg path{fill:#252c32}
.info__card-link svg{margin-left:0;transition:.3s}
.info__counts{width:100%;display:flex;flex-wrap:wrap;-moz-column-gap:4.8125rem;column-gap:4.8125rem;justify-content:center;margin-top:4em;margin-bottom:4em}
@media(max-width: 993px){.info__counts{row-gap:3rem}}
.info__count{display:flex;flex-direction:column;row-gap:0.25rem}
@media(max-width: 993px){.info__count{width:100%;align-items:center}}
.info__count-title{font-size:2.5rem;font-weight:700;line-height:3rem}
.info__count-title span{color:#fc8fb8}
@media(max-width: 993px){.info__count-title{font-size:1.5rem;line-height:2rem}}
.info__count-text{font-size:1.125rem;color:#888;font-weight:400;line-height:1.75rem}
@media(max-width: 993px){.info__count-text{font-size:1.125rem;line-height:1rem;margin-top:0.625rem}}
.front-page-main .fac-homes{background:#f5f5f5}
.fav-homes{background-color:#f5f5f5;padding-top:4rem;padding-bottom:4rem;position:relative}
.fav-homes__holder{display:flex;flex-direction:column;row-gap:3.125rem}
.fav-homes__holder>.button{align-self:center}
@media(max-width: 993px){.fav-homes__holder{row-gap:1.25rem}}
.fav-homes__header{display:block;justify-content:space-between;align-items:center}
.fav-homes__header .accent-text{color:#fc8fb8;margin-bottom:1rem}
.fav-homes__header .title{margin:0;text-align:left;width:-moz-max-content;width:max-content;display:inline-block;font-weight:500}
.fav-homes__header .button{float:right}
@media(max-width: 993px){.fav-homes__header .button{float:unset;margin-top:1rem;width:-moz-max-content;width:max-content}.fav-homes__header{flex-direction:column;align-items:flex-start;row-gap:1.25rem}}
.fav-homes__filters{display:grid;grid-template-columns:repeat(4, 1fr);gap:1.25rem}
@media(min-width: 1100px){.fav-homes__filters{grid-template-columns:repeat(7, 1fr)}}
@media(max-width: 767px){.fav-homes__filters{display:flex;position:relative;overflow-x:auto;-moz-column-gap:1.25rem;column-gap:1.25rem;width:100%}}
.fav-homes__filters .button{background:#fff !important;border-radius:999px;padding:5px 10px;transition:all .5s ease-in-out}
.fav-homes__filters .button span{min-width:-moz-max-content;min-width:max-content;border-radius:9999px;padding:0 12px;border:none;background:#fff !important;transition:all .5s ease-in-out}
.fav-homes__filters .button:hover span{background:#000 !important;color:#fff}
.fav-homes__filters .button:hover{background:#000 !important;color:#fff}
.relative{position:relative}
.video-types{justify-content:center;padding:1.25rem 0}
@media(max-width: 993px){.video-types{justify-content:flex-start}}
.video-cities{padding:1.25rem 0}
.text-no-found{text-align:center;padding:1.875rem 0}
.video-types .active,.video-types .active span,.video-cities .active,.video-cities .active span{background:#000 !important;color:#fff}
.info__card_image-pink{position:absolute;left:0;bottom:0;z-index:-1;width:100%}
@media(max-width: 993px){.info__card_image-pink{display:none}}
.fav-cities{padding-top:4rem;padding-bottom:4rem;position:relative}
.fav-cities .title{text-align:center;width:100%;margin-bottom:.5rem}
.fav-cities .text-center{text-align:center}
.fav-cities .city-slider{overflow:hidden}
.fav-cities .city-slider .card--wide-img{position:relative}
.fav-cities .city-slider .card__description{position:absolute;bottom:1em;padding-left:1em}
.fav-cities .city-slider .card--wide-img .card__info{row-gap:0}
.fav-cities .city-slider .card__info{font-size:18px;color:#fff;font-weight:500}
@media(max-width: 993px){.fav-cities .city-slider .swiper-slide{padding:30px !important}}
.fav-cities .card__title{font-size:10px;color:#fff;font-weight:500}
.fav-cities .pink-text{color:#ff639e;margin-bottom:1em}
.cards{display:flex;flex-wrap:wrap;gap:0.9375rem 2rem;-moz-column-gap:0.975rem;column-gap:0.975rem;row-gap:2rem}
@media(max-width: 993px){.cards{display:none}}
#cards_container--js{display:grid;grid-template-columns:repeat(3, 1fr)}
@media(max-width: 993px){#cards_container--js{grid-template-columns:1fr 1fr}#cards_container--js .card__img{height:auto}}
@media(max-width: 767px){#cards_container--js{grid-template-columns:100%}}
#cards_container--js .card{width:100%;padding:0.625rem}
.card{width:calc(25% - 0.875rem);display:flex;flex-direction:column;row-gap:1.21875rem;overflow:hidden;position:relative}
.card .button{text-decoration:none}
.card a{text-decoration:underline}
.card a:hover{text-decoration:none}
@media(max-width: 1280px){.card{width:calc(50% - 0.6875rem)}}
@media(max-width: 993px){.card{width:100%;row-gap:1rem}.card--wide-img .card__img{height:12.875rem}}
.card--wide-img .card__content{padding-bottom:0}
.card--wide-img .card__content::after{content:none}
.card--wide-img .card__info{row-gap:0.9375rem}
.card__img{border-radius:0.375rem 0.375rem 0 0;overflow:hidden}
@media(max-width: 993px){.card__img{height:100%}}
.card__img img{display:block;width:100%;height:100%;max-height:250px;-o-object-fit:cover;object-fit:cover;border-radius:12px;aspect-ratio:1/.8}
.card__description{flex:1;display:flex;flex-direction:column;row-gap:0.375rem}
@media(max-width: 993px){.card__description{padding:0 0.375rem 0.375rem 0.375rem;row-gap:0.375rem}}
.card__content{flex:1;padding-bottom:1.625rem;display:flex;flex-direction:column;row-gap:0rem;position:relative}
@media(max-width: 993px){.card__content{padding-bottom:1rem;row-gap:.5rem}}
.card__info{flex:1;display:flex;flex-direction:column;row-gap:0rem}
.card__title{display:flex;justify-content:flex-start;gap:.2rem;align-items:center;color:#252c32;font-size:1rem;font-weight:600;line-height:1.75rem;text-decoration:none}
.card__title.card__title__search{flex-direction:column;align-items:flex-start}
.card__title-wrap{display:flex;align-items:center;width:100%;gap:0.625rem}
@media(max-width: 993px){.card__title{font-size:0.875rem}}
.card__adress{display:flex;align-items:center;-moz-column-gap:0.25rem;column-gap:0.25rem;color:#6b7280;font-size:0.875rem;font-weight:500;text-decoration:none}
@media(max-width: 993px){.card__adress{color:#999;font-size:0.875rem;line-height:1.25rem;font-weight:500;margin-top:.5rem}}
.card__adress-icon{min-width:1.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center}
.card__price{font-size:1rem;font-weight:600;line-height:1.75rem;-moz-column-gap:0.25rem;column-gap:0.25rem;max-width:-moz-max-content;max-width:max-content}
.card__price span{font-size:0.875rem;font-weight:500;line-height:1.25rem}
@media(max-width: 993px){.card__price{font-size:0.875rem}.card__price span{font-size:0.75rem}}
.card__footer{display:flex;-moz-column-gap:1.25rem;column-gap:1.25rem;z-index:2}
.card__footer .button{width:50%;border:none;padding:0.625rem 0}
.card__footer .button:hover{width:50%;border:none}
@media(max-width: 993px){.card__footer .button div,.card__footer .button span{padding-top:0.375rem;padding-bottom:0.375rem}}
.search-results{background-color:#f5f5f5 !important}
.search-results .card{width:calc(33% - 0.875rem)}
.z-1{z-index:3}
.max-width{width:-moz-max-content;width:max-content}
.about-us.bg-white{background:#fff}
.favorite{width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;position:absolute;top:1.534375rem;right:1.85125rem;border-radius:50%;background-color:#fff;cursor:pointer;z-index:1}
@media(max-width: 993px){.favorite{top:1.25rem;right:1.25rem}}
.favorite svg{stroke:#292d32}
.favorite.active svg{stroke:#fa71a5;fill:#fa71a5}
.imgCarousel{position:relative;overflow:hidden}
.imgCarousel .swiper-notification{display:none}
.img-pagination{margin-bottom:0.9375rem;position:absolute;z-index:1}
.img-pagination .swiper-pagination-bullet{background:#e5e7eb;width:0.5rem;height:0.5rem;margin:0 0.625rem;opacity:.5}
.img-pagination .swiper-pagination-bullet-active{opacity:1;background:#fff}
.img-pagination .swiper-pagination-bullet-active-next,.img-pagination .swiper-pagination-bullet-active-prev{transform:scale(0.8)}
.img-pagination .swiper-pagination-bullet-active-next-next,.img-pagination .swiper-pagination-bullet-active-prev-prev{transform:scale(0.6)}
.mobile-slider{display:none;overflow:hidden;row-gap:1.25rem}
.mobile-slider .swiper-notification{display:none}
@media(max-width: 993px){.mobile-slider{display:flex}}
.mobile-pagination{position:relative;padding:0.75rem 0}
.mobile-pagination .swiper-pagination-bullet{background:#e5e7eb;width:0.625rem;height:0.625rem;margin:0 0.625rem;opacity:1}
.mobile-pagination .swiper-pagination-bullet-active{opacity:1;background:#f699bd}
.mobile-pagination .swiper-pagination-bullet-active-next,.mobile-pagination .swiper-pagination-bullet-active-prev{transform:scale(0.8)}
.mobile-pagination .swiper-pagination-bullet-active-next-next,.mobile-pagination .swiper-pagination-bullet-active-prev-prev{transform:scale(0.6)}
.who-we-are{position:relative;overflow:hidden;margin:4rem auto}
@media(max-width: 993px){.who-we-are{margin:1rem auto}}
.who-we-are__holder{display:flex;box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06);background:#f7f7f8;overflow:hidden;border-radius:30px}
@media(max-width: 993px){.who-we-are__holder{border-radius:1rem !important;flex-direction:column;width:100%;margin:auto}}
.who-we-are__bg{position:absolute;background-position:center;background-size:cover;z-index:1}
.who-we-are__description{flex:1;padding:5rem 0 5rem 5rem;display:flex;flex-direction:column;align-items:flex-start;z-index:1;justify-content:center}
.who-we-are__description .accent-text{color:#fc8fb8;margin-bottom:1rem}
@media(max-width: 1280px){.who-we-are__description{padding:0}}
.who-we-are__description .title{color:#000;text-shadow:0 0.0375rem 1px #d985a5}
@media(max-width: 993px){.who-we-are__description .title{font-size:1.375rem;line-height:1.5rem}}
.who-we-are__description h3{margin:0 0 1.5rem 0;font-size:1rem;line-height:1.5rem;font-weight:500}
@media(max-width: 1280px){.who-we-are__description h3{font-size:1rem}}
@media(max-width: 993px){.who-we-are__description h3{font-size:0.875rem}}
.who-we-are__description p{max-width:33.9375rem;margin:0 0 2.25rem 0;color:#6b7280;font-weight:400}
@media(max-width: 993px){.who-we-are__description p{margin:0 0 0.75rem 0;font-size:0.75rem;line-height:1.4375rem}}
.who-we-are__img{width:50%;display:flex}
.who-we-are__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
@media(max-width: 993px){.who-we-are__img{display:none}}
.reviews{margin-top:6.25rem;margin-bottom:6.25rem}
@media(max-width: 1280px){.reviews{padding-top:0}}
.reviews .reviews-list-wrapper{display:flex;flex-wrap:wrap}
.reviews__holder{display:flex;flex-direction:column}
.reviews .accent-text{color:#fc8fb8;text-align:center;margin-bottom:1rem}
.reviews .title{font-weight:500}
@media(max-width: 993px){.reviews .title{font-size:1.75rem;font-weight:600;line-height:1.2}}
.reviews__text{margin-bottom:3rem;align-self:center;max-width:28.75rem;color:#888;text-align:center;font-weight:400}
.reviews__cards{overflow:hidden;display:flex;flex-direction:column;row-gap:3rem}
.reviews__cards .swiper-notification{display:none}
@media(max-width: 993px){.reviews__cards{row-gap:1.25rem}}
.reviews__card{padding:1.875rem;border-radius:0.625rem;border:0.125rem solid #dcdfe9;background-color:#f9fafb;-webkit-user-select:none;-moz-user-select:none;user-select:none}
@media(max-width: 993px){.reviews__card{padding:1rem}}
.reviews__card-img{margin-bottom:1.5rem;width:8.125rem;height:8.125rem;border-radius:50%;overflow:hidden}
@media(max-width: 993px){.reviews__card-img{margin-bottom:1rem;width:6.25rem;height:6.25rem}}
.reviews__card-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.reviews__rating{margin-bottom:0.75rem;display:flex;-moz-column-gap:0.125rem;column-gap:0.125rem}
@media(max-width: 993px){.reviews__rating{margin-bottom:1rem}}
.reviews__info{margin-bottom:1.75rem;font-weight:600}
@media(max-width: 993px){.reviews__info{margin-bottom:1rem;font-size:0.875rem;line-height:1.5rem;font-weight:500}}
.reviews__name{margin-bottom:0.25rem;font-size:0.875rem;line-height:1.25rem;font-weight:600}
.reviews__position{font-size:0.75rem;font-weight:500;line-height:1rem;color:#888}
.reviews__pagination{padding:0.75rem 0;position:relative;display:flex;justify-content:center}
.reviews__pagination .swiper-pagination-bullet{background:#e5e7eb;width:0.625rem;height:0.625rem;margin:0 0.625rem;opacity:1}
.reviews__pagination .swiper-pagination-bullet-active{opacity:1;background:#f699bd}
.reviews__pagination .swiper-pagination-bullet-active-next,.reviews__pagination .swiper-pagination-bullet-active-prev{transform:scale(0.8)}
.reviews__pagination .swiper-pagination-bullet-active-next-next,.reviews__pagination .swiper-pagination-bullet-active-prev-prev{transform:scale(0.6)}
.reviews .popup .wpcf7-form-control-wrap{display:flex}
.reviews .popup__close{width:2rem;height:2rem;background:#d1d5db}
@media(max-width: 993px){.reviews .popup__close{top:1.25rem;right:1.25rem}}
.reviews .popup__close:before,.reviews .popup__close:after{background:#fff;box-shadow:0px 1.37px 2.75px 0px rgba(39,21,29,.0588235294);width:0.859375rem;height:0.296875rem}
.reviews .popup__close:before{width:0.875rem;height:0.3125rem}
.reviews .popup__close:after{width:0.3125rem;height:0.875rem}
.reviews .popup__body{width:37.75rem;padding:3.125rem 2.75rem;background:#f5f5f5;border-radius:1.875rem}
.reviews .popup__body .button{width:100%}
.reviews .popup__body textarea{width:100%}
.reviews .popup__body .rating__hearts{display:flex;align-items:center;gap:0.625rem}
.reviews .popup__body .rating__hearts label{width:32px;height:30px;cursor:pointer}
.reviews .popup__body .rating__hearts .filled svg path{fill:#fc8fb8}
@media(max-width: 993px){.reviews .popup__body{padding:1.25rem}}
.reviews .popup__description{padding-top:0;row-gap:0.5rem}
.reviews .popup__description-header{row-gap:0.5rem}
.reviews .popup__form{row-gap:0.5rem}
.reviews .popup__pretitle{font-weight:600;font-size:1.125rem;line-height:1.75rem;color:#e96194}
.reviews .popup__title{text-align:left;font-weight:500;font-size:1.75rem;line-height:2.25rem;margin:0}
.reviews .popup__subtitle{font-weight:500;font-size:0.875rem;line-height:1.25rem}
.reviews .popup__note{font-size:0.75rem;line-height:1rem;font-weight:400;color:#6b7280}
.contact-us{background:#f5f5f5;padding:6.25rem 0}
.contact-us__holder{display:flex;flex-direction:column}
.contact-us__holder .accent-text{color:#f17ca8;text-align:center;margin-bottom:1rem}
.contact-us .title{font-size:40px;font-weight:500;margin-bottom:1rem}
@media(max-width: 993px){.contact-us .title{margin:.5rem 0}}
.contact-us__text{margin-bottom:4rem;align-self:center;text-align:center;font-weight:400;color:#6b7280}
@media(max-width: 993px){.contact-us__text{margin-top:1rem;margin-bottom:1.25rem;font-size:1rem;font-weight:400}}
.contact-us__content{display:flex}
@media(max-width: 993px){.contact-us__content{flex-direction:column}}
.contact-us__map{flex:1;border-radius:0.625rem;border:0.0625rem solid #e5e7eb;overflow:hidden;display:flex}
.contact-us__map iframe{width:100%;height:100%;border:0;outline:0}
@media(max-width: 993px){.contact-us__map{margin-bottom:1.25rem;min-height:20.75rem}.contact-us__map iframe{height:auto}}
.contact-us__form{padding:3.625rem 0 3.625rem 4rem;align-self:center;width:50%}
.contact-us__form .button{margin-top:1.625rem}
@media(max-width: 993px){.contact-us__form .button{margin:0}.contact-us__form .button div,.contact-us__form .button span{padding:0.375rem 1.6875rem}}
@media(max-width: 1280px){.contact-us__form{padding:1.5rem 0 1.5rem 1.5rem}}
@media(max-width: 993px){.contact-us__form{width:100%;padding:0}}
.contact-us__form input{background:#fff}
@media(max-width: 993px){.contact-us .popup__form{row-gap:1.25rem}}
.form{display:flex;align-items:flex-start;flex-wrap:wrap;gap:1.375rem}
.form-field{display:flex;flex-direction:column;row-gap:0.5rem;width:100%;position:relative}
.form-field--half{width:calc(50% - 0.75rem)}
@media(max-width: 1280px){.form-field--half{width:100%}}
.form-field--wide{width:100%}
.form-field__icon{position:absolute;bottom:0.9375rem;left:1rem;width:1.25rem;height:1.25rem;display:flex;align-items:center;justify-content:center}
.form-field__label{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:#252c32;font-size:0.875rem;font-weight:600;line-height:1.3125rem}
.form-field__input{padding:0.875rem 1rem;border-radius:0.875rem;border:1px solid #d1d5db;background-color:#fff;outline:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:0.875rem;line-height:1.25rem;font-weight:400;color:#252c32;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}
.form-field__input::-moz-placeholder{color:#888;font-size:1rem;line-height:1.5rem;font-weight:400}
.form-field__input::placeholder{color:#888;font-size:1rem;line-height:1.5rem;font-weight:400}
.form-field__input[type=number]{-moz-appearance:textfield}
.form-field__input[type=number]::-webkit-outer-spin-button,.form-field__input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}
.form-field__input--search{padding:0.75rem 1.25rem 0.75rem 2.875rem;font-weight:500}
.form-field__input--search::-moz-placeholder{font-weight:500}
.form-field__input--search::placeholder{font-weight:500}
@media(max-width: 993px){.form-field__input--search{font-size:0.875rem;line-height:1.5rem}.form-field__input--search::-moz-placeholder{font-size:0.875rem;line-height:1.5rem}.form-field__input--search::placeholder{font-size:0.875rem;line-height:1.5rem}}
.form-field__textarea{padding:0.8125rem 1.25rem;border-radius:0.5rem;border:0.0625rem solid #dcdfe9;background-color:#f9fafa;resize:none;outline:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:1rem;line-height:1.5rem;height:9.6875rem;color:#252c32}
.form-field__textarea::-moz-placeholder{color:#888}
.form-field__textarea::placeholder{color:#888}
.checkbox{position:absolute;z-index:-1;opacity:0}
.checkbox-wrapper{display:flex;align-items:center}
.checkbox+span{color:#252c32;display:inline-flex;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;font-size:0.875rem;font-weight:500;line-height:20px;cursor:pointer}
@media(max-width: 993px){.checkbox+span{font-size:0.875rem;line-height:1.3125rem;font-weight:500}}
.checkbox+span::before{content:"";margin-right:0.65625rem;display:flex;align-items:center;justify-content:center;min-width:1.4375rem;height:1.4375rem;border:0.0625rem solid #bbb9b9;border-radius:0.25rem;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);background-position:center,center;background-repeat:no-repeat,no-repeat;box-shadow:0 0.03rem 0.06rem 0 rgba(39,21,29,.06);outline:0}
@media(max-width: 993px){.checkbox+span::before{margin-right:0.5rem;min-width:1.25rem;height:1.25rem}}
.checkbox:checked+span::before{background-image:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/check-2.svg),linear-gradient(180deg, #fff 0%, #fff 100%);border-radius:7px;border:.8px solid #f17ca8}
.feedback-section{font-size:16px;font-weight:600}
.feedback-section .radios{display:flex;gap:15px;margin-bottom:1.25rem;margin-top:1.25rem}
.feedback-section .radios input{display:none}
.feedback-section .radios label{border-radius:14px;background:#fff;padding:5px 10px;width:50px;height:50px;display:flex;justify-content:center;align-items:center;border:1px solid #e5e7eb;background:rgba(0,0,0,0)}
.feedback-section .radios .active{border:1px solid #fc8fb8;background:#fff}
.feedback-section .hidden input,.feedback-section .hidden textarea{display:none}
.feedback-section .feedback_text{padding:0;margin:0}
.feedback-section .button{padding:10px 50px;float:right;margin-top:1em}
.feedback-section .checkbox-wrapper{margin:.75rem 0}
.feedback-section #feedback_text{border-radius:22px;border:1px solid #e5e7eb;background:#fff;padding:10px;margin-top:1.25rem}
.feedback-section #feedback_text ::-moz-placeholder{color:#b0babf;font-width:400;font-size:1rem}
.feedback-section #feedback_text ::placeholder{color:#b0babf;font-width:400;font-size:1rem}
.assistance{position:relative}
.assistance__bg{background:#252c32;position:absolute;z-index:-1;width:100%;height:100%;top:0}
.assistance .title{color:#fff}
.assistance__text{color:#fff !important}
.assistance__holder{display:flex;flex-direction:column;padding:6.25rem 0}
@media(max-width: 993px){.assistance__holder{padding:1.875rem 0}}
.assistance__holder .pink-text{color:#fc8fb8}
.assistance__holder .title{align-self:center;max-width:50%;line-height:3rem}
@media(max-width: 993px){.assistance__holder .title{max-width:100%;font-size:1.625rem;font-weight:600;line-height:1.4}}
.assistance__holder>.button{align-self:center;padding:0.625rem 3.125rem}
@media(max-width: 993px){.assistance__holder>.button{width:11.1875rem}}
.assistance__text{max-width:50%;margin-bottom:4rem;align-self:center;text-align:center;font-weight:400;color:#888;line-height:1.5rem}
@media(max-width: 993px){.assistance__text{margin-bottom:1.25rem;max-width:100%}}
.assistance__cards{margin-bottom:4rem;display:flex;flex-wrap:wrap;-moz-column-gap:0.975625rem;column-gap:0.975625rem;row-gap:2.8125rem}
@media(max-width: 993px){.assistance__cards{display:none;row-gap:1.25rem}}
.assistance__cards.mobile-slider{display:none;margin-bottom:1.25rem}
@media(max-width: 993px){.assistance__cards.mobile-slider{display:flex}}
.assistance__card{width:calc(33.333% - 0.875rem);padding:1.219375rem;display:flex;flex-direction:column;border-radius:0.5rem;background-color:rgba(0,0,0,0)}
@media(max-width: 1280px){.assistance__card{width:calc(50% - 0.6875rem)}}
@media(max-width: 993px){.assistance__card{width:100%}}
.assistance__card-icon{margin-bottom:1.1875rem;width:3rem;height:3rem;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06)}
@media(max-width: 993px){.assistance__card-icon{margin-bottom:1rem}}
.assistance__card-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin:0 0 0.75rem 0;font-size:1rem;line-height:1.5rem;font-weight:600;color:#fff;border-left:2px solid #fc8fb8;padding-left:0.625rem}
@media(max-width: 993px){.assistance__card-title{margin-bottom:1rem}}
.assistance__card-text{margin:0 0 1.375rem 0;color:#fff;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}
@media(max-width: 993px){.assistance__card-text{margin-bottom:1rem}}
.assistance__card a{text-decoration:none;color:#fc8fb8;font-size:16px;font-weight:600}
.assistance__question{margin:0 0 1.125rem 0;text-align:center;font-weight:400;color:#fc8fb8}
.assistance .button--transparent{background:rgba(0,0,0,0);border:1px solid #f5f5f5;font-size:16px;font-weight:400;color:#fff}
.front-page-main .faq{background:#f5f5f5}
@media(max-width: 767px){.archive .faq__text{display:none !important}.archive .faq .title{display:none}}
.faq{display:flex;align-items:center;justify-content:center;padding:4rem 0}
@media(max-width: 993px){.faq{padding:2rem 0}}
.faq--padding-top{padding-top:5rem}
@media(max-width: 1280px){.faq--padding-top{padding-top:2.5rem}}
@media(max-width: 993px){.faq--padding-top{padding-top:1.25rem}}
.faq__holder{margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}
.faq .title{text-align:left;width:100%}
@media(max-width: 993px){.faq .title{font-size:1.625rem;font-weight:600}}
.faq .faq__text{min-width:100%;text-align:left}
.faq__text{margin-bottom:4rem;max-width:16.875rem;text-align:center;font-weight:500;color:#888}
@media(max-width: 993px){.faq__text{margin-bottom:1.25rem}}
.faq__text p:last-child{margin-bottom:0}
.faq__items{display:flex;flex-direction:column;row-gap:2rem;width:50%}
@media(max-width: 993px){.faq__items{width:100%;row-gap:1rem}}
.faq__groups{display:flex;-moz-column-gap:2rem;column-gap:2rem}
@media(max-width: 993px){.faq__groups{flex-wrap:wrap}}
.faq__item{text-align:start;border:1px solid #e5e7eb;width:100%;background:#fff;padding:1.5rem;border-radius:1.125rem}
.faq__question{padding:0;font-weight:500;font-size:1rem;line-height:1.5;display:flex;justify-content:space-between;align-items:center;position:relative;gap:1rem;cursor:pointer;transition:all .3s ease-in-out,border-color 0s ease}
.faq__question svg{width:1.5rem;height:1.5rem;transform:rotate(0deg);transition:all .3s ease-in-out}
@media(max-width: 767px){.faq__question svg{width:0.875rem;height:0.5625rem;min-width:0.875rem}}
.faq__answer-wrapper{padding:0}
@media(max-width: 993px){.faq__answer-wrapper{font-size:0.875rem;line-height:1.5rem}}
.faq__answer-wrapper p:last-child{margin-bottom:0}
@media(max-width: 993px){.faq .faq__groups .faq__items:nth-child(2){margin-top:1.5rem}}
.toggle.open .toggle__opener svg{transform:rotate(180deg)}
.toggle.open .toggle__content{grid-template-rows:1fr;opacity:1}
.toggle.open .toggle__content .faq__answer-wrapper{padding:2rem 0;line-height:1.43;color:#6b7280}
.toggle.open .toggle__content .faq__answer-wrapper b{color:#000}
.toggle.open .toggle__content .faq__answer-wrapper a{position:relative;text-decoration:none}
.toggle.open .toggle__content .faq__answer-wrapper a:hover:after{width:100%}
.toggle.open .toggle__content .faq__answer-wrapper a:after{content:"";display:inline-block;position:absolute;bottom:0;left:0;width:0;height:1px;background:#fc8fb8;transition:.3s ease-in-out}
@media(max-width: 993px){.toggle.open .toggle__content .faq__answer-wrapper{padding:1.25rem 0}}
.toggle.open .toggle__content .filters__item-content-wrapper{padding-bottom:1.25rem}
.toggle.open .toggle__content .filters__item-content-wrapper:not(:last-child){border-bottom:0.0625rem solid #e5e7eb}
.toggle.open .filters__item-opener{border-bottom:0}
.toggle.open .filters__item-opener__icon{transform:rotate(180deg)}
.toggle__content{opacity:0;margin:0;grid-template-rows:0fr;overflow:hidden;display:grid;transition:all .5s ease}
.toggle__content-wrapper{transition:all .5s ease;min-height:0}
.filters__content.open{transform:translateX(0)}
.city-archive .popup__close__review{width:2rem;height:2rem;background:#d1d5db}
@media(max-width: 993px){.city-archive .popup__close__review{top:1.25rem;right:1.25rem}}
.city-archive .popup__close__review:before,.city-archive .popup__close__review:after{background:#fff;box-shadow:0px 1.37px 2.75px 0px rgba(39,21,29,.0588235294);width:0.859375rem;height:0.296875rem}
.city-archive .popup__close__review:before{width:0.875rem;height:0.3125rem}
.city-archive .popup__close__review:after{width:0.3125rem;height:0.875rem}
.city-archive .popup__body__review{width:37.75rem;max-width:100%;padding:3.125rem 2.75rem;background:#f5f5f5;border-radius:1.875rem}
.city-archive .popup__body__review .wpcf7-form-control-wrap{display:flex}
.city-archive .popup__body__review .button{width:100%}
.city-archive .popup__body__review textarea{width:100%}
.city-archive .popup__body__review .rating__hearts{display:flex;align-items:center;gap:0.625rem}
.city-archive .popup__body__review .rating__hearts label{width:32px;height:30px;cursor:pointer}
@media(max-width: 993px){.city-archive .popup__body__review .rating__hearts label{width:24px;height:24px}}
.city-archive .popup__body__review .rating__hearts .filled svg path{fill:#fc8fb8}
@media(max-width: 993px){.city-archive .popup__body__review{padding:1.25rem}}
.city-archive .popup__description__review{padding-top:0;row-gap:0.5rem}
.city-archive .popup__description__review .popup__description-header__review{row-gap:0.5rem;padding-right:1.25rem}
.city-archive .popup__form__review{row-gap:0.5rem}
.city-archive .popup__pretitle__review{font-weight:600;font-size:1.125rem;line-height:1.75rem;color:#e96194}
.city-archive .popup__title__review{text-align:left;font-weight:500;font-size:1.75rem;line-height:2.25rem;margin:0}
@media(max-width: 993px){.city-archive .popup__title__review{font-size:1.5rem}}
.city-archive .popup__subtitle__review{font-weight:500;font-size:0.875rem;line-height:1.25rem}
.city-archive .popup__note{font-size:0.75rem;line-height:1rem;font-weight:400;color:#6b7280}
.city-archive .banner-wrapper{padding:4rem 2rem;border-radius:30px}
.city-archive .banner{position:relative;border-radius:30px;background-size:cover !important}
.city-archive .banner__overlay{border-radius:30px;position:absolute;z-index:0;width:100%;height:517px;left:0;top:0}
.city-archive .banner__overlay__dark{position:absolute;height:100%}
.city-archive .banner__overlay__pink{position:absolute;height:100%;right:0;z-index:2}
.city-archive .banner .banner-content{z-index:2;position:relative}
@media(max-width: 993px){.city-archive .banner{padding:2.5rem 0}}
.city-archive .banner--lighter{min-height:32.3125rem}
@media(max-width: 1280px){.city-archive .banner--lighter{min-height:25rem}}
@media(max-width: 1100px){.city-archive .banner--lighter{min-height:18.75rem}}
@media(max-width: 993px){.city-archive .banner--lighter{min-height:11rem}}
.city-archive .banner__bg{background-size:cover}
.city-archive .banner__bg img{width:100%;height:517px;-o-object-fit:cover;object-fit:cover}
.city-archive .banner__holder{display:flex;align-items:flex-start;flex-direction:column;row-gap:1rem}
@media(max-width: 993px){.city-archive .banner__holder{row-gap:0.625rem}}
.city-archive .banner__title{text-align:left;margin:0;color:#fff;font-size:2.5rem;font-weight:500;line-height:3rem}
@media(max-width: 993px){.city-archive .banner__title{font-size:1.25rem;line-height:1.5rem}}
.city-archive .banner__text{max-width:23.75rem;color:#fff;font-size:1rem;line-height:1.5rem;font-weight:400}
@media(max-width: 993px){.city-archive .banner__text{font-size:0.75rem;line-height:1rem}}
.banner-wrapper{padding:4rem 2rem;border-radius:30px}
.singe-video-section .banner{max-width:100%}
@media(max-width: 993px){.singe-video-section{display:none}}
.banner{padding:6.25rem;position:relative;border-radius:30px;background-size:cover !important;background-position:center !important}
.banner__overlay{border-radius:30px;position:absolute;z-index:0;width:100%;height:100%;left:0;top:0}
.banner__overlay__dark{position:absolute;height:100%}
.banner__overlay__pink{position:absolute;height:100%;right:0;z-index:2}
.banner .banner-content{z-index:2;position:relative}
@media(max-width: 993px){.banner .banner-content{padding-left:1em}.banner{padding:2.5rem 0}}
.banner--lighter{min-height:32.3125rem}
@media(max-width: 1280px){.banner--lighter{min-height:25rem}}
@media(max-width: 1100px){.banner--lighter{min-height:18.75rem}}
@media(max-width: 993px){.banner--lighter{min-height:11rem}}
.banner__bg{background-size:cover;position:relative;overflow:hidden;height:500px}
.banner__bg img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.banner__holder{display:flex;align-items:flex-start;flex-direction:column;row-gap:1rem}
@media(max-width: 993px){.banner__holder{row-gap:0.625rem}}
.banner__title{text-align:left;margin:0;color:#fff;font-size:2.5rem;font-weight:500;line-height:3rem}
@media(max-width: 993px){.banner__title{font-size:1.25rem;line-height:1.5rem}}
.banner__text{max-width:23.75rem;color:#fff;font-size:1rem;line-height:1.5rem;font-weight:400}
@media(max-width: 993px){.banner__text{font-size:0.75rem;line-height:1rem}}
.city-archive .banner--lighter{padding:0 !important;min-height:0 !important}
.city-archive .big-card__header{flex-direction:column}
.nursing-homes__footer .author-updated{display:flex;justify-content:center;align-items:center;gap:1rem}
.nursing-homes__footer .author-updated img{width:50px;height:50px;border-radius:50px;-o-object-fit:cover;object-fit:cover}
.nursing-homes__footer .author-name{display:flex;flex-direction:column}
.nursing-homes__footer .author-title{font-size:16px;font-weight:700}
.map__holder iframe{width:100%;border-radius:0.625rem;overflow:hidden;border:0;min-height:14.625rem}
@media(max-width: 993px){.map__holder iframe{min-height:10.75rem}}
.gallery{position:relative;display:flex;flex-direction:column;row-gap:2.125rem}
@media(max-width: 993px){.gallery{row-gap:0.75rem}}
.gallery__main-img{width:100%;max-height:100%;height:33.75rem;overflow:hidden;position:relative;border-radius:0.625rem}
.gallery__main-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
@media(max-width: 1280px){.gallery__main-img{height:31.25rem}}
@media(max-width: 1100px){.gallery__main-img{height:25rem}}
@media(max-width: 993px){.gallery__main-img{height:12.9375rem}}
.gallery__button{position:absolute;right:2.5rem;bottom:2rem;border-radius:0.5rem}
.gallery__button div,.gallery__button span{font-weight:600;line-height:1.4}
@media(max-width: 993px){.gallery__button div,.gallery__button span{padding:0.5rem 0.75rem;font-size:0.625rem}}
.gallery__button div img,.gallery__button span img{width:1.3125rem;height:1.3125rem}
@media(max-width: 993px){.gallery__button div img,.gallery__button span img{width:1rem;height:1rem}.gallery__button{right:0.625rem;bottom:0.625rem;width:100%;max-width:7.75rem}}
.gallery__line-photos{display:flex;flex-wrap:wrap;gap:2.25rem}
@media(max-width: 993px){.gallery__line-photos{gap:0.75rem}}
.gallery__line-photo{width:calc(33.333% - 1.5rem);border-radius:0.5rem;overflow:hidden}
@media(max-width: 993px){.gallery__line-photo{width:calc(33.333% - 0.5rem)}}
.gallery__line-photo img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.gallery__holder{display:flex;flex-direction:column;row-gap:2.125rem}
.gallery__holder .tab-item.active{display:grid}
@media(max-width: 993px){.gallery__holder{row-gap:1.25rem}}
.gallery__header{display:flex;-moz-column-gap:1rem;column-gap:1rem}
.gallery__select{max-width:12rem}
@media(max-width: 993px){.gallery__select{max-width:7.5rem}.gallery__select.active .select-opener{background-size:1rem;background-position:calc(100% - 0.625rem)}.gallery__select .select-opener{padding:0.25rem 2.25rem 0.25rem 0.625rem;font-size:0.75rem;line-height:1.5rem;background-size:1rem;background-position:calc(100% - 0.625rem);font-weight:500}.gallery__select .select-option{padding:0.75rem;font-size:0.75rem}}
.gallery__images{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:2.0625rem}
@media(max-width: 993px){.gallery__images{gap:0.75rem}}
.gallery__image{max-height:22.5rem;border-radius:0.5rem;overflow:hidden}
@media(max-width: 993px){.gallery__image{border-radius:0}}
.gallery__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.gallery__matterports{display:flex;flex-direction:column;row-gap:2.125rem}
@media(max-width: 993px){.gallery__matterports{row-gap:1.25rem}}
.gallery__matterport{display:flex;flex-direction:column;row-gap:2rem}
.gallery__matterport-frame{height:40.3125rem;border-radius:0.5rem 0.5rem 0 0;overflow:hidden}
@media(max-width: 993px){.gallery__matterport-frame{border-radius:0.25rem 0.25rem 0 0;height:12.5rem}}
.gallery__matterport-content{display:flex;justify-content:space-between;-moz-column-gap:1rem;column-gap:1rem}
.gallery__matterport-info{flex:1;display:flex;flex-direction:column;row-gap:0.5rem}
.gallery__matterport-info h3{margin:0;color:#252c32;font-size:1.125rem;font-weight:700;line-height:1.75rem}
@media(max-width: 993px){.gallery__matterport-info h3{font-size:0.875rem;line-height:1.25rem}}
.gallery__matterport-info span{color:#888;font-size:0.75rem;line-height:1rem}
.gallery__matterport-socials{max-width:5.25rem;display:flex;flex-wrap:wrap;gap:0.375rem}
.gallery__matterport-social{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
.gallery__videos{display:grid;grid-template-columns:repeat(4, 1fr);grid-template-rows:auto;gap:1rem}
@media(max-width: 1280px){.gallery__videos{grid-template-columns:repeat(2, 1fr)}}
@media(max-width: 993px){.gallery__videos{gap:1.25rem;grid-template-columns:1fr}}
.gallery__video{display:flex;flex-direction:column;height:100%;background:#fff;padding:1rem;border-radius:18px;background:var(--color-surface-background-background-primary, #FFF)}
.gallery__video__suggested{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px}
@media(max-width: 767px){.gallery__video__suggested{gap:5px}.gallery__video__suggested .gallery__video__play{width:32px;height:32px}}
.gallery__video__suggested .gallery__video__post{margin-bottom:0}
.gallery__video__suggested .gallery__video__post img{aspect-ratio:1.49/1 !important;border-radius:8px}
.gallery__video__suggested .gallery__video-content--wrap{display:none}
.gallery__video-frame{height:20.3125rem;border-radius:0.25rem 0.25rem 0 0;overflow:hidden}
@media(max-width: 993px){.gallery__video-frame{height:12.5rem}}
.gallery__video-frame .video{height:100%;display:flex;align-items:center;justify-content:center;position:relative}
.gallery__video-frame .video video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.gallery__video-frame .video__play-btn{cursor:pointer;position:absolute;width:3.125rem;height:3.125rem;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(48,48,54,.5);border:0.3125rem solid #fff}
@media(max-width: 993px){.gallery__video-frame .video__play-btn{width:2.875rem;height:2.875rem;border:0.1875rem solid #fff}}
.gallery__video-frame .video__play-btn img{pointer-events:none}
.gallery__video-frame .video__play-btn.hide{display:none}
.gallery__video-frame iframe{width:100%;height:100%}
.gallery__video-content--wrap{display:flex;flex-direction:column;height:100%;row-gap:0.625rem}
.gallery__video-content{display:flex;align-items:flex-start;-moz-column-gap:0.5rem;column-gap:0.5rem}
.gallery__video-icon{flex-shrink:0;width:2.5rem;height:2.5rem;border-radius:50%;overflow:hidden}
.gallery__video-icon img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.gallery__video-info{display:flex;flex-direction:column;row-gap:0.25rem}
.gallery__video-info h3{margin:0;color:#252c32;font-size:1rem;line-height:1.5rem;font-weight:500}
@media(max-width: 993px){.gallery__video-info h3{font-size:0.875rem;line-height:1.5rem;color:#252c32;font-weight:600}}
.gallery__video-info span{color:#6b7280;font-size:0.875rem;line-height:1rem}
.gallery__video-tags{font-size:0.875rem;font-width:500;color:#6b7280}
.gallery__video-sound{font-size:0.75rem;font-weight:400;color:#6b7280;display:flex;gap:10px}
.gallery__video__share{margin-top:auto}
.copy-notification{position:fixed;top:50px;right:0;background-color:#000;color:#fff;padding:0.625rem 1.25rem;border-radius:0.375rem;font-size:0.875rem;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;z-index:99999}
.copy-notification.visible{opacity:1;visibility:visible}
.copy-notification.hidden{opacity:0;visibility:hidden}
.gallery-photo{background:#f5f5f5;padding:5rem 0}
.gallery-photo .popup__dropdown__header{display:flex;align-items:center;justify-content:space-between;cursor:pointer}
.gallery-photo .popup__dropdown__header.video-hide{opacity:0;visibility:hidden}
.gallery-photo .popup__dropdown-text{position:relative;font-size:24px;line-height:1.5;font-weight:600}
@media(max-width: 767px){.gallery-photo .popup__dropdown-text{font-size:16px}}
.gallery-photo .popup__dropdown-text .text-bottom{position:absolute;color:#fc8fb8;z-index:-1;animation:myanim 2s infinite}
@keyframes myanim{0%{transform:scale(1);opacity:1}70%{transform:scale(1.25);opacity:0}100%{transform:scale(1);opacity:0}}
.gallery-photo .popup__body.TikTok{width:38%}
.gallery-photo .popup__body.TikTok iframe{aspect-ratio:.8/1.2}
.gallery-photo .popup__content{flex-direction:column}
.gallery-photo .prev,.gallery-photo .next{display:flex;width:40px;min-width:40px;height:40px;border-radius:50%;padding:0 !important;border:1px solid #e5e7eb}
.gallery-photo .prev svg path,.gallery-photo .next svg path{transition:.5s ease-in-out}
.gallery-photo .prev:hover,.gallery-photo .next:hover{background:#000 !important;color:#fff}
.gallery-photo .prev:hover svg path,.gallery-photo .next:hover svg path{fill:#fff}
@media(max-width: 993px){.gallery-photo{padding:2.5rem 0}}
@media(max-width: 767px){.gallery-photo .mobile-none{display:none !important}}
.gallery-photo .title{color:#252c32;font-weight:600;font-size:4rem;line-height:4.5rem;letter-spacing:-2.3px}
@media(max-width: 767px){.gallery-photo .title{font-size:2.5rem;line-height:2.6875rem;letter-spacing:-1px}}
.gallery-photo .info-header__text{margin:0 auto 3.75rem;font-size:1.5rem;line-height:2rem;color:#6b7280;max-width:60%}
@media(max-width: 993px){.gallery-photo .info-header__text{margin:0 auto 2rem;max-width:100%;font-size:1.125rem;line-height:1.5rem}}
.gallery-photo__wrap{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:2.5rem}
@media(max-width: 993px){.gallery-photo__wrap{margin-bottom:2rem}}
.gallery-photo__types{margin-bottom:3.75rem}
.gallery-photo__types,.gallery-photo__states{display:flex;-moz-column-gap:1rem;column-gap:1rem;justify-content:center;align-items:center;width:100%}
.gallery-photo__types .swiper-wrapper,.gallery-photo__states .swiper-wrapper{display:flex;align-items:center;gap:16px;max-width:100%;margin:0 auto}
.gallery-photo__types-mobile,.gallery-photo__states-mobile{display:none}
@media(max-width: 767px){.gallery-photo__types-mobile,.gallery-photo__states-mobile{display:flex !important;overflow:hidden}}
.gallery-photo__types .button,.gallery-photo__states .button{display:flex;align-items:center;justify-content:center;max-width:180px;padding:0.5rem 1.5rem}
.gallery-photo__types .button.disabled,.gallery-photo__states .button.disabled{pointer-events:none;opacity:.5}
.gallery-photo__types .button:hover,.gallery-photo__states .button:hover{background:#000 !important;color:#fff}
.gallery-photo__types .button:hover svg path,.gallery-photo__states .button:hover svg path{fill:#fff}
.gallery-photo__types .button span,.gallery-photo__states .button span{padding:0}
@media(max-width: 767px){.gallery-photo__types .button,.gallery-photo__states .button{padding:0.5rem 1rem}}
.gallery-photo__types .active,.gallery-photo__states .active{background:#000 !important;color:#fff}
@media(max-width: 993px){.gallery-photo__types,.gallery-photo__states{margin-bottom:2rem}}
.gallery-photo__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:2rem 1.25rem}
.gallery-photo__list.Site{grid-template-columns:repeat(3, 1fr)}
@media(max-width: 993px){.gallery-photo__list.Site{grid-template-columns:repeat(2, 1fr);gap:1rem 0.75rem}.gallery-photo__list{grid-template-columns:repeat(2, 1fr);gap:1rem 0.75rem}}
@media(max-width: 767px){.gallery-photo__list{grid-template-columns:100%;gap:0.75rem}}
.gallery-photo__pagination{display:flex;justify-content:center;gap:2rem;align-items:center;margin-top:5rem}
.gallery-photo__pagination .page-numbers{cursor:pointer}
@media(max-width: 993px){.gallery-photo__pagination{margin-top:2.5rem}}
.gallery-photo__pagination .prev,.gallery-photo__pagination .next{border-radius:8px;border:1px solid #e5e7eb;width:35px;height:35px;display:flex;justify-content:center;align-items:center;background:#fff;transition:.3s ease-in-out}
.gallery-photo__pagination a{text-decoration:none !important;color:#6b7280}
.gallery-photo__pagination .current{border-radius:8px;background:#272727;color:#fff;width:35px;height:35px;display:flex;justify-content:center;align-items:center}
.gallery-photo__popup-link{margin-top:1rem}
.gallery-photo__states{margin-bottom:0}
.profile-gallery__imgs{display:grid;grid-template-columns:repeat(3, 1fr);gap:1.25rem}
@media(max-width: 993px){.profile-gallery__imgs{gap:0.75rem}}
.profile-gallery__image-wrapper{position:relative;overflow:hidden;border-radius:.625rem}
.profile-gallery__image-wrapper:first-child{grid-column-start:1;grid-column-end:4;max-height:33.75rem;position:relative;padding-top:39.2%}
@media(max-width: 767px){.profile-gallery__image-wrapper:first-child{padding-top:56.25%}}
.profile-gallery__image-wrapper:not(:first-child):after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:1;background:linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))}
.profile-gallery__image-wrapper:not(:first-child) img{aspect-ratio:16/10}
@media(max-width: 767px){.profile-gallery__image-wrapper:not(:first-child) img{display:none}}
.profile-gallery__image-wrapper:nth-child(n+5){display:none}
.profile-gallery__image-wrapper video,.profile-gallery__image-wrapper iframe{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/10}
.profile-gallery__image-wrapper .video__play-btn{cursor:pointer;position:absolute;width:4.375rem;height:4.375rem;padding:0;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(48,48,54,.5);border:.3125rem solid #fff;left:50%;top:50%;transform:translate(-50%, -50%)}
.profile-gallery__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block;border-radius:0.625rem}
.profile-gallery__image-main{position:absolute;top:0}
.profile-gallery__button{pointer-events:none}
.video-pagination{display:flex;justify-content:center;gap:2rem;align-items:center;margin-top:2rem}
.video-pagination a{text-decoration:none !important;color:#6b7280}
.video-pagination .prev,.video-pagination .next{border-radius:100px;border:1px solid #e5e7eb;width:35px;height:35px;display:flex;justify-content:center;align-items:center;background:#fff}
.video-pagination .page-numbers.current{border-radius:8px;background:#272727;color:#fff;width:35px;height:35px;display:flex;justify-content:center;align-items:center}
.job-pagination{display:flex;justify-content:center;gap:2rem;align-items:center;margin-top:2rem}
.job-pagination a{text-decoration:none !important;color:#6b7280}
.job-pagination .prev,.job-pagination .next{border-radius:100px;border:1px solid #e5e7eb;width:35px;height:35px;display:flex;justify-content:center;align-items:center;background:#fff}
.job-pagination .page-numbers.current{border-radius:8px;background:#272727;color:#fff;width:35px;height:35px;display:flex;justify-content:center;align-items:center}
#view-all-images{cursor:pointer}
.gallery-photo__item{display:flex}
.gallery-photo__item img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/9;border-radius:0.375rem}
.gallery__video__post{display:flex;align-items:center;justify-content:center;position:relative;margin-bottom:1rem}
.gallery__video__post img{display:block;width:100%;height:100%;aspect-ratio:1.49/1;-o-object-fit:cover;object-fit:cover;border-radius:8px 8px 0 0}
.gallery__video__post img.Long{aspect-ratio:.8/1}
@media(max-width: 767px){.gallery__video__post img.Long{aspect-ratio:1.49/1}}
.gallery__video__play{display:flex;align-items:center;justify-content:center;position:absolute;width:50px;height:50px;border-radius:50%;border:2px solid #fff;background:rgba(48,48,54,.5);transition:.3s ease-in-out}
.gallery__video__play:hover svg{transform:scale(1.3)}
.gallery__video__play svg{transform:scale(1);transition:.3s ease-in-out;margin-left:0.125rem;pointer-events:none}
.gallery__video__play.play-youtube{height:35px;border:none;border-radius:12px;background:red}
.gallery__video__play.play-youtube svg{margin-left:0.25rem}
.gallery__video__share__list{display:flex;align-items:center;gap:0.5rem;margin-top:0.375rem}
.gallery__video__share__item{display:flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;border:.63px solid #d1d5db;background:#fff;box-shadow:0px .63px 1.25px 0px rgba(1,18,34,.0392156863);transition:.3s ease-in-out}
.gallery__video__share__item svg path{transition:.3s ease-in-out}
.gallery__video__share__item:hover{background:#fc8fb8}
.gallery__video__share__item:hover svg path{fill:#fff}
.big-cards{display:flex;flex-direction:column;row-gap:5rem}
@media(max-width: 993px){.big-cards{row-gap:1.375rem}}
.big-cards .profile__info-item{row-gap:0.625rem}
.big-cards .big-card-sidebar{width:24rem}
.big-card{display:flex;flex-direction:column;row-gap:1.5rem}
.big-card .button__review{border:1px solid #fc8fb8}
.big-card .button__review--wrap{margin-top:2.25rem;justify-content:left}
.big-card__copy{color:#000;display:inline-flex;gap:5px;border-radius:8px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 1px 2px 0 rgba(16,24,40,.05);font-size:14px;font-width:500;padding:10px 16px;width:-moz-max-content;width:max-content;float:right;text-decoration:none}
@media(max-width: 993px){.big-card{row-gap:1.375rem}}
.big-card__header{display:flex;gap:2rem}
.big-card__header .main_title_text{font-size:28px;font-weight:600;line-height:36px;margin:0}
@media(max-width: 993px){.big-card__header{flex-wrap:wrap;row-gap:0.5rem}}
.big-card__header .button{padding:0.9375rem;width:100%;font-size:0.875rem;line-height:1.43;font-weight:500;letter-spacing:0}
.big-card__header .card__header_first{display:flex;flex-direction:column;row-gap:1rem;flex:1}
@media(max-width: 767px){.big-card__header .card__header_first{row-gap:0.75rem}}
.big-card__title{display:flex;align-items:center;justify-content:space-between;flex-direction:row-reverse;font-size:28px;line-height:1.29;font-weight:600;letter-spacing:-0.8px;position:relative;color:#252c32;text-align:start;margin:0;text-decoration:none;width:-moz-fit-content;width:fit-content;gap:0.375rem}
.big-card__title h3{margin:0;background-image:linear-gradient(transparent calc(100% - 7px), black 7px);background-repeat:no-repeat;background-size:100% 112%;font-weight:600}
.big-card__title.profile_card_title{flex-direction:row}
@media(max-width: 993px){.big-card__title.profile_card_title{display:flex;flex-direction:column-reverse;align-items:self-start}.big-card__title{font-size:1.75rem;display:block}}
@media(max-width: 767px){.big-card__title.verified-card{justify-content:flex-start;align-items:flex-start;flex-direction:column-reverse;gap:0.375rem}}
.big-card__title a{font-size:1.75rem;font-weight:500;line-height:2.25rem;color:#333;text-decoration:none !important}
@media(max-width: 993px){.big-card__title a{margin:0 0 0.75rem 0;font-size:1.125rem;line-height:1.5rem}}
.big-card__title a:hover{text-decoration:underline !important}
.big-card__address{color:#252c32;display:flex;align-items:center;text-decoration:none;margin-bottom:0;font-weight:500;font-size:0.875rem;line-height:1.42;gap:0.125rem}
@media(max-width: 993px){.big-card__address{align-items:center;font-size:0.75rem;margin:0 0 1.4375rem}}
.big-card__img{height:40rem;border-radius:0.625rem 0.625rem 0 0}
@media(max-width: 1280px){.big-card__img{height:31.25rem}}
@media(max-width: 1100px){.big-card__img{height:25rem}}
@media(max-width: 993px){.big-card__img{height:12.9375rem}}
.big-card__info{display:flex;-moz-column-gap:4.5rem;column-gap:4.5rem;align-items:flex-start}
@media(max-width: 993px){.big-card__info{display:block}}
.big-card__info .essential{min-width:24rem}
@media(max-width: 1100px){.big-card__info .essential{max-width:100%;min-width:auto}.big-card__info{flex-direction:column;row-gap:1.25rem}}
.big-card__info .flex-1{max-width:66.8%}
@media(max-width: 1100px){.big-card__info .flex-1{max-width:100%}}
.big-card__description{flex:1;display:flex;flex-direction:column;row-gap:0.5rem;position:relative}
@media(max-width: 993px){.big-card__description{row-gap:0.625rem}}
.big-card__description .button-save{position:absolute;top:4px;right:0;padding:0.625rem 1rem;border:1px solid #e5e7eb;box-shadow:0px 1px 2px 0px rgba(16,24,40,.05);font-weight:500;font-size:16px;line-height:24px;letter-spacing:0;color:#252c32}
@media(max-width: 993px){.big-card__description .button-save{top:0 !important}}
.big-card__description .button-save--profile{top:15px}
.big-card__description .button-save--profile.distance{top:0}
.big-card__description .button-save span{padding:0}
.big-card__description .button-save svg{width:24px;height:24px;margin-right:7px}
.big-card__description .button-save.saved{border:1px solid #ff639e}
.big-card__description .button-save.saved svg{fill:#ff639e}
.big-card__description .button-save.saved svg path{stroke:#ff639e}
.big-card__description a{align-self:flex-start}
.big-card__description .equipment{margin:0.5rem 0 1.125rem 0}
@media(max-width: 993px){.big-card__description .equipment{margin:0}}
.big-card__description p:last-child{margin-bottom:0}
.big-card__description .bed-count{color:#252c32;font-size:1rem;font-weight:500;line-height:1.5rem}
.big-card__description .distance{font-weight:500;display:flex;justify-content:flex-start;align-items:center;margin-bottom:2rem}
.big-card__description .border-top{border-top:1px solid #e5e7eb}
.big-card__description .map-title{font-size:24px;font-weight:500;margin:0 !important}
.big-card__description .list-features{background:#fff;padding:20px;border-radius:20px;font-size:1rem;font-weight:600;margin-top:1rem;display:flex;gap:1rem}
@media(max-width: 993px){.big-card__description .list-features .block{width:20%;margin-bottom:0}.big-card__description .list-features{flex-direction:column}}
.big-card__description .list-features .float-right{float:right}
.big-card__description .list-features .list-text{display:inline-block}
.big-card__description .list-features .button{width:-moz-max-content;width:max-content;padding:.625rem 1rem;margin-top:-0.7rem;float:right}
@media(max-width: 993px){.big-card__description .list-features .button{float:unset;margin-top:1.25rem}}
.big-card__description .list-features .block{margin-bottom:1rem;display:block;max-width:45px;max-height:45px}
@media(max-width: 993px){.big-card__description .list-features .block{margin-bottom:0}}
.big-card__description .list-features .margin-top{maring-top:0.3125rem !important}
.big-card__description .featured-wrapper{border-top:1px solid #e5e7eb;padding-top:2rem}
.big-card__description .list-phone{margin-top:1.25rem;background:#ffe4f1;border:1px solid #fc8fb8;padding:1.25rem;border-radius:1.25rem}
.big-card__description .list-phone a{font-weight:600;color:#000;text-decoration:none !important}
.big-card__description-like ul{list-style:disc;padding-left:20px}
.big-card__description-like ul:not(:last-child){margin-bottom:1rem}
.big-card__description-like ol{margin:0;padding:0 0 0 1.25rem}
.big-card__description-like ol:not(:last-child){margin-bottom:1rem}
.big-card__description-like li{color:#888;font-size:1rem;line-height:1.5rem;font-weight:400}
.big-card__description-like li:not(:last-child){margin-bottom:1.25rem}
@media(max-width: 993px){.big-card .title_text{display:flex;gap:1rem;justify-content:space-between;align-items:center}}
.big-card__main-buttons{display:flex;align-items:center;justify-content:center;gap:0.75rem}
.big-card__main-buttons .button{border:1px solid #e5e7eb;border-radius:0.75rem;padding:0.625rem 0.875rem;font-size:0.875rem;font-weight:500;line-height:1.43;gap:0.4375rem}
.big-card__sub-buttons{display:flex;flex-direction:column;gap:1rem;width:100%}
.big-card__sub-buttons .share_link{display:flex;align-items:center;justify-content:flex-end;gap:8px;cursor:pointer;transition:.3s ease-in-out}
.big-card__sub-buttons .share_link:hover{color:#ff639e}
.big-card__sub-buttons .share_link:hover svg path{stroke:#ff639e}
.big-card__sub-buttons .share_link svg{width:18px;height:18px}
.big-card__sub-buttons .share_link svg path{stroke:#1e1e1e;transition:.3s ease-in-out}
@media(max-width: 993px){.big-card__sub-buttons{flex-direction:row;justify-content:space-between;margin-top:0}}
.big-card__description-text{padding:2.25rem 0;border-top:1px solid #b0babf;border-bottom:1px solid #b0babf;font-weight:400;font-size:1rem}
.big-card__description-text.single-description{padding-top:60px}
@media(max-width: 993px){.big-card__description-text.single-description{padding-top:36px}}
.big-card__description-text .title_text{color:#000;font-size:26px;font-weight:600;margin-bottom:1rem;padding:5px 0 0}
@media(max-width: 993px){.big-card__description-text .title_text .button{width:auto;padding:10px 12px}.big-card__description-text .title_text .button span{padding:0}.big-card__description-text{flex-direction:column;justify-content:center;padding:0 0 1.375rem;margin:0;border-bottom:1px solid #e5e7eb}.big-card__description-text p{font-size:1rem;line-height:1.5;font-weight:400;color:#252c32;margin:0}.big-card__info-item{padding:1.375rem 0;border-bottom:1px solid #e5e7eb;margin:0}}
.big-card__info-item .title_text{color:#252c32;font-size:1.5rem;line-height:2rem;font-weight:600;margin-bottom:1rem;padding-top:2rem}
.big-card__bottom-btn{display:none;padding:2rem 0;border-bottom:1px solid #b0babf}
.big-card__bottom-btn .button{padding:0.625rem 1rem;border-radius:0.75rem;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}
.big-card__bottom-btn .button--pink{color:#fff}
.big-card__bottom-btn .button-border{border:1px solid #fc8fb8}
@media(max-width: 993px){.big-card__bottom-btn{display:flex;gap:1rem}}
@media(max-width: 767px){.big-card__bottom-btn{flex-direction:column}}
.profile-header-section___breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;-moz-column-gap:8px;column-gap:8px;margin-bottom:1.875rem}
.profile-header-section___breadcrumbs li{position:relative;display:flex;align-items:center;justify-content:center;text-transform:capitalize;gap:8px}
.profile-header-section___breadcrumbs li:not(:last-child):after{pointer-events:none;content:"";width:20px;height:21px;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M7.62956 6.01079C7.30927 6.33108 7.30927 6.84848 7.62956 7.16877L10.8161 10.3553L7.62956 13.5418C7.30927 13.8621 7.30927 14.3795 7.62956 14.6998C7.94986 15.0201 8.46725 15.0201 8.78755 14.6998L12.5572 10.9302C12.8774 10.6099 12.8774 10.0925 12.5572 9.77218L8.78755 6.00258C8.47547 5.69049 7.94986 5.69049 7.62956 6.01079Z" fill="%236B7280"/></svg>') no-repeat center;background-size:contain}
.profile-header-section___breadcrumbs span,.profile-header-section___breadcrumbs a{color:#252c32;font-size:.75rem;line-height:1.33;font-weight:500;text-decoration:underline}
.profile-header-section___breadcrumbs li span{font-weight:700}
.profile-header-section___breadcrumbs a,.profile-header-section___breadcrumbs span{color:#252c32;font-size:0.75rem;line-height:1.33;font-weight:500;text-decoration:underline}
.big-card-sidebar{position:sticky;top:7rem}
.big-card-sidebar .essential__items{display:block;padding:30px;height:400px;overflow:scroll}
.big-card-sidebar .essential__item{display:flex;margin-bottom:1rem}
.big-card-sidebar .essential__item-info{display:flex;flex-direction:column;font-weight:600;width:100%;padding-left:.25rem}
.big-card-sidebar .profile__sidebar{margin-bottom:1em;position:unset}
.big-card-sidebar .profile__sidebar-form{box-shadow:none;border-radius:28px;border-bottom:0}
.verified-text{font-size:16px;font-weight:600;display:flex;gap:.5rem;align-items:center;justify-content:flex-start}
.profile__info-item__title-mobile{display:none}
@media(max-width: 993px){.profile__info{padding-bottom:1.25rem;position:relative}.profile__info:after{content:"";display:block;position:absolute;bottom:0;left:0;width:100%;height:1px;background:#e4e7ec}.profile__info .profile__info-item.delimiter{order:1;padding-bottom:1.25rem}.profile__info .profile__info-item.delimiter .essential__info-type{border-radius:1.25rem}.profile__info .profile__info-item__title-mobile{margin:0;display:block;font-weight:600;font-size:1.25rem;line-height:1.75rem}.profile__info .profile__info-item{order:2;margin:0}.profile__info .profile__info-item .profile__info-item__title{display:none}.profile__info .essential__items{display:flex;gap:1.25rem;flex-direction:column}.profile__info .essential__items .essential__item{display:flex;flex-direction:row;gap:0.625rem;border:0;background:rgba(0,0,0,0);align-items:center;padding:0}.profile__info .essential__items .essential__item .essential__item-info span{margin:0}.profile__info .essential__items .essential__item .essential__item-info{font-size:1.125rem;font-weight:400;line-height:1.75rem;color:#141c25}.profile__info .essential__items .essential__item .essential__item-info span{font-size:1rem;line-height:1.5rem;color:#141c25}.profile__info .essential__items .essential__item-icon{height:1.5625rem;width:1.5625rem;filter:grayscale(1);margin:0}}
.essential{width:100%;display:flex;flex-direction:column;border:0.125rem 0 solid #dcdfe9}
@media(max-width: 1100px){.essential{border:0.0625rem solid #dcdfe9;border-bottom:none}}
@media(max-width: 993px){.essential{border:0rem solid #dcdfe9}}
.essential__header{padding:1rem;font-weight:700;border-bottom:0.125rem solid #dcdfe9}
@media(max-width: 1100px){.essential__header{border-bottom:0.0625rem solid #dcdfe9}}
@media(max-width: 993px){.essential__header{font-size:0.875rem;line-height:1.5rem}}
.essential__items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem}
@media(max-width: 993px){.essential__items{display:flex;gap:0.625rem;overflow:auto}}
.essential__item{padding:1rem;border:0.125rem solid #e5e7eb;background-color:#fff;border-radius:10px}
@media(max-width: 1100px){.essential__item{border-bottom:0.0625rem solid #dcdfe9;border-right:0.0625rem solid #dcdfe9}}
@media(max-width: 993px){.essential__item{display:flex;min-width:11.25rem;padding:1rem 1.25rem;flex-direction:column;-moz-column-gap:0.5rem;column-gap:0.5rem}}
.essential__item-icon{width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center}
.essential__item-icon svg path{fill:#fc639e}
@media(max-width: 993px){.essential__item-icon{width:1.25rem;height:1.25rem;margin-bottom:0.375rem}}
.essential__item-info{display:flex;flex-direction:column;font-weight:600;line-height:1.5}
@media(max-width: 993px){.essential__item-info{font-size:1rem}}
.essential__item-info span{color:#999;font-size:0.875rem;line-height:1.43;font-weight:500;margin-top:0.25rem}
.essential__info-text{padding:1rem;font-size:0.875rem;line-height:1.25rem;font-weight:600}
@media(max-width: 993px){.essential__info-text{padding:1rem 1rem 0.4375rem 1rem;font-size:0.75rem;line-height:1.25rem}}
.essential__info-types{padding:1rem;display:flex;-moz-column-gap:0.75rem;column-gap:0.75rem;overflow-x:auto;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;background:#fff}
@media(max-width: 993px){.essential__info-types{-moz-column-gap:0.625rem;column-gap:0.625rem}}
.essential__info-type{min-width:-moz-max-content;min-width:max-content;padding:0.625rem 1rem;color:#666;font-size:0.875rem;line-height:1.25rem;font-weight:600;border-radius:100px;border:1px solid #e5e7eb;background:#fff;text-decoration:none}
@media(max-width: 993px){.essential__info-type{border:1px solid rgba(252,143,184,.2);padding:0.75rem 1.25rem;font-size:0.875rem;font-weight:500;line-height:1.43;color:#252c32}.essential__info-type:nth-child(even){background:#f6e7ee}}
.essential__footer{padding:1rem;display:flex;flex-direction:column;row-gap:1.25rem}
@media(max-width: 1100px){.essential__footer{border-top:0.0625rem solid #dcdfe9;border-bottom:0.0625rem solid #dcdfe9}}
.essential__footer .button{width:100%}
.video-card{overflow:hidden}
.video-card h4{margin-bottom:.5rem}
.video-card .profile__info-description{margin-bottom:2rem;font-size:16px;color:#6b7280;font-weight:500}
.video-card .video{height:45.1875rem;max-height:100%;width:100%;display:flex;align-items:center;justify-content:center;position:relative}
@media(max-width: 1280px){.video-card .video{height:31.25rem}}
@media(max-width: 1100px){.video-card .video{height:25rem}}
@media(max-width: 993px){.video-card .video{height:12.5rem}}
.video-card .video video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.video-card .video__play-btn{cursor:pointer;position:absolute;width:4.375rem;height:4.375rem;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(48,48,54,.5);border:0.3125rem solid #fff}
@media(max-width: 993px){.video-card .video__play-btn{width:2.875rem;height:2.875rem;border:0.1875rem solid #fff}}
.video-card .video__play-btn.hide{display:none}
.video-card__description{padding:2.5rem;width:100%;display:flex;flex-direction:column;row-gap:0.5rem}
@media(max-width: 993px){.video-card__description{padding:0.9375rem 1.25rem}}
.video-card__description span{padding-left:3.625rem}
@media(max-width: 993px){.video-card__description span{padding-left:2.75rem;font-size:0.75rem;line-height:1.25rem}}
.video-card__title{width:100%;font-size:1.125rem;line-height:1.75rem;font-weight:700;display:flex;align-items:center;-moz-column-gap:1.125rem;column-gap:1.125rem}
@media(max-width: 993px){.video-card__title{-moz-column-gap:0.5rem;column-gap:0.5rem;font-size:0.75rem;line-height:1rem}}
.video-card__title-avatar{min-width:2.5rem;height:2.5rem;border-radius:50%;overflow:hidden}
@media(max-width: 993px){.video-card__title-avatar{min-width:2.25rem;height:2.25rem}}
.video-card__title-avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.video-card__actions{margin-left:auto;display:flex;-moz-column-gap:0.9375rem;column-gap:0.9375rem}
@media(max-width: 993px){.video-card__actions{-moz-column-gap:0.1875rem;column-gap:0.1875rem}}
.video-card__action{width:3rem;height:3rem;display:flex;align-items:center;justify-content:center;border:0.0625rem solid #fff;border-radius:50%;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06);transition:all .4s ease}
.video-card__action:hover{box-shadow:0 0.0625rem 0.375rem 0.125rem rgba(39,21,29,.06)}
@media(max-width: 993px){.video-card__action{width:1.875rem;height:1.875rem}}
.video-card__action img{width:1.5rem;height:1.5rem}
@media(max-width: 993px){.video-card__action img{width:0.75rem;height:0.75rem}}
.video__play-btn-gallery{cursor:pointer;width:4.375rem;height:4.375rem;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(48,48,54,.5);border:0.3125rem solid #fff;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}
@media(max-width: 993px){.video__play-btn-gallery{width:2.875rem;height:2.875rem;border:0.1875rem solid #fff}}
.video__play-btn-gallery.hide{display:none}
.profile-gallery__image iframe{width:460px;height:100%}
.video-section-download{display:flex;justify-content:space-between;align-items:center}
@media(max-width: 767px){.video-section-download{flex-direction:column;align-items:flex-start;margin-bottom:1rem}}
.articles{padding:4rem 0}
.articles__holder{display:flex;gap:1.5rem}
@media(max-width: 993px){.articles__holder{flex-direction:column}}
.articles__sidebar{width:30%;height:100%;display:flex;flex-direction:column;row-gap:2rem;position:sticky;left:0;top:3rem;padding-top:2rem}
@media(max-width: 1280px){.articles__sidebar{width:40%}}
@media(max-width: 993px){.articles__sidebar{position:static;width:100%}}
.articles__sidebar-menu{display:flex;flex-direction:column;padding-bottom:2rem;border-bottom:0.0625rem solid #d1d5db}
.articles__sidebar-menu__title{margin-bottom:0.875rem;color:#252c32;font-size:16px;font-style:normal;font-weight:500}
@media(max-width: 993px){.articles__sidebar-menu__title{font-size:0.875rem;line-height:1.3125rem}}
.articles__sidebar-menu__items{display:flex;flex-direction:column;row-gap:1rem}
.articles__sidebar-menu__item{color:#252c32;font-size:0.875rem;font-weight:600;line-height:1.25rem;padding:0.875rem 1rem;border-radius:0.5rem;background-color:#fff;text-decoration:none;border:1px solid #e5e7eb}
.articles__sidebar-menu__item.active{padding:0.721875rem 1rem;border-radius:8px;border:1px solid #000;background:#252c32;box-shadow:0 1px 2px 0 rgba(1,18,34,.04);color:#fff}
.articles__sidebar-news__title{margin-bottom:0.5rem;font-weight:500;font-size:0.875rem;line-height:1.25rem}
.articles__sidebar-news .form-field__input{margin-bottom:0.875rem;padding:0.75rem 1.25rem;font-weight:400;border-radius:0.25rem;background-color:#fff}
.articles__sidebar-news .form-field__input::-moz-placeholder{font-weight:400;color:#b0babf}
.articles__sidebar-news .form-field__input::placeholder{font-weight:400;color:#b0babf}
@media(max-width: 993px){.articles__sidebar-news .button div,.articles__sidebar-news .button span{padding:0.625rem 0.75rem}}
.articles__content{width:70%}
@media(max-width: 1280px){.articles__content{width:60%}}
@media(max-width: 993px){.articles__content{width:100%}}
.articles__header{margin-bottom:1.5rem;display:flex;align-items:center;justify-content:space-between}
@media(max-width: 993px){.articles__header{margin-bottom:1rem}}
.articles__title{margin:0;font-size:1.5rem;font-weight:500;line-height:2.25rem}
@media(max-width: 993px){.articles__title{font-size:1.125rem;line-height:1.5rem}}
.articles__link{display:inline-flex;width:-moz-max-content;width:max-content;text-decoration:none !important}
@media(max-width: 993px){.articles__link{font-weight:400}}
.articles__link:hover{text-decoration:underline}
.articles__cards{display:flex;flex-wrap:wrap;gap:1.5rem}
.articles__card{width:calc(50% - 0.75rem);display:flex;flex-direction:column;padding:0.609375rem;border-radius:1.125rem;border:0.0625rem solid #e5e7eb;background-color:#fff;box-shadow:0 0.0625rem 0.0625rem 0 rgba(1,18,34,.08),0px 1px 1px 0px rgba(1,18,34,.08);position:relative}
.articles__card-title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
@media(max-width: 1280px){.articles__card{width:100%}}
@media(max-width: 993px){.articles__card{border:0.0625rem solid #dcdfe9}}
.articles__card-img{height:18.3125rem;border-radius:0.25rem 0.25rem 0 0;overflow:hidden}
@media(max-width: 993px){.articles__card-img{height:12.875rem}}
.articles__card-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.articles__card-content{padding:1.25rem;display:flex;flex-direction:column;row-gap:0.625rem;color:#252c32;text-decoration:none}
.articles__card-content-position{position:absolute;bottom:0;left:0;right:0}
.articles__card-content-position .articles__card-date,.articles__card-content-position .articles__card-title{color:#fff;font-size:12px;font-weight:500;line-height:1.22;letter-spacing:0}
.articles__card-content:hover .articles__card-link{text-decoration:underline}
@media(max-width: 993px){.articles__card-content{padding:1rem 0.375rem 0.375rem 0.375rem}}
.articles__card-date{color:#6b7280;font-weight:400;font-size:0.875rem;line-height:1.25rem}
@media(max-width: 993px){.articles__card-date{color:#6b7280;font-size:0.75rem;line-height:1.25rem;font-weight:400}}
.articles__card-title{font-weight:500;font-size:1rem;line-height:1.75rem}
@media(max-width: 993px){.articles__card-title{font-size:0.875rem;line-height:1.375rem}}
.articles__card-link{font-size:0.875rem;font-weight:600;line-height:1.25rem;text-decoration:none;color:#e96194}
@media(max-width: 993px){.articles__card-link{font-weight:700}}
.articles__button{margin:4rem auto 0;width:10.3125rem}
@media(max-width: 993px){.articles__button{margin-top:1.25rem;width:8.75rem}.articles__button div,.articles__button span{padding:0.375rem 0.75rem}}
.profile__holder{padding-top:3rem}
@media(max-width: 993px){.profile__holder{padding-top:0rem}}
.profile__card{display:flex;flex-direction:column;row-gap:2.5rem}
@media(max-width: 993px){.profile__card{row-gap:1.25rem;background:rgba(0,0,0,0)}}
.profile__content{display:flex;-moz-column-gap:2.25rem;column-gap:2.25rem}
@media(max-width: 1100px){.profile__content{flex-direction:column}}
@media(max-width: 993px){.profile__content{padding-bottom:1.25rem}}
.profile__info{flex:1;display:flex;flex-direction:column;row-gap:1rem;width:calc(100% - 24rem - 2.25rem)}
@media(max-width: 1100px){.profile__info{row-gap:1.875rem;width:100%}}
@media(max-width: 993px){.profile__info{row-gap:1.25rem}}
.profile__info>.button{align-self:flex-start}
.profile__info .delimiter{padding-bottom:3.75rem;border-bottom:0.0625rem solid #e5e7eb}
@media(max-width: 1100px){.profile__info .delimiter{padding-bottom:2.5rem}.profile__info .delimiter.map__holder{padding-bottom:0;border:0}}
.profile__info-item{display:flex;flex-direction:column;row-gap:3rem}
@media(max-width: 1100px){.profile__info-item{margin-top:0.625rem;row-gap:1.875rem}}
@media(max-width: 993px){.profile__info-item{margin-top:1.25rem;row-gap:1.25rem}}
.profile__info-item__title{margin:0;padding-top:2rem;font-size:1.5rem;font-weight:600;line-height:2rem}
.profile__info-item .essential__info-types{padding:0;background:none;border:none}
.profile__info-item .essential__info-type{display:flex;align-items:center;gap:8px;padding:0.625rem 1.25rem;font-size:0.875rem;line-height:1.25rem;font-weight:500;border-radius:8px;text-decoration:none;color:#252c32;background:#e5e7eb}
@media(max-width: 993px){.profile__info-item .essential__info-type{border:1px solid #e5e7eb;font-size:0.875rem;font-weight:500;line-height:1.43;background:#f6e7ee;border:1px solid rgba(252,143,184,.2);border-radius:0.375rem;color:#252c32;opacity:1}}
.profile__info .contact-details{border-radius:16px;border:1px solid #fc8fb8;background:#ffe4f1;padding:1.25rem}
.profile__info .contact-details .button{width:-moz-max-content;width:max-content;padding:.5rem 1em}
@media(max-width: 1100px){.profile__info .notification{margin-top:0.625rem}}
@media(max-width: 993px){.profile__info .notification{margin-top:1.25rem}}
.profile__sidebar{width:24rem;height:100%;display:flex;flex-direction:column;row-gap:0.25rem;position:sticky;top:7rem;right:0}
@media(max-width: 1100px){.profile__sidebar{width:100%;position:static;margin-top:40px}}
.profile__sidebar-form{border-radius:16px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 6px 21px 0 rgba(182,182,182,.2)}
.profile__sidebar-title{padding:1.125rem 1.875rem;font-size:1.25rem;line-height:1.75rem;font-weight:500;border-radius:16px 16px 0px 0px;border-bottom:1px solid #dcdfe9;background:#f9fafb}
@media(max-width: 993px){.profile__sidebar-title{padding:1rem;font-size:0.875rem;line-height:1.5rem}}
.profile__sidebar .checkbox-wrapper{padding:1.25rem 0.9375rem 1.25rem 1.875rem;border-bottom:0.0625rem solid #dcdfe9}
@media(max-width: 993px){.profile__sidebar .checkbox-wrapper{padding:0.875rem}}
.profile__sidebar-footer{padding:1.875rem 1.875rem 1.25rem 1.875rem;display:flex;flex-direction:column;align-items:center;row-gap:1.25rem;font-size:0.875rem;line-height:1.25rem;font-weight:500}
@media(max-width: 993px){.profile__sidebar-footer{padding:1.25rem 1rem;row-gap:1.125rem}}
.profile__sidebar-footer .button{width:100%}
@media(max-width: 993px){.profile__sidebar-footer .button img{width:1.25rem;height:1.25rem}}
.profile__sidebar-note{text-align:center;font-size:14px;font-width:500;line-height:20px;color:#6b7280;margin-bottom:0 !important}
.profile__sidebar-delimiter{width:100%;position:relative;display:flex;align-items:center;justify-content:center}
.profile__sidebar-delimiter::before{content:"";height:0.125rem;width:100%;top:50%;left:0;position:absolute;background-color:#dcdfe9}
@media(max-width: 993px){.profile__sidebar-delimiter::before{height:0.0625rem}}
.profile__sidebar-delimiter__text{padding:0 0.5rem;position:relative;color:#888;font-size:1rem;font-weight:500;line-height:1.5rem;background-color:#fff}
@media(max-width: 993px){.profile__sidebar-delimiter__text{font-size:0.875rem;line-height:0.875rem}}
.profile__sidebar-telephone{display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem;color:#252c32;font-weight:500;font-size:16px;text-decoration:none}
@media(max-width: 993px){.profile__sidebar-telephone{font-size:0.875rem;line-height:1.5rem;font-weight:500}}
.profile__sidebar-telephone:hover{text-decoration:underline}
.profile__sidebar-telephone img{width:1.125rem;height:1.125rem}
@media(max-width: 993px){.profile__sidebar-telephone img{width:0.875rem;height:0.875rem}}
.profile__sidebar-rare{padding:1.875rem;display:flex;flex-direction:column;row-gap:0.5rem;border-radius:0.5625rem;border:0.125rem solid #dcdfe9;background-color:#fff;box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06)}
@media(max-width: 993px){.profile__sidebar-rare{row-gap:1rem}}
.profile__sidebar-rare__title{display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;font-weight:700}
.profile__sidebar-rare__title img{width:1.25rem;height:1rem}
.profile__sidebar-rare p{margin:0 0 0.375rem 0;font-size:0.875rem;line-height:1.25rem;font-weight:600}
@media(max-width: 993px){.profile__sidebar-rare p{font-weight:400}}
.profile__house-presentation{display:flex;flex-direction:column;row-gap:2.25rem}
.profile__house-plan{max-height:40.3125rem;padding:2.085rem 3.11625rem;display:flex;-moz-column-gap:1.4825rem;column-gap:1.4825rem;border-radius:0.625rem;border:0.125rem solid #e5e7eb;background-color:#f7f7f8}
@media(max-width: 993px){.profile__house-plan{padding:0.625rem;-moz-column-gap:0.625rem;column-gap:0.625rem}}
.profile__house-plan__img{width:50%;max-height:36.25rem;height:100%}
.profile__house-plan__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.description-text p{display:flex;flex-direction:column}
.profile-section-mb{margin-bottom:2.5rem}
@media(max-width: 993px){.profile-section-mb{margin:1.25rem 0 0 0}}
.profile-section-mb:last-child{margin-bottom:2.5rem}
@media(max-width: 993px){.profile-section-mb:last-child{margin-top:1.25rem}}
.profile-metterport-section__inner{height:45rem}
@media(max-width: 993px){.profile-metterport-section__inner{height:12.5rem}}
.profile-video-section,.profile-metterport-section,.profile-table{padding-top:2rem;border-top:.0625rem solid #e5e7eb}
.profile-video-section h4,.profile-metterport-section h4,.profile-table h4{margin-bottom:.5rem}
@media(max-width: 993px){.profile-video-section h4,.profile-metterport-section h4,.profile-table h4{font-size:1.25rem;padding-top:0}}
.profile-video-section .profile__info-description,.profile-metterport-section .profile__info-description,.profile-table .profile__info-description{margin-bottom:2rem;font-size:16px;color:#6b7280;font-weight:500}
@media(max-width: 993px){.profile-video-section .profile__info-description,.profile-metterport-section .profile__info-description,.profile-table .profile__info-description{font-size:0.875rem;margin-bottom:1.5rem}}
.profile-table #compare-home-table{width:100%;border-right:.0625rem solid #e5e7eb}
.profile-table #compare-home-table th{background:#f8f8f8;padding:15px;font-weight:400;border:.0625rem solid #e5e7eb;border-right:0;margin:0 !important;border-bottom:0}
.profile-table #compare-home-table td{background:#fff;padding:15px;font-weight:400;border-bottom:.0625rem solid #e5e7eb;border-left:.0625rem solid #e5e7eb;border-top:0;border-left:0;margin:0 !important}
.single-profile-wrapper{display:flex;flex-direction:column-reverse}
@media(max-width: 993px){.single-profile-wrapper{flex-direction:column}}
.single-profile-wrapper .flex-buttons{display:flex;flex-direction:column;gap:1rem;align-items:flex-start;width:25%}
.single-profile-wrapper .flex-buttons.is_verified{margin-top:0}
.single-profile-wrapper .flex-buttons__main{display:grid;grid-template-columns:1fr 1fr;gap:1rem;width:100%}
.single-profile-wrapper .flex-buttons__main .button{width:100%;padding:.5rem}
.single-profile-wrapper .flex-buttons__main.single_btn{grid-template-columns:100%}
@media(max-width: 1280px){.single-profile-wrapper .flex-buttons__main{grid-template-columns:100%}}
@media(max-width: 993px){.single-profile-wrapper .flex-buttons__main{grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:0}}
@media(max-width: 479px){.single-profile-wrapper .flex-buttons__main{grid-template-columns:100%}}
.single-profile-wrapper .flex-buttons__sub{display:grid;grid-template-columns:100%;width:100%;gap:1rem}
.single-profile-wrapper .flex-buttons__sub.single_btn{grid-template-columns:100%}
.single-profile-wrapper .flex-buttons__sub .share_link{display:flex;align-items:center;justify-content:flex-end;gap:8px;cursor:pointer;transition:.3s ease-in-out}
.single-profile-wrapper .flex-buttons__sub .share_link:hover{color:#ff639e}
.single-profile-wrapper .flex-buttons__sub .share_link:hover svg path{stroke:#ff639e}
.single-profile-wrapper .flex-buttons__sub .share_link svg{width:18px;height:18px}
.single-profile-wrapper .flex-buttons__sub .share_link svg path{stroke:#1e1e1e;transition:.3s ease-in-out}
@media(max-width: 993px){.single-profile-wrapper .flex-buttons__sub{grid-template-columns:1fr 1fr;justify-content:space-between}}
@media(max-width: 479px){.single-profile-wrapper .flex-buttons__sub{grid-template-columns:170px 1fr;justify-content:center}}
.single-profile-wrapper .flex-buttons .button__review--wrap{margin-top:0}
@media(max-width: 993px){.single-profile-wrapper .flex-buttons{margin-top:1rem;gap:1.25rem;width:100%;flex-direction:column-reverse}}
.single-profile-wrapper .button-save{display:none;padding:.625rem 1rem;border:1px solid #e5e7eb;box-shadow:0 1px 2px 0 rgba(16,24,40,.05);font-weight:500;font-size:16px;line-height:24px;letter-spacing:0;color:#252c32}
@media(max-width: 993px){.single-profile-wrapper .button-save{display:flex}}
.single-profile-wrapper .button-save span{padding:0}
.support-section .profile{display:flex;gap:2rem}
.support-section .profile .profile-image{position:relative}
.support-section .profile .profile-image img{width:140px;height:140px;border-radius:999px}
.support-section .profile .profile-image .profile-batch{position:absolute;top:0;right:-1rem}
.support-section .profile .title{font-size:1.75rem;color:#252c32;font-weight:600;text-align:left}
.support-section .profile .flex-1{flex:1}
.support-section .profile .home{font-size:0.875rem;color:#6b7280;font-weight:400;text-align:left}
.support-section .profile .contact-button{width:-moz-max-content;width:max-content;float:right}
@media(max-width: 993px){.support-section .profile .contact-button{width:100%;padding:2px;margin-top:1rem}}
.support-section .experience_section{margin-top:2rem;display:flex;gap:2rem}
@media(max-width: 1100px){.support-section .experience_section{flex-wrap:wrap}}
.support-section .experience_section .ex_title{font-size:1.125rem;font-width:600}
.support-section .experience_section .border-top{margin-top:1rem;padding-top:1rem;border-top:1px solid #e5e7eb}
.support-section .experience_section .ex-col{border-radius:32px;border:1px solid #e5e7eb;background:#fff;padding:2rem}
@media(max-width: 993px){.support-section .experience_section .ex-col{width:100%}}
.support-section .experience_section .ex-col p{font-size:14px;margin-bottom:0}
.support-section .experience_section .ex_2_title{font-size:0.875rem;font-weight:500;margin-bottom:10px}
.support-section .experience_section .ex_3_title{font-size:0.75rem;font-weight:400;margin-top:1rem}
.support-section .experience_section .skill{display:flex;flex-wrap:wrap;gap:.5rem}
.support-section .experience_section .skill li{border-radius:8px;border:1px solid #e5e7eb;font-size:0.75rem;font-weight:500;padding:2px 10px}
.flex-1{flex:1}
.availability_check{display:flex;align-items:center;justify-content:flex-end;width:100%;font-size:0.875rem;line-height:1.43;font-weight:500;color:#ff639e;text-decoration:none}
@media(max-width: 993px){.availability_check{justify-content:flex-start}}
.view-profile{font-size:16px;border-radius:8px;text-decoration:none;outline:none;display:flex;min-width:-moz-max-content;min-width:max-content;padding:.59375rem .975rem;align-items:center;justify-content:center;-moz-column-gap:.45625rem;column-gap:.45625rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;line-height:1.5rem;font-weight:400;color:#252c32;background:#fc8fb8;box-shadow:0 1px 2px 0 rgba(1,18,34,.04);transition:all .5s ease-in-out;border:none;color:#fff !important}
.big-card .flex{align-items:baseline}
.big-card__controlls{display:flex;flex-direction:column;gap:1rem}
.big-card__controlls .share_link{display:flex;align-items:center;justify-content:flex-end;gap:8px;cursor:pointer;transition:.3s ease-in-out}
.big-card__controlls .share_link:hover{color:#ff639e}
.big-card__controlls .share_link:hover svg path{stroke:#ff639e}
.big-card__controlls .share_link svg{width:18px;height:18px}
.big-card__controlls .share_link svg path{stroke:#1e1e1e;transition:.3s ease-in-out}
@media(max-width: 993px){.big-card__controlls{width:100%;flex-direction:column-reverse}}
.flex-buttons-big{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width: 993px){.flex-buttons-big{width:100%}}
@media(max-width: 479px){.flex-buttons-big{grid-template-columns:100%}}
.flex-buttons-big .view-profile--wrap{display:flex;position:relative}
.flex-buttons-big .view-profile--wrap:hover p{opacity:1}
.flex-buttons-big .view-profile--wrap p{display:flex;align-items:center;justify-content:center;width:100%;opacity:0;position:absolute;bottom:calc(100% + 12px);background:#fff;padding:0.5rem;border-radius:12px;box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863);margin:0;transition:.2s ease-in-out;font-size:0.875rem}
.flex-buttons-big .view-profile--wrap p span{display:inline-block;width:100%;color:#252c32}
.flex-buttons-big .view-profile--wrap p:after{content:"";display:block;position:absolute;bottom:-4px;width:8px;height:4px;background:#fff;clip-path:polygon(50% 100%, 0 0, 100% 0);box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863)}
@media(max-width: 993px){.flex-buttons-big .view-profile--wrap p{display:none}}
.flex-buttons-big .pass-profile-name{width:46% !important;display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
.one-button-big{display:grid;grid-template-columns:100%;margin-bottom:2rem}
@media(max-width: 993px){.one-button-big{width:50%}}
.flex-justify-between{display:flex;justify-content:space-between;flex-direction:row}
@media(max-width: 993px){.flex-justify-between{flex-direction:column;margin-top:1rem}}
.reference__holder{display:flex;flex-direction:column;border-radius:0.625rem;overflow:hidden;border:0.125rem solid #dcdfe9;background-color:#fff;box-shadow:0 0.125rem 0.125rem 0 rgba(1,18,34,.19)}
@media(max-width: 993px){.reference__holder{border:0.0625rem solid #dcdfe9}}
.reference__img{width:100%;height:25.5rem}
@media(max-width: 993px){.reference__img{height:12.5rem}}
.reference__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top}
.reference__content{padding:3.75rem 4.625rem;display:flex;flex-direction:column;row-gap:1rem}
.reference__content .reviews__rating{margin:0;display:flex;align-items:center;justify-content:center}
@media(max-width: 1100px){.reference__content{padding:2.5rem}}
@media(max-width: 993px){.reference__content{padding:1rem}}
.reference__title{margin:0}
@media(max-width: 993px){.reference__title{font-size:1rem}}
.reference__text{margin:0;text-align:center;color:#888;font-weight:600}
@media(max-width: 993px){.reference__text{font-size:0.75rem}}
.reference__form{display:flex;flex-direction:column;row-gap:1.875rem}
@media(max-width: 993px){.reference__form{row-gap:1rem}}
.reference__form .form-field__label{margin:0.875rem 0;font-size:1rem;line-height:1.5rem;font-weight:600}
@media(max-width: 993px){.reference__form .form-field__label{margin:0 0 0.75rem 0;font-size:0.875rem;line-height:1.3125rem}}
.reference__form .form-field__textarea{padding:1.5rem 1.75rem;border:0.0625rem solid #e5e7eb;background-color:#f7f7f8;height:10.75rem}
.reference__form .form-field__textarea::-moz-placeholder{color:#888;font-size:0.875rem;line-height:1.25rem;font-weight:400}
.reference__form .form-field__textarea::placeholder{color:#888;font-size:0.875rem;line-height:1.25rem;font-weight:400}
@media(max-width: 993px){.reference__form .form-field__textarea::-moz-placeholder{font-size:0.75rem;line-height:1.25rem}.reference__form .form-field__textarea::placeholder{font-size:0.75rem;line-height:1.25rem}.reference__form .form-field__textarea{padding:0.8125rem 1.25rem;height:6.875rem}}
.reference__form .button{width:12rem;align-self:flex-end}
@media(max-width: 993px){.reference__form .button{width:8.75rem}}
.booking__holder{display:flex;-moz-column-gap:2.25rem;column-gap:2.25rem}
@media(max-width: 1100px){.booking__holder{flex-direction:column;row-gap:2.5rem}}
.booking__content{display:flex;flex-direction:column;row-gap:3rem;width:71%}
.booking__content .reference_section img{width:100%}
@media(max-width: 1280px){.booking__content{width:60%}}
@media(max-width: 1100px){.booking__content{width:100%}}
@media(max-width: 993px){.booking__content{row-gap:2.5rem}}
.booking__item{padding-bottom:3rem;display:flex;flex-direction:column;row-gap:3rem;overflow:hidden;border-bottom:0.0625rem solid #e5e7eb}
.booking__item .swiper-slide{display:flex;flex-direction:column;gap:16px}
.booking__item .swiper-notification{display:none}
@media(max-width: 993px){.booking__item{border-bottom:0;padding-bottom:0;row-gap:2rem}}
.booking__calendar{display:flex;flex-direction:column;row-gap:2rem;padding:0 0.625rem;overflow:hidden}
@media(max-width: 993px){.booking__calendar{row-gap:1.25rem;order:1}}
.booking__calendar .swiper-notification{display:none}
.booking__calendar .select__options{height:13.125rem;overflow:auto}
@media(max-width: 993px){.booking__calendar .select__options{height:9.375rem}}
.booking__time{display:flex;flex-direction:column;row-gap:1rem}
@media(max-width: 993px){.booking__time{row-gap:1.25rem;order:2}}
.booking__time .booking__title{margin-bottom:1rem;font-size:1.5rem;font-style:normal;font-weight:500;line-height:2rem}
@media(max-width: 993px){.booking__time .booking__title{margin:0}}
.booking__timezone{width:-moz-max-content;width:max-content}
.booking__timezone .select-opener{max-width:-moz-max-content;max-width:max-content;border:0;padding:0.75rem 1.25rem 0.75rem 0;font-size:1.25rem;font-weight:600;line-height:1.75rem}
@media(max-width: 993px){.booking__timezone .select-opener{padding:0;font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.booking__time-tour{min-width:-moz-max-content;min-width:max-content;display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem;font-size:1.25rem;font-weight:500;line-height:1.75rem}
@media(max-width: 993px){.booking__time-tour{-moz-column-gap:0.25rem;column-gap:0.25rem;font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.booking__time-tour-icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
@media(max-width: 993px){.booking__time-tour-icon{width:1.25rem;height:1.25rem}}
.booking__time-slots{display:flex;flex-wrap:wrap;justify-content:space-around;gap:1.25rem}
@media(max-width: 993px){.booking__time-slots{gap:0.625rem}}
.booking__time-slot{width:9.6875rem;padding:0.875rem 0.625rem;display:flex;align-items:center;justify-content:center;border-radius:0.625rem;border:0.076875rem solid #e5e7eb;background-color:#fff;font-size:1.25rem;line-height:1.75rem;font-weight:500;cursor:pointer;transition:all .3s linear,box-shadow .15s linear}
@media(max-width: 993px){.booking__time-slot{width:6.5625rem;padding:0.4375rem 0.625rem;font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.booking__time-slot.active{position:relative;border-radius:16px;border:1.23px solid #fc8fb8;background:#fff}
.booking__time-footnote{margin-top:0.875rem;font-size:1rem;font-style:normal;font-weight:500;line-height:1.5rem;color:#f17ca8;text-align:center}
@media(max-width: 993px){.booking__time-footnote{margin:0;font-size:0.75rem;line-height:1.5rem}}
.booking__header{display:flex;align-items:center;justify-content:space-between;-moz-column-gap:1.5rem;column-gap:1.5rem;color:#252c32;font-size:1.5rem;font-style:normal;font-weight:600;line-height:2rem}
@media(max-width: 993px){.booking__header{-moz-column-gap:0.375rem;column-gap:0.375rem}}
.booking__title{margin:0;font-size:1.5rem;font-weight:600;line-height:2rem}
.booking__title.flex-title{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;gap:1rem}
@media(max-width: 993px){.booking__title{font-weight:600;font-size:1.25rem;color:#000;width:100%}}
.booking__card{width:100%;height:100%}
@media(max-width: 993px){.booking__card{row-gap:unset}.booking__card .button{padding:0.5rem 0}.booking__card .card__footer .button div,.booking__card .card__footer .button span{padding:0}.booking__card .card__title{display:flex;flex-direction:column;align-items:self-start;gap:0;font-size:1rem;line-height:1.42;font-weight:500;color:hsla(0,0%,100%,.9);text-decoration:underline;color:#fff}.booking__card .card__img{height:100%;position:relative}.booking__card .card__img:after{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;background:rgba(0,0,0,.3)}.booking__card .card__img img{display:block;width:100%;height:100%;max-height:250px;aspect-ratio:1/.8}.booking__card .card__price,.booking__card .card__adress{display:none !important}.booking__card .card__adress-icon{display:none}.booking__card .card__description{position:absolute;left:0;bottom:0.875rem;z-index:3;width:100%}}
.booking__month{width:-moz-max-content;width:max-content;border-radius:0.5rem;border:1px solid #e5e7eb;background:#fff;box-shadow:0px 1px 2px 0px rgba(1,18,34,.04)}
@media(max-width: 993px){.booking__month .select-opener{font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.booking__day{padding:1.4375rem 0;display:flex;flex-direction:column;row-gap:1.5rem;align-items:center;border-radius:0.75rem;border:0.0875rem solid #e7e7e7;background-color:#fff;transition:all .15s linear}
@media(max-width: 993px){.booking__day{padding:0.625rem 0}}
.booking__day-slide{padding:0.3125rem 0;cursor:pointer;height:100%;transition:all .3s linear}
.booking__day-slide:not(.disabled,.active):hover .booking__day{box-shadow:0 .0625rem .5rem .375rem rgba(39,21,29,.06)}
.booking__day-slide.active{padding:0rem;position:relative;border-radius:24px;border:1px solid #e5e7eb;background:#fff}
.booking__day-slide.active .booking__day{border-color:#fc8fb8}
.booking__day-slide.disabled .booking__day{background-color:#f8f8f8;border-color:#e5e7eb}
.booking__day-slide.disabled .booking__day-title{color:#b0babf;font-weight:500 !important}
.booking__day-slide.disabled .booking__day-number{color:#b0babf}
.booking__day-slide.disabled .booking__day-slots{color:#b0babf}
.booking__day-title{margin:0;font-size:1.5rem;font-weight:600;line-height:2rem}
@media(max-width: 993px){.booking__day-title{font-size:0.875rem;line-height:1.0625rem}}
.booking__day-number{color:#fc8fb8;font-size:2.25rem;font-weight:600;line-height:2.75rem}
@media(max-width: 993px){.booking__day-number{font-size:1.75rem;line-height:1.4375rem}}
.booking__day-slots{display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;font-size:1.25rem;font-weight:500;line-height:1.75rem}
@media(max-width: 993px){.booking__day-slots{font-size:0.5rem;line-height:0.625rem;-moz-column-gap:0.25rem;column-gap:0.25rem}}
.booking__day-circle{min-width:1.25rem;height:1.25rem;border-radius:50%;background-color:#22c55e}
@media(max-width: 993px){.booking__day-circle{min-width:0.4375rem;height:0.4375rem}}
.booking__day-circle.yellow{background-color:#f8c513}
.booking__sidebar{flex:1;height:100%;display:flex;flex-direction:column;row-gap:0.25rem;position:sticky;top:5.625rem;right:0}
.booking__sidebar .profile__sidebar-rare{margin-top:2rem;border-radius:16px;border:1px solid #dcdfe9;background:#f5f5f5}
@media(max-width: 1100px){.booking__sidebar{position:static;order:0}}
.book{border-radius:16px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 6px 21px 0 rgba(182,182,182,.2)}
.book__title{padding:1.125rem 1.875rem;background-color:#f9fafb;border-bottom:0.125rem solid #e5e7eb;font-size:1.25rem;font-weight:500;line-height:1.75rem;border-radius:16px 16px 0 0}
@media(max-width: 993px){.book__title{padding:0.6875rem 1rem;font-size:0.875rem;line-height:1.5rem}}
.book__content{padding:1.875rem 1.875rem 1.25rem 1.875rem;display:flex;flex-direction:column;row-gap:1.25rem}
@media(max-width: 993px){.book__content{padding:1.25rem 1rem;row-gap:1.125rem}}
.book__selects{display:flex;flex-direction:column;border-radius:0.25rem;background-color:#fff;gap:1rem}
.book__datepicker-input{cursor:pointer;transition:all .3s ease}
.book__select{position:relative}
.book__select input{border-radius:8px 8px 0 0;border:1px solid #e5e7eb !important;background:#f9f9fb}
.book__select svg{position:absolute;right:1em;top:50%;transform:translate(-50%, -50%)}
.book__select:first-child .select-opener,.book__select:first-child .book__datepicker-input{border-radius:0.5rem 0.5rem 0 0}
.book__select:last-child .select-opener{border-radius:0 0 0.5rem 0.5rem}
.book__select-label{position:absolute;left:1rem;top:0.9375rem;font-weight:500;color:#252c32}
@media(max-width: 993px){.book__select-label{font-size:1rem;line-height:1.5rem;top:1rem}}
.book__select .select-opener,.book__select .book__datepicker-input{width:100%;padding:1rem 2.5rem 1rem 1rem;border:0;border-radius:0;border-bottom:0.0625rem solid #252c32;font-size:1rem;line-height:1.5rem;font-weight:500;color:#252c32;outline:none}
@media(max-width: 993px){.book__select .select-opener,.book__select .book__datepicker-input{font-size:0.75rem;line-height:1.5rem}}
.book__select--date .book__datepicker-input{padding-left:4.35em}
@media(max-width: 993px){.book__select--date .book__datepicker-input{padding-left:5.125rem}}
.book__select--time .book__datepicker-input{padding-left:5.125rem}
.book__select--guest .book__datepicker-input{padding-left:5rem;border-bottom:none;border-radius:0 0 0.5rem 0.5rem}
@media(max-width: 993px){.book__select--guest .book__datepicker-input{padding-left:5.125rem !important}}
.book__select--guest .select-opener{padding-left:5rem}
@media(max-width: 993px){.book__select--guest .select-opener{padding-left:4.0625rem}}
.book__select:last-child .select-opener{border-bottom:0}
.book__btns{display:flex;-moz-column-gap:1rem;column-gap:1rem}
.book__btns .button-gray{border-radius:8px;border:1px solid #d1d5db;background:#d1d5db;color:#fff}
.book__btns .button-shadow{border-radius:8px;border:1px solid #e5e7eb;box-shadow:0 1px 2px 0 rgba(16,24,40,.05)}
@media(max-width: 993px){.book__btns{padding:0 1rem;-moz-column-gap:1.125rem;column-gap:1.125rem}}
.book__btns .button{width:50%}
.book .profile__sidebar-footer{padding:0}
.booking__day-title{margin:0;font-size:1.125rem;line-height:1.75rem;font-weight:500 !important}
.booking__day-number{color:#f17ca8;font-size:2.25rem;font-weight:500;line-height:2.75rem}
.booking__day-slots{display:flex;align-items:center;-moz-column-gap:.5rem;column-gap:.5rem;font-size:1rem;font-style:normal;font-weight:500;line-height:1.5rem}
.booking__day-circle{min-width:10px;height:10px}
.explore-more{padding:6rem 0 4rem;background:#fff}
@media(max-width: 993px){.explore-more{padding:2rem 0;margin:0}}
.explore-more h2{font-size:2.5rem;font-weight:600;line-height:1.38;color:#000;width:50%;margin:0 0 1rem}
@media(max-width: 993px){.explore-more h2{width:100%;font-size:1.625rem}}
.explore-more__subtitle{font-size:1rem;line-height:1.5;color:#6b7280;margin-bottom:4rem}
@media(max-width: 993px){.explore-more__subtitle{margin-bottom:2rem}}
.explore-more .explore-lists{display:grid;grid-template-columns:repeat(4, 1fr);gap:1.875rem 3.125rem}
@media(max-width: 767px){.explore-more .explore-lists{display:grid;grid-template-columns:1fr 1fr;gap:1rem}}
.explore-more .city-wrapper{display:flex;justify-content:flex-start;align-items:flex-start}
.explore-more .city-wrapper a{color:#222;text-decoration:none}
.explore-more .city-wrapper a:hover .city-name,.explore-more .city-wrapper a:hover .profile-name,.explore-more .city-wrapper a:focus .city-name,.explore-more .city-wrapper a:focus .profile-name{color:#fc8fb8}
.explore-more .city-wrapper a .city-name{font-size:0.875rem;line-height:1.43;font-weight:600;color:#222;transition:.3s ease-in-out}
.explore-more .city-wrapper a .profile-name{font-size:0.875rem;line-height:1.43;font-weight:400;color:#6a6a6a;transition:.3s ease-in-out}
.carousel__numbers{width:auto;margin-left:auto;display:flex;align-items:center;font-size:1.125rem;line-height:1.75rem;font-weight:500}
@media(max-width: 993px){.carousel__numbers{font-size:0.875rem;line-height:1.25rem}}
.carousel__header{width:100%;display:flex;justify-content:flex-end}
.carousel__nav{display:flex;-moz-column-gap:1.25rem;column-gap:1.25rem}
@media(max-width: 993px){.carousel__nav{-moz-column-gap:0.375rem;column-gap:0.375rem}}
.carousel__nav-btn{width:2.875rem;height:2.875rem;background:none;padding:0;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;border:0.0625rem solid #e7e7e7;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);box-shadow:0 0.0625rem 0.0625rem 0 rgba(1,18,34,.08),0 0.125rem 0.25rem 0 rgba(1,18,34,.1);transition:all .15s linear}
@media(max-width: 993px){.carousel__nav-btn{width:2rem;height:2rem}}
.carousel__nav-btn svg{fill:#252c32;transition:fill .15s linear}
@media(max-width: 993px){.carousel__nav-btn svg{width:0.875rem;height:0.875rem}}
.carousel__nav-btn:hover svg{fill:#fc8fb8}
.carousel__nav-btn:disabled{border:0.0625rem solid #f8f8f8;box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06)}
.carousel__nav-btn:disabled svg{fill:#999}
.info-header{padding:2.875rem 0 2.875rem 0}
@media(max-width: 993px){.info-header{padding:1.25rem 0}}
.info-header--02{padding:5rem 0;background-color:none;position:relative;overflow:hidden}
.info-header--02 .container{position:relative;z-index:2}
.info-header--02 .info-header--02--bg{position:absolute;left:0;bottom:0;width:100%}
.info-header--02 .about-buttons{width:70%;margin:auto;margin-top:1rem}
@media(max-width: 993px){.info-header--02 .about-buttons{width:100%;margin:auto;margin-top:3.75rem}}
@media(max-width: 767px){.info-header--02 .about-buttons{flex-direction:column;gap:0.75rem;justify-content:center;align-items:center;margin-top:1rem}}
@media(max-width: 993px){.info-header--02{padding:1.25rem 0 2.5rem 0}}
.info-header--02 .info-header__text{text-align:center;font-weight:400;font-size:1.125rem;width:70%;margin:auto}
@media(max-width: 993px){.info-header--02 .info-header__text{width:100%;font-size:1rem}}
.info-header--02 .title{margin:0 0 0.625rem 0;text-align:center;font-weight:500}
@media(max-width: 993px){.info-header--02 .title{margin:0 0 1.25rem 0}}
.info-header--02 .intro__title_pink{color:#ff639e !important;display:block;text-align:center;margin-bottom:15px;font-weight:600}
.info-header .about-buttons{justify-content:center}
.info-header .about-buttons .button{padding-inline:25px;width:-moz-max-content !important;width:max-content !important;box-sizing:border-box;border:1px solid var(--color-border-grey-secondary, #e5e7eb)}
.info-header__holder{display:flex;flex-direction:column;position:relative}
.info-header .mb-4{margin-bottom:2rem}
.info-header .text-white{color:#fff !important}
.info-header .header-bg{position:absolute;bottom:0;right:0}
.info-header__adress{margin:0 0 1rem 0;font-size:1.125rem;line-height:1.75rem;font-weight:500;text-align:center}
@media(max-width: 993px){.info-header__adress{margin:0 0 1.25rem 0;font-size:1rem;line-height:1rem}}
.info-header__text{color:#888;font-size:1.125rem;line-height:1.75rem;font-weight:400;text-align:center}
@media(max-width: 993px){.info-header__text{font-size:1rem;line-height:1.5rem}}
.info-header__note{margin-top:0.625rem;font-size:1.125rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.info-header__note{margin:1.25rem 0 0 0}}
.info-header__checkbox{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 6.25rem;max-width:70%;margin:4.0625rem auto}
@media(max-width: 993px){.info-header__checkbox{max-width:100%;gap:1.25rem 3.125rem;margin:3.125rem auto}}
@media(max-width: 767px){.info-header__checkbox{gap:0.5rem;margin:1rem 0 0}}
@media(max-width: 479px){.info-header__checkbox{grid-template-columns:100%}}
.info-header__checkbox-item{display:flex;align-items:flex-start;gap:0.75rem}
.info-header__checkbox-item span{font-size:1.25rem;line-height:1.4;font-weight:600}
@media(max-width: 767px){.info-header__checkbox-item span{font-size:0.875rem}.info-header__checkbox-item{gap:0.5rem}}
@media(max-width: 993px){.info-header .image-grid{display:none}}
.info-header__decoration{display:grid;grid-template-columns:1fr 2fr 1fr;gap:2rem;margin:5rem 0 0}
@media(max-width: 993px){.info-header__decoration{display:none}}
.info-header__decoration img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-height:37.125rem}
.info-header__decoration .decoration__block{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.info-header__decoration .decoration__block img{aspect-ratio:1.12/1}
.info-header{padding:2.875rem 0 2.875rem 0}
@media(max-width: 993px){.info-header{padding:1.25rem 0}}
.info-header--02{padding:5rem 0;background-color:none;position:relative;overflow:hidden}
.info-header--02 .container{position:relative;z-index:2}
.info-header--02 .info-header--02--bg{position:absolute;left:0;bottom:0;width:100%}
.info-header--02 .about-buttons{width:70%;margin:auto;margin-top:1rem}
@media(max-width: 993px){.info-header--02 .about-buttons{width:100%;margin:auto;margin-top:3.75rem}}
@media(max-width: 767px){.info-header--02 .about-buttons{flex-direction:column;gap:0.75rem;justify-content:center;align-items:center;margin-top:1rem}}
@media(max-width: 993px){.info-header--02{padding:1.25rem 0 2.5rem 0}}
.info-header--02 .info-header__text{text-align:center;font-weight:400;font-size:1.125rem;width:70%;margin:auto}
@media(max-width: 993px){.info-header--02 .info-header__text{width:100%;font-size:1rem}}
.info-header--02 .title{margin:0 0 0.625rem 0;text-align:center;font-weight:500}
@media(max-width: 993px){.info-header--02 .title{margin:0 0 1.25rem 0}}
.info-header--02 .intro__title_pink{color:#ff639e !important;display:block;text-align:center;margin-bottom:15px;font-weight:600}
.info-header .about-buttons{justify-content:center}
.info-header .about-buttons .button{padding-inline:25px;width:-moz-max-content !important;width:max-content !important;box-sizing:border-box;border:1px solid var(--color-border-grey-secondary, #e5e7eb)}
.info-header__holder{display:flex;flex-direction:column;position:relative}
.info-header .mb-4{margin-bottom:2rem}
.info-header .text-white{color:#fff !important}
.info-header .header-bg{position:absolute;bottom:0;right:0}
.info-header__adress{margin:0 0 1rem 0;font-size:1.125rem;line-height:1.75rem;font-weight:500;text-align:center}
@media(max-width: 993px){.info-header__adress{margin:0 0 1.25rem 0;font-size:1rem;line-height:1rem}}
.info-header__text{color:#888;font-size:1.125rem;line-height:1.75rem;font-weight:400;text-align:center}
@media(max-width: 993px){.info-header__text{font-size:1rem;line-height:1.5rem}}
.info-header__note{margin-top:0.625rem;font-size:1.125rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.info-header__note{margin:1.25rem 0 0 0}}
.info-header__checkbox{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 6.25rem;max-width:70%;margin:4.0625rem auto}
@media(max-width: 993px){.info-header__checkbox{max-width:100%;gap:1.25rem 3.125rem;margin:3.125rem auto}}
@media(max-width: 767px){.info-header__checkbox{gap:0.5rem;margin:1rem 0 0}}
@media(max-width: 479px){.info-header__checkbox{grid-template-columns:100%}}
.info-header__checkbox-item{display:flex;align-items:flex-start;gap:0.75rem}
.info-header__checkbox-item span{font-size:1.25rem;line-height:1.4;font-weight:600}
@media(max-width: 767px){.info-header__checkbox-item span{font-size:0.875rem}.info-header__checkbox-item{gap:0.5rem}}
@media(max-width: 993px){.info-header .image-grid{display:none}}
.info-header__decoration{display:grid;grid-template-columns:1fr 2fr 1fr;gap:2rem;margin:5rem 0 0}
@media(max-width: 993px){.info-header__decoration{display:none}}
.info-header__decoration img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-height:37.125rem}
.info-header__decoration .decoration__block{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.info-header__decoration .decoration__block img{aspect-ratio:1.12/1}
.listing__holder{display:flex;-moz-column-gap:1.6875rem;column-gap:1.6875rem}
@media(max-width: 1280px){.listing__holder{flex-direction:column;row-gap:1.875rem}}
.listing__results{flex:1;overflow:hidden}
.listing__results__header{margin-bottom:1.6875rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;row-gap:1.25rem}
.listing__results__btns{display:flex;-moz-column-gap:0.6875rem;column-gap:0.6875rem}
.listing__results__btns .button{width:9.375rem;transition:all .2s ease-in-out}
.listing__results__btns .button svg *[fill]{fill:#252c32;transition:all .2s ease-in-out}
.listing__results__btns .button svg *[stroke]{stroke:#252c32;transition:all .2s ease-in-out}
.listing__results__btns .button.active svg *[fill]{fill:#fff}
.listing__results__btns .button.active svg *[stroke]{stroke:#fff}
@media(max-width: 993px){.listing__results__btns{order:3;width:100%;-moz-column-gap:1.125rem;column-gap:1.125rem}.listing__results__btns .button{width:50%}.listing__results__btns .button div img,.listing__results__btns .button span img{width:1.5rem;height:1.5rem}}
@media(max-width: 479px){.listing__results__btns{flex-direction:column;gap:10px}.listing__results__btns .button{width:100%}}
.listing__results__sort{max-width:12.5rem}
@media(max-width: 993px){.listing__results__sort{max-width:9.5625rem}.listing__results__sort .select .select-opener{padding:0.625rem;font-size:1rem;line-height:1.5rem;font-weight:500;background-size:1.25rem;background-position:calc(100% - 0.75rem)}.listing__results__sort .select.open .select-opener{background-size:1.25rem}}
.listing__results__map iframe,.listing__results__map .map{width:100%;height:43.75rem;border-radius:0.625rem;border:0.0625rem solid #b0babf;overflow:hidden}
@media(max-width: 1280px){.listing__results__map iframe,.listing__results__map .map{height:37.5rem}}
@media(max-width: 1100px){.listing__results__map iframe,.listing__results__map .map{height:31.25rem}}
@media(max-width: 993px){.listing__results__map iframe,.listing__results__map .map{height:12.875rem}}
.listing__results__map iframe .map-house-link,.listing__results__map .map .map-house-link{display:flex;align-items:center;-moz-column-gap:2px;column-gap:2px;padding:4px 6px;font-size:14px;color:#333;line-height:16px;text-decoration:none;font-weight:600}
.listing__results__map iframe .map-house-link::before,.listing__results__map .map .map-house-link::before{content:"";display:block;width:16px;height:16px;background-position:center;background-size:contain;background-repeat:no-repeat;background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="19" viewBox="0 0 21 19" fill="none"><path d="M10.9165 0.613505C10.7491 0.461281 10.5309 0.376953 10.3045 0.376953C10.0781 0.376953 9.8603 0.461281 9.6929 0.613505L0.304688 9.14815H3.03189V17.3303C3.03189 17.5712 3.12778 17.8027 3.29806 17.973C3.4687 18.1433 3.69984 18.2391 3.94108 18.2391H16.6683C16.9095 18.2391 17.1407 18.1433 17.3113 17.973C17.4816 17.8027 17.5775 17.5712 17.5775 17.3303V9.14815H20.3047L10.9165 0.613505ZM13.8544 11.2786L10.681 14.5141C10.4732 14.7263 10.1371 14.7263 9.92946 14.5141L7.85683 12.401L7.49857 12.0357L6.75605 11.2787C6.32195 10.8362 6.08341 10.2482 6.08341 9.6227C6.08341 8.99719 6.32195 8.40924 6.75605 7.96738C7.18455 7.52985 7.753 7.28697 8.3581 7.28156C8.98596 7.27542 9.58673 7.54158 10.0304 7.99464L10.3054 8.27471L10.6066 7.96738C11.0405 7.52479 11.6173 7.28083 12.2307 7.28083C12.8441 7.28083 13.4209 7.52479 13.8548 7.96738C14.7504 8.88018 14.7504 10.3659 13.8548 11.2787L13.8544 11.2786Z" fill="%23FBA6C6"/></svg>')}
.listing__results__map iframe .gm-style .gm-style-iw-c,.listing__results__map .map .gm-style .gm-style-iw-c{border:1px solid #b0babf;box-shadow:none;border-radius:100px;padding:0;top:10px}
.listing__results__map iframe .gm-style .gm-style-iw-c button,.listing__results__map .map .gm-style .gm-style-iw-c button{display:none !important}
.listing__results__map iframe .gm-style .gm-style-iw-d,.listing__results__map .map .gm-style .gm-style-iw-d{padding:0;overflow:hidden !important}
.listing__results__map iframe .gm-style .gm-style-iw-tc,.listing__results__map .map .gm-style .gm-style-iw-tc{display:none}
.filters{width:29%;height:100%;display:flex;flex-direction:column}
@media(max-width: 1280px){.filters{width:100%;border:0}}
.filters__header{padding:1.5rem 1.25rem;display:flex;align-items:center;-moz-column-gap:0.6875rem;column-gap:0.6875rem;font-size:1.125rem;line-height:1.75rem;border-radius:18px 18px 0 0;border:1px solid #e5e7eb;background-color:#f9f9fb}
.filters__header .flex-1{flex:1}
.filters__header-icon{width:2.4375rem;height:2.375rem;border-radius:50%;border:0.0625rem solid #dcdfe9;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);box-shadow:0 0.05rem 0.1rem 0 rgba(39,21,29,.06);display:flex;align-items:center;justify-content:center}
@media(max-width: 1280px){.filters__header-icon{order:2}}
@media(max-width: 993px){.filters__header-icon{width:2rem;height:2rem}}
@media(max-width: 1280px){.filters__header{width:100%;padding:0.4375rem 1rem;border-radius:0.25rem;border:0.0625rem solid #dcdfe9;background-color:#f9fafb;justify-content:space-between;cursor:pointer;align-self:center}}
@media(max-width: 993px){.filters__header{font-size:0.875rem;line-height:1.5rem}}
@media(max-width: 479px){.filters__header{flex-direction:column-reverse;gap:10px}}
.filters__content{transform:translateY(-10%);z-index:-100;opacity:0;transition:.3s linear}
.filters__content.open{transform:translateY(0);z-index:1;opacity:1}
@media(max-width: 1280px){.filters__content{transform:translateY(0);max-height:0;visibility:hidden}.filters__content.open{max-height:unset;visibility:visible;transform:translateY(0)}}
.filters__items{padding:1.25rem 1.25rem 0;display:flex;flex-direction:column;row-gap:1.25rem;border-right:1px solid #e5e7eb;border-left:1px solid #e5e7eb;background:#fff;overflow-y:scroll}
@media(max-width: 993px){.filters__items{padding:1.25rem 0 0 0}}
.filters__item{display:flex;flex-direction:column;font-weight:700;padding:0 0.9375rem}
.filters__item:last-child .filters__item-opener{border-bottom:0}
.filters__item-opener{padding:0 0 1.25rem 0;display:flex;align-items:center;justify-content:space-between;-moz-column-gap:0.625rem;column-gap:0.625rem;border-bottom:0.0625rem solid #e5e7eb;cursor:pointer}
@media(max-width: 993px){.filters__item-opener{font-size:0.875rem;line-height:1.5rem;font-weight:600}}
.filters__item-opener__icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center;transition:all .2s linear}
@media(max-width: 993px){.filters__item-opener__icon{width:1.25rem;height:1.25rem}}
.filters__item-content-wrapper{display:flex;flex-direction:column;row-gap:0.75rem}
.filters__item-content-wrapper .checkbox-wrapper{display:flex;justify-content:space-between}
.filters__item-content-wrapper .checkbox-wrapper .results-count{font-weight:500}
@media(max-width: 993px){.filters__item-content-wrapper .checkbox-wrapper .results-count{font-size:0.875rem;line-height:1.3125rem}}
.filters__sort{padding-bottom:1.25rem;display:flex;flex-direction:column;row-gap:1rem;font-weight:700;border-bottom:0.0625rem solid #e5e7eb}
@media(max-width: 993px){.filters__sort{font-size:0.875rem;line-height:1.3125rem;font-weight:600;row-gap:0.5rem;padding:0 0.9375rem}.filters__sort .select .active .select-opener{background-size:1.25rem}.filters__sort .select .select-opener{font-size:1rem;line-height:1.5rem;font-weight:400;color:#000;background-size:1.25rem}}
.filters__sort-min,.filters__sort-max{position:relative;border-radius:8px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}
.filters__sort-min .form-field__label,.filters__sort-max .form-field__label{color:#888;font-weight:600;font-size:1rem;line-height:1.5rem;position:absolute;top:0.875rem;left:1rem}
@media(max-width: 993px){.filters__sort-min .form-field__label,.filters__sort-max .form-field__label{font-weight:400}}
.filters__sort-min .form-field__input,.filters__sort-max .form-field__input{padding:0.71875rem 1rem 0.71875rem 5.9375rem;font-weight:600;border-radius:0.5rem;background-color:#fff;border:0 !important}
@media(max-width: 993px){.filters__sort-min .form-field__input,.filters__sort-max .form-field__input{color:#000;font-weight:500}}
.filters__footer{padding:1.5rem;display:grid;grid-template-columns:1fr 1fr;align-items:center;justify-content:center;gap:0.625rem;color:#888;font-weight:700;font-size:0.875rem;line-height:1.25rem;border-radius:0 0 18px 18px;border:1px solid #e5e7eb;background:#f9fafb}
@media(max-width: 993px){.filters__footer{padding:1rem}}
@media(max-width: 479px){.filters__footer{grid-template-columns:100%}}
.filters__footer button{width:100%}
.filters__footer button span{pointer-events:none}
.filters__footer button img{pointer-events:none}
.filters__footer img{width:1.125rem;height:1.125rem}
#chart{display:flex;justify-content:space-between;align-items:flex-end;-moz-column-gap:0.5rem;column-gap:0.5rem;height:5rem;width:100%}
.diagram-slider__wrapper{margin-bottom:1.25rem;padding:0 1.25rem}
@media(max-width: 993px){.diagram-slider__wrapper{padding-top:1.25rem}}
.diagram-slider__wrapper .noUi-target.noUi-horizontal{border-radius:0.1875rem;box-shadow:none;transform:translateY(-50%);border:0;z-index:2;background:rgba(0,0,0,0)}
.diagram-slider__wrapper .noUi-target .noUi-connects{background-color:#d1d1d1;border-radius:0rem;height:0.0625rem;top:50%}
.diagram-slider__wrapper .noUi-target .noUi-connect{background-color:#fba6c6}
.diagram-slider__wrapper .noUi-target .noUi-handle{position:absolute;top:calc(50% + -0.3125rem);right:-0.8125rem;width:1.8125rem;height:1.8125rem;border:0.1rem solid #fba6c6;border-radius:50%;box-shadow:0 0.0375rem 0.075rem 0 rgba(39,21,29,.06);background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/handle.svg) no-repeat center,linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.diagram-slider__wrapper .noUi-target .noUi-handle::before,.diagram-slider__wrapper .noUi-target .noUi-handle::after{content:none}
.diagram-slider__wrapper .noUi-tooltip{opacity:0;pointer-events:none;visibility:hidden;font-size:0.75rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;line-height:1rem;color:#fff;padding:0.5rem;background-color:#000;border-radius:0.5rem;bottom:auto;top:2.0625rem;border:0;transition:all .3s ease-in-out}
.diagram-slider__wrapper .noUi-tooltip::before{content:"";position:absolute;top:-0.25rem;left:50%;transform:translateX(-50%);width:0.5rem;height:0.25rem;background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/price-slider-tooltip-arrow.svg) no-repeat center}
.diagram-slider__wrapper .noUi-active .noUi-tooltip{opacity:1;visibility:visible}
.diagram-slider__wrapper .noUi-pips{height:auto}
.diagram-slider__wrapper .noUi-pips .noUi-marker-large{height:0.3125rem}
.diagram-slider__wrapper .noUi-pips .noUi-value{display:none}
.diagram-slider__column{width:calc(11.1111111111% - 0.5rem);background-color:#d1d1d1;transition:background-color .3s;height:0;border-radius:0.3125rem 0.3125rem 0 0}
@keyframes tabsActiver{0%{opacity:0}100%{opacity:1}}
.tab-item{display:none;opacity:0;animation:tabsActiver .5s ease}
.tab-item.active{display:flex;flex-direction:column;opacity:1}
.about-us{padding:3.125rem 0;background-color:#f5f5f5}
.about-us__holder{display:flex;align-items:center;-moz-column-gap:6.25rem;column-gap:6.25rem}
.about-us__holder--right-text{flex-direction:row-reverse}
@media(max-width: 1280px){.about-us__holder{-moz-column-gap:3.125rem;column-gap:3.125rem}}
@media(max-width: 1100px){.about-us__holder{flex-direction:column;row-gap:1.25rem}}
.about-us__info{width:45%}
@media(max-width: 1100px){.about-us__info{width:100%}}
.about-us__info h3{margin:0 0 1.875rem 0;font-size:2.5rem;line-height:3rem;font-weight:500}
@media(max-width: 993px){.about-us__info h3{font-size:1rem;line-height:1.5rem}}
.about-us__info p{font-weight:400}
.about-us__info p:last-child{margin:0}
.about-us__img{width:100%;flex:1;border-radius:1.25rem;overflow:hidden;height:31.25rem;display:flex}
@media(max-width: 1100px){.about-us__img{max-height:31.25rem;height:100%}}
.about-us__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}
.call-block__hodler{display:flex;align-items:center;flex-direction:column;row-gap:1.125rem;padding:5rem 0}
.call-block__hodler .button{width:22.6875rem}
@media(max-width: 993px){.call-block__hodler .button{width:8.75rem}.call-block__hodler{row-gap:1.25rem}}
.call-block__text{font-weight:500}
@media(max-width: 993px){.call-block__text{font-size:0.875rem;line-height:1.5rem}}
.call-block__phone{padding:0.346875rem 0;color:#252c32;font-weight:600;text-decoration:none}
.call-block__phone:hover{text-decoration:underline}
@media(max-width: 993px){.call-block__phone{padding:0;font-size:0.875rem;line-height:1.5rem}}
.culture__holder{display:flex;flex-direction:column;row-gap:3rem}
@media(max-width: 993px){.culture__holder{row-gap:2rem}.culture__header .title{font-weight:600;font-size:1.5rem;line-height:2rem}}
.culture__text{text-align:center;color:#888}
.culture__cards{display:flex;flex-wrap:wrap;gap:0.625rem}
@media(max-width: 993px){.culture__cards{row-gap:1.5rem}}
.culture__card{padding:1.5rem;width:calc(33.333% - 0.625rem);display:flex;flex-direction:column;row-gap:0.625rem;border-radius:0.5rem;border:0.0625rem solid #dcdfe9}
@media(max-width: 1280px){.culture__card{width:calc(50% - 0.625rem)}}
@media(max-width: 993px){.culture__card{padding:1rem;width:100%}}
.culture__card-title{margin:0;font-size:1.5rem;font-weight:600;line-height:2rem}
@media(max-width: 993px){.culture__card-title{font-size:1.125rem;line-height:1.75rem}}
.culture__card-text{color:#888}
.recruit{background-color:#f5f5f5}
.recruit__holder{display:flex;flex-direction:column;padding:5rem 0}
@media(max-width: 993px){.recruit__holder{row-gap:1.25rem}}
.recruit__header{display:flex;flex-direction:column;margin-bottom:2rem}
@media(max-width: 993px){.recruit__header .title{font-weight:600;font-size:1.5rem;line-height:2rem}}
.recruit__header .recruit__text{width:40% !important}
.recruit__text{max-width:50%;color:#6b7280;text-align:center;align-self:center}
.recruit__cards{display:flex;flex-direction:row;gap:1.875rem;flex-wrap:wrap}
@media(max-width: 993px){.recruit__cards{row-gap:1.25rem}}
.recruit__card{padding:1.875rem;width:calc(33% - 30px);border-radius:20px;border:1px solid #dcdfe9;background:#fff;box-shadow:0 1px 2px 0 rgba(39,21,29,.06);display:flex;flex-direction:column;justify-content:space-between}
@media(max-width: 993px){.recruit__card{padding:1.25rem;width:100%}}
.recruit__card-header{margin-bottom:0.625rem;display:flex;align-items:self-start;justify-content:space-between}
.recruit__card .p-rich_text_section,.recruit__card .p-rich_text_list__bullet li{font-weight:400;font-size:16px;color:#6b7280}
.recruit__card .p-rich_text_section{margin-bottom:15px}
.recruit__card p{font-weight:400;font-size:14px}
.recruit__card-title{margin:0;font-size:1.5rem;line-height:2rem;font-weight:500;max-width:75%}
@media(max-width: 993px){.recruit__card-title{font-size:1rem;line-height:1.1875rem}}
.recruit__card-date{color:#888;font-weight:400;font-size:0.875rem}
@media(max-width: 993px){.recruit__card-date{font-size:0.75rem;line-height:1.125rem}}
.recruit__card-text{margin-bottom:1.75rem;padding-bottom:1.75rem;color:#888;font-size:1.125rem;line-height:1.75rem;border-bottom:0.125rem solid #e5e7eb}
@media(max-width: 993px){.recruit__card-text{margin-bottom:1.25rem;padding-bottom:1.25rem;font-size:0.875rem;line-height:1.375rem;font-weight:500}}
.recruit__card-text ul li{display:flex;align-items:center;font-size:1rem}
.recruit__card-text ul li::before{content:"•";color:#888;padding:0 0.5rem}
.recruit__card-footer .button{width:100%;border:1px solid #e5e7eb}
@media(max-width: 993px){.recruit__card-footer .button{width:100%}}
.recruit__conditions{margin-bottom:1.75rem;display:flex;flex-wrap:wrap;align-items:baseline;gap:0.5rem;flex-direction:column}
@media(max-width: 993px){.recruit__conditions{margin-bottom:1.25rem;gap:0.625rem}}
.recruit__condition{display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;color:#252c32;font-weight:600;font-size:1rem}
@media(max-width: 993px){.recruit__condition{-moz-column-gap:0.375rem;column-gap:0.375rem;font-weight:500;font-size:0.75rem;line-height:1.3125rem}}
.recruit__condition-icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
@media(max-width: 993px){.recruit__condition-icon{width:1.25rem;height:1.25rem}}
.recruit__bages{margin-bottom:1.75rem;display:flex;align-items:center;flex-wrap:wrap;gap:0.625rem}
@media(max-width: 993px){.recruit__bages{margin-bottom:1.25rem;padding-bottom:1.25rem}}
.recruit__bage{padding:0.253125rem 0.5rem;display:flex;align-items:center;-moz-column-gap:0.375rem;column-gap:0.375rem;font-size:0.75rem;line-height:1rem;font-weight:500;border-radius:8px;border:.975px solid #f3f5f7;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.recruit__bage-country{width:1rem;height:1rem;display:flex;align-items:center;justify-content:center}
.recruit__bage-circle{width:0.375rem;height:0.375rem;border-radius:50%;background-color:#22c55e}
.recruit__bage-remote{width:1rem;height:1rem;display:flex;align-items:center;justify-content:center;background-color:#f17ca8;border-radius:0.3125rem;box-shadow:0 0.0625rem 0.125rem 0 rgba(39,21,29,.06)}
.single-job-vacancy .recruit__conditions{flex-direction:row}
.single-job-vacancy .recruit__card .recruit__conditions{flex-direction:column}
.single-job-vacancy .header-description,.single-job-vacancy .header-description ul li,.single-job-vacancy .carrer-profile__content p,.single-job-vacancy .carrer-profile__content ul li{font-size:1rem;font-weight:400;color:#6b7280}
.single-job-vacancy .header-description ul{margin-top:.5rem}
.single-job-vacancy .header-description div{margin-top:1rem}
.single-job-vacancy .carrer-profile__content h3{font-weight:500;font-size:1.25rem}
.partners_card_single .recruit__card-header img{width:100px}
.partners_card_single .recruit__card{border-radius:16px;background:#fff;padding:2rem}
.partners_card_single .recruit__card-title{font-size:1.5rem;font-weight:500;margin-top:1rem;margin-bottom:0.9375rem}
.partners_card_single .partners-description{font-size:1rem;font-weight:500}
.partners_card_single .title{font-size:2.5rem;font-width:500}
.job-not-found{display:block;text-align:center;font-size:28px;color:#fc8fb8;text-transform:capitalize;margin-top:3rem}
.team{padding:5rem 0}
@media(max-width: 993px){.team{padding:1.25rem 0}}
.team__holder{max-width:73.75rem;margin:0 auto;display:flex;flex-direction:column;row-gap:4rem}
@media(max-width: 993px){.team__holder{position:relative;padding:0 1.25rem}}
.team__holder .teamCarousel{overflow:hidden;position:relative}
@media(max-width: 993px){.team__holder .teamCarousel{padding:0}}
.team__header{display:flex;gap:20px;justify-content:space-between}
.team__header .popup-opener{border:1px solid #e5e7eb}
.team__header-left{text-align:left}
.team__header-left .title{text-align:left}
@media(max-width: 993px){.team__header-right{position:absolute;right:20px;top:0;margin:0 auto}.team__header-right .button{padding:0.75rem}}
@media(max-width: 993px)and (max-width: 479px){.team__header-right .button{padding:0.25rem 0.5rem}}
@media(max-width: 993px){.team__header{flex-direction:column;text-align:center}}
.team__text{font-weight:400;font-size:1rem;line-height:1.5rem;color:#6b7280}
.team__title{font-size:2.5rem;letter-spacing:-1.3px;line-height:3rem;color:#252c32;margin-bottom:16px;text-align:left}
@media(max-width: 993px){.team__title{font-size:1.6875rem;line-height:2.75rem;text-align:center}}
.team__ready-text{color:#ff639e;font-size:1rem;font-weight:500;line-height:1.5pxrem;margin-bottom:16px}
.team__cards{display:grid;grid-template-columns:repeat(3, 1fr);gap:3.75rem 2rem;width:100%}
@media(max-width: 993px){.team__cards{display:flex;gap:0}}
.team .team__cards .team__card-slide{width:100%}
.team__card{display:flex;flex-direction:column;border-radius:18px;align-items:center;justify-content:center}
@media(max-width: 1280px){.team__card{align-items:center}}
.team__card-bio p{margin:0;color:#6b7280;font-size:.875rem;line-height:1.25rem;max-width:500px}
.team__card-bio p+p{margin-top:1rem}
.team__card-img{border:1px solid #e5e7eb;width:100%;background-color:#fff;box-sizing:border-box;overflow:hidden;position:relative;border-radius:1.25rem;margin-bottom:1.25rem;aspect-ratio:1/1}
.team__card-img img{position:absolute;bottom:0;left:0;width:100%;height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top center;object-position:top center}
.team__card-main{display:flex;justify-content:space-between;width:100%;align-items:flex-start;margin-bottom:22px;row-gap:5px}
@media(max-width: 993px){.team__card-main{flex-direction:column;align-items:center}}
.team__card-content{display:flex;flex-direction:column}
@media(max-width: 1280px){.team__card-content{text-align:center}}
.team__card-name{font-size:24px;line-height:2rem;font-weight:600;color:#252c32}
@media(max-width: 993px){.team__card-name{font-size:1rem;line-height:1.5}}
.team__card-position{color:#ff639e;font-weight:500;font-size:1rem;line-height:1.5}
.team__card-socials{display:flex;align-items:center;-moz-column-gap:0.75rem;column-gap:0.75rem}
.team__card-social{width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;transition:all .3s ease;border:1px solid #e5e7eb;border-radius:8px}
@media(max-width: 993px){.team__card-social{width:1.625rem;height:1.625rem}}
.team__card-social:hover{box-shadow:0 0.0625rem 0.5rem 0.375rem rgba(39,21,29,.06)}
.team__card--special{background-size:cover;background-position:center;background-repeat:no-repeat;padding:3.125rem;height:100%;justify-content:flex-end;margin:0 auto}
@media(max-width: 993px){.team__card--special{aspect-ratio:1/1}}
.team__card--special .button{width:100%;font-weight:500}
.team__card-styled-title{color:#fff;font-weight:600;letter-spacing:-1;font-size:2.25rem;line-height:2.75rem;margin-bottom:32px}
@media(max-width: 993px){.team__card-styled-title{font-size:1.5rem;line-height:1.2}}
.team__nav-btn{display:none;align-items:center;justify-content:center;width:2rem;height:2rem;border-radius:50%;border:0.0625rem solid #dcdfe9;outline:0;background-color:#fff;position:absolute;top:50%;transform:translateY(-50%);z-index:3}
@media(max-width: 993px){.team__nav-btn{display:flex}}
.team__nav-btn--next{right:0}
.team__nav-btn--prev{left:0}
.carrer-profile__holder{margin:0 auto;max-width:60.875rem;display:flex;flex-direction:column;align-items:center;row-gap:2.875rem}
.carrer-profile__holder .button{margin-top:0.75rem;width:10.4375rem}
@media(max-width: 993px){.carrer-profile__holder .button{margin:0;width:7.9375rem}}
.carrer-profile__holder .recruit__conditions{margin:0}
.carrer-profile__holder .recruit__bages{margin:0;padding:0;border-bottom:0}
.carrer-profile__holder p{margin:0;font-size:1.125rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.carrer-profile__holder p{font-weight:500;font-size:1rem;line-height:1.5rem}}
.carrer-profile__holder ul li{display:flex;align-items:center;font-size:1.125rem;line-height:1.75rem;font-weight:600;color:#888}
@media(max-width: 993px){.carrer-profile__holder ul li{font-weight:500;font-size:1rem;line-height:1.5rem}}
.carrer-profile__holder ul li::before{content:"•";color:#888;padding:0px .5rem}
.carrer-profile__holder h3{margin:0;font-size:1.25rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.carrer-profile__holder h3{color:#000;font-weight:500;font-size:1rem;line-height:1.5rem}.carrer-profile__holder{row-gap:1.25rem}}
.carrer-profile__top{height:7rem;background:linear-gradient(180deg, #FFF 0%, #F6F7F9 100%);display:flex;align-items:flex-end}
@media(max-width: 993px){.carrer-profile__top{height:4.5rem}}
.carrer-profile__logo{display:flex;align-items:center;justify-content:center;width:5rem;height:5rem;transform:translateY(50%)}
.carrer-profile__logo-holder{margin:0 auto;max-width:60.875rem}
@media(max-width: 993px){.carrer-profile__logo{width:3.25rem;height:3.25rem}}
.carrer-profile__header{width:100%;display:flex;flex-direction:column;row-gap:1.125rem}
.carrer-profile__header h2{margin:0;text-align:start}
@media(max-width: 993px){.carrer-profile__header{row-gap:1.25rem}}
.carrer-profile__header .bg-gray{background-color:#eae5e8}
.carrer-profile__content{width:100%}
.carrer-profile__content h3{margin:0 0 1.5rem 0}
.carrer-profile__content p{margin:0 0 1.5rem 0;font-weight:500}
@media(max-width: 993px){.carrer-profile__content p{font-weight:400}}
.carrer-profile__footer{padding:1.875rem;width:100%;display:flex;flex-direction:column;row-gap:1.125rem;border-radius:1.5rem;border:1px solid #ececec;background:#fff;box-shadow:0 1px 2px 0 rgba(39,21,29,.06);font-width:400;font-size:1rem;color:#6b7280}
@media(max-width: 993px){.carrer-profile__footer{padding:1rem;row-gap:0.625rem}.carrer-profile__footer h3{color:#252c32;font-weight:500;font-size:1.5rem}}
.auth{width:100vw;height:100vh;overflow:hidden}
.auth__step.active{display:flex}
.auth__holder{height:100%;display:none}
.auth__content{flex:1;padding:0 6.5625rem;display:flex;overflow-y:auto}
.auth__content-wrapper{padding:5rem 0;margin:auto 0;display:flex;flex-direction:column}
@media(max-width: 1280px){.auth__content-wrapper{padding:3.75rem 0}}
@media(max-width: 993px){.auth__content-wrapper{margin:0;padding:2.5rem 0 0 0}}
@media(max-width: 1280px){.auth__content{padding:0 3.125rem}}
@media(max-width: 993px){.auth__content{padding:0 1.25rem}}
.auth__subtitle{margin:0 0 1.375rem 0;font-weight:600;font-size:1.125rem;line-height:1.75rem}
@media(max-width: 993px){.auth__subtitle{margin-bottom:1.25rem;font-size:1rem;line-height:1.5rem}.auth__subtitle--confirm{margin-top:4.4375rem}}
.auth__title{margin:0 0 2rem 0;font-weight:700;font-size:1.75rem;line-height:2.25rem}
@media(max-width: 993px){.auth__title{margin-bottom:1.25rem;font-size:1.125rem;line-height:1.5rem}}
.auth__title--confirm{margin-bottom:1.625rem;font-size:4rem;line-height:4.25rem}
@media(max-width: 993px){.auth__title--confirm{font-weight:700;margin-bottom:1.25rem;font-size:1.75rem;line-height:2.25rem}}
.auth__socials{margin-bottom:1.5rem;display:flex;-moz-column-gap:1.5rem;column-gap:1.5rem}
@media(max-width: 993px){.auth__socials{margin-bottom:1.25rem;-moz-column-gap:0.9375rem;column-gap:0.9375rem}}
.auth__social{flex:1;padding:0.8125rem;border-radius:0.5rem;border:0.0625rem solid #d1d5db;background-color:#fff;display:flex;align-items:center;justify-content:center;-moz-column-gap:0.5rem;column-gap:0.5rem;color:#252c32;font-weight:500;font-size:1rem;line-height:1.5rem;text-decoration:none;transition:all .3s ease}
.auth__social:hover{box-shadow:0 0 0.125rem 0.0625rem #d1d5db}
.auth__social-icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
.auth__text{margin-bottom:1.5rem;font-weight:500}
.auth__text--confirm{margin-bottom:6.25rem;color:#252c32;font-size:1.125rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.auth__text--confirm{margin-bottom:0;font-weight:400;font-size:0.75rem;line-height:1rem}}
.auth__form{row-gap:1.5rem}
@media(max-width: 993px){.auth__form{padding-bottom:2.5rem;flex:1;flex-direction:column}}
.auth__form .nav__btn-back{background:rgba(0,0,0,0);border:none}
.auth__form .form-field{row-gap:0.625rem}
@media(max-width: 993px){.auth__form .form-field{row-gap:0.5rem}}
.auth__form .form-field__label{color:#252c32;font-size:0.875rem;font-weight:500;line-height:1.25rem}
.auth__form .form-field__input::-moz-placeholder{font-size:0.875rem;font-weight:500;line-height:1.25rem}
.auth__form .form-field__input,.auth__form .form-field__input::placeholder{font-size:0.875rem;font-weight:500;line-height:1.25rem}
@media(max-width: 993px){.auth__form .form-field__input::-moz-placeholder{font-size:1rem;line-height:1.5rem}.auth__form .form-field__input,.auth__form .form-field__input::placeholder{font-size:1rem;line-height:1.5rem}}
.auth__form .form-field__input{padding:0.9375rem 1rem;color:#252c32;border:0.0625rem solid #d1d5db;background-color:#fff}
.auth__form .form-field__input::-moz-placeholder{color:#888}
.auth__form .form-field__input::placeholder{color:#888}
@media(max-width: 993px){.auth__form .form-field__input::-moz-placeholder{font-weight:400}.auth__form .form-field__input::placeholder{font-weight:400}}
.auth__form .form-field__input.not-valid{border-color:red}
.auth__form .form-field__textarea{padding:0.8125rem 1.25rem;height:11.5625rem;font-size:0.875rem;font-weight:500;line-height:1.25rem;border-radius:0.5rem;border:0.0625rem solid #d1d5db;background-color:#f8f8f8}
@media(max-width: 993px){.auth__form .form-field__textarea{height:7.5rem}}
.auth__form .form-field__textarea.not-valid{border-color:red}
.auth__form .select-opener{padding:0.9375rem 3.5rem 0.9375rem 1rem;font-size:0.875rem;line-height:1.25rem;font-weight:500}
@media(max-width: 993px){.auth__form .nav__btns{order:2}}
.auth__btn-homepage{width:15.375rem}
@media(max-width: 993px){.auth__btn-homepage{margin:auto 0 2.5rem;width:12.0625rem}}
.auth__privacy{font-size:0.75rem;font-weight:500;line-height:1rem}
@media(max-width: 993px){.auth__privacy{margin-top:auto}}
.auth__img{width:50%;height:100%}
@media(max-width: 993px){.auth__img{display:none}}
.auth__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.hint{padding:0.5rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:0.75rem;line-height:1rem;color:#fff;background-color:#f699bd;border-radius:0.5rem;display:flex;align-items:center;justify-content:center;-moz-column-gap:0.25rem;column-gap:0.25rem;position:absolute;bottom:calc(100% + 1.0625rem);right:1.71875rem;opacity:1;visibility:visible;pointer-events:all;transition:all .3s ease}
.hint.hide{opacity:0;pointer-events:none;visibility:hidden}
.hint::after{position:absolute;bottom:-0.25rem;left:50%;transform:translateX(-50%);content:"";height:0.25rem;width:0.5rem;background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/hint-arrow-down.svg) no-repeat center}
.hint__close{width:1rem;height:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center}
.hint__close svg{fill:#ffefeb}
.dropzone{height:10.5625rem;display:flex;align-items:center;justify-content:center;flex-direction:column;row-gap:0.75rem;border:0.0875rem dashed #d1d5db;border-radius:0.5rem;cursor:pointer}
@media(max-width: 993px){.dropzone{height:9rem}}
.dropzone__icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
.dropzone__text{color:#252c32;font-weight:500}
.dropzone__text a{color:#4094f7;text-decoration:none}
@media(max-width: 1280px){.dropzone__text{font-size:0.875rem;line-height:1.3125rem}}
.dropzone__formats{color:#888;font-size:0.75rem;line-height:1rem;font-weight:500}
.dropzone__files{display:flex;flex-direction:column;row-gap:0.9375rem;max-width:100%}
.dropzone__file{display:flex;align-items:center;justify-content:space-between;-moz-column-gap:0.5rem;column-gap:0.5rem;max-width:100%}
@media(max-width: 993px){.dropzone__file{flex-direction:column;row-gap:0.9375rem}}
.dropzone__file span{overflow:hidden;text-overflow:ellipsis}
@media(max-width: 993px){.dropzone__file span{order:2}}
.dropzone__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.dropzone__image-container{flex:1;overflow:hidden;border-radius:0.5rem;height:6.25rem;position:relative}
@media(max-width: 993px){.dropzone__image-container{max-height:12.5rem;order:1}}
.dropzone__delete{border:0;background-color:red;color:#fff;border-radius:0.5rem;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5rem;font-weight:500}
@media(max-width: 993px){.dropzone__delete{order:3}}
.dropzone__hint{position:absolute;top:-1.875rem;right:50%;transform:translateX(50%);width:15.625rem;height:-moz-max-content;height:max-content}
.questionnaire{background-color:#fff}
.questionnaire__step{display:none}
.questionnaire__step.active{display:flex !important}
.questionnaire__pages{display:flex;flex-direction:column}
.questionnaire__page{padding:2.5rem 0;height:100vh;align-items:center;-moz-column-gap:1.75rem;column-gap:1.75rem;overflow-y:auto}
@media(max-width: 993px){.questionnaire__page{align-items:flex-start}}
.questionnaire__page-content{height:100%;flex:1;padding-right:5.3125rem;display:flex;flex-direction:column;justify-content:center}
@media(max-width: 1280px){.questionnaire__page-content{padding-right:0}}
@media(max-width: 993px){.questionnaire__page-content{justify-content:flex-start}}
.questionnaire__page-title{margin:0 0 1.75rem 0;font-size:1.75rem;font-weight:700;line-height:2.25rem}
.questionnaire__page-title span{color:#ef4444}
@media(max-width: 993px){.questionnaire__page-title{margin:0 0 1.25rem 0;font-size:1.125rem;line-height:1.5rem}}
.questionnaire__page-number{margin-bottom:0.375rem;display:flex;align-items:center;font-size:0.875rem;line-height:1.25rem}
.questionnaire__page-number__icon{width:1rem;height:1rem;display:flex;align-items:center;justify-content:center}
.questionnaire__page-number__icon svg *[fill]{fill:#252c32}
.questionnaire__page-number__icon svg *[stroke]{stroke:#252c32}
.questionnaire__page-answers{margin-bottom:1.75rem;display:flex;flex-direction:column;align-items:flex-start;row-gap:0.625rem}
.questionnaire__page-answers .wpcf7-form-control-wrap{display:block;min-width:15.625rem}
.questionnaire__page-answers .questionnaire__radio-answers{display:flex;flex-direction:column;row-gap:0.625rem}
.questionnaire__page-answers .questionnaire__radio-answers label input{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin-left:auto}
.questionnaire__page-answers .questionnaire__radio-answers label input:checked::before{content:"";position:relative;background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/check.svg) no-repeat 50%;width:1rem;height:1rem;margin-left:auto}
.questionnaire__page-answer{min-width:15.625rem;padding:0.375rem 1rem 0.375rem 0.375rem;display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;border-radius:0.5rem;border:0.0625rem solid #dcdfe9;color:#252c32;background-color:#fff;cursor:pointer;font-weight:500;line-height:1.25rem;font-size:0.875rem;text-shadow:0px .6000000834px 1px #d985a5;transition:all .3s ease}
.questionnaire__page-answer.active{padding:0.375rem 1rem 0.375rem 0.375rem;background:linear-gradient(180deg, #F6B4CD 0%, #FBA2C4 100%);border:0.0625rem solid #d49cb2;color:#fff}
.questionnaire__page-answer.active::after{content:"";position:relative;background:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/check.svg) no-repeat center;width:1rem;height:1rem;margin-left:auto}
.questionnaire__page-answer.active .questionnaire__page-answer__letter{background:linear-gradient(180deg, #F7CADB 0%, #FBA5C6 100%);border-radius:0.25rem;border-color:#e79eba;color:#fff}
.questionnaire__page-answer__letter{font-size:0.875rem;font-weight:600;line-height:1.25rem;display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border-radius:0.25rem;border:0.0625rem solid #dcdfe9;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.questionnaire__page-form{margin-bottom:1.75rem;row-gap:2.5rem}
@media(max-width: 993px){.questionnaire__page-form{row-gap:1.25rem}}
.questionnaire__page-form .form-field__label{font-size:0.875rem;font-weight:500;line-height:1.25rem}
.questionnaire__page-form .form-field__input{padding:0.9375rem 1rem;border:0.0625rem solid #dcdfe9;background-color:#fff;font-weight:500;line-height:1.25rem}
.questionnaire__page-form .form-field__input.not-valid,.questionnaire__page-form .form-field__input.wpcf7-not-valid{border-color:red}
.questionnaire__page-form .form-field__input::-moz-placeholder{font-size:0.875rem;color:#888;font-weight:500;line-height:1.25rem}
.questionnaire__page-form .form-field__input::placeholder{font-size:0.875rem;color:#888;font-weight:500;line-height:1.25rem}
.questionnaire__page-form .form-field__textarea.not-valid,.questionnaire__page-form .form-field__textarea.wpcf7-not-valid{border-color:red}
.questionnaire__page-btns{display:flex;flex-direction:column;row-gap:2.25rem}
@media(max-width: 993px){.questionnaire__page-btns{margin:auto 0 0 0;flex-direction:row;justify-content:space-between}.questionnaire__page-btns .nav__btn-next{order:2}}
.questionnaire__page-nav{display:flex;align-items:center}
.questionnaire__page-nav__left,.questionnaire__page-nav__right{padding:0 0.125rem;display:flex;align-items:center;justify-content:center;border-radius:0.25rem;border:0.125rem solid #dcdfe9;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.questionnaire__page-nav__left svg,.questionnaire__page-nav__right svg{width:1.5rem;height:1.5rem}
.questionnaire__page-img{width:50%;height:70vh;border-radius:0.5rem;overflow:hidden}
@media(max-width: 993px){.questionnaire__page-img{display:none}}
.questionnaire__page-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.questionnaire__first-page,.questionnaire__last-page{padding:2.5rem 0;height:100vh;flex-direction:column;align-items:center;justify-content:center;row-gap:1.75rem;overflow-y:auto}
@media(max-width: 993px){.questionnaire__first-page .questionnaire__title,.questionnaire__last-page .questionnaire__title{margin-top:4.375rem}}
.questionnaire__first-page p,.questionnaire__last-page p{text-align:center;max-width:28.4375rem;color:#888;font-size:1.125rem;line-height:1.75rem;font-weight:600}
@media(max-width: 993px){.questionnaire__first-page p,.questionnaire__last-page p{font-size:0.75rem;line-height:1rem;font-weight:400}.questionnaire__first-page,.questionnaire__last-page{row-gap:1.25rem}}
.questionnaire__title{max-width:34.375rem;margin:0;color:#252c32;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:2.5rem;font-weight:700;line-height:3rem;text-align:center}
@media(max-width: 993px){.questionnaire__title{font-size:1.75rem;line-height:2.25rem}}
.questionnaire__btn-start{width:7.25rem}
@media(max-width: 993px){.questionnaire__btn-start{margin-top:auto;order:2;width:10.1875rem}}
.questionnaire__btn-home{width:9rem}
@media(max-width: 993px){.questionnaire__btn-home{margin-top:auto;order:2;width:10.1875rem}}
.questionnaire__time{display:flex;align-items:center;-moz-column-gap:0.5rem;column-gap:0.5rem;font-weight:600}
.questionnaire__time-icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
.questionnaire__socials{display:flex;-moz-column-gap:0.75rem;column-gap:0.75rem}
.questionnaire__social{width:1.875rem;height:1.875rem}
.questionnaire__social img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.blog__holder{display:flex;flex-direction:column;row-gap:1.5rem}
@media(max-width: 993px){.blog__holder{row-gap:1.25rem}}
.blog__header{display:flex;justify-content:space-between;align-items:center}
.blog__header h3{margin:0;font-size:1.75rem;font-weight:700;line-height:2.25rem}
@media(max-width: 993px){.blog__header h3{font-size:1.125rem;line-height:1.5rem}}
.blog__link{font-weight:600;text-decoration:none}
.blog__link:hover{text-decoration:underline}
@media(max-width: 993px){.blog__link{font-size:0.875rem;line-height:1.5rem}}
.blog__nav{display:flex}
@media(max-width: 993px){.blog__nav{overflow:auto}}
.blog__nav-link{padding:0.75rem 1.75rem;font-size:0.875rem;font-weight:600;color:#252c32;line-height:1.25rem;border-bottom:0.125rem solid rgba(0,0,0,0);transition:all .3s ease-in-out;text-decoration:none}
.blog__nav-link.active,.blog__nav-link:hover{color:#fc8fb8;border-bottom:0.125rem solid #fc8fb8}
.blog__item{padding-left:3.125rem;display:flex;-moz-column-gap:3.75rem;column-gap:3.75rem;background-color:#f3f5f7;border-radius:0.625rem;overflow:hidden}
@media(max-width: 1280px){.blog__item{padding-left:1.875rem;-moz-column-gap:1.875rem;column-gap:1.875rem}}
@media(max-width: 993px){.blog__item{padding-left:0;flex-direction:column}}
.blog__description{padding:1.875rem 0;flex:1;display:flex;justify-content:center;flex-direction:column;row-gap:1rem}
.blog__description h3{margin:0;font-size:1.75rem;font-weight:700;line-height:2.25rem}
@media(max-width: 993px){.blog__description h3{font-size:1rem;line-height:1.5rem}}
.blog__description p{color:#888;font-weight:600;font-family:"Abhaya Libre"}
@media(max-width: 993px){.blog__description p{font-size:0.875rem;line-height:1.25rem}.blog__description{row-gap:0.75rem;padding:1.25rem}}
.blog__button{width:10.625rem}
@media(max-width: 993px){.blog__button{width:8.875rem}}
.blog__img{width:52%;min-height:28.5rem;position:relative}
@media(max-width: 993px){.blog__img{order:-1;width:100%;border-radius:0.5rem;overflow:hidden;min-height:16.125rem}}
.blog__img img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.blog__carousel{overflow:hidden;position:relative}
.blog__cards{display:flex;flex-wrap:wrap;justify-content:center;gap:1.3125rem;width:100%}
@media(max-width: 993px){.blog__cards{justify-content:unset;flex-wrap:unset;gap:0}}
.blog__cards .swiper-slide{width:calc(25% - 1rem)}
@media(max-width: 1280px){.blog__cards .swiper-slide{width:calc(33.333% - 1.5rem)}}
@media(max-width: 1100px){.blog__cards .swiper-slide{width:calc(50% - 1.5rem)}}
@media(max-width: 993px){.blog__cards .swiper-slide{width:100%}}
.blog__card{display:flex;flex-direction:column;row-gap:1rem;text-decoration:none}
.blog__card-img{height:14.25rem;width:100%;max-width:100%;border-radius:0.5rem;overflow:hidden}
@media(max-width: 993px){.blog__card-img{height:12.75rem}}
.blog__card-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.blog__card-content{flex:1}
@media(max-width: 993px){.blog__card-content{padding-bottom:1.25rem}}
.blog__card-bages{margin-bottom:0.5rem;display:flex;flex-wrap:wrap;gap:0.5rem}
@media(max-width: 993px){.blog__card-bages{margin-bottom:0.75rem}}
.blog__card-bage{padding:0.5rem 0.75rem;color:#fc8fb8;font-weight:600;font-size:0.75rem;line-height:1rem;border-radius:0.5rem;background-color:#fff4f8}
.blog__card-bage--purple{color:#8c61e9;background-color:#f8f4ff}
.blog__card-bage--blue{color:#61a0e9;background-color:#f0f7ff}
.blog__card-title{margin:0 0 1rem 0;font-size:0.875rem;font-weight:600;line-height:1.25rem;color:#000}
@media(max-width: 993px){.blog__card-title{margin-bottom:0.75rem}}
.blog__card-author{color:#888;font-weight:500;font-size:0.75rem;line-height:1rem}
@media(max-width: 993px){.blog__card-author{font-weight:400}}
.slogan{margin-bottom:5rem}
.slogan__holder{padding:5rem;border-radius:1.875rem;background-color:#fba7c7}
@media(max-width: 993px){.slogan__holder{border-radius:0.25rem;padding:1.375rem}}
.slogan__text{margin:0 auto;text-align:center;max-width:48.75rem;color:#fff;font-size:1.75rem;line-height:2.25rem;font-weight:600}
@media(max-width: 993px){.slogan__text{font-size:0.875rem;font-weight:600;line-height:1.4375rem}}
.article .author--desktop-tablet{display:block}
@media(max-width: 1280px){.article .author--desktop-tablet{display:none}}
.article .author--mobile-tablet{display:none}
@media(max-width: 1280px){.article .author--mobile-tablet{display:flex}}
@media(max-width: 993px){.article .author--desktop{display:none}}
.article .author--mobile{display:none}
@media(max-width: 993px){.article .author--mobile{display:flex}}
.article__top-wrap{padding:6.25rem 0}
@media(max-width: 1280px){.article__top-wrap{padding:5rem 0}}
@media(max-width: 993px){.article__top-wrap{padding:2.5rem 0}}
.article__top{display:grid;grid-template-columns:1fr 1fr;gap:5rem}
@media(max-width: 1280px){.article__top{grid-template-columns:100%;gap:2.5rem}}
@media(max-width: 993px){.article__top{gap:1.25rem}}
.article__holder{display:grid;grid-template-columns:15.625rem 1fr 15.625rem;align-items:flex-start;gap:4rem;margin:5rem 0 4rem}
@media(max-width: 1280px){.article__holder{grid-template-columns:1fr 15.625rem;margin:2.5rem 0;gap:2.5rem}}
@media(max-width: 993px){.article__holder{grid-template-columns:100%;margin:1.25rem 0;gap:1.25rem}}
.article__posts span{display:block;font-weight:500;line-height:1.43;margin-bottom:1.25rem}
.article__links{display:flex;flex-direction:column;gap:1.25rem;padding:1.25rem;margin:1.25rem 0;border-radius:0.625rem;background:#f7f7f8;width:100%}
.article__links a{font-size:0.875rem;line-height:1.43;font-weight:400;color:#252c32;text-decoration:none;transition:.3s ease-in-out}
.article__links a:hover,.article__links a:focus{color:#fc8fb8}
.article__banner{border-radius:0.375rem;overflow:hidden;height:29rem;display:flex}
@media(max-width: 993px){.article__banner{height:18.75rem}}
.article__banner img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.article__content{max-width:100%;width:100%;margin:0 auto;display:flex;flex-direction:column;row-gap:1.125rem;overflow-x:auto}
.article__content .wp-block-table table{width:100%;border:1px solid #d1d5db !important;border-collapse:separate !important;border-spacing:0;overflow:hidden}
.article__content .wp-block-table table td{padding:0.75rem 1rem;border:1px solid #d1d5db;font-size:0.875rem;line-height:1.5}
.article__content .wp-block-table table tr:first-child{background-color:#f7f7f8;font-weight:500}
.article__content tbody{width:100%}
@media(max-width: 993px){.article__content{row-gap:1.25rem}}
.article__content .wp-block-quote{margin:0}
.article__content .wp-block-quote p{font-weight:500;font-size:1.25rem !important;line-height:1.75rem}
.article__content p iframe{width:100%;height:100%;aspect-ratio:16/9}
@media(max-width: 993px){.article__content p{margin:0 0 1rem;font-size:0.75rem;line-height:1.25rem}}
@media(max-width: 767px){.article__content p{margin:0 0 0.75rem}}
.article__content q{margin:2rem 0;color:#252c32;font-size:1.5rem;font-weight:500;line-height:2rem;display:block}
.article__content q::after{content:"”";margin-left:-0.25rem}
.article__content q::before{content:"“";margin-right:-0.25rem}
@media(max-width: 993px){.article__content q{margin:1.5rem 0;font-size:1.125rem;line-height:1.5rem}}
.article__content h4{margin:0 0 1.5rem 0;font-size:1rem;line-height:1.5rem;font-weight:700;color:#252c32}
@media(max-width: 993px){.article__content h4{margin:0 0 1.25rem 0;font-size:0.875rem;line-height:1.5rem}}
.article__content img{margin:0.5rem 0 2rem 0;border-radius:1.875rem;width:100%;height:100%;max-height:27.1875rem;-o-object-fit:cover;object-fit:cover}
@media(max-width: 993px){.article__content img{margin:0 0 1.25rem 0}}
.article__header{display:flex;flex-direction:column;flex-wrap:wrap;-moz-column-gap:0.75rem;column-gap:0.75rem}
.article__header span{font-size:16px;line-height:1.5;font-weight:500;margin-bottom:1rem;color:#e96194}
@media(max-width: 993px){.article__header span{margin:0}.article__header{align-items:flex-start;row-gap:0.75rem}}
.article__header .article_profile{display:flex;justify-content:center;align-items:center;gap:1rem;margin-top:2rem}
.article__header .profile-image{width:50px;height:50px;border-radius:50px}
.article__header h2{margin:0;font-size:2.5rem;line-height:3rem;font-weight:500;color:#252c32;margin-bottom:0.5rem}
@media(max-width: 993px){.article__header h2{width:100%;font-size:1.25rem;line-height:1.75rem;font-weight:700;margin:0}}
.article__media{display:flex;border-radius:28px;overflow:hidden}
.article__media img,.article__media iframe,.article__media video{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:4/3}
@media(max-width: 1280px){.article__media{max-width:920px;width:100%;margin:0 auto}.article__media img,.article__media iframe,.article__media video{aspect-ratio:16/9}}
.article__copy{padding:0.75rem 1.25rem;display:flex;-moz-column-gap:0.75rem;column-gap:0.75rem;color:#111827;font-weight:600;font-size:1rem;line-height:1.5rem;border-radius:0.5rem;border:0.0625rem solid #d1d5db;background-color:#fff;text-decoration:none;transition:all .3s ease}
.article__copy:hover{box-shadow:0 0 0.125rem 0.0625rem #d1d5db}
@media(max-width: 993px){.article__copy{padding:0.65625rem 0.875rem;margin-left:0;-moz-column-gap:0.4375rem;column-gap:0.4375rem;font-size:0.875rem;line-height:0.9375rem;font-weight:500}}
.article__copy-icon{width:1.5rem;height:1.5rem;display:flex;align-items:center;justify-content:center}
@media(max-width: 993px){.article__copy-icon{width:0.9375rem;height:0.9375rem}}
.article__socials{display:flex;-moz-column-gap:0.75rem;column-gap:0.75rem}
.article__social--wrap{margin-bottom:2rem}
.article__social--wrap .article__social{width:50px;height:50px;border-radius:10px;border:none;background:#f7f7f8}
.article__social{width:3rem;height:3rem;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;border:0.0625rem solid #d1d5db;background-color:#fff;transition:all .3s ease}
.article__social:hover{box-shadow:0 0 0.125rem 0.0625rem #d1d5db}
.article__social img{max-width:1.5rem;max-height:1.5rem;width:100%;height:100%}
@media(max-width: 993px){.article__social{padding:0.65625rem;width:auto;height:auto}.article__social img{width:0.9375rem;height:0.9375rem}}
.article__author{display:flex;-moz-column-gap:0.75rem;column-gap:0.75rem;align-items:center}
.article__author--wrapper span{display:block;font-weight:500;line-height:1.43;color:#252c32;margin-bottom:1.25rem}
.article__author-img{width:3.375rem;height:3.375rem;overflow:hidden;border-radius:50%}
@media(max-width: 993px){.article__author-img{width:2.375rem;height:2.375rem}}
.article__author-img img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}
.article__author-content{display:flex;flex-direction:column;row-gap:0.25rem}
.article__author-name{color:#252c32;font-weight:600;font-size:1rem;line-height:1.5rem}
@media(max-width: 993px){.article__author-name{font-size:0.875rem;line-height:1.5rem}}
.article__author-date{color:#888;font-size:0.875rem;line-height:1.25rem;font-weight:500}
@media(max-width: 993px){.article__author-date{font-weight:400;font-size:0.75rem;line-height:1.25rem}}
.article .author__essay{margin:1.25rem 0;font-size:0.875rem;line-height:1.43}
.article .author__social{display:flex;align-items:center;gap:0.5rem;margin-top:1.25rem}
.article .author__social a{display:flex;align-items:center;justify-content:center;border-radius:50%;width:35px;height:35px;transition:.3s ease-in-out}
.article .author__social a:hover,.article .author__social a:focus{box-shadow:0 0 .125rem .0625rem #d1d5db}
.article .author__social a img{display:block;width:21px;height:21px;-o-object-fit:contain;object-fit:contain}
.article__info{display:flex;align-items:center;justify-content:space-between;gap:1.25rem}
@media(max-width: 993px){.article__info{margin-top:1.25rem}}
@media(max-width: 767px){.article__info{flex-direction:column;justify-content:flex-start;align-items:flex-start}}
.article__categories{display:flex;align-items:center;flex-wrap:wrap;gap:0.75rem}
.article__category{display:flex;justify-content:center;align-items:center;padding:0.625rem 1.25rem;border-radius:0.5rem;background:#e7e7e7;text-decoration:none;font-weight:500;font-size:0.875rem;line-height:1.43;color:#252c32;transition:.3s ease-in-out}
.article__category:hover,.article__category:focus{background:#fc8fb8}
.article__social{display:flex;flex-direction:column}
.article__social span{display:block}
.article .social-block{display:flex;gap:1.25rem}
.top-fold-experiment{padding:0.375rem 0.625rem;border-radius:0.625rem;border:1px solid #ff639e;width:-moz-fit-content;width:fit-content;display:flex;align-items:center;gap:0.75rem;font-size:0.875rem;box-shadow:0px 5px 5px 0px rgba(16,24,40,.1);line-height:1.25rem;font-weight:600;color:#252c32;margin-top:1.25rem}
@media(max-width: 993px){.top-fold-experiment{font-weight:400;box-shadow:none}}
.top-fold-experiment__icon{height:14px;width:21px}
.top-fold-experiment__icon img{height:14px;width:14px}
@media(max-width: 993px){.recent-posts{padding-top:2.5rem}}
.recent-posts__holder{display:flex;flex-direction:column;row-gap:1.5rem}
@media(max-width: 993px){.recent-posts__holder{row-gap:1.25rem}}
.recent-posts__header{display:flex;align-items:center;justify-content:space-between}
.recent-posts__header .title{margin:0}
.recent-posts__link{color:#252c32;font-weight:700;text-decoration:none;border-radius:8px;border:1px solid #e5e7eb;background:#fff;padding:0.625rem 1.25rem;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}
.recent-posts__link:hover{text-decoration:underline}
@media(max-width: 993px){.recent-posts__link{font-size:0.75rem;line-height:1rem;font-weight:500}}
.recent-posts__categories{display:flex;-moz-column-gap:0.875rem;column-gap:0.875rem}
@media(max-width: 993px){.recent-posts__categories{flex-direction:column;row-gap:0.75rem}}
.recent-posts__categories span{width:8.75rem;max-width:100%;font-weight:600}
@media(max-width: 1280px){.recent-posts__categories span{width:auto}}
@media(max-width: 993px){.recent-posts__categories span{font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.recent-posts__categories-line{display:flex;-moz-column-gap:1rem;column-gap:1rem;overflow-x:auto}
@media(max-width: 993px){.recent-posts__categories-line{-moz-column-gap:0.75rem;column-gap:0.75rem}}
.recent-posts__categories-line a{border-radius:100px;border:1px solid #e5e7eb;background:#fff;padding:0.625rem 1.25rem;width:-moz-max-content;width:max-content}
.recent-posts__categories-line a:first-child{border-radius:100px;border:1px solid #b0babf;background:#272727;color:#fff}
.recent-posts__category{flex:1;padding:0.721875rem 1rem;border-radius:0.25rem;background-color:#f8f8f8;font-size:0.875rem;line-height:1.25rem;font-weight:600;color:#252c32;outline:0;border:0.125rem solid rgba(0,0,0,0);transition:all .3s ease;display:flex;align-items:flex-start}
.recent-posts__category:hover{border:0.125rem solid #dcdfe9;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
@media(max-width: 993px){.recent-posts__category{padding:0.25rem 0.6875rem;font-size:0.75rem;line-height:1.5rem;font-weight:500}}
.recent-posts__category.active{border:0.125rem solid #dcdfe9;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%)}
.recent-posts__carousel{display:flex;flex-direction:column;row-gap:1.5rem;overflow:hidden}
.recent-posts__carousel .articles__card{width:100%;height:auto}
.recent-posts__carousel .swiper-notification{display:none}
.single{overflow-x:hidden;background-color:#f7f7f8}
.popup{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;opacity:0;visibility:hidden;pointer-events:none;z-index:-1;transition:all .2s linear}
@media(max-width: 993px){.popup.mobile-hide{display:none !important}}
.popup .stay-updated__icon{display:flex;width:62px;height:62px;margin-bottom:14px}
.popup .stay-updated__title{margin-bottom:14px !important}
.popup .stay-updated__text{font-weight:400;font-size:20px;line-height:28px;letter-spacing:0;color:#252c32;margin:0}
.popup .stay-updated__text span{color:#ff639e}
.popup__thankyou{width:100%}
.popup__thankyou .icon-none{display:none}
.popup__thankyou__content{text-align:center}
.popup__thankyou__content h3{font-size:2.25rem;font-weight:500;letter-spacing:-1px;margin:0.75rem 0}
.popup__thankyou__content p{font-size:1.125rem;font-weight:500;margin-bottom:2.25rem;color:#252c32}
.popup__thankyou__bottom{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.5rem}
.popup__thankyou__bottom span{font-weight:500;font-size:0.875rem;line-height:1.25rem}
.popup__thankyou__divider{border:1px solid #d1d5db;width:100%}
.popup__thankyou__button{width:100%}
.popup__thankyou__button a{display:flex;justify-content:center;align-items:center;width:100%;padding:12px 16px;border:1px solid #e5e7eb;background:#fff;border-radius:8px;box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863);color:#252c32;transition:.3s ease-in-out}
.popup__thankyou__button a:hover{color:#e96194}
.popup__thankyou__button svg{margin-right:0.75rem}
.popup__overlay{background:rgba(41,41,41,.9);position:fixed;left:0;top:0;width:100%;height:100%;z-index:1}
.popup__body{padding:6.5rem 2.5rem 2.5rem 2.5rem;background:#fff;border-radius:0.625rem;position:relative;z-index:2;max-height:calc(100vh - 4.125rem);display:flex;flex-direction:column;row-gap:1.6875rem;width:68.75rem;max-width:calc(100% - 2rem);transform:translateY(-100%);transition:transform .2s linear;box-shadow:0 0.125rem 0.1875rem 0 rgba(1,18,34,.04),0 0.25rem 0.5rem 0 rgba(1,18,34,.1)}
@media(max-width: 993px){.popup__body{padding:2.5rem;row-gap:1.25rem}}
@media(max-width: 767px){.popup__body{padding:1.25rem;row-gap:0.625rem}}
.popup__close{width:2.375rem;height:2.375rem;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);padding:0;border:0.0625rem solid #e7e7e7;border-radius:50%;transform:rotate(45deg);box-shadow:0 0.05rem 0.1rem 0 rgba(39,21,29,.06);position:absolute;top:2.5rem;right:2.5rem;transition:all .2s linear}
.popup__close:before,.popup__close:after{content:"";border-radius:0.125rem;background:#252c32;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}
.popup__close:before{width:1.125rem;height:0.125rem}
.popup__close:after{width:0.125rem;height:1.125rem}
.popup__close:hover{transform:rotate(135deg)}
@media(max-width: 993px){.popup__close{width:1.875rem;height:1.875rem;top:1rem;right:1rem}}
@media(max-width: 767px){.popup__close{width:1.5rem;height:1.5rem;top:0.5rem;right:0.5rem}}
.popup__content{display:flex;-moz-column-gap:2.5rem;column-gap:2.5rem;overflow-y:auto}
.popup__content iframe,.popup__content video{width:100%;aspect-ratio:16/10}
.popup__description{flex:1;height:100%;display:flex;flex-direction:column;row-gap:1.5rem;overflow:hidden}
@media(max-width: 993px){.popup__description{padding-top:0;row-gap:1.25rem}}
.popup__description-header{display:flex;flex-direction:column;row-gap:1.5rem}
@media(max-width: 993px){.popup__description-header{padding-right:3.125rem;row-gap:1.25rem}}
.popup__title-wrapper{display:flex;flex-direction:column;align-items:flex-start;gap:0.9375rem;text-align:left;max-width:85%}
@media(max-width: 993px){.popup__title-wrapper{max-width:100%}}
.popup__title-wrapper .popup__title{text-align:left;margin:0 0 2.5rem}
.popup__title-wrapper .popup__title span{color:#ff639e}
.popup__title-icon{display:flex;align-items:center;justify-content:center;width:3.875rem;height:3.875rem;border-radius:50%;background:radial-gradient(143.04% 143.04% at 50% 0%, #FC77A9 17.5%, #FC8FB8 100%);box-shadow:0px 0px 13px 0px #ff6fa6 inset}
.popup__title-icon svg{width:35px;height:32px}
.popup__title{color:#252c32;font-size:1.625rem;font-weight:600;line-height:2.25rem;text-align:center;margin:.5rem 0 0rem}
@media(max-width: 993px){.popup__title{font-size:1.125rem;line-height:1.5rem}}
.popup .stay-updated-wrapper .popup__title{font-weight:600;letter-spacing:-1px;text-align:left;margin-bottom:14px}
.popup__subtitle{margin:0;color:#111827;font-size:1.125rem;font-weight:600;line-height:1.75rem}
@media(max-width: 993px){.popup__subtitle{color:#252c32;font-size:0.875rem;font-weight:700;line-height:1.125rem}}
.popup__form{row-gap:0.625rem}
.popup__form .form-field__label{color:#252c32;font-size:0.875rem;line-height:1.25rem;font-weight:500;text-align:start}
.popup__form .form-field .form-field__input::-moz-placeholder{color:#888;font-weight:500;font-size:0.875rem;line-height:1.25rem}
.popup__form .form-field .form-field__input::placeholder{color:#888;font-weight:500;font-size:0.875rem;line-height:1.25rem}
.popup__form .form-field__rating{display:flex;align-items:center;gap:1rem}
.popup__form .form-field__rating .rating__number{display:flex;align-items:center;justify-content:center;position:relative;width:50px;height:50px;font-size:1.125rem;line-height:1.55;font-weight:500;color:#252c32;background:#fff;cursor:pointer;border:1px solid #e5e7eb;border-radius:14px;transition:.3s ease-in-out}
.popup__form .form-field__rating .rating__number:has(input:checked){border:1px solid #fc8fb8}
@media(max-width: 993px){.popup__form .form-field__rating .rating__number{width:40px;height:40px}}
.popup__form .form-field__radio .first{margin:0}
.popup__form .form-field__radio input{display:none}
.popup__form .form-field__radio label{position:relative;cursor:pointer;display:inline-flex;align-items:center;font-size:1rem}
.popup__form .form-field__radio label:has(input:checked)::before{background-image:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/icons/check-2.svg),linear-gradient(180deg, #fff 0%, #fff 100%);border-radius:7px;border:.8px solid #f17ca8}
.popup__form .form-field__radio label::before{content:"";margin-right:0.65625rem;display:flex;align-items:center;justify-content:center;min-width:1.4375rem;height:1.4375rem;border:0.0625rem solid #bbb9b9;border-radius:0.25rem;background:linear-gradient(180deg, #FAFAFA 0%, #FFF 50%, #FAFAFA 100%);background-position:center,center;background-repeat:no-repeat,no-repeat;box-shadow:0 0.03rem 0.06rem 0 rgba(39,21,29,.06);outline:0}
@media(max-width: 993px){.popup__form .form-field__radio label::before{margin-right:0.5rem;min-width:1.25rem;height:1.25rem}.popup__form{row-gap:.25rem}}
.popup__button{width:9.6875rem}
@media(max-width: 993px){.popup__button{width:10.625rem}}
.popup__note{color:#252c32;font-size:1.125rem;line-height:1.75rem;font-weight:500}
.popup__image{width:45%;border-radius:0.625rem;overflow:hidden;position:sticky;top:0;right:0}
@media(max-width: 993px){.popup__image{display:none}}
.popup__image img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.popup.active{opacity:1;visibility:visible;pointer-events:auto;z-index:101}
.popup.active .terms_condition_popup,.popup.active .terms_condition_popup a{font-size:12px !important;color:#333;padding-left:4px}
.popup.active .popup__body{transform:translateY(0)}
.popup #to_whom{display:flex;flex-direction:column}
.popup #to_whom span{margin-left:0}
.popup #to_whom input{display:none}
.popup #to_whom span label{color:#252c32;margin-bottom:.5rem;padding:10px;display:block;border-radius:8px;border:1px solid #dcdfe9;background:#fff;transition:.2s all ease-in-out}
.popup #to_whom .checked{background:#252c32;color:#fff}
.popup .popup__close__review{width:2rem;height:2rem;background:#d1d5db;top:1.25rem;right:1.25rem}
.popup .popup__close__review:before,.popup .popup__close__review:after{background:#fff;box-shadow:0px 1.37px 2.75px 0px rgba(39,21,29,.0588235294);width:0.859375rem;height:0.296875rem}
.popup .popup__close__review:before{width:0.875rem;height:0.3125rem}
.popup .popup__close__review:after{width:0.3125rem;height:0.875rem}
.popup .popup__body__review{width:37.75rem;max-width:100%;padding:3.125rem 2.75rem;background:#f5f5f5;border-radius:1.875rem}
.popup .popup__body__review .wpcf7-form-control-wrap{display:flex;flex-direction:column}
.popup .popup__body__review .button{width:100%}
.popup .popup__body__review textarea{width:100%}
@media(max-width: 1199px){.popup .popup__body__review textarea{height:8.5rem}}
@media(max-height: 800px){.popup .popup__body__review textarea{height:5rem}}
.popup .popup__body__review input{padding:.675rem 1rem;border-radius:0.875rem}
.popup .popup__body__review .rating__hearts{display:flex;align-items:center;gap:0.625rem}
.popup .popup__body__review .rating__hearts label{width:28px;height:28px;cursor:pointer}
@media(max-width: 993px){.popup .popup__body__review .rating__hearts label{width:24px;height:24px}}
.popup .popup__body__review .rating__hearts .filled svg path{fill:#fc8fb8}
@media(max-width: 993px){.popup .popup__body__review{padding:3.25rem 1.25rem 1.25rem}}
.popup .popup__description__review{padding-top:0;row-gap:0.5rem}
.popup .popup__description__review#review_sub--js{justify-content:center;align-items:center;row-gap:2.5rem}
.popup .popup__description__review#review_sub--js .popup__description-header__review{padding-right:0;text-align:center}
@media(max-width: 993px){.popup .popup__description__review#review_sub--js{row-gap:1.25rem}.popup .popup__description__review#review_sub--js .popup__thankyou__logo svg{width:72px;height:72px}.popup .popup__description__review#review_sub--js span.form-field__label{display:block;font-size:0.75rem}.popup .popup__description__review#review_sub--js label{font-size:0.875rem}.popup .popup__description__review#review_sub--js textarea{font-size:0.875rem}}
.popup .popup__description__review .popup__description-header__review{row-gap:0.5rem;padding-right:1.25rem}
.popup .popup__form__review{row-gap:0.5rem}
.popup .popup__pretitle__review{font-weight:600;font-size:1.125rem;line-height:1.75rem;color:#e96194}
.popup .popup__title__review{text-align:left;font-weight:500;font-size:1.75rem;line-height:2.25rem;margin:0}
@media(max-height: 800px){.popup .popup__title__review{font-size:1.375rem}}
@media(max-width: 993px){.popup .popup__title__review{font-size:1.5rem}}
.popup .popup__subtitle__review{font-weight:500;font-size:0.875rem;line-height:1.25rem}
.popup .popup__note{font-size:0.75rem;line-height:1rem;font-weight:400;color:#6b7280}
.popup .popup__become-partner{width:34.4375rem;padding:2.5rem}
@media(max-width: 767px){.popup .popup__become-partner{width:100%;height:100vh;max-height:100%;border:0;border-radius:0;padding:5.25rem 1.25rem 1.25rem}.popup .popup__become-partner .popup__description{row-gap:2.25rem;overflow:unset}}
.popup .popup__become-partner .popup__description-header{width:25rem;margin:0 auto}
@media(max-width: 767px){.popup .popup__become-partner .popup__description-header{width:100%;padding:0;gap:0.5rem}}
.popup .popup__become-partner .popup__title{font-size:2.25rem;font-weight:600;text-align:center;max-width:90%;margin:0 auto}
@media(max-width: 767px){.popup .popup__become-partner .popup__title{max-width:100%;text-align:left;margin:0}}
.popup .popup__become-partner .popup__subtitle{text-align:center;font-size:0.875rem;line-height:1.33;font-weight:500;color:#6b7280}
@media(max-width: 767px){.popup .popup__become-partner .popup__subtitle{text-align:left}.popup .popup__become-partner .popup__close{display:none}}
.popup .popup__become-partner .popup__control-wrap{display:none;align-items:center;justify-content:space-between;gap:0.625rem;position:absolute;top:0;left:0;right:0;padding:1.25rem 0.5rem;border-bottom:.4px solid var(--Light-Mode-Border-Border-Grey-Primary, #D1D5DB)}
@media(max-width: 767px){.popup .popup__become-partner .popup__control-wrap{display:flex}}
.popup .popup__become-partner .popup__control-wrap a{color:#252c32;text-decoration:none;transition:.3s ease-in-out}
.popup .popup__become-partner .popup__control-wrap a:hover,.popup .popup__become-partner .popup__control-wrap a:focus{color:#fc8fb8}
.popup .popup__become-partner .popup__control-wrap .popup__close-back{display:flex;align-items:center;justify-content:center;gap:0.5rem;font-size:1rem;font-weight:500;border:none;background:rgba(0,0,0,0);transition:.3s ease-in-out}
.popup .popup__become-partner .popup__control-wrap .popup__close-back svg path{fill:#252c32;transition:.3s ease-in-out}
.popup .popup__become-partner .popup__control-wrap .popup__close-back:hover,.popup .popup__become-partner .popup__control-wrap .popup__close-back:focus{color:#fc8fb8}
.popup .popup__become-partner .popup__control-wrap .popup__close-back:hover svg path,.popup .popup__become-partner .popup__control-wrap .popup__close-back:focus svg path{fill:#fc8fb8}
@media(max-width: 767px){.popup .popup__become-partner .button{margin-top:2.5rem}}
.nursing-home-booking .popup__body{padding:3.125rem 2.5rem;background:#f5f5f5;max-width:591px;border-radius:30px;left:0;box-shadow:0px 2px 3px 0px rgba(1,18,34,.0392156863);box-shadow:0px 4px 8px 0px rgba(1,18,34,.1019607843)}
@media(max-width: 993px){.nursing-home-booking .popup__body{padding:1.25rem !important;max-width:calc(100% - 2rem) !important}}
.nursing-home-booking .popup__body .popup__close{top:20px;right:20px}
.nursing-home-booking .popup__body .popup__title,.nursing-home-booking .popup__body .popup__description-header .popup__description{font-size:36px;line-height:44px;font-weight:600;margin-bottom:1.5rem;letter-spacing:-1px}
@media(max-width: 993px){.nursing-home-booking .popup__body .popup__title,.nursing-home-booking .popup__body .popup__description-header .popup__description{font-size:24px;margin-bottom:1rem}}
.nursing-home-booking .popup__body .popup__form .button{display:block;width:100%;text-align:center;padding:0.75rem;margin-top:1.5rem}
@media(max-width: 993px){.nursing-home-booking .popup__body .popup__form .button{margin-top:1rem}}
.block-city-listing textarea{display:none}
@media(max-width: 993px){span.form-field__label{display:none}}
[data-name=acceptance-terms_condition] label{display:flex;justify-content:flex-start;align-items:center;width:100%}
[data-name=acceptance-terms_condition] label input#terms_condition{position:absolute;left:0;top:.2rem;width:auto}
[data-name=acceptance-terms_condition] label span.wpcf7-list-item-label{padding-left:1rem}
.error-404-page{position:relative;overflow:hidden;padding:5rem 0}
@media(max-width: 993px){.error-404-page{padding:2.5rem 0}}
.error-404-page__inner{display:flex;flex-direction:column;align-items:center}
.error-404-page .info__card_image-pink-404{position:absolute;z-index:-1;top:0;right:0}
.error-404-page__image{margin-bottom:1.25rem}
.error-404-page__content{margin-bottom:3rem;text-align:center}
@media(max-width: 993px){.error-404-page__content{margin-bottom:1rem}}
.error-404-page__content h1{margin:1.875rem 0 1rem;color:#333;font-size:11.625rem;font-weight:500;line-height:.75em}
@media(max-width: 993px){.error-404-page__content h1{font-size:8.125rem}}
.error-404-page__content h2{margin:0 0 1rem;color:#333;font-size:2.25rem;font-weight:400;line-height:1.22em}
@media(max-width: 993px){.error-404-page__content h2{font-size:1.75rem}}
.error-404-page__content p{color:#6b7280;font-weight:500}
.error-404-page__content p:last-of-type{margin:0}
.error-404-page__back-button div,.error-404-page__back-button span{padding:0.625rem 3.75rem}
.tecnical-text-section{padding:64px 0 100px}
@media(max-width: 993px){.tecnical-text-section{padding:40px 0 80px}}
.tecnical-text-section__inner{display:flex;align-items:flex-start;gap:80px}
@media(max-width: 1280px){.tecnical-text-section__inner{gap:30px}}
@media(max-width: 993px){.tecnical-text-section__inner{flex-direction:column;gap:20px}}
.tecnical-text-section__sidebar{flex:1;display:flex;flex-direction:column;gap:12px;position:relative}
@media(max-width: 993px){.tecnical-text-section__sidebar{flex-wrap:wrap;justify-content:center;flex-direction:row;gap:8px}}
.tecnical-text-section__sidebar::before{content:"";position:absolute;background:#e5e7eb;width:4px;left:0;height:100%;top:0}
@media(max-width: 993px){.tecnical-text-section__sidebar::before{display:none}}
.tecnical-text-section__sidebar li a{padding-left:24px;line-height:40px;font-size:16px;color:#333;text-decoration:none;position:relative;display:block;white-space:nowrap}
@media(max-width: 993px){.tecnical-text-section__sidebar li a{padding:0 12px;line-height:30px}.tecnical-text-section__sidebar li a::before{content:"";position:absolute;height:2px;width:100%;background:#e5e7eb;bottom:0;left:0}}
.tecnical-text-section__sidebar li a.active::before{content:"";position:absolute;left:0;height:100%;background:#f8b1cc;width:4px;bottom:0}
@media(max-width: 993px){.tecnical-text-section__sidebar li a.active::before{height:2px;width:100%}}
.tecnical-text-section__content{max-width:1027px;width:100%;padding:40px;border:1px solid #b0babf;border-radius:30px}
@media(max-width: 1100px){.tecnical-text-section__content{padding:25px}}
@media(max-width: 993px){.tecnical-text-section__content{padding:0;border:none;border-radius:0}}
.tecnical-text-section__heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
@media(max-width: 993px){.tecnical-text-section__heading{flex-direction:column;row-gap:10px;align-items:stretch}}
.tecnical-text-section__heading h1{font-size:28px;margin:0;line-height:36px}
.tecnical-text-section__date{font-size:14px;font-weight:500;line-height:20px;color:#6b7280;margin-bottom:18px}
.tecnical-text-section__text p,.tecnical-text-section__text li{color:#333;font-size:14px;line-height:20px;font-weight:500}
@media(max-width: 993px){.tecnical-text-section__text P{margin-bottom:16px}}
.tecnical-text-section__text strong{font-weight:700}
.tecnical-text-section__text p+ul{margin:-24px 0 24px}
@media(max-width: 993px){.tecnical-text-section__text p+ul{margin:-16px 0 16px}}
.tecnical-text-section__text ul{padding-left:25px;list-style-type:disc}
.partners{position:relative}
.partners__overlay{background-image:url(/wp-content/themes/assisted-living-magazine-prod-pagespeed/assets/dist/img/home-sections/rose-bg-new.png);background-size:cover;background-position:center;background-repeat:no-repeat;width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1}
.partners__wrapper{display:flex;z-index:100}
@media(max-width: 993px){.partners__wrapper{width:100%;flex-wrap:wrap}}
.partners__content{padding-top:2rem;padding-right:4rem;width:50%;display:flex;flex-direction:column;justify-content:center}
@media(max-width: 993px){.partners__content{width:100%;gap:0}}
.partners__content h2{margin-top:0;font-weight:500;font-size:2.25rem}
.partners__content__batch_text{display:flex;justify-content:flex-start;align-items:center;gap:.25em}
@media(max-width: 993px){.partners__content__batch_text{margin-bottom:1rem}}
.partners__listing{padding-top:2rem;width:50%;display:flex;gap:1rem}
@media(max-width: 993px){.partners__listing{width:100%;overflow:hidden;flex-wrap:wrap;padding-bottom:1rem}}
.partners__listing__first_row,.partners__listing__first_row_two{width:50%;gap:1rem}
@media(max-width: 993px){.partners__listing__first_row,.partners__listing__first_row_two{width:100%;gap:0}}
.partners__listing__first_row,.partners__listing__second_row{width:50%;gap:1rem}
@media(max-width: 993px){.partners__listing__first_row,.partners__listing__second_row{width:100%;gap:0}}
.partners__listing__card{border-radius:17.49px;border:1.093px solid #f5f5f5;background:#fff;padding:1rem;height:125px !important}
@media(max-width: 993px){.partners__listing__card{height:-moz-max-content !important;height:max-content !important;width:270px !important}}
.partners__listing__card .flex{display:flex}
@media(max-width: 993px){.partners__listing__card .flex{display:block}}
.partners__listing__card p{font-size:15px;color:#252c32;margin-bottom:0 !important;margin-top:1.5rem !important}
@media(max-width: 993px){.partners__listing__card p{text-align:left;margin-top:1.5rem}}
.partners__listing__card__part{width:50%}
@media(max-width: 993px){.partners__listing__card__part{width:40%;float:left;text-align:left}}
.partners__listing__card__part img{height:37px}
.partners__listing__card__part__2{width:50%}
.partners__listing__card__part__2 .button{font-size:13.117px;color:#252c32;border-radius:8.745px;border:1.093px solid #f5f5f5;background:var(--Base-White, #FFF);box-shadow:0 1.093px 2.186px 0 rgba(1,18,34,.04);padding:5px 10.931px;display:flex;justify-content:center;align-items:center;margin-top:0;width:100% !important}
.partners .button{display:inline-flex;width:-moz-max-content;width:max-content;margin-top:1em}
@media(max-width: 993px){.partners .button{margin-top:0}}
.partners .accent-text{color:#fc8fb8;margin-bottom:1rem}
.partners .splide__track{height:31.875rem !important}
@media(max-width: 993px){.partners .splide__track{height:-moz-max-content !important;height:max-content !important}}
.splide__pagination{display:none !important}
.partners__listing__second_row .flex{display:flex}
@media(max-width: 993px){.partners__listing__second_row .flex{width:100%;display:flex;flex-direction:row}}
.testimonial-wrapper{position:relative}
.testimonial-container{position:relative;padding-top:5rem;padding-bottom:5rem}
.testimonial-container .testimonial-slider{overflow:hidden;width:75%;margin:auto}
@media(max-width: 993px){.testimonial-container .testimonial-slider{width:100%}}
.testimonial-container .testimonial-slider .swiper-slide{display:flex;justify-content:center;align-items:center;gap:2rem;flex-direction:row}
.testimonial-container .testimonial-slider .swiper-slide .trust-pilot{margin-top:1rem}
@media(max-width: 993px){.testimonial-container .testimonial-slider .swiper-slide{flex-direction:column}}
.testimonial-container .testimonial-slider .swiper-slide h3{font-weight:500;font-size:2.5rem;line-height:3rem;margin-top:0;margin-bottom:1rem}
@media(max-width: 993px){.testimonial-container .testimonial-slider .swiper-slide h3{font-size:1.75rem;line-height:2.5rem;margin:0}}
.testimonial-container .testimonial-slider .swiper-slide div{font-size:1rem;font-weight:400}
.testimonial-container .testimonial-slider .testimonial-prev{position:absolute;left:5em;top:50%;transform:translate(0, -50%);z-index:10}
@media(max-width: 993px){.testimonial-container .testimonial-slider .testimonial-prev{display:none}}
.testimonial-container .testimonial-slider .testimonial-next{position:absolute;right:5em;top:50%;transform:translate(0, -50%);z-index:10}
@media(max-width: 993px){.testimonial-container .testimonial-slider .testimonial-next{display:none}}
ul.splide__pagination.splide__pagination--ttb{display:none}
.testimonial__listing__card{width:33%}
@media(max-width: 1100px){.testimonial__listing__card{width:50%}}
@media(max-width: 993px){.testimonial__listing__card{width:100%}}
.testimonial__listing__card__part{text-align:left;padding:20px;margin:20px;border-radius:2rem;border:1px solid #e5e7eb}
.testimonial__listing__card__part .logo{height:90px;width:auto;margin-bottom:1rem}
.testimonial__listing__card__profile_image{width:50px;height:50px;-o-object-fit:cover;object-fit:cover;border-radius:999px}
.testimonial__listing__card__wrap{display:flex;gap:1rem;justify-content:flex-start;margin-top:1rem}
.testimonial__listing__card__name{font-weight:600;font-size:16px;color:#000}
.testimonial__listing__card__location{font-weight:400;font-size:16px}
.testimonial__listing__card__review .text-pink{color:#f17ca8}
.testimonial__listing__second_row{margin-top:15px}
.testimonial__listing__second_row .testimonial__listing__card__wrap{display:flex;gap:1rem;justify-content:flex-start;align-items:center;flex-direction:row-reverse}
.text-pink{color:#f17ca8}
.job-video-section{padding:4rem 0 5rem 0;position:relative;overflow:hidden}
.job-video-section .job__info-item__pink{color:#f17ca8;font-weight:600;font-size:1rem;text-align:center;margin:0 0 0.625rem 0}
.job-video-section .job__info-item__title{color:#333;text-align:center;font-size:2.5rem;font-weight:500;margin:0 0 0.625rem 0}
.job-video-section .job__info-description{color:#6b7280;text-align:center;font-size:1rem;font-weight:400;margin:0 0 3.75rem 0}
.job-video-section .bg-pink-vector{position:absolute;right:0;bottom:0;z-index:-1}
.job-video-section video{border-radius:1.875rem}
.testimonial__card{display:grid;grid-template-columns:3.5rem 1fr;gap:2rem;border:1px solid #e5e7eb;background:#fff;border-radius:1.875rem;padding:2rem 5.25rem 2rem 2rem}
@media(max-width: 767px){.testimonial__card{grid-template-columns:100%;gap:1rem;padding:1.5rem}}
.testimonial__card__photo{display:flex;align-items:center;justify-content:center;width:3.5rem;height:3.5rem}
.testimonial__card__photo img{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain;border-radius:50%}
.testimonial__card__content-top{display:flex;gap:1rem;align-items:center;margin-bottom:1rem}
@media(max-width: 767px){.testimonial__card__content-top{flex-direction:column;align-items:flex-start;gap:0.5rem;margin-bottom:0.5rem}}
.testimonial__card__name{font-weight:700;font-size:1rem;line-height:1.5rem;color:#252c32}
.testimonial__card__rating{display:flex;align-items:center;justify-content:center;gap:4px}
.testimonial__card__rating img{display:block;width:24px;height:24px;-o-object-fit:contain;object-fit:contain}
@media(max-width: 767px){.testimonial__card__rating{order:-1}}
.testimonial__card__date{font-size:0.875rem;line-height:1.25rem;color:#6b7280;margin-left:auto}
@media(max-width: 767px){.testimonial__card__date{margin-left:0}}
.testimonial__card__review{font-size:1rem;line-height:1.5rem;font-weight:400;color:#252c32;margin-bottom:1rem}
@media(max-width: 479px){.testimonial__card__review{font-size:0.875rem;line-height:1.25rem}}
.testimonial__card__text.short-text{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.testimonial__card__text span.pink{font-weight:600;color:#fc8fb8}
.testimonial__card__text span.read-more{cursor:pointer}
.testimonial__card__recommend{display:flex;align-items:center;justify-content:flex-start;gap:1rem}
.testimonial__card__recommend span{font-size:0.875rem;line-height:1.25rem;color:#6b7280}
@media(max-width: 767px){.testimonial__card__recommend{flex-direction:column;align-items:flex-start}}
.testimonial__card__like-wrap{display:flex;align-items:center;justify-content:center;gap:1rem}
.testimonial__card__likes{display:flex;align-items:center;justify-content:center;gap:0.375rem}
.profile-reviews{padding:5rem 0}
@media(max-width: 993px){.profile-reviews{padding:3.125rem 0}}
.profile-reviews .container{overflow:hidden}
.profile-reviews .no-shown{display:none}
.profile-reviews .button{max-width:12.5rem;margin:0;border:1px solid #e5e7eb;box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863)}
.profile-reviews .button__review{border:1px solid #fc8fb8;padding:0.625rem 1rem;border-radius:14px}
.profile-reviews .button__review span{font-weight:500;padding:0}
.profile-reviews .button__review--wrap{display:flex;justify-content:center;align-items:center;margin:0}
.profile-reviews .reviews-list-wrapper{display:flex;flex-wrap:wrap}
.profile-reviews__holder{display:flex;flex-direction:column}
.profile-reviews .accent-text{font-weight:500;color:#ff639e;text-align:center;margin-bottom:1rem}
.profile-reviews__head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:4rem}
.profile-reviews__head .profile-reviews_title-wrap{text-align:start}
@media(max-width: 767px){.profile-reviews__head .profile-reviews_title-wrap{text-align:center}.profile-reviews__head{flex-direction:column;align-items:center;justify-content:center;gap:1rem;margin-bottom:2rem}}
.profile-reviews .title{font-weight:500;margin:0 0 1rem;text-align:start}
@media(max-width: 993px){.profile-reviews .title{font-size:1.75rem;font-weight:600;line-height:1.2}}
@media(max-width: 767px){.profile-reviews .title{text-align:center}}
.profile-reviews__text{margin-bottom:0;align-self:center;max-width:28.75rem;color:#888;font-weight:400}
.profile-reviews__cards .swiper-notification{display:none}
@media(max-width: 993px){.profile-reviews__cards{row-gap:1.25rem}}
.profile-reviews__cards .column{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
@media(max-width: 993px){.profile-reviews__cards .column{grid-template-columns:100%}}
.profile-reviews__card{padding:1.875rem;border-radius:0.625rem;border:0.125rem solid #dcdfe9;background-color:#f9fafb;-webkit-user-select:none;-moz-user-select:none;user-select:none}
@media(max-width: 993px){.profile-reviews__card{padding:1rem}}
.profile-reviews__card-img{margin-bottom:1.5rem;width:8.125rem;height:8.125rem;border-radius:50%;overflow:hidden}
@media(max-width: 993px){.profile-reviews__card-img{margin-bottom:1rem;width:6.25rem;height:6.25rem}}
.profile-reviews__card-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.profile-reviews__rating{margin-bottom:0.75rem;display:flex;-moz-column-gap:0.125rem;column-gap:0.125rem}
@media(max-width: 993px){.profile-reviews__rating{margin-bottom:1rem}}
.profile-reviews__info{margin-bottom:1.75rem;font-weight:600}
@media(max-width: 993px){.profile-reviews__info{margin-bottom:1rem;font-size:0.875rem;line-height:1.5rem;font-weight:500}}
.profile-reviews__name{margin-bottom:0.25rem;font-size:0.875rem;line-height:1.25rem;font-weight:600}
.profile-reviews__position{font-size:0.75rem;font-weight:500;line-height:1rem;color:#888}
.profile-reviews__show-more{display:flex;align-items:center;justify-content:center;margin-top:4rem;position:relative}
@media(max-width: 993px){.profile-reviews__show-more{margin-top:2rem}}
@media(max-width: 767px){.profile-reviews__show-more{width:100%}}
.profile-reviews__show-more .button{padding:0.8125rem 1.625rem}
@media(max-width: 767px){.profile-reviews__show-more .button{max-width:100%}}
.profile-reviews__show-more .profile-reviews__pagination{display:none;align-items:center;justify-content:center}
.profile-reviews__pagination{padding:0.75rem 0;position:relative;display:flex;justify-content:center}
.profile-reviews__pagination .swiper-pagination-bullet{background:#e5e7eb;width:0.625rem;height:0.625rem;margin:0 0.625rem;opacity:1}
.profile-reviews__pagination .swiper-pagination-bullet-active{opacity:1;background:#f699bd}
.profile-reviews__pagination .swiper-pagination-bullet-active-next,.profile-reviews__pagination .swiper-pagination-bullet-active-prev{transform:scale(0.8)}
.profile-reviews__pagination .swiper-pagination-bullet-active{transform:scale(1.5)}
.profile-reviews__pagination .swiper-pagination-bullet-active-next-next,.profile-reviews__pagination .swiper-pagination-bullet-active-prev-prev{transform:scale(0.6)}
.table-section{margin:3rem 0}
@media(max-width: 993px){.table-section{margin:3.75rem 0}}
@media(max-width: 767px){.table-section{margin:2.5rem 0}}
.table-section.full-table--js .compare-senior__bottom{justify-content:center}
.table-section.full-table--js .compare-senior__holder,.table-section.full-table--js .compare-senior__view-wrap{display:none}
.compare-senior{border:1px solid #e5e7eb;border-radius:1.5rem;overflow:auto;font-weight:600;color:#252c32}
@media(max-width: 993px){.compare-senior{margin-top:1rem}}
.compare-senior-wrapper{position:relative}
.compare-senior__controll{display:flex;align-items:center;justify-content:space-between;gap:2rem;margin-bottom:2rem}
@media(max-width: 993px){.compare-senior__controll{display:contents;flex-direction:column;gap:1rem;margin-bottom:1rem}}
.compare-senior__select{display:flex;align-items:center;gap:10px}
@media(max-width: 993px){.compare-senior__select{margin-bottom:1rem}}
.compare-senior__select select{display:flex;padding:0.3125rem;font-size:1rem;line-height:1.2}
.compare-senior__search{display:flex;align-items:center;max-width:420px;width:100%;border:1px solid #e5e7eb;border-radius:0.75rem;overflow:hidden}
@media(max-width: 993px){.compare-senior__search{margin-bottom:1rem}}
.compare-senior__buttons{display:flex;gap:1rem;align-items:center}
@media(max-width: 993px){.compare-senior__buttons{justify-content:space-between;width:calc(100% + 16px);margin-left:-8px;position:sticky;top:34vh;z-index:4}}
.compare-senior__buttons .button{width:42px;height:42px;box-shadow:2px 2px 5px rgba(0,0,0,.2)}
.compare-senior__buttons .button.scroll-left{transform:rotate(180deg)}
.compare-senior__label{display:flex;width:100%;position:relative}
.compare-senior__label svg{position:absolute;z-index:1;top:50%;left:4px;transform:translateY(-50%)}
.compare-senior__label input{width:100%;padding:0.5rem 0.5rem 0.5rem 2rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.5rem;outline:none;border:none}
.compare-senior .grey{background:#f7f7f8 !important}
.compare-senior .white{background:#fff !important}
.compare-senior__scroll-block{display:grid;grid-template-columns:repeat(5, minmax(120px, 1fr)) 240px}
.compare-senior__header{display:grid;grid-template-columns:minmax(240px, 1.1fr) minmax(260px, 1.1fr) 220px 220px 160px 160px;background:#fbafcc;align-items:center;border-bottom:1px solid #e5e7eb;font-size:0.875rem;line-height:1.42}
.compare-senior__body{background:#fff;font-size:0.75rem;line-height:1.33}
.compare-senior__body-block{display:grid;grid-template-columns:minmax(240px, 1.1fr) minmax(260px, 1.1fr) 220px 220px 160px 160px;background:#fff}
.compare-senior__item{display:flex;align-items:center;justify-content:center;text-align:center;padding:1.125rem 1.5rem;color:inherit;text-decoration:none;transition:.3s ease-in-out;font-size:0.875rem;line-height:1.43;font-weight:500;background:#fff;position:relative}
.compare-senior__item button svg{display:flex;margin-left:8px}
.compare-senior__item.first{text-align:left;justify-content:flex-start;padding-left:3rem}
.compare-senior__item.last{padding-right:3rem}
.compare-senior__item.pink{background:#fbafcc !important}
.compare-senior__item.light-pink{background:#ffe4f1}
.compare-senior__item.light-font{font-weight:400 !important}
.compare-senior__item.name-position{position:sticky;justify-content:flex-start;left:0;height:100%;font-size:0.875rem;line-height:1.43;text-decoration:underline}
.compare-senior__item.small-btn{display:grid;grid-template-columns:1fr 1fr;gap:0.625rem}
.compare-senior__item.small-btn button{padding:0.625rem}
.compare-senior__item .type--wrap{display:flex;position:relative;gap:0.3125rem;flex-wrap:wrap}
.compare-senior__item .type__tooltip{display:flex;align-items:center;justify-content:center;text-align:left;width:240px;opacity:0;position:absolute;bottom:calc(100% + 6px);left:-40px;background:#fff;padding:0.25rem;border-radius:12px;box-shadow:0 1px 2px 0 rgba(1,18,34,0.0392156863);margin:0;transition:.2s ease-in-out;font-size:.875rem;pointer-events:none}
.compare-senior__item .type__tooltip span{display:inline-block;width:100%;color:#252c32;font-size:12px}
.compare-senior__item .type{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:#fc8fb8;color:#fff;position:relative;cursor:pointer}
.compare-senior__item .type:hover+.type__tooltip,.compare-senior__item .type:focus+.type__tooltip{opacity:1}
.compare-senior__item .type[data-tooltip]:hover+.type__tooltip{opacity:1}
.compare-senior__item .true{color:#22c55e;font-weight:500;background:#ebfff1;padding:0.25rem 0.875rem}
.compare-senior__item .false{color:#ef4444;font-weight:500;background:#ffefeb;padding:0.25rem 0.875rem}
.compare-senior__item .button{box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863);padding:0.75rem 1.09375rem;font-size:0.75rem;line-height:1.33;font-weight:600}
.compare-senior__item .button--pink{color:#fff}
.compare-senior a:hover,.compare-senior a:focus{color:#fc8fb8}
.compare-senior .grid-1fr{grid-template-columns:100%}
.compare-senior .content-start{justify-content:flex-start}
.compare-senior__bottom{display:flex;align-items:center;justify-content:space-between}
@media(max-width: 993px){.compare-senior__bottom{flex-direction:column}}
.compare-senior__holder{width:180px}
@media(max-width: 993px){.compare-senior__holder{display:none}}
.compare-senior__pagination{display:flex;align-items:center;justify-content:center;margin-top:1.25rem}
.compare-senior__pagination .pagination__link{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;padding:0.25rem;background:rgba(0,0,0,0);border:none;transition:.3s ease-in-out}
.compare-senior__pagination .pagination__link.active{color:#fc8fb8}
.compare-senior__pagination .pagination__link:hover,.compare-senior__pagination .pagination__link:focus{color:#fc8fb8}
@media(max-width: 993px){.compare-senior__view-wrap{display:flex;justify-content:flex-end;width:100%}}
@media(max-width: 767px){.compare-senior__view-wrap{justify-content:center}}
.compare-senior__view-wrap a{display:flex;align-items:center;font-weight:500;font-size:16px;line-height:24px;letter-spacing:0;text-align:right;color:#ff639e;text-decoration:none}
.compare-senior__view-wrap a svg{width:16px;height:16px;margin-left:10px}
.compare-senior .compare-senior__item.sticky{position:sticky;left:0;z-index:2;background-color:#fff;box-shadow:2px 0px 5px rgba(0,0,0,.1)}
@media(max-width: 993px){.compare-senior .compare-senior__item.sticky{position:unset;z-index:auto;box-shadow:unset}}
.meet-staff{padding:2.125rem 0 0 1.875rem;margin-left:-1.875rem;overflow:hidden;max-width:100%}
@media(max-width: 1100px){.meet-staff{max-width:calc(100% + 1.875rem)}}
@media(max-width: 993px){.meet-staff{margin-left:-1.25rem;padding:2.5rem 0 0 1.25rem;max-width:calc(100% + 1.25rem)}}
.meet-staff h2{margin:0;padding-top:2rem;font-size:1.5rem;font-weight:600;line-height:2rem}
.meet-staff__list{padding-top:0.375rem;overflow:unset}
.meet-staff__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:3rem}
@media(max-width: 767px){.meet-staff__top{flex-direction:column;justify-content:center;align-items:flex-start;gap:1rem;margin-bottom:1.25rem}}
.meet-staff__author{display:flex;align-items:center;gap:2rem}
.meet-staff__photo-wrap{position:relative}
.meet-staff__verify{display:flex;align-items:center;justify-content:center;position:absolute;top:-5px;right:-5px;width:2.125rem;height:2.125rem;border-radius:50%;background:radial-gradient(143.04% 143.04% at 55.95% 0%, rgb(252, 143, 184) 17.499999702%, rgb(255, 100, 158) 100%);box-shadow:inset 0 0 7px 0 #ff6fa6}
.meet-staff__photo{display:flex;align-items:center;justify-content:center;width:8.75rem;height:8.75rem;border:1.5px solid #fff;border-radius:50%;overflow:hidden;box-shadow:0px 25px 50px 0px rgba(0,0,0,.1490196078)}
@media(max-width: 993px){.meet-staff__photo{width:6.625rem;height:6.625rem;border:1.14px solid #fff}}
.meet-staff__photo img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.meet-staff__bio{display:flex;flex-direction:column;gap:0.375rem}
.meet-staff__name{font-weight:600;font-size:1.375rem;line-height:1.29;letter-spacing:-0.8px;color:#252c32}
@media(max-width: 993px){.meet-staff__name{font-size:1.125rem;line-height:1.56}}
.meet-staff__company{font-size:1rem;line-height:1.5;font-weight:600;letter-spacing:0;color:#ff639e}
.meet-staff__contact{display:flex;gap:1rem}
.meet-staff__contact .button{align-items:center;gap:0.5rem;font-weight:500;font-size:1rem;line-height:1.5;color:#252c32;padding:0.65625rem 1.375rem;border:1px solid #e5e7eb;border-radius:0.5rem;box-shadow:0px 1px 2px 0px rgba(1,18,34,.0392156863)}
@media(max-width: 993px){.meet-staff__contact{margin:0;width:100%}}
@media(max-width: 479px){.meet-staff__contact{flex-direction:column}}
.meet-staff__main{display:grid;grid-template-columns:100%;align-items:center;gap:2rem}
@media(max-width: 993px){.meet-staff__main{gap:1rem}}
.meet-staff__info{display:flex;flex-direction:column;height:100%;border:1px solid #e5e7eb;border-radius:1.125rem;padding:2rem;gap:0.75rem;background:#fff}
.meet-staff__info .info-main__item{display:flex;flex-direction:column;font-size:0.875rem;line-height:1.43;letter-spacing:0;color:#6b7280}
.meet-staff__info .info-main__item span{font-weight:600;font-size:1.125rem;line-height:1.56;color:#252c32;margin-bottom:0.75rem}
@media(max-width: 993px){.meet-staff__info .info-main__item br{display:none}}
.meet-staff__types{display:flex;flex-direction:column;gap:0.75rem}
.meet-staff__type{display:flex;align-items:center;gap:0.5625rem;padding:0 0 0 0.5625rem;font-size:1rem;font-weight:400;line-height:1.5;letter-spacing:0;color:#6b7280}
@media(max-width: 993px){.meet-staff__type{font-size:0.875rem;padding:0}}
.meet-staff__type:before{content:"";display:block;flex-shrink:0;width:6px;height:6px;background:#6b7280;border-radius:50%}
@media(max-width: 993px){.meet-staff__type:before{width:4px;height:4px}}
.service-spotlight{background:#fff;padding:5rem 0;margin:1.25rem 0}
.service-spotlight__slider{overflow:hidden}
@media(max-width: 993px){.service-spotlight{padding:2.5rem 0}}
@media(max-width: 479px){.service-spotlight{padding:1.25rem 0}}
.service-spotlight h2{font-weight:600;line-height:1.2;letter-spacing:-0.03em}
@media(max-width: 993px){.service-spotlight h2{font-size:1.75rem}}
.service-spotlight__subtitle{max-width:752px;font-weight:500;font-size:1.125rem;text-align:center;color:#6b7280;letter-spacing:-0.03em;margin:0 auto 2.875rem}
@media(max-width: 993px){.service-spotlight__subtitle{font-size:1rem;margin:0 auto 1.5rem}}
.service-spotlight__controll{display:flex;align-items:center;justify-content:space-between;gap:1rem;max-width:526px;margin:0 auto 2.875rem}
@media(max-width: 993px){.service-spotlight__controll{margin:0 auto 1.5rem}}
.service-spotlight__controll-prev,.service-spotlight__controll-next{display:flex;justify-content:center;align-items:center;width:3.25rem;height:3.25rem;border-radius:0.8125rem;padding:1.21875rem 1.375rem;background:#fff;border:1px solid #ff639e;box-shadow:0 2px 4px 0 rgba(26,26,26,.08);cursor:pointer;transition:.3s ease-in-out}
@media(max-width: 993px){.service-spotlight__controll-prev,.service-spotlight__controll-next{height:2.625rem}}
.service-spotlight__controll-prev:hover,.service-spotlight__controll-prev:focus,.service-spotlight__controll-next:hover,.service-spotlight__controll-next:focus{background:#fc8fb8}
.service-spotlight__card{display:flex;flex-direction:column;align-items:flex-start;height:auto;padding:1.875rem 1.875rem 3.375rem;border-radius:1.25rem;background:#fff;border:1px solid #ff639e;box-shadow:0 2px 4px 0 rgba(26,26,26,.08)}
.service-spotlight__card__icon{display:flex;align-items:center;justify-content:center;border-radius:50%;overflow:hidden;width:3.625rem;height:3.625rem;box-shadow:inset 0 0 12px 0 #ff6fa6;background:radial-gradient(143.04% 143.04% at 55.95% 0%, rgb(252, 143, 184) 17.499999702%, rgb(255, 100, 158) 100%);margin:0 0 1.5rem}
.service-spotlight__card__icon img{display:block;width:100%;height:100%;max-width:32px;max-height:32px;-o-object-fit:cover;object-fit:cover}
.service-spotlight__card h3{font-size:1.5rem;font-weight:600;line-height:1.33;margin:0 0 1.125rem}
.service-spotlight__card p{font-size:1rem;line-height:1.5;color:#6b7280;margin:0 0 1.875rem}
.service-spotlight__card .button{border:1px solid #ff639e;border-radius:0.5rem;padding:0.875rem 1.375rem;box-shadow:0 2px 4px 0 rgba(26,26,26,.08);background:#fff;transition:.3s ease-in-out;margin-top:auto}
.service-spotlight__card .button:hover,.service-spotlight__card .button:focus{background:#fc8fb8}
@media(max-width: 993px){.service-spotlight__card{padding:0.9375rem}}
body.author{background-color:#f7f7f8}
.author-section{padding-top:20px;background-color:#fff}
.author-section .container{max-width:1140px;width:100%;padding:0 15px;margin:0 auto}
.author-section__breadcrumbs{padding-bottom:10px}
.author-section__content{display:grid;grid-template-columns:420px 1fr;gap:20px;margin:20px 0}
@media(max-width: 1200px){.author-section__content{grid-template-columns:400px 1fr;gap:40px}}
@media(max-width: 900px){.author-section__content{grid-template-columns:1fr;gap:30px}}
.author-section__image{display:flex;justify-content:flex-start;align-items:flex-start;position:relative;height:400px;max-width:400px}
@media(max-width: 900px){.author-section__image{justify-content:center}}
.author-section__image-top{aspect-ratio:1/1}
.author-section__photo-img{z-index:2;position:absolute;bottom:0;width:80%;left:10%;right:10%;-o-object-fit:cover;object-fit:cover;border-radius:8px;transform:scaleX(-1)}
.author-section__photo-frame{z-index:1;position:absolute;bottom:0;left:0;right:0;display:flex;align-items:center;justify-content:center}
.author-section__photo-frame img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:8px}
.author-section__info{display:flex;flex-direction:column;justify-content:flex-start}
@media(max-width: 900px){.author-section__info{padding-top:0}}
.author-section__header{display:flex;justify-content:space-between;margin-bottom:30px;border-bottom:1px solid #e4e7ec;padding-bottom:20px}
.author-section__name{font-size:24px;font-weight:600;color:#344051;margin:0;line-height:1.1}
.author-section__role{font-size:14px;color:#ff649e;font-weight:400}
@media(max-width: 768px){.author-section__role{font-size:16px}}
.author-section__social-link{border:1px solid #e4e7ec;border-radius:8px;padding:6px;display:flex;align-items:center;justify-content:center;transition:all .3s ease}
.author-section__social-link:hover{border-color:#ff649e}
.author-section__socials{display:flex;align-items:center;gap:15px}
@media(max-width: 900px){.author-section__socials{justify-content:center}}
.author-section__socials a{display:block;width:32px;height:32px;transition:opacity .3s ease}
.author-section__socials a:hover{opacity:.7}
.author-section__socials a img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}
.author-section__description{font-size:16px;line-height:1.6;color:#666}
@media(max-width: 768px){.author-section__description{font-size:15px}}
.author-section__description p{margin-bottom:20px;color:inherit}
.author-section__description p:last-child{margin-bottom:0}
.author-section__citations{margin:60px 0}
.author-section__citations h2{font-size:24px;font-weight:600;margin-bottom:30px;color:#1a1a1a}
@media(max-width: 768px){.author-section__citations h2{font-size:20px}}
.author-section__citations-item{font-size:16px;line-height:1.6;color:#666;margin-bottom:15px;text-decoration:underline}
.author-section__posts{margin-top:60px;padding-bottom:60px}
.author-section__posts h2{font-size:24px;font-weight:600;margin-bottom:40px;color:#1a1a1a;text-align:left}
@media(max-width: 768px){.author-section__posts h2{font-size:20px;margin-bottom:30px}.author-section__posts{margin-top:20px}}
.author-section__posts-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:24px}
@media(max-width: 1024px){.author-section__posts-grid{grid-template-columns:repeat(2, 1fr);gap:20px}}
@media(max-width: 768px){.author-section__posts-grid{grid-template-columns:1fr;gap:16px}}
.author-section__post-card{background:#fff;border:1px solid #e4e7ec;border-radius:16px;padding:16px 16px 20px;gap:12px;transition:all .2s ease}
.author-section__post-card:hover{border-color:#ff649e;box-shadow:0 4px 12px rgba(255,100,158,.1)}
@media(max-width: 768px){.author-section__post-card{padding:20px}}
.author-section__post-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.author-section__post-icon{flex-shrink:0;margin-top:2px}
.author-section__post-title{margin:0;font-size:16px;font-weight:500;color:#1a1a1a;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
@media(max-width: 768px){.author-section__post-title{font-size:16px}.author-section__post-content{margin-left:35px}}
.author-section__post-excerpt{margin:0 0 12px 0;font-size:14px;line-height:1.5;color:#64748b;display:-webkit-box;-webkit-line-clamp:3;font-weight:400;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.author-section__post-link{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:500;color:#344051;text-decoration:none;transition:all .2s ease}
.author-section__post-link:hover{color:#ff649e}
.author-section__post-link:hover svg path{stroke:#ff649e}
.author-section__post-link svg{transition:all .2s ease}
.financing_option{margin:80px 0}
@media(max-width: 993px){.financing_option{margin:60px 0}.financing_option .container{padding-right:0}}
@media(max-width: 767px){.financing_option{margin:40px 0}}
.financing_option__title{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;cursor:pointer;margin:0 0 50px}
@media(max-width: 993px){.financing_option__title{font-size:24px}}
.financing_option__title-icon{display:flex;align-items:center;justify-content:center;width:50px;height:50px}
.financing_option__body{overflow-x:auto}
.financing_option h3{font-size:1.5rem;font-weight:600;line-height:2rem;margin:0 0 16px}
.financing_option__description{font-size:18px;color:#6b7280;max-width:820px;margin-bottom:46px}
@media(max-width: 993px){.financing_option__description{font-size:16px;margin-bottom:32px}}
.financing_option__check{display:grid;grid-template-columns:repeat(3, 1fr);margin-bottom:46px}
@media(max-width: 993px){.financing_option__check{grid-template-columns:1fr 1fr;gap:16px;margin-bottom:32px}}
.financing_option__check-list{display:flex;flex-direction:column}
.financing_option__check h4{font-weight:600;margin:0 0 16px}
@media(max-width: 993px){.financing_option__check h4{font-size:14px}}
.financing_option__check-item{display:flex;align-items:center;gap:8px;font-weight:500}
@media(max-width: 993px){.financing_option__check-item{font-size:14px}}
.financing_option__check-item:not(:last-child){margin-bottom:12px}
.financing_option__check-icon{display:flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:#ffe4f1}
.financing_option__list{display:flex;flex-direction:column}
.financing_option .bullets li{display:flex;align-items:baseline;gap:4px}
.financing_option .bullets li:before{content:"";display:block;flex-shrink:0;width:6px;height:6px;border-radius:50%;background:#252c32}
.financing_option__table{display:flex;flex-direction:column;border:1px solid #e5e7eb;border-radius:1.5rem;overflow-x:auto}
.financing_option__table-row{align-items:flex-start}
.financing_option__table-block{display:grid;grid-template-columns:repeat(2, 270px) repeat(2, minmax(300px, 1fr))}
.financing_option__cta{display:grid;grid-template-columns:100%;width:100%}
.financing_option .compare-senior__item{text-align:left;justify-content:flex-start}
.financing_option__desktop{display:block}
.financing_option__mobile{display:none}
@media(max-width: 993px){.financing_option__desktop{display:none}.financing_option__mobile{display:block}.financing_option__mobile .swiper-wrapper{padding-bottom:50px}.financing_option__mobile .swiper-pagination-bullet-active{background:#ff91ba}.financing_option__mobile__divider{height:1px;width:100%;background:#ffe3ee;margin:0.75rem 0}.financing_option__mobile .financing_option__main-title{font-size:20px;font-weight:400;max-width:70%}.financing_option__mobile .financing_option__main-title strong{font-size:20px}.financing_option__mobile .financing_option__main-title span{color:#ff91ba;white-space:nowrap}.financing_option__mobile__card{padding:1.25rem 1rem;border:1px solid #e4e7ec;border-radius:1rem}.financing_option__mobile__card__program-name{padding:0.125rem 0.625rem;color:#fff;background:#ff91ba;border-radius:0.25rem;font-size:0.75rem;font-weight:500;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden;width:-moz-fit-content;width:fit-content}.financing_option__mobile__card__title{margin:0.75rem 0;font-size:1rem;color:#141c25;font-weight:600}.financing_option__mobile__field__title{font-weight:700;font-size:12px;margin:0.75rem 0}.financing_option__mobile__field__list{display:flex;flex-direction:column;gap:12px;font-size:12px;font-weight:400}.financing_option__mobile__field__list span{font-weight:bold}}
.video-tour{margin:80px 0}
@media(max-width: 993px){.video-tour{margin:60px 0}}
@media(max-width: 767px){.video-tour{margin:40px 0}}
.video-tour .swiper-slide{height:auto}
.video-tour--wrapper{overflow:hidden}
.video-tour__navigation{justify-content:flex-end;align-items:center;gap:20px;margin:0 0 36px}
@media(max-width: 993px){.video-tour__navigation{gap:12px;margin:0 0 18px}}
.articles-section{padding:80px 0;background:#fff;margin:20px 0}
@media(max-width: 993px){.articles-section{padding:40px 0}}
@media(max-width: 479px){.articles-section{padding:20px 0}}
.articles-section__content{display:grid;grid-template-columns:374px 1fr;align-items:flex-start;gap:34px}
@media(max-width: 993px){.articles-section__content{grid-template-columns:100%;gap:14px}}
.articles-section__sidebar{display:flex;flex-direction:column;align-items:flex-start;gap:4px}
.articles-section .category-btn{display:flex;flex-direction:column;border:none;background:rgba(0,0,0,0);padding:8px 14px;font-weight:600;font-size:16px;line-height:1.5;letter-spacing:0;color:#252c32;text-align:start;transition:.3s ease-in-out;text-decoration:none}
.articles-section .category-btn.toggle__opener{background:#f7f7f8;border:1px solid #e5e7eb;width:100%}
.articles-section .category-btn:hover,.articles-section .category-btn:focus{background:#f7f7f8}
.articles-section .category-title{text-decoration:underline;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.articles-section .category-description{font-weight:400;font-size:14px;line-height:20px;letter-spacing:0;color:#252c32;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.articles-section .category-data{font-weight:400;font-size:14px;line-height:20px;letter-spacing:0;color:#9ca3af;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.articles-section__posts{display:grid;grid-template-columns:1fr 1fr;gap:48px 32px;margin-bottom:100px}
@media(max-width: 993px){.articles-section__posts{gap:20px;margin-bottom:60px}}
@media(max-width: 767px){.articles-section__posts{grid-template-columns:100%;margin-bottom:40px}}
.articles-section__card{width:100%;padding:0;border:1px solid rgba(0,0,0,0);border-radius:18px;overflow:hidden}
@media(max-width: 767px){.articles-section__card{max-width:480px;margin:0 auto}}
.articles-section__card .gallery__video-frame{aspect-ratio:16/10;height:100%;max-height:480px}
.articles-section__card img{position:relative}
.articles-section__card img:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;background:rgba(0,0,0,.3)}
.articles-section__card #loading-gui .icon-play-unicode{width:40px;height:40px;border:2px solid #fff;background:rgba(48,48,54,.5)}
.articles-section .gallery__video-content{display:none}
.articles-section .articles__card{aspect-ratio:16/10;width:100%;max-height:480px;padding:0;border:1px solid rgba(0,0,0,0);border-radius:18px;overflow:hidden}
.articles-section .articles__card .articles__card-img{position:relative;height:100%}
.articles-section .articles__card .articles__card-img:before{content:"";display:block;position:absolute;top:0;left:0;bottom:0;right:0;background:rgba(0,0,0,.3)}
.articles-section__form{display:grid;align-items:center;grid-template-columns:1fr 495px;gap:32px}
@media(max-width: 993px){.articles-section__form{grid-template-columns:100%;gap:20px}}
.articles-section__form .form-field__input{border:1px solid #e5e7eb;background:#f7f7f8;padding:12px 14px;border-radius:8px;color:#6b7280}
.articles-section__form .form-field__input::-moz-placeholder{color:#6b7280}
.articles-section__form .form-field__input::placeholder{color:#6b7280}
.articles-section__form .button{background:#fc8fb8;border:1px solid #fc8fb8;box-shadow:0px 1px 2px 0px rgba(16,24,40,.05);padding:12px 14px;border-radius:8px;color:#fff;transition:.3s ease-in-out}
.articles-section__form .button span{padding:0 !important}
.articles-section__form .button:hover,.articles-section__form .button:focus{background:#fff;color:#fc8fb8}
.articles-section__form h2{font-size:36px;line-height:1.22;letter-spacing:-0.02em;margin:0 0 20px}
@media(max-width: 993px){.articles-section__form h2{font-size:24px}}
.articles-section__form p{font-size:20px;line-height:1.5;margin:0;color:#6b7280}
@media(max-width: 993px){.articles-section__form p{font-size:16px}}
.header__child--wrapper{display:grid;grid-template-columns:2fr 1fr;gap:2rem}
.header__child--wrapper .child__list-wrap{display:flex;justify-content:center}
.header__child--wrapper .child__list-wrap ul{flex:1}
.header__child--wrapper .child__list-wrap ul li a{color:#252c32 !important}
.header__child--wrapper .child__list-wrap ul:first-child{padding-right:2rem}
.header__child--wrapper .child__list li a{color:#252c32 !important}
.header__child--wrapper .child__list li:first-child a{font-size:18px;font-weight:600;line-height:1.55;color:#252c32;margin:0 0 16px}
.header__nearby-city{padding-left:32px;border-left:1px solid #e5e7eb}
.header__nearby-city.show{display:block}
.header__submenu__img{overflow:hidden;border-radius:20px;background:#f9639d;position:relative}
.header__submenu__img .submenu__img-content{position:relative;z-index:1;padding:40px}
.header__submenu__img .submenu__img-content p{font-weight:600;font-size:36px;line-height:1.2;letter-spacing:-1px;color:#fff;margin:0 0 16px}
.header__submenu__img .header__submenu__description{font-size:20px;line-height:1.4;font-weight:500;color:#fff;margin:0 0 36px}
.header__submenu__img .picture-wrap{position:absolute;bottom:0;right:0;height:100%;width:100%}
.header__submenu__img .picture-wrap .picture{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.header__submenu__img .elderly-wrap{position:absolute;right:-43%;top:10px;overflow:hidden}
.header__submenu__img .elderly-wrap img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-width:718px}
.header .submenu__button{display:flex;align-items:center;gap:8px;padding:16px 24px;border-radius:8px;background:#fc99be;border:1px solid #fab8d1;font-size:16px;line-height:1.5;font-weight:500;color:#fff;width:100%}
.header .submenu__button svg{flex-shrink:0}
.banner-video{padding:80px 0;background:#fff}
@media(max-width: 993px){.banner-video{padding:40px 0}}
.banner-video--wrapper{display:grid;grid-template-columns:1fr 1fr;gap:80px}
@media(max-width: 993px){.banner-video--wrapper{grid-template-columns:100%;gap:36px}}
.banner-video__content{display:flex;flex-direction:column;justify-content:center}
@media(max-width: 993px){.banner-video__content{align-items:center;text-align:center}}
.banner-video h1{font-weight:600;font-size:40px;line-height:1.2;letter-spacing:-1.3px;color:#252c32;margin:0 0 16px}
@media(max-width: 479px){.banner-video h1{font-size:24px}}
.banner-video h1 span{color:#ff639e}
.banner-video__description{font-weight:400;font-size:16px;line-height:1.5;letter-spacing:0;color:#6b7280;margin:0 0 46px;max-width:504px}
@media(max-width: 993px){.banner-video__description{margin:0 0 24px}}
@media(max-width: 479px){.banner-video__description{max-width:100%;font-size:14px;margin:0 0 16px}}
.banner-video__buttons{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:402px}
@media(max-width: 479px){.banner-video__buttons{grid-template-columns:100%;width:100%}}
.banner-video__button{display:flex;align-items:center;justify-content:center;padding:11.5px 16px;font-weight:500;font-size:16px;line-height:1.5;letter-spacing:0;text-align:center;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0px 1px 2px 0px rgba(1,18,34,.04);transition:.3s ease-in-out}
@media(max-width: 479px){.banner-video__button{font-size:14px}}
.banner-video__button:hover,.banner-video__button:focus{background:#ff639e;color:#fff}
.banner-video__button.pink-border{border:1px solid #fc639e}
.banner-video__video{border:6.06px solid #fff;border-radius:28px;overflow:hidden;background-repeat:no-repeat;background-size:cover;background-position:center center}
@media(max-width: 993px){.banner-video__video{max-width:670px;margin:0 auto}}
.banner-video__video video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;left:0;top:0;aspect-ratio:1/1}
@media(max-width: 479px){.banner-video__video video{aspect-ratio:16/10}}
.two-video-section{margin:1.875rem 0}
.two-video-section__title{font-size:1.25rem;font-weight:600;line-height:1.75rem;color:#141c25;margin:0 0 0.5rem 0}
.two-video-section__sub-title{font-size:0.875rem;font-weight:400;line-height:1.25rem;color:#637083;margin:0 0 1.25rem 0}
.two-video-section__video-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media(max-width: 993px){.two-video-section__video-wrapper{grid-template-columns:1fr}}
.two-video-section__video-wrapper__video{position:relative;width:100%;aspect-ratio:16/9}
.two-video-section__video-wrapper__video video{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:20px}
.funny-videos-section{padding-top:1.875rem;position:relative;margin-bottom:1.875rem}
.funny-videos-section__header{display:flex;flex-direction:column;align-items:flex-start;padding-left:20px;padding-right:20px;gap:4px;align-self:stretch}
.funny-videos-section__header h2{color:#141c25;font-size:20px;font-style:normal;font-weight:600;line-height:28px}
.funny-videos-section__header p{color:#637083;font-size:14px;font-style:normal;line-height:20px}
.funny-videos-section:before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);display:block;height:1px;width:calc(100% - 2.5rem);background:#e4e7ec}
.funny-videos-section .container{padding:0}
.funny-videos-section .swiper-wrapper{padding-bottom:2.5rem;padding-left:1.25rem}
.funny-videos-section .funny-video-container{height:436px;border:1px solid #e4e7ec;border-radius:1rem;background:#000}
.funny-videos-section iframe{border-radius:1rem}
.funny-videos-section .swiper-slide-prev .funny-video-container,.funny-videos-section .swiper-slide-next .funny-video-container{pointer-events:none}
.funny-videos-section .swiper-pagination-bullet-active{background:#ff91ba}
.funny-videos-section .funny-videos-prev{left:0}
.funny-videos-section .funny-videos-next{right:0}
.funny-videos-section .funny-videos-next,.funny-videos-section .funny-videos-prev{height:60%;width:3.125rem;transform:translateY(-50%)}
.funny-videos-section .funny-videos-next:after,.funny-videos-section .funny-videos-prev:after{display:inline-flex;padding:8px;justify-content:center;align-items:center;gap:8px;color:#344051;font-size:14px;font-weight:700;height:44px;width:44px;background:#fff;border-radius:999px;border:1px solid #e4e7ec;box-shadow:0px 1px 2px 0px rgba(20,28,37,.04)}
.funny-videos-section__loader{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:120px;height:120px}
.funny-videos-section__spinner{position:absolute;left:0;top:0;border:16px solid #f9fafb;border-top:16px solid #fba2c4;border-radius:50%;width:100%;height:100%;animation:spin 2s linear infinite}
.new-form{background-color:#fceaf1}
.new-form__title{font-size:1.5rem;font-weight:400;color:#000;margin:0;line-height:2rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif}
@media(max-width: 993px){.new-form__title{font-size:1.25rem;line-height:1.75rem}}
.new-form .wrapper{margin:2rem auto;max-width:45rem;min-height:50rem;margin-top:6.25rem}
@media(max-width: 993px){.new-form .wrapper{min-height:unset;margin-top:3.75rem;margin-bottom:3.75rem}}
.new-form .wrapper .wpcf7{width:100%}
.new-form__btn-wrapper{display:flex;align-items:center;justify-content:flex-end;gap:0.5rem}
.new-form__btn-wrapper [data-step-action=prev]{margin-right:auto}
.new-form__button{width:-moz-fit-content;width:fit-content;padding:10px 16px}
.new-form__label{display:flex;flex-direction:column;row-gap:.5rem;width:100%;position:relative;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:#252c32;font-size:.875rem;font-weight:600;line-height:1.3125rem}
.new-form__label input{width:100%;padding:0.75rem 1.25rem;font-weight:400;border-radius:0.875rem;background-color:#fff !important;border:1px solid #d1d5db;outline:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:0.875rem;line-height:1.25rem;color:#252c32;box-shadow:0 1px 2px 0 rgba(1,18,34,.04)}
.new-form__label input::-moz-placeholder{font-weight:400;color:#b0babf}
.new-form__label input::placeholder{font-weight:400;color:#b0babf}
.new-form__label input:focus-visible{outline:1px solid #fc8fb8;border:1px solid #fc8fb8}
.new-form .wpcf7-textarea{padding:0.75rem 1.25rem;height:11.5625rem;font-size:.875rem;font-weight:500;line-height:1.25rem;border-radius:.5rem;border:1px solid #d1d5db;width:100%;resize:none}
.new-form .wpcf7-textarea:focus-visible{outline:1px solid #fc8fb8;border:1px solid #fc8fb8}
.new-form .wpcf7-textarea::-moz-placeholder{font-weight:400;color:#b0babf}
.new-form .wpcf7-textarea::placeholder{font-weight:400;color:#b0babf}
.new-form .wpcf7-radio{display:flex;flex-direction:column;gap:8px}
.new-form .wpcf7-radio .wpcf7-list-item{margin:0}
.new-form .wpcf7-radio label{display:flex;align-items:center;gap:8px;padding:12px;border-radius:0.875rem;background-color:#fff;border:1px solid #d1d5db}
.new-form .wpcf7-radio .wpcf7-list-item input[type=radio]{display:none}
.new-form .wpcf7-radio .wpcf7-list-item label{position:relative;padding-left:40px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;font-size:16px}
.new-form .wpcf7-radio .wpcf7-list-item label:focus-visible{outline:1px solid #fc8fb8;border:1px solid #fc8fb8}
.new-form .wpcf7-radio .wpcf7-list-item-label::before{content:"";position:absolute;top:50%;left:12px;transform:translateY(-50%);width:20px;height:20px;border:1px solid #ccc;outline:1px solid #ccc;border-radius:4px;background-color:#fff;transition:all 300ms}
.new-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked~.wpcf7-list-item-label::before{border:1px solid #fc8fb8;outline:1px solid #fc8fb8}
.new-form .wpcf7-radio .wpcf7-list-item input[type=radio]~.wpcf7-list-item-label::after{content:"";position:absolute;top:50%;left:18px;width:7px;height:12px;border:solid #fc8fb8;border-width:0 3px 3px 0;transform:translateY(-50%) rotate(45deg);transition:opacity 300ms;opacity:0}
.new-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked~.wpcf7-list-item-label::after{opacity:1}
.new-form .form-step{display:none;gap:clamp(1vw,3rem,2.5vw);width:100%;min-height:100%;flex-direction:column;justify-content:center}
@media(max-width: 993px){.new-form .form-step{gap:1.5625rem}}
.new-form .form-step.active{display:flex}
.new-form .is-invalid{border-color:red !important}
.new-form .wpcf7-spinner{position:absolute}
.new-form .inactive{filter:grayscale(1);pointer-events:none}
.new-form .new-form__label .selected-flag{background:rgba(0,0,0,0)}
.new-form .wp-block-contact-form-7-contact-form-selector{width:100%}
body .senior-care-form .wpcf7 form.sent .wpcf7-response-output{border:none;padding:0;margin:0;text-align:center;font-size:2rem}
.bingo-section{margin:1.875rem 0}
.bingo-section__dividers{position:relative;padding-top:1.875rem;padding-bottom:3.125rem}
.bingo-section__dividers:before,.bingo-section__dividers:after{content:"";display:block;position:absolute;left:0;width:100%;height:1px;background:#e4e7ec}
.bingo-section__dividers:before{bottom:0}
.bingo-section__dividers:after{top:0}
.bingo-section__wrapper{position:relative;overflow:hidden;padding:0.9375rem clamp(1.1875rem,2.1vw,1.875rem) 0.9375rem clamp(0.3125rem,2.8vw,2.5rem);border-radius:1rem;background:linear-gradient(0deg, #F390B8 -25.99%, #D8326E 100%)}
.bingo-section__link-wrapper{display:flex;align-items:center;justify-content:space-between;position:relative;z-index:1;padding-left:clamp(7rem,11vw,9.8125rem);gap:10px}
.bingo-section__img-wrapper{position:absolute;bottom:0;height:90%;width:105px}
.bingo-section__img-wrapper img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:bottom;object-position:bottom}
.bingo-section__link{z-index:2;position:absolute;top:0;left:0;width:100%;height:100%}
.bingo-section__link:hover~.bingo-section__link-wrapper .bingo-section__arrow{transform:rotate(180deg)}
.bingo-section__content{display:flex;flex-direction:column;text-decoration:none;color:#fff}
.bingo-section__title{margin:0;font-weight:700;font-size:1.25rem;line-height:1.75rem}
.bingo-section__title__prefix{font-weight:400}
.bingo-section__desc{font-weight:400;font-size:0.875rem;line-height:1.25rem}
.bingo-section__arrow{display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid #e4e7ec;height:clamp(1.5625rem,2.22vw,2rem);width:clamp(1.5625rem,2.22vw,2rem);aspect-ratio:1;background:#fff;box-shadow:0px 1px 2px 0px rgba(20,28,37,.0392156863);transition:all 300ms}
.bingo-section__arrow:after{content:"";display:block;width:0.375rem;height:0.625rem;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none' viewBox='0 0 6 10'><path d='M1 1.123L5 5.123 1 9.123' stroke='%23344051' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");background-repeat:no-repeat;background-size:contain}
.bingo-section__dec-circle{position:absolute;background:#da3973;border-radius:50%;pointer-events:none}
.bingo-section__first-dec-circle{left:-1.5625rem;top:2.625rem;height:8.625rem;width:8.625rem}
.bingo-section__second-dec-circle{right:6.4375rem;top:3.4375rem;height:1rem;width:0.9375rem}
.bingo-section__third-dec-circle{right:-1.5625rem;top:2.875rem;height:6.75rem;width:6.75rem}
.city_banner{margin-bottom:1.875rem}
@media(max-width: 993px){.city_banner{margin-bottom:0.75rem}}
.city_banner__top{display:grid;grid-template-columns:1fr 1.25fr}
@media(min-width: 2560px){.city_banner__top{grid-template-columns:1fr 1fr}}
@media(max-width: 993px){.city_banner__top{grid-template-columns:100%}}
.city_banner__content{background-image:linear-gradient(111.28deg, #303030 12.08%, #2B0E1A 56.92%);box-shadow:0px 1px 2px 0px rgba(39,21,29,.0588235294);padding:92.5px 60px 92.5px max((100vw - 1440px)/2 + 32px,32px)}
@media(max-width: 993px){.city_banner__content{max-width:1440px;width:100%;padding:1.875rem 1.25rem 2.5rem}}
.city_banner__content h1{font-size:28px;line-height:1.28;font-weight:600;letter-spacing:-0.8px;color:#fff;margin:0 0 16px}
@media(max-width: 993px){.city_banner__content h1{margin:0.625rem 0 0.3125rem}}
.city_banner__content h2{font-size:20px;color:#fff}
.city_banner__description p,.city_banner__description li,.city_banner__description span{color:#fff;font-size:14px;line-height:1.42;letter-spacing:0;font-weight:500}
.city_banner__description a{position:relative;font-size:12px;line-height:1.33;font-weight:500;letter-spacing:0;color:#fc8fb8;text-decoration:none}
.city_banner__description a:hover:after,.city_banner__description a:focus:after{width:100%}
.city_banner__description a:after{content:"";display:block;position:absolute;bottom:0;left:0;width:0;height:1px;background:#fc8fb8;transition:.3s ease-in-out}
.city_banner__fold-list{display:flex;flex-direction:column;gap:14px}
@media(max-width: 993px){.city_banner__fold-list{display:none}}
.city_banner__fold-item{display:flex;align-items:center;font-size:14px;font-weight:500;line-height:1.43;letter-spacing:0;color:#fff}
.city_banner__fold-item svg{width:22px;height:22px;margin-right:10px}
.city_banner__links{display:flex;flex-direction:column;gap:10px;margin-top:16px}
.city_banner__links-item{font-weight:500;font-size:12px;line-height:1.33;letter-spacing:0;color:#fff}
.city_banner__links-item a{font-size:inherit;font-weight:inherit;color:#fc8fb8;white-space:nowrap}
.city_banner__video{position:relative;padding-top:56.25%;background-repeat:no-repeat;background-size:cover;background-position:center center}
@media(max-width: 993px){.city_banner__video{display:none}}
.city_banner__video video{width:100%;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover;left:0;top:0;right:0;bottom:0}
@media(max-width: 993px){.city_banner__video video{display:none}.city_banner__video .city_banner__volume{display:none}}
.city_banner__video .city_banner__volume button{position:absolute;bottom:14px;right:10px;font-size:16px;line-height:1.4;font-weight:500;z-index:2;background:rgba(37,44,50,.5);color:#fff}
.city_banner__video .city_banner__volume button.short-volume{border-radius:50%;padding:0.8125rem}
.city_banner__video .city_banner__volume button:hover{background:rgba(252,143,184,.5)}
.city_banner__video .video-play-overlay{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);cursor:pointer;z-index:10;transition:opacity .3s ease}
.city_banner__video .video-play-overlay:hover{opacity:.8}
.city_banner__video .gallery__video__play{display:none;position:absolute;top:50%;left:50%;width:70px;height:70px;border:5px solid #fff;transform:translate(-50%, -50%)}
@media(max-width: 993px){.city_banner__video .gallery__video__play{display:flex}}
.facilities-section{margin:30px 0}
.facilities-section__breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;-moz-column-gap:8px;column-gap:8px;margin-bottom:1.875rem}
.facilities-section__breadcrumbs li{position:relative;display:flex;align-items:center;justify-content:center;text-transform:capitalize;gap:8px}
.facilities-section__breadcrumbs li:not(:last-child):after{pointer-events:none;content:"";width:20px;height:21px;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M7.62956 6.01079C7.30927 6.33108 7.30927 6.84848 7.62956 7.16877L10.8161 10.3553L7.62956 13.5418C7.30927 13.8621 7.30927 14.3795 7.62956 14.6998C7.94986 15.0201 8.46725 15.0201 8.78755 14.6998L12.5572 10.9302C12.8774 10.6099 12.8774 10.0925 12.5572 9.77218L8.78755 6.00258C8.47547 5.69049 7.94986 5.69049 7.62956 6.01079Z" fill="%236B7280"/></svg>') no-repeat center;background-size:contain}
.facilities-section__breadcrumbs span,.facilities-section__breadcrumbs a{color:#252c32;font-size:.75rem;line-height:1.33;font-weight:500;text-decoration:underline}
.facilities-section__breadcrumbs li span{font-weight:700}
.facilities-section__name{display:flex;align-items:center;gap:8px;font-weight:600;font-size:16px;line-height:24px;letter-spacing:0;color:#252c32;margin-bottom:30px}
.facilities-section__name h2{font-size:16px;line-height:24px;font-weight:600;margin:0}
.facilities-section__list{display:grid;grid-template-columns:repeat(4, 1fr);gap:36px;justify-items:center;align-items:center}
@media(max-width: 993px){.facilities-section__list{grid-template-columns:repeat(2, 1fr);gap:24px;align-items:center;justify-items:start}}
@media(max-width: 767px){.facilities-section__list{grid-template-columns:1fr 1fr;max-width:100%;gap:16px;justify-items:center}}
.facilities-section__title{display:flex;gap:6px;align-items:flex-start}
.facilities-section__title-text{font-size:.875rem;line-height:1.25rem;font-weight:600;overflow-wrap:break-word}
.facilities-section__tips{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer}
.facilities-section__tips-text{position:absolute;font-weight:500;bottom:176%;left:50%;transform:translate(-20px, 0);width:348px;max-width:calc(100vw - 32px);background-color:#fff;color:#252c32;box-shadow:0 4px 12px rgba(0,0,0,.15);border-radius:4px;padding:14px 12px;font-size:12px;line-height:1.5;text-align:left;opacity:0;pointer-events:none;transition:.3s ease-in-out;z-index:999}
.facilities-section__tips-text::after{content:"";position:absolute;top:100%;left:20px;transform:translateX(-50%);border-width:6px;border-style:solid;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}
@media(max-width: 767px){.facilities-section__tips-text{width:250px}}
.facilities-section__tips:hover{color:#f699bd}
.facilities-section__tips:hover .facilities-section__tips-text{opacity:1;pointer-events:auto}
.facilities-section__item{display:flex;align-items:center;gap:8px}
@media(max-width: 767px){.facilities-section__item{flex-direction:column;text-align:center;padding:0}}
@media screen and (min-width: 993px){.facilities-section__item:nth-child(4n+3) .facilities-section__tips-text,.facilities-section__item:nth-child(4n+4) .facilities-section__tips-text{left:auto;right:-30px}.facilities-section__item:nth-child(4n+3) .facilities-section__tips-text::after,.facilities-section__item:nth-child(4n+4) .facilities-section__tips-text::after{left:auto;right:20px;transform:translateX(50%)}}
@media(max-width: 993px){.facilities-section__item:nth-child(2n) .facilities-section__tips-text{left:auto;right:50%;transform:translate(20px, 0)}.facilities-section__item:nth-child(2n) .facilities-section__tips-text::after{left:auto;right:20px;transform:translateX(50%)}}
@media(max-width: 479px){.facilities-section__item:nth-child(odd) .facilities-section__tips-text{left:50%;transform:translate(-50%, -20px)}.facilities-section__item:nth-child(odd) .facilities-section__tips-text::after{left:50%}}
.facilities-section__icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:64px;height:64px}
.facilities-section__icon img{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}
.facilities-section__content{display:flex;flex-direction:column;justify-content:center;gap:8px}
@media(max-width: 767px){.facilities-section__content{align-items:center}}
.facilities-section__content span{font-weight:600;font-size:14px;line-height:20px;letter-spacing:0;color:#252c32}
.facilities-section__content a{font-weight:600;font-size:.75rem;line-height:16px;color:#252c32;text-decoration:underline;text-decoration-style:solid;text-decoration-offset:0;text-decoration-thickness:0;transition:color .2s}
.facilities-section__content a:hover{color:#e49eb9}
.chart-section{margin:80px 0}
@media(max-width: 993px){.chart-section{margin:0}}
.chart-section h2{font-size:28px;line-height:1.3;font-weight:600;margin:0 0 36px}
@media(max-width: 993px){.chart-section h2{font-size:20px;margin:0 0 16px}}
.chart-section__block-title{display:flex;align-items:center;gap:10px;color:#252c32;font-weight:600;font-size:20px;line-height:1.2;margin:0 0 26px;text-align:left}
@media(max-width: 993px){.chart-section__block-title{margin:0 0 16px}}
.chart-section-wrap{display:grid;grid-template-columns:1fr 1fr;align-items:flex-start;gap:50px}
@media(max-width: 993px){.chart-section-wrap{grid-template-columns:1fr;gap:28px}}
.chart-section .block-wrapper{padding-bottom:28px;margin-bottom:28px;position:relative}
.chart-section .block-wrapper:after{content:"";position:absolute;bottom:0;left:0;height:1px;width:100%;display:block;background:#e4e7ec}
.chart-section .bed__legend{display:flex;justify-content:center;list-style:none;padding:0;margin:0;gap:8px}
.chart-section .bed__legend li{color:#252c32;font-size:12px}
.chart-section .custom-tooltip{background:#fff;padding:10px;border:1px solid #d1d1d1;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.15)}
.chart-section .custom-tooltip p:not(:last-child){margin-bottom:4px}
.chart-section .custom-tooltip p{display:flex;align-items:center;margin:0}
.chart-section .custom-tooltip span{display:block;width:14px;height:14px;margin-right:5px}
.chart-section .custom-tooltip .main{color:#252c32}
.chart-section .custom-tooltip .open{color:#fc639e}
.chart-section .facilities-overview__tips{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer}
.chart-section .facilities-overview__tips-text{position:absolute;font-weight:500;bottom:176%;left:50%;transform:translate(-20px, 0);width:348px;max-width:calc(100vw - 32px);background-color:#fff;color:#252c32;box-shadow:0 4px 12px rgba(0,0,0,.15);border-radius:4px;padding:14px 12px;font-size:12px;line-height:1.5;text-align:left;opacity:0;pointer-events:none;transition:.3s ease-in-out;z-index:999}
.chart-section .facilities-overview__tips-text::after{content:"";position:absolute;top:100%;left:20px;transform:translateX(-50%);border-width:6px;border-style:solid;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}
@media(max-width: 767px){.chart-section .facilities-overview__tips-text::after{left:unset;right:10px}.chart-section .facilities-overview__tips-text{width:250px;left:auto;right:50%;transform:translate(20px, 0)}}
.chart-section .facilities-overview__tips:hover{color:#f699bd}
.chart-section .facilities-overview__tips:hover .facilities-overview__tips-text{opacity:1;pointer-events:auto}
.chart-section .facilities-overview{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:36px 0 60px}
@media(max-width: 993px){.chart-section .facilities-overview{grid-template-columns:1fr;margin:0 0 28px}}
.chart-section .facilities-overview__item{display:flex;flex-direction:column;position:relative;gap:10px;padding:20px;border:1px solid #e5e7eb;background:#fff;border-radius:12px;line-height:1.3;font-weight:500;font-size:14px;color:#252c32;box-shadow:0px 4px 4px rgba(0,0,0,.25)}
@media(max-width: 993px){.chart-section .facilities-overview__item{box-shadow:none}}
@media screen and (min-width: 993px){.chart-section .facilities-overview__item:nth-child(4n+3) .facilities-overview__tips-text,.chart-section .facilities-overview__item:nth-child(4n+4) .facilities-overview__tips-text{left:auto;right:-30px}.chart-section .facilities-overview__item:nth-child(4n+3) .facilities-overview__tips-text::after,.chart-section .facilities-overview__item:nth-child(4n+4) .facilities-overview__tips-text::after{left:auto;right:20px;transform:translateX(50%)}}
@media(max-width: 993px){.chart-section .facilities-overview__item{padding:16px;gap:12px}.chart-section .facilities-overview__item .facilities-overview__tips-text{left:auto;right:50%;transform:translate(20px, 0)}.chart-section .facilities-overview__item .facilities-overview__tips-text::after{left:auto;right:20px;transform:translateX(50%)}}
@media(max-width: 479px){.chart-section .facilities-overview__item:nth-child(odd) .facilities-overview__tips-text{left:auto;right:50%;transform:translate(20px, 0)}.chart-section .facilities-overview__item:nth-child(odd) .facilities-overview__tips-text::after{left:50%}}
@media(max-width: 479px)and (max-width: 993px){.chart-section .facilities-overview__item:nth-child(odd) .facilities-overview__tips-text::after{left:unset}}
.chart-section .facilities-overview__top{display:flex;align-items:center;justify-content:space-between}
@media(max-width: 993px){.chart-section .facilities-overview__top{gap:8px}}
.chart-section .facilities-overview__icon{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:#f2f3f4;border-radius:8px}
@media(max-width: 993px){.chart-section .facilities-overview__icon{height:33px;width:33px;aspect-ratio:1}}
.chart-section .facilities-overview__name{display:flex;align-items:center;gap:8px}
@media(max-width: 993px){.chart-section .facilities-overview__name{font-size:16px;align-items:flex-end}}
.chart-section .facilities-overview__value{font-weight:600;font-size:24px}
.chart-section .facilities-overview__trend{padding:10px 12px;border-radius:8px}
.chart-section .facilities-overview__trend.green{color:#15803b;background:#ebfff1}
.chart-section .facilities-overview__trend.red{color:#bc1919;background:#ffefeb}
.chart-section .insights-panel{display:flex;flex-direction:column;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0px 4px 4px rgba(0,0,0,.25)}
@media(max-width: 993px){.chart-section .insights-panel{box-shadow:none}}
.chart-section .insights-panel__item{display:flex;align-items:baseline;gap:8px;padding:40px 16px}
@media(max-width: 993px){.chart-section .insights-panel__item{padding:16px 16px 20px;gap:12px}}
.chart-section .insights-panel__item:not(:last-child){border-bottom:1px solid #e5e7eb}
.chart-section .insights-panel__text{font-size:14px;font-weight:500;line-height:1.33;color:#252c32}
.chart-section .insights-panel__icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:50%;width:20px;height:20px;background:#ff639e}
.chart-section .insights-panel p{margin:0}
.chart-section__beds .recharts-legend-item-text{color:#252c32}
.chart-section__donut{display:grid;grid-template-columns:1fr 1fr;gap:50px}
@media(max-width: 993px){.chart-section__donut{grid-template-columns:1fr;gap:28px}}
.chart-section__donut .recharts-pie-labels path{fill:#303030}
.chart-section__donut .recharts-pie-labels text{fill:#303030}
.newsletter-main{background-color:#fff}
.press_release .wpcf7-form-control-wrap,.press_release .articles__sidebar-news,.press_release .wpcf7-form,.press_release .wpcf7{width:100%}
.press_release .wpcf7-not-valid-tip:not([style*="display: none"]){margin-top:-12px}
.press_release .wpcf7-response-output{display:none}
.press_release__top{display:flex;margin:2rem 0;gap:2rem}
@media(max-width: 1280px){.press_release__top{flex-direction:column}}
.press_release__header{display:flex;flex-direction:column;justify-content:center;flex:1}
.press_release__title{font-size:28px;font-weight:600;line-height:36px;letter-spacing:-0.28px;color:#141c25;margin:1rem 0}
.press_release__excerpt{font-size:16px;font-weight:300;line-height:24px;letter-spacing:0px;color:#637083;margin-bottom:1rem}
.press_release__media{height:auto;flex:1;position:relative;background-color:#f2f4f7;border-radius:12px}
.press_release__media img,.press_release__media video{width:100%;height:400px;-o-object-fit:cover;object-fit:cover;transition:opacity .3s ease;border-radius:12px}
.press_release__media img.loading,.press_release__media video.loading{opacity:.5}
.press_release__media.is-loading::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);pointer-events:none}
.press_release__author-wrap{border-top:1px solid #e4e7ec;padding-top:1rem;display:flex;align-items:center;justify-content:space-between}
.press_release__author{display:flex;align-items:center;font-size:14px;font-weight:500;gap:.25rem}
.press_release__author-img{width:40px;height:40px;border-radius:50%;overflow:hidden}
.press_release__author-date{font-size:12px;font-style:normal;font-weight:400;line-height:16px;color:#344051}
.press_release__social_wrap{display:flex;border-radius:8px;padding:1rem;align-items:center;justify-content:center;gap:1rem;background-color:#f2f4f7}
.press_release__block{display:flex;align-items:center;justify-content:center;gap:.25rem}
.press_release__block_social_item{background-color:#fff;box-shadow:0px 1px 2px 0px rgba(16,28,37,.05);width:32px;height:32px;border:1px solid #e4e7ec;border-radius:8px;padding:6px;display:flex;align-items:center;justify-content:center;transition:all .3s ease}
.press_release__block_social_item:hover{border-color:#ff649e}
.press_release__form{display:flex;flex-direction:column;border-radius:8px;padding:1.5rem;align-items:center;justify-content:center;gap:.5rem;background-color:#f2f4f7}
.press_release__form-title{text-align:left;margin:0;width:100%;font-size:20px;font-weight:500;line-height:28px;letter-spacing:0px}
.press_release__form-text{font-size:14px;font-weight:300;line-height:20px;letter-spacing:0px;color:#637083}
.press_release__holder{display:flex;gap:1rem}
@media(max-width: 1280px){.press_release__holder{flex-direction:column}}
.press_release__content{font-weight:400;flex:2}
.press_release__sidebar{display:flex;flex-direction:column;gap:1rem;flex:1}
@media(max-width: 1280px){.press_release__sidebar{max-width:400px;margin:0 auto}}
.press_release__categories{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;border-top:1px solid #e4e7ec;padding:1.5rem 0;border-bottom:1px solid #e4e7ec;margin-bottom:1.5rem}
.press_release__categories-title{font-size:20px;font-weight:600;line-height:28px;letter-spacing:0px;color:#141c25}
.press_release__categories_item{border:1px solid #e4e7ec;text-decoration:none;padding:.5rem;border-radius:20px}
.press_release__categories_item:nth-child(3n+2){color:#ff649e}
.press_release__categories_item:nth-child(3n+3){color:#a855f7}
.press_release__categories_item:nth-child(3n+1){color:#ca8a04}
.press_release_recent-posts{max-width:900px}
@media(max-width: 1280px){.press_release_recent-posts{max-width:100vw}}
.press_release_recent-posts__header{display:flex;margin-top:1rem;align-items:center;justify-content:space-between}
.press_release_recent-posts__header-title{font-size:20px;font-weight:600;line-height:28px;letter-spacing:0px}
.press_release_recent-posts-carousel__header{margin-top:1rem}
.recent-posts__carousel{row-gap:0}
.button_newsletter{width:100%;background-color:#ff649e !important;border-radius:8px !important;padding:.5rem !important;margin-top:1rem !important;color:#fff !important;border:none !important;box-shadow:none !important}
.button_newsletter:hover{background-color:#ff649e !important;color:#fff !important}
.button_newsletter:disabled{background-color:#e4e7ec;color:#fff;cursor:not-allowed}
.rooms-type__top{margin:0 0 3.25rem}
@media(max-width: 767px){.rooms-type__top{margin:0 0 1.25rem}}
.rooms-type__top.slider-ctrl{display:flex;align-items:center;justify-content:space-between;padding-top:2rem}
.rooms-type__top.slider-ctrl h4{padding:0}
.rooms-type__main.single{display:flex}
.rooms-type__main.single .swiper-wrapper{width:calc(50% - 30px)}
@media(max-width: 767px){.rooms-type__main.single .swiper-wrapper{width:100%}}
.rooms-type__main.single .room__images-wrapper{width:100%}
.rooms-type__room .room__images{position:relative}
.rooms-type__room .room__images-slide img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:0.75rem;aspect-ratio:1.42/1;max-width:445px}
@media(max-width: 767px){.rooms-type__room .room__images-slide img{aspect-ratio:16/9;max-width:100%}}
.rooms-type__room .room__images__controls{display:flex;align-items:center;justify-content:space-between;width:calc(100% - 40px);position:absolute;left:1.25rem;top:50%;transform:translateY(-50%);z-index:2}
.rooms-type__room .room__images__controls button{display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border:none;border-radius:50%;background:#252c32}
.rooms-type__room .room__images__controls button svg{width:1.5rem;height:1.5rem}
.rooms-type__room .room__images__controls button.room__images__btn-next{transform:rotate(-180deg)}
.rooms-type__room .room__images__pagination{display:flex;align-items:center;padding:0.75rem 0.625rem;position:absolute;bottom:0.625rem;right:0.625rem;background:#fff;border-radius:0.75rem;font-size:16px;font-weight:600;line-height:1.25;color:#252c32;z-index:2}
.rooms-type__room .room__images__pagination span{margin-left:0.125rem}
.rooms-type__room .room__images__pagination svg{margin-right:0.5rem}
.rooms-type__room .room__content{margin:1.25rem 0 0}
.rooms-type__room .room__content span{display:block;font-size:20px;line-height:1.4;font-weight:600;margin:0 0 1rem}
.rooms-type__room .room__description{display:flex;align-items:center;gap:1.125rem}
.rooms-type__room .room__description-item{display:flex;align-items:center;gap:0.5625rem;font-size:20px;line-height:1.4;font-weight:600}
@media(max-width: 767px){.rooms-type__room .room__description-item{font-size:16px}}
.page{display:flex;flex-direction:column;align-content:center;min-height:100vh}
.page__main{flex:1;max-width:100%}
.hover\:-translate-y-0:hover {
  --tw-translate-y: -0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:-translate-y-0\.5:hover {
  --tw-translate-y: -0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:w-7\/12 {
    width: 58.333333%;
  }
  .md\:flex-row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .lg\:border-y-0 {
    border-top-width: 0px;
    border-bottom-width: 0px;
  }
  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}
.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
